diff --git a/.editorconfig b/.editorconfig index 970c368..fc4c221 100644 --- a/.editorconfig +++ b/.editorconfig @@ -5,6 +5,7 @@ charset = utf-8 end_of_line = lf insert_final_newline = true trim_trailing_whitespace = true +indent_size = 2 [*.{json,toml,yml,gyp}] indent_style = space diff --git a/grammar-declarations.js b/grammar-declarations.js index ebd850d..547ec09 100644 --- a/grammar-declarations.js +++ b/grammar-declarations.js @@ -14,8 +14,9 @@ module.exports = { alias(choice('default', 'null', 'get', 'set', 'dynamic', 'never'), $.keyword), access_identifiers: ($) => seq('(', $._access_identifier, optional(seq(',', $._access_identifier)), ')'), - type_param: ($) => choice($._lhs_expression, seq($._lhs_expression, $.type_params)), - type_params: ($) => prec.right(1, seq('<', commaSep1($.type_param), '>')), + // _type_param: ($) => $.type, + _type_param: ($) => $.type, + type_params: ($) => seq('<', commaSep1($._type_param), '>'), class_declaration: ($) => seq( @@ -90,19 +91,22 @@ module.exports = { field('name', $._lhs_expression), optional('?'), optional(seq(':', alias(choice($._lhs_expression, $.type, $.structure_type), $.type))), - optional(seq($._assignmentOperator, $._literal)), + optional(seq($._assignment_operator, $._literal)), ), ), variable_declaration: ($) => - seq( - repeat($.metadata), - repeat($.keyword), - choice(alias('var', $.keyword), alias('final', $.keyword)), - field('name', $._lhs_expression), - optional($.access_identifiers), - optional(seq(':', optional(repeat('(')), field('type', $.type), optional(repeat(')')))), - optional(seq(($._assignmentOperator, $.operator), $.expression)), - $._semicolon, + prec.right( + seq( + prec.left(repeat($.metadata)), + prec.left(repeat($.keyword)), + choice(alias('var', $.keyword), alias('final', $.keyword)), + field('name', $.identifier), + optional($.access_identifiers), + optional(seq(':', field('type', $.type))), + // optional(seq(':', optional(repeat('(')), field('type', $.type), optional(repeat(')')))), + optional(seq(($._assignment_operator, $.operator), $.expression)), + $._semicolon, + ), ), }; diff --git a/grammar-literals.js b/grammar-literals.js index db7cfdc..1c64ea6 100644 --- a/grammar-literals.js +++ b/grammar-literals.js @@ -42,7 +42,7 @@ module.exports = { prec.right( choice( seq(choice($.identifier, $.string), ':', $.expression), - seq(choice($.identifier, $._literal), '=>', $.expression), + seq(choice($.identifier, $._literal), $._map_operator, $.expression), ), ), diff --git a/grammar-operators.js b/grammar-operators.js index 58743ef..5e85a9d 100644 --- a/grammar-operators.js +++ b/grammar-operators.js @@ -4,32 +4,33 @@ module.exports = { operator: ($) => choice($._binaryOperator, $._unaryOperator), // From: https://haxe.org/manual/expression-operators-unops.html - _unaryOperator: ($) => prec.right(choice($._prefixUnaryOperator, $._postfixUnaryOperator)), - _prefixUnaryOperator: ($) => choice('~', '!', '-', '++', '--'), - _postfixUnaryOperator: ($) => choice('++', '--'), + _unaryOperator: ($) => prec.right(choice($._prefixUnaryOperator, $._eitherUnaryOperator)), + _prefixUnaryOperator: ($) => token(choice('~', '!', '-')), + _eitherUnaryOperator: ($) => token(choice('++', '--')), // From: https://haxe.org/manual/expression-operators-binops.html _binaryOperator: ($) => prec.left( choice( - $._arithmeticOperator, - $._bitwiseOperator, - $._logicalOperator, - $._comparisonOperator, - $._miscOperator, - $._assignmentOperator, - $._compoundAssignmentOperator, - $._rangeOperator, + $._arithmetic_operator, + $._bitwise_operator, + $._logical_operator, + $._comparison_operator, + $._map_operator, + $._null_colalese_operator, + $._assignment_operator, + $._compound_assignment_operator, + $._range_operator, ), ), - _arithmeticOperator: ($) => choice('%', '*', '/', '+', '-'), - _bitwiseOperator: ($) => choice('<<', '>>', '>>>', '&', '|', '^'), - _logicalOperator: ($) => choice('&&', '||'), - _comparisonOperator: ($) => choice('==', '!=', '<', '<=', '>', '>='), - _miscOperator: ($) => choice('=>', '??'), - // _miscOperator: ($) => choice('...', '=>'), - _assignmentOperator: ($) => '=', - _compoundAssignmentOperator: ($) => - seq(choice($._arithmeticOperator, $._bitwiseOperator), $._assignmentOperator), - _rangeOperator: ($) => '...', + _arithmetic_operator: ($) => token(choice('%', '*', '/', '+', '-')), + _bitwise_operator: ($) => token(choice('<<', '>>', '>>>', '&', '|', '^')), + _logical_operator: ($) => token(choice('&&', '||')), + _comparison_operator: ($) => token(choice('==', '!=', '<', '<=', '>', '>=')), + _map_operator: ($) => token(choice('=>')), + _null_colalese_operator: ($) => token(choice('??')), + _assignment_operator: ($) => token('='), + _compound_assignment_operator: ($) => + seq(choice($._arithmetic_operator, $._bitwise_operator), $._assignment_operator), + _range_operator: ($) => token('...'), }; diff --git a/grammar.js b/grammar.js index 55ee77b..cbd4f00 100644 --- a/grammar.js +++ b/grammar.js @@ -15,22 +15,18 @@ const haxe_grammar = { word: ($) => $.identifier, inline: ($) => [$.statement, $.expression], extras: ($) => [$.comment, /[\s\uFEFF\u2060\u200B\u00A0]/], - supertypes: ($) => [$.declaration], + supertypes: ($) => [ + $.declaration, + // $.expression, + // $.statement, + ], conflicts: ($) => [ - [$.block, $.object], [$.typedef_declaration, $.type], [$.call_expression, $._constructor_call], - [$._rhs_expression, $.pair], [$._literal, $.pair], - [$.pair, $.pair], [$.function_declaration], - [$.function_type, $.variable_declaration], - [$.type, $.function_type, $.variable_declaration], [$.type, $._function_type_args], [$.structure_type_pair, $._function_type_args], - [$.function_declaration, $.variable_declaration], - [$._prefixUnaryOperator, $._arithmeticOperator], - [$._prefixUnaryOperator, $._postfixUnaryOperator], ], rules: { module: ($) => seq(repeat($.statement)), @@ -79,17 +75,17 @@ const haxe_grammar = { throw_statement: ($) => prec.right(seq(alias('throw', $.keyword), $.expression)), - _rhs_expression: ($) => - prec.right(choice($._literal, $.identifier, $.member_expression, $.call_expression)), - _unaryExpression: ($) => prec.left( 1, choice( // unary on LHS - seq($.operator, $._rhs_expression), + seq( + alias(choice($._prefixUnaryOperator, $._eitherUnaryOperator), $.operator), + $._rhs_expression, + ), // unary on RHS - seq($._rhs_expression, $.operator), + seq($._rhs_expression, alias($._eitherUnaryOperator, $.operator)), ), ), @@ -143,32 +139,18 @@ const haxe_grammar = { seq( $.identifier, alias('in', $.keyword), - choice(seq($.integer, $._rangeOperator, $.integer), $.identifier), + choice(seq($.integer, $._range_operator, $.integer), $.identifier), ), ), - expression: ($) => - choice( - $._unaryExpression, - $.subscript_expression, - $.runtime_type_check_expression, - $.cast_expression, - $.type_trace_expression, - $.range_expression, - $._parenthesized_expression, - $.switch_expression, - // simple expression, or chained. - seq($._rhs_expression, repeat(seq($.operator, $._rhs_expression))), - ), - subscript_expression: ($) => prec.left( 1, seq( choice($.identifier, $._parenthesized_expression, $.member_expression), - '[', + token('['), field('index', $.expression), - ']', + token(']'), ), // seq($._parenthesized_expression, '[', field('index', $.expression), ']'), ), @@ -180,12 +162,46 @@ const haxe_grammar = { field('object', choice(alias('this', $.keyword), $.identifier)), field('literal', $._literal), ), - choice(token('.'), seq(alias('?', $.operator), '.')), + token(choice('?.', '.')), repeat1(field('member', $._lhs_expression)), ), ), + _binary_expression: ($) => + prec.left(10, seq($.expression, alias($._binaryOperator, $.operator), $.expression)), + + ternary_expression: ($) => + prec.right( + 5, + seq( + field('condition', $.expression), + alias('?', $.operator), + field('true_result', $.expression), + alias(':', $.operator), + field('false_result', $.expression), + ), + ), + _lhs_expression: ($) => prec(1, choice($.identifier, $.member_expression)), + _rhs_expression: ($) => + prec.right(choice($._literal, $.identifier, $.member_expression, $.call_expression)), + + expression: ($) => + choice( + $._rhs_expression, + $._unaryExpression, + $.subscript_expression, + $.runtime_type_check_expression, + $.cast_expression, + $.type_trace_expression, + $.range_expression, + $._parenthesized_expression, + $.switch_expression, + $._binary_expression, + $.ternary_expression, + // simple expression, or chained. + // seq($._rhs_expression, repeat(seq($.operator, $._rhs_expression))), + ), builtin_type: ($) => prec.right(choice(...builtins)), diff --git a/queries/highlights.scm b/queries/highlights.scm index 757c066..b65a118 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -81,7 +81,6 @@ ; ------ (":") @punctuation.special -(pair [":" "=>"] @punctuation.special) [ "(" diff --git a/src/grammar.json b/src/grammar.json index c5a61b9..224166a 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -239,31 +239,6 @@ ] } }, - "_rhs_expression": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_literal" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "member_expression" - }, - { - "type": "SYMBOL", - "name": "call_expression" - } - ] - } - }, "_unaryExpression": { "type": "PREC_LEFT", "value": 1, @@ -274,8 +249,22 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "operator" + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_prefixUnaryOperator" + }, + { + "type": "SYMBOL", + "name": "_eitherUnaryOperator" + } + ] + }, + "named": true, + "value": "operator" }, { "type": "SYMBOL", @@ -291,8 +280,13 @@ "name": "_rhs_expression" }, { - "type": "SYMBOL", - "name": "operator" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_eitherUnaryOperator" + }, + "named": true, + "value": "operator" } ] } @@ -602,7 +596,7 @@ }, { "type": "SYMBOL", - "name": "_rangeOperator" + "name": "_range_operator" }, { "type": "SYMBOL", @@ -619,68 +613,6 @@ ] } }, - "expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_unaryExpression" - }, - { - "type": "SYMBOL", - "name": "subscript_expression" - }, - { - "type": "SYMBOL", - "name": "runtime_type_check_expression" - }, - { - "type": "SYMBOL", - "name": "cast_expression" - }, - { - "type": "SYMBOL", - "name": "type_trace_expression" - }, - { - "type": "SYMBOL", - "name": "range_expression" - }, - { - "type": "SYMBOL", - "name": "_parenthesized_expression" - }, - { - "type": "SYMBOL", - "name": "switch_expression" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_rhs_expression" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "operator" - }, - { - "type": "SYMBOL", - "name": "_rhs_expression" - } - ] - } - } - ] - } - ] - }, "subscript_expression": { "type": "PREC_LEFT", "value": 1, @@ -705,8 +637,11 @@ ] }, { - "type": "STRING", - "value": "[" + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "[" + } }, { "type": "FIELD", @@ -717,8 +652,11 @@ } }, { - "type": "STRING", - "value": "]" + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "]" + } } ] } @@ -765,34 +703,20 @@ ] }, { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "?." + }, + { "type": "STRING", "value": "." } - }, - { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "?" - }, - "named": true, - "value": "operator" - }, - { - "type": "STRING", - "value": "." - } - ] - } - ] + ] + } }, { "type": "REPEAT1", @@ -808,6 +732,83 @@ ] } }, + "_binary_expression": { + "type": "PREC_LEFT", + "value": 10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_binaryOperator" + }, + "named": true, + "value": "operator" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + }, + "ternary_expression": { + "type": "PREC_RIGHT", + "value": 5, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "?" + }, + "named": true, + "value": "operator" + }, + { + "type": "FIELD", + "name": "true_result", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": ":" + }, + "named": true, + "value": "operator" + }, + { + "type": "FIELD", + "name": "false_result", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, "_lhs_expression": { "type": "PREC", "value": 1, @@ -825,53 +826,127 @@ ] } }, - "builtin_type": { + "_rhs_expression": { "type": "PREC_RIGHT", "value": 0, "content": { "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "Void" - }, - { - "type": "STRING", - "value": "Int" + "type": "SYMBOL", + "name": "_literal" }, { - "type": "STRING", - "value": "Float" + "type": "SYMBOL", + "name": "identifier" }, { - "type": "STRING", - "value": "Bool" + "type": "SYMBOL", + "name": "member_expression" }, { - "type": "STRING", - "value": "Null" + "type": "SYMBOL", + "name": "call_expression" } ] } }, - "_function_type_args": { - "type": "SEQ", + "expression": { + "type": "CHOICE", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "STRING", + "type": "SYMBOL", + "name": "_rhs_expression" + }, + { + "type": "SYMBOL", + "name": "_unaryExpression" + }, + { + "type": "SYMBOL", + "name": "subscript_expression" + }, + { + "type": "SYMBOL", + "name": "runtime_type_check_expression" + }, + { + "type": "SYMBOL", + "name": "cast_expression" + }, + { + "type": "SYMBOL", + "name": "type_trace_expression" + }, + { + "type": "SYMBOL", + "name": "range_expression" + }, + { + "type": "SYMBOL", + "name": "_parenthesized_expression" + }, + { + "type": "SYMBOL", + "name": "switch_expression" + }, + { + "type": "SYMBOL", + "name": "_binary_expression" + }, + { + "type": "SYMBOL", + "name": "ternary_expression" + } + ] + }, + "builtin_type": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "Void" + }, + { + "type": "STRING", + "value": "Int" + }, + { + "type": "STRING", + "value": "Float" + }, + { + "type": "STRING", + "value": "Bool" + }, + { + "type": "STRING", + "value": "Null" + } + ] + } + }, + "_function_type_args": { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", "value": ":" } ] @@ -1386,48 +1461,46 @@ }, { "type": "SYMBOL", - "name": "_postfixUnaryOperator" + "name": "_eitherUnaryOperator" } ] } }, "_prefixUnaryOperator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "~" - }, - { - "type": "STRING", - "value": "!" - }, - { - "type": "STRING", - "value": "-" - }, - { - "type": "STRING", - "value": "++" - }, - { - "type": "STRING", - "value": "--" - } - ] + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "~" + }, + { + "type": "STRING", + "value": "!" + }, + { + "type": "STRING", + "value": "-" + } + ] + } }, - "_postfixUnaryOperator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "++" - }, - { - "type": "STRING", - "value": "--" - } - ] + "_eitherUnaryOperator": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "++" + }, + { + "type": "STRING", + "value": "--" + } + ] + } }, "_binaryOperator": { "type": "PREC_LEFT", @@ -1437,153 +1510,183 @@ "members": [ { "type": "SYMBOL", - "name": "_arithmeticOperator" + "name": "_arithmetic_operator" + }, + { + "type": "SYMBOL", + "name": "_bitwise_operator" }, { "type": "SYMBOL", - "name": "_bitwiseOperator" + "name": "_logical_operator" }, { "type": "SYMBOL", - "name": "_logicalOperator" + "name": "_comparison_operator" }, { "type": "SYMBOL", - "name": "_comparisonOperator" + "name": "_map_operator" }, { "type": "SYMBOL", - "name": "_miscOperator" + "name": "_null_colalese_operator" }, { "type": "SYMBOL", - "name": "_assignmentOperator" + "name": "_assignment_operator" }, { "type": "SYMBOL", - "name": "_compoundAssignmentOperator" + "name": "_compound_assignment_operator" }, { "type": "SYMBOL", - "name": "_rangeOperator" + "name": "_range_operator" } ] } }, - "_arithmeticOperator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "%" - }, - { - "type": "STRING", - "value": "*" - }, - { - "type": "STRING", - "value": "/" - }, - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "-" - } - ] + "_arithmetic_operator": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "%" + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "/" + }, + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "-" + } + ] + } }, - "_bitwiseOperator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "<<" - }, - { - "type": "STRING", - "value": ">>" - }, - { - "type": "STRING", - "value": ">>>" - }, - { - "type": "STRING", - "value": "&" - }, - { - "type": "STRING", - "value": "|" - }, - { - "type": "STRING", - "value": "^" - } - ] + "_bitwise_operator": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "<<" + }, + { + "type": "STRING", + "value": ">>" + }, + { + "type": "STRING", + "value": ">>>" + }, + { + "type": "STRING", + "value": "&" + }, + { + "type": "STRING", + "value": "|" + }, + { + "type": "STRING", + "value": "^" + } + ] + } }, - "_logicalOperator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "&&" - }, - { - "type": "STRING", - "value": "||" - } - ] + "_logical_operator": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "&&" + }, + { + "type": "STRING", + "value": "||" + } + ] + } }, - "_comparisonOperator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "==" - }, - { - "type": "STRING", - "value": "!=" - }, - { - "type": "STRING", - "value": "<" - }, - { - "type": "STRING", - "value": "<=" - }, - { - "type": "STRING", - "value": ">" - }, - { - "type": "STRING", - "value": ">=" - } - ] + "_comparison_operator": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "==" + }, + { + "type": "STRING", + "value": "!=" + }, + { + "type": "STRING", + "value": "<" + }, + { + "type": "STRING", + "value": "<=" + }, + { + "type": "STRING", + "value": ">" + }, + { + "type": "STRING", + "value": ">=" + } + ] + } }, - "_miscOperator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "=>" - }, - { - "type": "STRING", - "value": "??" - } - ] + "_map_operator": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "=>" + } + ] + } }, - "_assignmentOperator": { - "type": "STRING", - "value": "=" + "_null_colalese_operator": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "??" + } + ] + } }, - "_compoundAssignmentOperator": { + "_assignment_operator": { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "=" + } + }, + "_compound_assignment_operator": { "type": "SEQ", "members": [ { @@ -1591,23 +1694,26 @@ "members": [ { "type": "SYMBOL", - "name": "_arithmeticOperator" + "name": "_arithmetic_operator" }, { "type": "SYMBOL", - "name": "_bitwiseOperator" + "name": "_bitwise_operator" } ] }, { "type": "SYMBOL", - "name": "_assignmentOperator" + "name": "_assignment_operator" } ] }, - "_rangeOperator": { - "type": "STRING", - "value": "..." + "_range_operator": { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "..." + } }, "declaration": { "type": "CHOICE", @@ -1706,69 +1812,47 @@ } ] }, - "type_param": { - "type": "CHOICE", + "_type_param": { + "type": "SYMBOL", + "name": "type" + }, + "type_params": { + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_lhs_expression" + "type": "STRING", + "value": "<" }, { "type": "SEQ", "members": [ { "type": "SYMBOL", - "name": "_lhs_expression" + "name": "_type_param" }, { - "type": "SYMBOL", - "name": "type_params" + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_type_param" + } + ] + } } ] - } - ] - }, - "type_params": { - "type": "PREC_RIGHT", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "<" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "type_param" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "type_param" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": ">" - } - ] - } + }, + { + "type": "STRING", + "value": ">" + } + ] }, "class_declaration": { "type": "SEQ", @@ -2342,7 +2426,7 @@ "members": [ { "type": "SYMBOL", - "name": "_assignmentOperator" + "name": "_assignment_operator" }, { "type": "SYMBOL", @@ -2359,146 +2443,128 @@ } }, "variable_declaration": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "metadata" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "keyword" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "var" - }, - "named": true, - "value": "keyword" - }, - { - "type": "ALIAS", + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "REPEAT", "content": { - "type": "STRING", - "value": "final" - }, - "named": true, - "value": "keyword" + "type": "SYMBOL", + "name": "metadata" + } } - ] - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_lhs_expression" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "access_identifiers" - }, - { - "type": "BLANK" + }, + { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "keyword" + } } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { "type": "STRING", - "value": ":" + "value": "var" }, - { - "type": "CHOICE", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "STRING", - "value": "(" - } - }, - { - "type": "BLANK" - } - ] + "named": true, + "value": "keyword" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "final" }, - { - "type": "FIELD", - "name": "type", - "content": { + "named": true, + "value": "keyword" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "access_identifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { "type": "SYMBOL", - "name": "type" + "name": "operator" + }, + { + "type": "SYMBOL", + "name": "expression" } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "STRING", - "value": ")" - } - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "operator" - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_semicolon" - } - ] + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + } }, "_literal": { "type": "CHOICE", @@ -2958,8 +3024,8 @@ ] }, { - "type": "STRING", - "value": "=>" + "type": "SYMBOL", + "name": "_map_operator" }, { "type": "SYMBOL", @@ -3332,10 +3398,6 @@ } ], "conflicts": [ - [ - "block", - "object" - ], [ "typedef_declaration", "type" @@ -3344,30 +3406,13 @@ "call_expression", "_constructor_call" ], - [ - "_rhs_expression", - "pair" - ], [ "_literal", "pair" ], - [ - "pair", - "pair" - ], [ "function_declaration" ], - [ - "function_type", - "variable_declaration" - ], - [ - "type", - "function_type", - "variable_declaration" - ], [ "type", "_function_type_args" @@ -3375,18 +3420,6 @@ [ "structure_type_pair", "_function_type_args" - ], - [ - "function_declaration", - "variable_declaration" - ], - [ - "_prefixUnaryOperator", - "_arithmeticOperator" - ], - [ - "_prefixUnaryOperator", - "_postfixUnaryOperator" ] ], "precedences": [], diff --git a/src/node-types.json b/src/node-types.json index 7f8f433..477f56c 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -120,6 +120,10 @@ "type": "switch_expression", "named": true }, + { + "type": "ternary_expression", + "named": true + }, { "type": "type_trace_expression", "named": true @@ -235,6 +239,10 @@ "type": "switch_expression", "named": true }, + { + "type": "ternary_expression", + "named": true + }, { "type": "throw_statement", "named": true @@ -347,6 +355,10 @@ "type": "switch_expression", "named": true }, + { + "type": "ternary_expression", + "named": true + }, { "type": "type_trace_expression", "named": true @@ -499,6 +511,10 @@ "type": "switch_expression", "named": true }, + { + "type": "ternary_expression", + "named": true + }, { "type": "throw_statement", "named": true @@ -756,6 +772,10 @@ "type": "switch_expression", "named": true }, + { + "type": "ternary_expression", + "named": true + }, { "type": "type_trace_expression", "named": true @@ -1129,6 +1149,10 @@ "type": "switch_expression", "named": true }, + { + "type": "ternary_expression", + "named": true + }, { "type": "type_trace_expression", "named": true @@ -1230,16 +1254,6 @@ } ] } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "operator", - "named": true - } - ] } }, { @@ -1337,6 +1351,10 @@ "type": "switch_expression", "named": true }, + { + "type": "ternary_expression", + "named": true + }, { "type": "type_trace_expression", "named": true @@ -1452,6 +1470,10 @@ "type": "switch_expression", "named": true }, + { + "type": "ternary_expression", + "named": true + }, { "type": "throw_statement", "named": true @@ -1602,6 +1624,10 @@ "type": "switch_expression", "named": true }, + { + "type": "ternary_expression", + "named": true + }, { "type": "type", "named": true @@ -1721,6 +1747,10 @@ "type": "switch_expression", "named": true }, + { + "type": "ternary_expression", + "named": true + }, { "type": "throw_statement", "named": true @@ -1871,6 +1901,10 @@ "type": "switch_expression", "named": true }, + { + "type": "ternary_expression", + "named": true + }, { "type": "type_trace_expression", "named": true @@ -1954,6 +1988,10 @@ "type": "switch_expression", "named": true }, + { + "type": "ternary_expression", + "named": true + }, { "type": "type_trace_expression", "named": true @@ -2045,6 +2083,10 @@ "type": "switch_expression", "named": true }, + { + "type": "ternary_expression", + "named": true + }, { "type": "type_trace_expression", "named": true @@ -2052,6 +2094,304 @@ ] } }, + { + "type": "ternary_expression", + "named": true, + "fields": { + "condition": { + "multiple": true, + "required": true, + "types": [ + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "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": "ternary_expression", + "named": true + }, + { + "type": "type_trace_expression", + "named": true + } + ] + }, + "false_result": { + "multiple": true, + "required": true, + "types": [ + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "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": "ternary_expression", + "named": true + }, + { + "type": "type_trace_expression", + "named": true + } + ] + }, + "true_result": { + "multiple": true, + "required": true, + "types": [ + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "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": "ternary_expression", + "named": true + }, + { + "type": "type_trace_expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "operator", + "named": true + } + ] + } + }, { "type": "throw_statement", "named": true, @@ -2136,6 +2476,10 @@ "type": "switch_expression", "named": true }, + { + "type": "ternary_expression", + "named": true + }, { "type": "type_trace_expression", "named": true @@ -2218,29 +2562,6 @@ ] } }, - { - "type": "type_param", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "member_expression", - "named": true - }, - { - "type": "type_params", - "named": true - } - ] - } - }, { "type": "type_params", "named": true, @@ -2250,7 +2571,7 @@ "required": true, "types": [ { - "type": "type_param", + "type": "type", "named": true } ] @@ -2414,10 +2735,6 @@ { "type": "identifier", "named": true - }, - { - "type": "member_expression", - "named": true } ] }, @@ -2520,6 +2837,10 @@ "type": "switch_expression", "named": true }, + { + "type": "ternary_expression", + "named": true + }, { "type": "type_trace_expression", "named": true @@ -2527,14 +2848,6 @@ ] } }, - { - "type": "!", - "named": false - }, - { - "type": "!=", - "named": false - }, { "type": "#", "named": false @@ -2547,18 +2860,6 @@ "type": "${", "named": false }, - { - "type": "%", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "&&", - "named": false - }, { "type": "(", "named": false @@ -2567,42 +2868,14 @@ "type": ")", "named": false }, - { - "type": "*", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, { "type": ",", "named": false }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, { "type": "->", "named": false }, - { - "type": ".", - "named": false - }, - { - "type": "/", - "named": false - }, { "type": ":", "named": false @@ -2611,50 +2884,18 @@ "type": "<", "named": false }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, { "type": "=", "named": false }, - { - "type": "==", - "named": false - }, - { - "type": "=>", - "named": false - }, { "type": ">", "named": false }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": ">>>", - "named": false - }, { "type": "?", "named": false }, - { - "type": "??", - "named": false - }, { "type": "@", "named": false @@ -2691,10 +2932,6 @@ "type": "]", "named": false }, - { - "type": "^", - "named": false - }, { "type": "_rhs_expression", "named": true @@ -2891,20 +3128,8 @@ "type": "{", "named": false }, - { - "type": "|", - "named": false - }, - { - "type": "||", - "named": false - }, { "type": "}", "named": false - }, - { - "type": "~", - "named": false } ] \ No newline at end of file diff --git a/src/parser.c b/src/parser.c index 2496b52..915d4ac 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,15 +5,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1364 -#define LARGE_STATE_COUNT 421 -#define SYMBOL_COUNT 203 +#define STATE_COUNT 1262 +#define LARGE_STATE_COUNT 296 +#define SYMBOL_COUNT 180 #define ALIAS_COUNT 2 -#define TOKEN_COUNT 115 +#define TOKEN_COUNT 100 #define EXTERNAL_TOKEN_COUNT 0 -#define FIELD_COUNT 13 -#define MAX_ALIAS_SEQUENCE_LENGTH 13 -#define PRODUCTION_ID_COUNT 129 +#define FIELD_COUNT 16 +#define MAX_ALIAS_SEQUENCE_LENGTH 10 +#define PRODUCTION_ID_COUNT 125 enum ts_symbol_identifiers { sym_identifier = 1, @@ -40,7 +40,7 @@ enum ts_symbol_identifiers { anon_sym_LBRACK = 22, anon_sym_RBRACK = 23, anon_sym_this = 24, - anon_sym_DOT = 25, + aux_sym_member_expression_token1 = 25, anon_sym_QMARK = 26, anon_sym_Void = 27, anon_sym_Int = 28, @@ -54,172 +54,149 @@ enum ts_symbol_identifiers { anon_sym_else = 36, anon_sym_elseif = 37, anon_sym_new = 38, - anon_sym_TILDE = 39, - anon_sym_BANG = 40, - anon_sym_DASH = 41, - anon_sym_PLUS_PLUS = 42, - anon_sym_DASH_DASH = 43, - anon_sym_PERCENT = 44, - anon_sym_STAR = 45, - anon_sym_SLASH = 46, - anon_sym_PLUS = 47, - anon_sym_LT_LT = 48, - anon_sym_GT_GT = 49, - anon_sym_GT_GT_GT = 50, - anon_sym_AMP = 51, - anon_sym_PIPE = 52, - anon_sym_CARET = 53, - anon_sym_AMP_AMP = 54, - anon_sym_PIPE_PIPE = 55, - anon_sym_EQ_EQ = 56, - anon_sym_BANG_EQ = 57, - anon_sym_LT = 58, - anon_sym_LT_EQ = 59, - anon_sym_GT = 60, - anon_sym_GT_EQ = 61, - anon_sym_EQ_GT = 62, - anon_sym_QMARK_QMARK = 63, - anon_sym_EQ = 64, - sym__rangeOperator = 65, - anon_sym_null = 66, - anon_sym_get = 67, - anon_sym_set = 68, - anon_sym_dynamic = 69, - anon_sym_never = 70, - anon_sym_final = 71, - anon_sym_abstract = 72, - anon_sym_class = 73, - anon_sym_extends = 74, - anon_sym_implements = 75, - anon_sym_interface = 76, - anon_sym_typedef = 77, - anon_sym_function = 78, - anon_sym_var = 79, - aux_sym_integer_token1 = 80, - aux_sym_integer_token2 = 81, - aux_sym_float_token1 = 82, - aux_sym_float_token2 = 83, - anon_sym_true = 84, - anon_sym_false = 85, - aux_sym_string_token1 = 86, - aux_sym_string_token2 = 87, - aux_sym_string_token3 = 88, - aux_sym_string_token4 = 89, - anon_sym_DOLLAR_LBRACE = 90, - anon_sym_DOLLAR = 91, - anon_sym_LBRACE2 = 92, - sym_escape_sequence = 93, - sym_comment = 94, - anon_sym_break = 95, - anon_sym_catch = 96, - anon_sym_continue = 97, - anon_sym_do = 98, - anon_sym_enum = 99, - anon_sym_extern = 100, - anon_sym_for = 101, - anon_sym_inline = 102, - anon_sym_macro = 103, - anon_sym_operator = 104, - anon_sym_overload = 105, - anon_sym_override = 106, - anon_sym_private = 107, - anon_sym_public = 108, - anon_sym_return = 109, - anon_sym_static = 110, - anon_sym_try = 111, - anon_sym_untyped = 112, - anon_sym_while = 113, - sym__semicolon = 114, - sym_module = 115, - sym_preprocessor_statement = 116, - sym_package_statement = 117, - sym_import_statement = 118, - sym_using_statement = 119, - sym_throw_statement = 120, - sym__rhs_expression = 121, - sym__unaryExpression = 122, - sym_runtime_type_check_expression = 123, - sym_switch_expression = 124, - sym_case_statement = 125, - sym_cast_expression = 126, - sym_type_trace_expression = 127, - sym__parenthesized_expression = 128, - sym_range_expression = 129, - sym_subscript_expression = 130, - sym_member_expression = 131, - sym__lhs_expression = 132, - sym_builtin_type = 133, - sym__function_type_args = 134, - sym_function_type = 135, - sym_type = 136, - sym_block = 137, - sym_metadata = 138, - sym__arg_list = 139, - sym_conditional_statement = 140, - sym__call = 141, - sym__constructor_call = 142, - sym_call_expression = 143, - sym_operator = 144, - sym__unaryOperator = 145, - sym__prefixUnaryOperator = 146, - sym__postfixUnaryOperator = 147, - sym__binaryOperator = 148, - sym__arithmeticOperator = 149, - sym__bitwiseOperator = 150, - sym__logicalOperator = 151, - sym__comparisonOperator = 152, - sym__miscOperator = 153, - sym__assignmentOperator = 154, - sym__compoundAssignmentOperator = 155, - sym_declaration = 156, - sym__access_identifier = 157, - sym_access_identifiers = 158, - sym_type_param = 159, - sym_type_params = 160, - sym_class_declaration = 161, - sym_interface_declaration = 162, - sym_typedef_declaration = 163, - sym_function_declaration = 164, - sym__function_arg_list = 165, - sym_function_arg = 166, - sym_variable_declaration = 167, - sym__literal = 168, - sym_integer = 169, - sym_float = 170, - sym_bool = 171, - sym_string = 172, - sym_null = 173, - sym_array = 174, - sym_map = 175, - sym_object = 176, - sym_structure_type = 177, - sym_structure_type_pair = 178, - sym_pair = 179, - sym_interpolation = 180, - sym__interpolated_block = 181, - sym__interpolated_identifier = 182, - sym_keyword = 183, - aux_sym_module_repeat1 = 184, - aux_sym__parenthesized_expression_repeat1 = 185, - aux_sym_expression_repeat1 = 186, - aux_sym_member_expression_repeat1 = 187, - aux_sym__function_type_args_repeat1 = 188, - aux_sym__arg_list_repeat1 = 189, - aux_sym_type_params_repeat1 = 190, - aux_sym_class_declaration_repeat1 = 191, - aux_sym_class_declaration_repeat2 = 192, - aux_sym_interface_declaration_repeat1 = 193, - aux_sym_function_declaration_repeat1 = 194, - aux_sym__function_arg_list_repeat1 = 195, - aux_sym_variable_declaration_repeat1 = 196, - aux_sym_variable_declaration_repeat2 = 197, - aux_sym_string_repeat1 = 198, - aux_sym_string_repeat2 = 199, - aux_sym_array_repeat1 = 200, - aux_sym_map_repeat1 = 201, - aux_sym_structure_type_repeat1 = 202, - anon_alias_sym_type = 203, - anon_alias_sym_type_check = 204, + sym__prefixUnaryOperator = 39, + sym__eitherUnaryOperator = 40, + sym__arithmetic_operator = 41, + sym__bitwise_operator = 42, + sym__logical_operator = 43, + sym__comparison_operator = 44, + sym__map_operator = 45, + sym__null_colalese_operator = 46, + anon_sym_EQ = 47, + sym__range_operator = 48, + anon_sym_null = 49, + anon_sym_get = 50, + anon_sym_set = 51, + anon_sym_dynamic = 52, + anon_sym_never = 53, + anon_sym_LT = 54, + anon_sym_GT = 55, + anon_sym_final = 56, + anon_sym_abstract = 57, + anon_sym_class = 58, + anon_sym_extends = 59, + anon_sym_implements = 60, + anon_sym_interface = 61, + anon_sym_typedef = 62, + anon_sym_function = 63, + anon_sym_var = 64, + aux_sym_integer_token1 = 65, + aux_sym_integer_token2 = 66, + aux_sym_float_token1 = 67, + aux_sym_float_token2 = 68, + anon_sym_true = 69, + anon_sym_false = 70, + aux_sym_string_token1 = 71, + aux_sym_string_token2 = 72, + aux_sym_string_token3 = 73, + aux_sym_string_token4 = 74, + anon_sym_DOLLAR_LBRACE = 75, + anon_sym_DOLLAR = 76, + anon_sym_LBRACE2 = 77, + sym_escape_sequence = 78, + sym_comment = 79, + anon_sym_break = 80, + anon_sym_catch = 81, + anon_sym_continue = 82, + anon_sym_do = 83, + anon_sym_enum = 84, + anon_sym_extern = 85, + anon_sym_for = 86, + anon_sym_inline = 87, + anon_sym_macro = 88, + anon_sym_operator = 89, + anon_sym_overload = 90, + anon_sym_override = 91, + anon_sym_private = 92, + anon_sym_public = 93, + anon_sym_return = 94, + anon_sym_static = 95, + anon_sym_try = 96, + anon_sym_untyped = 97, + anon_sym_while = 98, + sym__semicolon = 99, + sym_module = 100, + sym_preprocessor_statement = 101, + sym_package_statement = 102, + sym_import_statement = 103, + sym_using_statement = 104, + sym_throw_statement = 105, + sym__unaryExpression = 106, + sym_runtime_type_check_expression = 107, + sym_switch_expression = 108, + sym_case_statement = 109, + sym_cast_expression = 110, + sym_type_trace_expression = 111, + sym__parenthesized_expression = 112, + sym_range_expression = 113, + sym_subscript_expression = 114, + sym_member_expression = 115, + sym__binary_expression = 116, + sym_ternary_expression = 117, + sym__lhs_expression = 118, + sym__rhs_expression = 119, + sym_builtin_type = 120, + sym__function_type_args = 121, + sym_function_type = 122, + sym_type = 123, + sym_block = 124, + sym_metadata = 125, + sym__arg_list = 126, + sym_conditional_statement = 127, + sym__call = 128, + sym__constructor_call = 129, + sym_call_expression = 130, + sym_operator = 131, + sym__unaryOperator = 132, + sym__binaryOperator = 133, + sym__assignment_operator = 134, + sym__compound_assignment_operator = 135, + sym_declaration = 136, + sym__access_identifier = 137, + sym_access_identifiers = 138, + sym__type_param = 139, + sym_type_params = 140, + sym_class_declaration = 141, + sym_interface_declaration = 142, + sym_typedef_declaration = 143, + sym_function_declaration = 144, + sym__function_arg_list = 145, + sym_function_arg = 146, + sym_variable_declaration = 147, + sym__literal = 148, + sym_integer = 149, + sym_float = 150, + sym_bool = 151, + sym_string = 152, + sym_null = 153, + sym_array = 154, + sym_map = 155, + sym_object = 156, + sym_structure_type = 157, + sym_structure_type_pair = 158, + sym_pair = 159, + sym_interpolation = 160, + sym__interpolated_block = 161, + sym__interpolated_identifier = 162, + sym_keyword = 163, + aux_sym_module_repeat1 = 164, + aux_sym__parenthesized_expression_repeat1 = 165, + aux_sym_member_expression_repeat1 = 166, + aux_sym__function_type_args_repeat1 = 167, + aux_sym__arg_list_repeat1 = 168, + aux_sym_type_params_repeat1 = 169, + aux_sym_class_declaration_repeat1 = 170, + aux_sym_class_declaration_repeat2 = 171, + aux_sym_interface_declaration_repeat1 = 172, + aux_sym_function_declaration_repeat1 = 173, + aux_sym__function_arg_list_repeat1 = 174, + aux_sym_string_repeat1 = 175, + aux_sym_string_repeat2 = 176, + aux_sym_array_repeat1 = 177, + aux_sym_map_repeat1 = 178, + aux_sym_structure_type_repeat1 = 179, + anon_alias_sym_type = 180, + anon_alias_sym_type_check = 181, }; static const char * const ts_symbol_names[] = { @@ -248,7 +225,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_LBRACK] = "[", [anon_sym_RBRACK] = "]", [anon_sym_this] = "this", - [anon_sym_DOT] = ".", + [aux_sym_member_expression_token1] = "member_expression_token1", [anon_sym_QMARK] = "\?", [anon_sym_Void] = "Void", [anon_sym_Int] = "Int", @@ -262,38 +239,23 @@ static const char * const ts_symbol_names[] = { [anon_sym_else] = "else", [anon_sym_elseif] = "keyword", [anon_sym_new] = "new", - [anon_sym_TILDE] = "~", - [anon_sym_BANG] = "!", - [anon_sym_DASH] = "-", - [anon_sym_PLUS_PLUS] = "++", - [anon_sym_DASH_DASH] = "--", - [anon_sym_PERCENT] = "%", - [anon_sym_STAR] = "*", - [anon_sym_SLASH] = "/", - [anon_sym_PLUS] = "+", - [anon_sym_LT_LT] = "<<", - [anon_sym_GT_GT] = ">>", - [anon_sym_GT_GT_GT] = ">>>", - [anon_sym_AMP] = "&", - [anon_sym_PIPE] = "|", - [anon_sym_CARET] = "^", - [anon_sym_AMP_AMP] = "&&", - [anon_sym_PIPE_PIPE] = "||", - [anon_sym_EQ_EQ] = "==", - [anon_sym_BANG_EQ] = "!=", - [anon_sym_LT] = "<", - [anon_sym_LT_EQ] = "<=", - [anon_sym_GT] = ">", - [anon_sym_GT_EQ] = ">=", - [anon_sym_EQ_GT] = "=>", - [anon_sym_QMARK_QMARK] = "\?\?", + [sym__prefixUnaryOperator] = "_prefixUnaryOperator", + [sym__eitherUnaryOperator] = "_eitherUnaryOperator", + [sym__arithmetic_operator] = "_arithmetic_operator", + [sym__bitwise_operator] = "_bitwise_operator", + [sym__logical_operator] = "_logical_operator", + [sym__comparison_operator] = "_comparison_operator", + [sym__map_operator] = "_map_operator", + [sym__null_colalese_operator] = "_null_colalese_operator", [anon_sym_EQ] = "=", - [sym__rangeOperator] = "_rangeOperator", + [sym__range_operator] = "_range_operator", [anon_sym_null] = "null", [anon_sym_get] = "keyword", [anon_sym_set] = "keyword", [anon_sym_dynamic] = "dynamic", [anon_sym_never] = "keyword", + [anon_sym_LT] = "<", + [anon_sym_GT] = ">", [anon_sym_final] = "final", [anon_sym_abstract] = "abstract", [anon_sym_class] = "class", @@ -344,7 +306,6 @@ static const char * const ts_symbol_names[] = { [sym_import_statement] = "import_statement", [sym_using_statement] = "using_statement", [sym_throw_statement] = "throw_statement", - [sym__rhs_expression] = "_rhs_expression", [sym__unaryExpression] = "_unaryExpression", [sym_runtime_type_check_expression] = "runtime_type_check_expression", [sym_switch_expression] = "switch_expression", @@ -355,7 +316,10 @@ static const char * const ts_symbol_names[] = { [sym_range_expression] = "range_expression", [sym_subscript_expression] = "subscript_expression", [sym_member_expression] = "member_expression", + [sym__binary_expression] = "_binary_expression", + [sym_ternary_expression] = "ternary_expression", [sym__lhs_expression] = "_lhs_expression", + [sym__rhs_expression] = "_rhs_expression", [sym_builtin_type] = "identifier", [sym__function_type_args] = "_function_type_args", [sym_function_type] = "function_type", @@ -369,20 +333,13 @@ static const char * const ts_symbol_names[] = { [sym_call_expression] = "call_expression", [sym_operator] = "operator", [sym__unaryOperator] = "_unaryOperator", - [sym__prefixUnaryOperator] = "_prefixUnaryOperator", - [sym__postfixUnaryOperator] = "_postfixUnaryOperator", [sym__binaryOperator] = "_binaryOperator", - [sym__arithmeticOperator] = "_arithmeticOperator", - [sym__bitwiseOperator] = "_bitwiseOperator", - [sym__logicalOperator] = "_logicalOperator", - [sym__comparisonOperator] = "_comparisonOperator", - [sym__miscOperator] = "_miscOperator", - [sym__assignmentOperator] = "_assignmentOperator", - [sym__compoundAssignmentOperator] = "_compoundAssignmentOperator", + [sym__assignment_operator] = "_assignment_operator", + [sym__compound_assignment_operator] = "_compound_assignment_operator", [sym_declaration] = "declaration", [sym__access_identifier] = "_access_identifier", [sym_access_identifiers] = "access_identifiers", - [sym_type_param] = "type_param", + [sym__type_param] = "_type_param", [sym_type_params] = "type_params", [sym_class_declaration] = "class_declaration", [sym_interface_declaration] = "interface_declaration", @@ -409,7 +366,6 @@ static const char * const ts_symbol_names[] = { [sym_keyword] = "keyword", [aux_sym_module_repeat1] = "module_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", @@ -419,8 +375,6 @@ static const char * const ts_symbol_names[] = { [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", [aux_sym_string_repeat1] = "string_repeat1", [aux_sym_string_repeat2] = "string_repeat2", [aux_sym_array_repeat1] = "array_repeat1", @@ -456,7 +410,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LBRACK] = anon_sym_LBRACK, [anon_sym_RBRACK] = anon_sym_RBRACK, [anon_sym_this] = anon_sym_this, - [anon_sym_DOT] = anon_sym_DOT, + [aux_sym_member_expression_token1] = aux_sym_member_expression_token1, [anon_sym_QMARK] = anon_sym_QMARK, [anon_sym_Void] = anon_sym_Void, [anon_sym_Int] = anon_sym_Int, @@ -470,38 +424,23 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_else] = anon_sym_else, [anon_sym_elseif] = sym_keyword, [anon_sym_new] = anon_sym_new, - [anon_sym_TILDE] = anon_sym_TILDE, - [anon_sym_BANG] = anon_sym_BANG, - [anon_sym_DASH] = anon_sym_DASH, - [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, - [anon_sym_GT_GT] = anon_sym_GT_GT, - [anon_sym_GT_GT_GT] = anon_sym_GT_GT_GT, - [anon_sym_AMP] = anon_sym_AMP, - [anon_sym_PIPE] = anon_sym_PIPE, - [anon_sym_CARET] = anon_sym_CARET, - [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, - [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, - [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, - [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, - [anon_sym_LT] = anon_sym_LT, - [anon_sym_LT_EQ] = anon_sym_LT_EQ, - [anon_sym_GT] = anon_sym_GT, - [anon_sym_GT_EQ] = anon_sym_GT_EQ, - [anon_sym_EQ_GT] = anon_sym_EQ_GT, - [anon_sym_QMARK_QMARK] = anon_sym_QMARK_QMARK, + [sym__prefixUnaryOperator] = sym__prefixUnaryOperator, + [sym__eitherUnaryOperator] = sym__eitherUnaryOperator, + [sym__arithmetic_operator] = sym__arithmetic_operator, + [sym__bitwise_operator] = sym__bitwise_operator, + [sym__logical_operator] = sym__logical_operator, + [sym__comparison_operator] = sym__comparison_operator, + [sym__map_operator] = sym__map_operator, + [sym__null_colalese_operator] = sym__null_colalese_operator, [anon_sym_EQ] = anon_sym_EQ, - [sym__rangeOperator] = sym__rangeOperator, + [sym__range_operator] = sym__range_operator, [anon_sym_null] = anon_sym_null, [anon_sym_get] = sym_keyword, [anon_sym_set] = sym_keyword, [anon_sym_dynamic] = anon_sym_dynamic, [anon_sym_never] = sym_keyword, + [anon_sym_LT] = anon_sym_LT, + [anon_sym_GT] = anon_sym_GT, [anon_sym_final] = anon_sym_final, [anon_sym_abstract] = anon_sym_abstract, [anon_sym_class] = anon_sym_class, @@ -552,7 +491,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_import_statement] = sym_import_statement, [sym_using_statement] = sym_using_statement, [sym_throw_statement] = sym_throw_statement, - [sym__rhs_expression] = sym__rhs_expression, [sym__unaryExpression] = sym__unaryExpression, [sym_runtime_type_check_expression] = sym_runtime_type_check_expression, [sym_switch_expression] = sym_switch_expression, @@ -563,7 +501,10 @@ static const TSSymbol ts_symbol_map[] = { [sym_range_expression] = sym_range_expression, [sym_subscript_expression] = sym_subscript_expression, [sym_member_expression] = sym_member_expression, + [sym__binary_expression] = sym__binary_expression, + [sym_ternary_expression] = sym_ternary_expression, [sym__lhs_expression] = sym__lhs_expression, + [sym__rhs_expression] = sym__rhs_expression, [sym_builtin_type] = sym_identifier, [sym__function_type_args] = sym__function_type_args, [sym_function_type] = sym_function_type, @@ -577,20 +518,13 @@ static const TSSymbol ts_symbol_map[] = { [sym_call_expression] = sym_call_expression, [sym_operator] = sym_operator, [sym__unaryOperator] = sym__unaryOperator, - [sym__prefixUnaryOperator] = sym__prefixUnaryOperator, - [sym__postfixUnaryOperator] = sym__postfixUnaryOperator, [sym__binaryOperator] = sym__binaryOperator, - [sym__arithmeticOperator] = sym__arithmeticOperator, - [sym__bitwiseOperator] = sym__bitwiseOperator, - [sym__logicalOperator] = sym__logicalOperator, - [sym__comparisonOperator] = sym__comparisonOperator, - [sym__miscOperator] = sym__miscOperator, - [sym__assignmentOperator] = sym__assignmentOperator, - [sym__compoundAssignmentOperator] = sym__compoundAssignmentOperator, + [sym__assignment_operator] = sym__assignment_operator, + [sym__compound_assignment_operator] = sym__compound_assignment_operator, [sym_declaration] = sym_declaration, [sym__access_identifier] = sym__access_identifier, [sym_access_identifiers] = sym_access_identifiers, - [sym_type_param] = sym_type_param, + [sym__type_param] = sym__type_param, [sym_type_params] = sym_type_params, [sym_class_declaration] = sym_class_declaration, [sym_interface_declaration] = sym_interface_declaration, @@ -617,7 +551,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_keyword] = sym_keyword, [aux_sym_module_repeat1] = aux_sym_module_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, @@ -627,8 +560,6 @@ static const TSSymbol ts_symbol_map[] = { [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, [aux_sym_string_repeat1] = aux_sym_string_repeat1, [aux_sym_string_repeat2] = aux_sym_string_repeat2, [aux_sym_array_repeat1] = aux_sym_array_repeat1, @@ -739,8 +670,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_DOT] = { - .visible = true, + [aux_sym_member_expression_token1] = { + .visible = false, .named = false, }, [anon_sym_QMARK] = { @@ -795,111 +726,43 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_TILDE] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS_PLUS] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_PERCENT] = { - .visible = true, - .named = false, - }, - [anon_sym_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_SLASH] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_GT_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE] = { - .visible = true, - .named = false, - }, - [anon_sym_CARET] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP_AMP] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE_PIPE] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ_EQ] = { - .visible = true, - .named = false, + [sym__prefixUnaryOperator] = { + .visible = false, + .named = true, }, - [anon_sym_BANG_EQ] = { - .visible = true, - .named = false, + [sym__eitherUnaryOperator] = { + .visible = false, + .named = true, }, - [anon_sym_LT] = { - .visible = true, - .named = false, + [sym__arithmetic_operator] = { + .visible = false, + .named = true, }, - [anon_sym_LT_EQ] = { - .visible = true, - .named = false, + [sym__bitwise_operator] = { + .visible = false, + .named = true, }, - [anon_sym_GT] = { - .visible = true, - .named = false, + [sym__logical_operator] = { + .visible = false, + .named = true, }, - [anon_sym_GT_EQ] = { - .visible = true, - .named = false, + [sym__comparison_operator] = { + .visible = false, + .named = true, }, - [anon_sym_EQ_GT] = { - .visible = true, - .named = false, + [sym__map_operator] = { + .visible = false, + .named = true, }, - [anon_sym_QMARK_QMARK] = { - .visible = true, - .named = false, + [sym__null_colalese_operator] = { + .visible = false, + .named = true, }, [anon_sym_EQ] = { .visible = true, .named = false, }, - [sym__rangeOperator] = { + [sym__range_operator] = { .visible = false, .named = true, }, @@ -923,6 +786,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [anon_sym_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT] = { + .visible = true, + .named = false, + }, [anon_sym_final] = { .visible = true, .named = false, @@ -1123,10 +994,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__rhs_expression] = { - .visible = false, - .named = true, - }, [sym__unaryExpression] = { .visible = false, .named = true, @@ -1167,10 +1034,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__binary_expression] = { + .visible = false, + .named = true, + }, + [sym_ternary_expression] = { + .visible = true, + .named = true, + }, [sym__lhs_expression] = { .visible = false, .named = true, }, + [sym__rhs_expression] = { + .visible = false, + .named = true, + }, [sym_builtin_type] = { .visible = true, .named = true, @@ -1223,43 +1102,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym__prefixUnaryOperator] = { - .visible = false, - .named = true, - }, - [sym__postfixUnaryOperator] = { - .visible = false, - .named = true, - }, [sym__binaryOperator] = { .visible = false, .named = true, }, - [sym__arithmeticOperator] = { - .visible = false, - .named = true, - }, - [sym__bitwiseOperator] = { - .visible = false, - .named = true, - }, - [sym__logicalOperator] = { - .visible = false, - .named = true, - }, - [sym__comparisonOperator] = { - .visible = false, - .named = true, - }, - [sym__miscOperator] = { - .visible = false, - .named = true, - }, - [sym__assignmentOperator] = { + [sym__assignment_operator] = { .visible = false, .named = true, }, - [sym__compoundAssignmentOperator] = { + [sym__compound_assignment_operator] = { .visible = false, .named = true, }, @@ -1276,8 +1127,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_type_param] = { - .visible = true, + [sym__type_param] = { + .visible = false, .named = true, }, [sym_type_params] = { @@ -1384,10 +1235,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_expression_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_member_expression_repeat1] = { .visible = false, .named = false, @@ -1424,14 +1271,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_variable_declaration_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_variable_declaration_repeat2] = { - .visible = false, - .named = false, - }, [aux_sym_string_repeat1] = { .visible = false, .named = false, @@ -1466,16 +1305,19 @@ enum ts_field_identifiers { field_arguments_list = 1, field_body = 2, field_built_in = 3, - field_index = 4, - field_interface_name = 5, - field_literal = 6, - field_member = 7, - field_name = 8, - field_object = 9, - field_return_type = 10, - field_super_class_name = 11, - field_type = 12, - field_type_name = 13, + field_condition = 4, + field_false_result = 5, + field_index = 6, + field_interface_name = 7, + field_literal = 8, + field_member = 9, + field_name = 10, + field_object = 11, + field_return_type = 12, + field_super_class_name = 13, + field_true_result = 14, + field_type = 15, + field_type_name = 16, }; static const char * const ts_field_names[] = { @@ -1483,6 +1325,8 @@ static const char * const ts_field_names[] = { [field_arguments_list] = "arguments_list", [field_body] = "body", [field_built_in] = "built_in", + [field_condition] = "condition", + [field_false_result] = "false_result", [field_index] = "index", [field_interface_name] = "interface_name", [field_literal] = "literal", @@ -1491,6 +1335,7 @@ static const char * const ts_field_names[] = { [field_object] = "object", [field_return_type] = "return_type", [field_super_class_name] = "super_class_name", + [field_true_result] = "true_result", [field_type] = "type", [field_type_name] = "type_name", }; @@ -1500,126 +1345,120 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [3] = {.index = 2, .length = 1}, [4] = {.index = 3, .length = 2}, [5] = {.index = 5, .length = 2}, - [6] = {.index = 7, .length = 2}, - [7] = {.index = 2, .length = 1}, - [9] = {.index = 9, .length = 1}, - [10] = {.index = 10, .length = 2}, - [11] = {.index = 12, .length = 2}, - [12] = {.index = 2, .length = 1}, - [14] = {.index = 10, .length = 2}, - [15] = {.index = 14, .length = 2}, - [16] = {.index = 16, .length = 2}, - [17] = {.index = 18, .length = 1}, - [18] = {.index = 19, .length = 1}, - [19] = {.index = 20, .length = 2}, - [20] = {.index = 22, .length = 2}, - [21] = {.index = 3, .length = 2}, - [22] = {.index = 24, .length = 2}, - [23] = {.index = 26, .length = 1}, - [24] = {.index = 27, .length = 2}, - [25] = {.index = 29, .length = 3}, - [26] = {.index = 32, .length = 2}, - [27] = {.index = 34, .length = 1}, - [28] = {.index = 27, .length = 2}, - [29] = {.index = 35, .length = 1}, - [30] = {.index = 22, .length = 2}, - [31] = {.index = 36, .length = 2}, - [32] = {.index = 38, .length = 1}, - [33] = {.index = 24, .length = 2}, - [34] = {.index = 38, .length = 1}, - [35] = {.index = 3, .length = 2}, - [36] = {.index = 39, .length = 2}, - [37] = {.index = 41, .length = 3}, - [38] = {.index = 44, .length = 2}, - [39] = {.index = 46, .length = 3}, - [40] = {.index = 49, .length = 3}, - [41] = {.index = 52, .length = 2}, - [42] = {.index = 54, .length = 2}, - [43] = {.index = 52, .length = 2}, - [44] = {.index = 54, .length = 2}, - [45] = {.index = 56, .length = 2}, - [46] = {.index = 58, .length = 2}, - [47] = {.index = 39, .length = 2}, - [48] = {.index = 41, .length = 3}, - [49] = {.index = 39, .length = 2}, - [50] = {.index = 60, .length = 1}, - [51] = {.index = 60, .length = 1}, - [53] = {.index = 61, .length = 1}, - [54] = {.index = 62, .length = 1}, + [7] = {.index = 7, .length = 2}, + [9] = {.index = 2, .length = 1}, + [11] = {.index = 9, .length = 1}, + [12] = {.index = 10, .length = 2}, + [13] = {.index = 12, .length = 2}, + [14] = {.index = 2, .length = 1}, + [16] = {.index = 10, .length = 2}, + [17] = {.index = 14, .length = 1}, + [18] = {.index = 15, .length = 1}, + [19] = {.index = 16, .length = 2}, + [20] = {.index = 18, .length = 2}, + [21] = {.index = 20, .length = 2}, + [22] = {.index = 3, .length = 2}, + [23] = {.index = 22, .length = 2}, + [24] = {.index = 24, .length = 1}, + [25] = {.index = 25, .length = 2}, + [26] = {.index = 27, .length = 3}, + [27] = {.index = 30, .length = 2}, + [28] = {.index = 32, .length = 1}, + [29] = {.index = 25, .length = 2}, + [30] = {.index = 33, .length = 1}, + [31] = {.index = 34, .length = 1}, + [32] = {.index = 22, .length = 2}, + [33] = {.index = 34, .length = 1}, + [34] = {.index = 3, .length = 2}, + [35] = {.index = 35, .length = 2}, + [36] = {.index = 37, .length = 3}, + [37] = {.index = 40, .length = 2}, + [38] = {.index = 42, .length = 3}, + [39] = {.index = 45, .length = 3}, + [40] = {.index = 48, .length = 2}, + [41] = {.index = 50, .length = 2}, + [42] = {.index = 48, .length = 2}, + [43] = {.index = 50, .length = 2}, + [44] = {.index = 52, .length = 3}, + [46] = {.index = 55, .length = 1}, + [47] = {.index = 56, .length = 2}, + [48] = {.index = 35, .length = 2}, + [49] = {.index = 37, .length = 3}, + [50] = {.index = 35, .length = 2}, + [51] = {.index = 58, .length = 1}, + [52] = {.index = 58, .length = 1}, + [53] = {.index = 59, .length = 1}, + [54] = {.index = 60, .length = 3}, [55] = {.index = 63, .length = 3}, - [56] = {.index = 66, .length = 3}, - [57] = {.index = 69, .length = 2}, - [58] = {.index = 71, .length = 3}, - [59] = {.index = 74, .length = 4}, - [60] = {.index = 78, .length = 3}, - [61] = {.index = 34, .length = 1}, - [62] = {.index = 81, .length = 2}, - [63] = {.index = 83, .length = 3}, - [64] = {.index = 81, .length = 2}, - [65] = {.index = 83, .length = 3}, - [66] = {.index = 86, .length = 2}, - [67] = {.index = 88, .length = 3}, - [68] = {.index = 91, .length = 2}, + [56] = {.index = 66, .length = 2}, + [57] = {.index = 68, .length = 3}, + [58] = {.index = 71, .length = 4}, + [59] = {.index = 75, .length = 3}, + [60] = {.index = 32, .length = 1}, + [61] = {.index = 78, .length = 2}, + [62] = {.index = 80, .length = 3}, + [63] = {.index = 78, .length = 2}, + [64] = {.index = 80, .length = 3}, + [65] = {.index = 83, .length = 2}, + [66] = {.index = 85, .length = 3}, + [67] = {.index = 88, .length = 2}, + [68] = {.index = 60, .length = 3}, [69] = {.index = 63, .length = 3}, - [70] = {.index = 66, .length = 3}, - [71] = {.index = 93, .length = 2}, - [72] = {.index = 95, .length = 2}, - [73] = {.index = 93, .length = 2}, - [74] = {.index = 95, .length = 2}, - [75] = {.index = 86, .length = 2}, - [76] = {.index = 86, .length = 2}, - [77] = {.index = 97, .length = 3}, - [78] = {.index = 100, .length = 4}, - [79] = {.index = 104, .length = 3}, - [80] = {.index = 107, .length = 2}, - [81] = {.index = 109, .length = 4}, - [82] = {.index = 113, .length = 3}, - [83] = {.index = 116, .length = 4}, - [84] = {.index = 34, .length = 1}, - [85] = {.index = 120, .length = 3}, - [86] = {.index = 120, .length = 3}, - [87] = {.index = 123, .length = 3}, - [88] = {.index = 126, .length = 3}, - [89] = {.index = 129, .length = 2}, - [90] = {.index = 97, .length = 3}, - [91] = {.index = 100, .length = 4}, - [92] = {.index = 104, .length = 3}, - [93] = {.index = 131, .length = 2}, - [94] = {.index = 133, .length = 3}, + [70] = {.index = 90, .length = 2}, + [71] = {.index = 92, .length = 2}, + [72] = {.index = 90, .length = 2}, + [73] = {.index = 92, .length = 2}, + [74] = {.index = 83, .length = 2}, + [75] = {.index = 83, .length = 2}, + [76] = {.index = 94, .length = 3}, + [77] = {.index = 97, .length = 4}, + [78] = {.index = 101, .length = 3}, + [79] = {.index = 104, .length = 4}, + [80] = {.index = 108, .length = 3}, + [81] = {.index = 111, .length = 4}, + [82] = {.index = 32, .length = 1}, + [83] = {.index = 115, .length = 3}, + [84] = {.index = 115, .length = 3}, + [85] = {.index = 118, .length = 3}, + [86] = {.index = 121, .length = 3}, + [87] = {.index = 124, .length = 2}, + [88] = {.index = 94, .length = 3}, + [89] = {.index = 97, .length = 4}, + [90] = {.index = 101, .length = 3}, + [91] = {.index = 126, .length = 2}, + [92] = {.index = 128, .length = 3}, + [93] = {.index = 126, .length = 2}, + [94] = {.index = 128, .length = 3}, [95] = {.index = 131, .length = 2}, - [96] = {.index = 133, .length = 3}, - [97] = {.index = 136, .length = 2}, - [98] = {.index = 138, .length = 2}, - [99] = {.index = 140, .length = 2}, - [100] = {.index = 138, .length = 2}, - [101] = {.index = 140, .length = 2}, - [102] = {.index = 142, .length = 4}, - [103] = {.index = 146, .length = 3}, - [104] = {.index = 149, .length = 4}, - [105] = {.index = 153, .length = 4}, - [106] = {.index = 157, .length = 3}, - [107] = {.index = 160, .length = 4}, - [108] = {.index = 164, .length = 3}, - [109] = {.index = 167, .length = 2}, - [110] = {.index = 142, .length = 4}, - [111] = {.index = 146, .length = 3}, - [112] = {.index = 149, .length = 4}, - [113] = {.index = 169, .length = 3}, + [96] = {.index = 133, .length = 2}, + [97] = {.index = 135, .length = 2}, + [98] = {.index = 133, .length = 2}, + [99] = {.index = 135, .length = 2}, + [100] = {.index = 137, .length = 4}, + [101] = {.index = 141, .length = 3}, + [102] = {.index = 144, .length = 4}, + [103] = {.index = 148, .length = 4}, + [104] = {.index = 152, .length = 3}, + [105] = {.index = 155, .length = 4}, + [106] = {.index = 159, .length = 3}, + [107] = {.index = 137, .length = 4}, + [108] = {.index = 141, .length = 3}, + [109] = {.index = 144, .length = 4}, + [110] = {.index = 162, .length = 3}, + [111] = {.index = 162, .length = 3}, + [112] = {.index = 165, .length = 2}, + [113] = {.index = 167, .length = 2}, [114] = {.index = 169, .length = 3}, - [115] = {.index = 172, .length = 2}, - [116] = {.index = 174, .length = 2}, - [117] = {.index = 176, .length = 3}, - [118] = {.index = 174, .length = 2}, - [119] = {.index = 176, .length = 3}, - [120] = {.index = 179, .length = 4}, - [121] = {.index = 183, .length = 4}, + [115] = {.index = 167, .length = 2}, + [116] = {.index = 169, .length = 3}, + [117] = {.index = 172, .length = 4}, + [118] = {.index = 176, .length = 4}, + [119] = {.index = 180, .length = 3}, + [120] = {.index = 183, .length = 4}, + [121] = {.index = 172, .length = 4}, [122] = {.index = 187, .length = 3}, - [123] = {.index = 190, .length = 4}, - [124] = {.index = 179, .length = 4}, - [125] = {.index = 194, .length = 2}, - [126] = {.index = 196, .length = 3}, - [127] = {.index = 196, .length = 3}, - [128] = {.index = 199, .length = 4}, + [123] = {.index = 187, .length = 3}, + [124] = {.index = 190, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1646,265 +1485,251 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_body, 2}, {field_name, 1}, [14] = + {field_type_name, 0}, + [15] = + {field_built_in, 0}, + [16] = {field_arguments_list, 2}, {field_object, 0}, - [16] = + [18] = {field_literal, 0}, {field_member, 2, .inherited = true}, - [18] = - {field_type_name, 0}, - [19] = - {field_built_in, 0}, [20] = {field_member, 0, .inherited = true}, {field_member, 1, .inherited = true}, [22] = - {field_member, 3, .inherited = true}, - {field_object, 0}, - [24] = {field_body, 3}, {field_name, 2}, - [26] = + [24] = {field_interface_name, 1}, - [27] = + [25] = {field_body, 3}, {field_name, 1}, - [29] = + [27] = {field_body, 3}, {field_interface_name, 2, .inherited = true}, {field_name, 1}, - [32] = + [30] = {field_interface_name, 0, .inherited = true}, {field_interface_name, 1, .inherited = true}, - [34] = + [32] = {field_name, 0}, - [35] = + [33] = {field_index, 2}, - [36] = - {field_literal, 0}, - {field_member, 3, .inherited = true}, - [38] = + [34] = {field_name, 2}, - [39] = + [35] = {field_body, 4}, {field_name, 2}, - [41] = + [37] = {field_body, 4}, {field_interface_name, 3, .inherited = true}, {field_name, 2}, - [44] = + [40] = {field_name, 1}, {field_type, 3}, - [46] = + [42] = {field_body, 4}, {field_name, 1}, {field_super_class_name, 3}, - [49] = + [45] = {field_body, 4}, {field_interface_name, 3, .inherited = true}, {field_name, 1}, - [52] = + [48] = {field_body, 4}, {field_name, 1}, - [54] = + [50] = {field_name, 1}, {field_return_type, 4}, + [52] = + {field_condition, 0}, + {field_false_result, 4}, + {field_true_result, 2}, + [55] = + {field_return_type, 2}, [56] = - {field_index, 2}, - {field_index, 3}, - [58] = {field_body, 4}, {field_name, 3}, - [60] = + [58] = {field_name, 3}, - [61] = - {field_return_type, 2}, - [62] = + [59] = {field_type, 4}, - [63] = + [60] = {field_body, 5}, {field_name, 2}, {field_super_class_name, 4}, - [66] = + [63] = {field_body, 5}, {field_interface_name, 4, .inherited = true}, {field_name, 2}, - [69] = + [66] = {field_name, 1}, {field_type, 4}, - [71] = + [68] = {field_body, 5}, {field_name, 1}, {field_super_class_name, 3}, - [74] = + [71] = {field_body, 5}, {field_interface_name, 4, .inherited = true}, {field_name, 1}, {field_super_class_name, 3}, - [78] = + [75] = {field_body, 5}, {field_name, 1}, {field_super_class_name, 4}, - [81] = + [78] = {field_name, 1}, {field_return_type, 5}, - [83] = + [80] = {field_body, 5}, {field_name, 1}, {field_return_type, 4}, - [86] = + [83] = {field_body, 5}, {field_name, 3}, - [88] = + [85] = {field_body, 5}, {field_interface_name, 4, .inherited = true}, {field_name, 3}, - [91] = + [88] = {field_name, 2}, {field_type, 4}, - [93] = + [90] = {field_body, 5}, {field_name, 2}, - [95] = + [92] = {field_name, 2}, {field_return_type, 5}, - [97] = + [94] = {field_body, 6}, {field_name, 2}, {field_super_class_name, 4}, - [100] = + [97] = {field_body, 6}, {field_interface_name, 5, .inherited = true}, {field_name, 2}, {field_super_class_name, 4}, - [104] = + [101] = {field_body, 6}, {field_name, 2}, {field_super_class_name, 5}, - [107] = - {field_name, 1}, - {field_type, 5}, - [109] = + [104] = {field_body, 6}, {field_interface_name, 5, .inherited = true}, {field_name, 1}, {field_super_class_name, 3}, - [113] = + [108] = {field_body, 6}, {field_name, 1}, {field_super_class_name, 4}, - [116] = + [111] = {field_body, 6}, {field_interface_name, 5, .inherited = true}, {field_name, 1}, {field_super_class_name, 4}, - [120] = + [115] = {field_body, 6}, {field_name, 1}, {field_return_type, 5}, - [123] = + [118] = {field_body, 6}, {field_name, 3}, {field_super_class_name, 5}, - [126] = + [121] = {field_body, 6}, {field_interface_name, 5, .inherited = true}, {field_name, 3}, - [129] = + [124] = {field_name, 2}, {field_type, 5}, - [131] = + [126] = {field_name, 2}, {field_return_type, 6}, - [133] = + [128] = {field_body, 6}, {field_name, 2}, {field_return_type, 5}, - [136] = + [131] = {field_name, 3}, {field_type, 5}, - [138] = + [133] = {field_body, 6}, {field_name, 3}, - [140] = + [135] = {field_name, 3}, {field_return_type, 6}, - [142] = + [137] = {field_body, 7}, {field_interface_name, 6, .inherited = true}, {field_name, 2}, {field_super_class_name, 4}, - [146] = + [141] = {field_body, 7}, {field_name, 2}, {field_super_class_name, 5}, - [149] = + [144] = {field_body, 7}, {field_interface_name, 6, .inherited = true}, {field_name, 2}, {field_super_class_name, 5}, - [153] = + [148] = {field_body, 7}, {field_interface_name, 6, .inherited = true}, {field_name, 1}, {field_super_class_name, 4}, - [157] = + [152] = {field_body, 7}, {field_name, 3}, {field_super_class_name, 5}, - [160] = + [155] = {field_body, 7}, {field_interface_name, 6, .inherited = true}, {field_name, 3}, {field_super_class_name, 5}, - [164] = + [159] = {field_body, 7}, {field_name, 3}, {field_super_class_name, 6}, - [167] = - {field_name, 2}, - {field_type, 6}, - [169] = + [162] = {field_body, 7}, {field_name, 2}, {field_return_type, 6}, - [172] = + [165] = {field_name, 3}, {field_type, 6}, - [174] = + [167] = {field_name, 3}, {field_return_type, 7}, - [176] = + [169] = {field_body, 7}, {field_name, 3}, {field_return_type, 6}, - [179] = + [172] = {field_body, 8}, {field_interface_name, 7, .inherited = true}, {field_name, 2}, {field_super_class_name, 5}, - [183] = + [176] = {field_body, 8}, {field_interface_name, 7, .inherited = true}, {field_name, 3}, {field_super_class_name, 5}, - [187] = + [180] = {field_body, 8}, {field_name, 3}, {field_super_class_name, 6}, - [190] = + [183] = {field_body, 8}, {field_interface_name, 7, .inherited = true}, {field_name, 3}, {field_super_class_name, 6}, - [194] = - {field_name, 3}, - {field_type, 7}, - [196] = + [187] = {field_body, 8}, {field_name, 3}, {field_return_type, 7}, - [199] = + [190] = {field_body, 9}, {field_interface_name, 8, .inherited = true}, {field_name, 3}, @@ -1922,39 +1747,38 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [5] = { [0] = sym_keyword, }, - [7] = { - [0] = sym_keyword, + [6] = { + [0] = sym_operator, }, [8] = { - [1] = anon_alias_sym_type_check, + [1] = sym_operator, }, - [10] = { + [9] = { [0] = sym_keyword, }, - [11] = { - [0] = sym_keyword, + [10] = { + [1] = anon_alias_sym_type_check, }, [12] = { [0] = sym_keyword, - [1] = sym_identifier, }, [13] = { - [1] = sym_keyword, - }, - [20] = { [0] = sym_keyword, - [1] = sym_operator, }, - [21] = { + [14] = { [0] = sym_keyword, - [2] = sym_keyword, + [1] = sym_identifier, + }, + [15] = { + [1] = sym_keyword, }, [22] = { [0] = sym_keyword, - [1] = sym_keyword, + [2] = sym_keyword, }, [23] = { [0] = sym_keyword, + [1] = sym_keyword, }, [24] = { [0] = sym_keyword, @@ -1962,29 +1786,30 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [25] = { [0] = sym_keyword, }, - [28] = { + [26] = { [0] = sym_keyword, - [1] = sym_identifier, }, - [30] = { - [1] = sym_operator, + [29] = { + [0] = sym_keyword, + [1] = sym_identifier, }, [31] = { - [1] = sym_operator, + [1] = sym_keyword, }, [32] = { [1] = sym_keyword, }, [33] = { [1] = sym_keyword, + [2] = sym_identifier, }, [34] = { - [1] = sym_keyword, - [2] = sym_identifier, + [0] = sym_keyword, + [3] = sym_keyword, }, [35] = { [0] = sym_keyword, - [3] = sym_keyword, + [1] = sym_keyword, }, [36] = { [0] = sym_keyword, @@ -1992,17 +1817,17 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE }, [37] = { [0] = sym_keyword, - [1] = sym_keyword, }, [38] = { [0] = sym_keyword, + [2] = sym_keyword, }, [39] = { [0] = sym_keyword, - [2] = sym_keyword, }, [40] = { [0] = sym_keyword, + [1] = sym_identifier, }, [41] = { [0] = sym_keyword, @@ -2010,52 +1835,56 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE }, [42] = { [0] = sym_keyword, - [1] = sym_identifier, }, [43] = { [0] = sym_keyword, }, [44] = { - [0] = sym_keyword, + [1] = sym_operator, + [3] = sym_operator, }, - [46] = { - [1] = sym_keyword, - [2] = sym_keyword, + [45] = { + [1] = anon_alias_sym_type, }, [47] = { [1] = sym_keyword, + [2] = sym_keyword, }, [48] = { [1] = sym_keyword, }, [49] = { [1] = sym_keyword, - [2] = sym_identifier, }, [50] = { - [2] = sym_keyword, + [1] = sym_keyword, + [2] = sym_identifier, }, [51] = { [2] = sym_keyword, - [3] = sym_identifier, }, [52] = { - [1] = anon_alias_sym_type, + [2] = sym_keyword, + [3] = sym_identifier, + }, + [53] = { + [0] = sym_keyword, }, [54] = { [0] = sym_keyword, + [1] = sym_keyword, + [3] = sym_keyword, }, [55] = { [0] = sym_keyword, [1] = sym_keyword, - [3] = sym_keyword, }, [56] = { [0] = sym_keyword, - [1] = sym_keyword, }, [57] = { [0] = sym_keyword, + [2] = sym_keyword, }, [58] = { [0] = sym_keyword, @@ -2063,14 +1892,14 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE }, [59] = { [0] = sym_keyword, - [2] = sym_keyword, + [3] = sym_keyword, }, [60] = { - [0] = sym_keyword, - [3] = sym_keyword, + [2] = sym_type, }, [61] = { - [2] = sym_type, + [0] = sym_keyword, + [1] = sym_identifier, }, [62] = { [0] = sym_keyword, @@ -2078,13 +1907,13 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE }, [63] = { [0] = sym_keyword, - [1] = sym_identifier, }, [64] = { [0] = sym_keyword, }, [65] = { - [0] = sym_keyword, + [1] = sym_keyword, + [2] = sym_keyword, }, [66] = { [1] = sym_keyword, @@ -2092,17 +1921,17 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE }, [67] = { [1] = sym_keyword, - [2] = sym_keyword, }, [68] = { [1] = sym_keyword, + [3] = sym_keyword, }, [69] = { [1] = sym_keyword, - [3] = sym_keyword, }, [70] = { [1] = sym_keyword, + [2] = sym_identifier, }, [71] = { [1] = sym_keyword, @@ -2110,224 +1939,211 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE }, [72] = { [1] = sym_keyword, - [2] = sym_identifier, }, [73] = { [1] = sym_keyword, }, [74] = { - [1] = sym_keyword, - }, - [75] = { [2] = sym_keyword, [3] = sym_identifier, }, - [76] = { + [75] = { [2] = sym_keyword, }, - [77] = { + [76] = { [0] = sym_keyword, [1] = sym_keyword, [3] = sym_keyword, }, - [78] = { + [77] = { [0] = sym_keyword, [1] = sym_keyword, [3] = sym_keyword, }, - [79] = { + [78] = { [0] = sym_keyword, [1] = sym_keyword, [4] = sym_keyword, }, - [80] = { - [0] = sym_keyword, - }, - [81] = { + [79] = { [0] = sym_keyword, [2] = sym_keyword, }, - [82] = { + [80] = { [0] = sym_keyword, [3] = sym_keyword, }, - [83] = { + [81] = { [0] = sym_keyword, [3] = sym_keyword, }, - [84] = { + [82] = { [3] = sym_type, }, - [85] = { + [83] = { [0] = sym_keyword, [1] = sym_identifier, }, - [86] = { + [84] = { [0] = sym_keyword, }, - [87] = { + [85] = { [1] = sym_keyword, [2] = sym_keyword, [4] = sym_keyword, }, - [88] = { + [86] = { [1] = sym_keyword, [2] = sym_keyword, }, - [89] = { + [87] = { [1] = sym_keyword, }, - [90] = { + [88] = { [1] = sym_keyword, [3] = sym_keyword, }, - [91] = { + [89] = { [1] = sym_keyword, [3] = sym_keyword, }, - [92] = { + [90] = { [1] = sym_keyword, [4] = sym_keyword, }, - [93] = { + [91] = { [1] = sym_keyword, [2] = sym_identifier, }, - [94] = { + [92] = { [1] = sym_keyword, [2] = sym_identifier, }, - [95] = { + [93] = { [1] = sym_keyword, }, - [96] = { + [94] = { [1] = sym_keyword, }, - [97] = { + [95] = { [2] = sym_keyword, }, - [98] = { + [96] = { [2] = sym_keyword, [3] = sym_identifier, }, - [99] = { + [97] = { [2] = sym_keyword, [3] = sym_identifier, }, - [100] = { + [98] = { [2] = sym_keyword, }, - [101] = { + [99] = { [2] = sym_keyword, }, - [102] = { + [100] = { [0] = sym_keyword, [1] = sym_keyword, [3] = sym_keyword, }, - [103] = { + [101] = { [0] = sym_keyword, [1] = sym_keyword, [4] = sym_keyword, }, - [104] = { + [102] = { [0] = sym_keyword, [1] = sym_keyword, [4] = sym_keyword, }, - [105] = { + [103] = { [0] = sym_keyword, [3] = sym_keyword, }, - [106] = { + [104] = { [1] = sym_keyword, [2] = sym_keyword, [4] = sym_keyword, }, - [107] = { + [105] = { [1] = sym_keyword, [2] = sym_keyword, [4] = sym_keyword, }, - [108] = { + [106] = { [1] = sym_keyword, [2] = sym_keyword, [5] = sym_keyword, }, - [109] = { - [1] = sym_keyword, - }, - [110] = { + [107] = { [1] = sym_keyword, [3] = sym_keyword, }, - [111] = { + [108] = { [1] = sym_keyword, [4] = sym_keyword, }, - [112] = { + [109] = { [1] = sym_keyword, [4] = sym_keyword, }, - [113] = { + [110] = { [1] = sym_keyword, [2] = sym_identifier, }, - [114] = { + [111] = { [1] = sym_keyword, }, - [115] = { + [112] = { [2] = sym_keyword, }, - [116] = { + [113] = { [2] = sym_keyword, [3] = sym_identifier, }, - [117] = { + [114] = { [2] = sym_keyword, [3] = sym_identifier, }, - [118] = { + [115] = { [2] = sym_keyword, }, - [119] = { + [116] = { [2] = sym_keyword, }, - [120] = { + [117] = { [0] = sym_keyword, [1] = sym_keyword, [4] = sym_keyword, }, - [121] = { + [118] = { [1] = sym_keyword, [2] = sym_keyword, [4] = sym_keyword, }, - [122] = { + [119] = { [1] = sym_keyword, [2] = sym_keyword, [5] = sym_keyword, }, - [123] = { + [120] = { [1] = sym_keyword, [2] = sym_keyword, [5] = sym_keyword, }, - [124] = { + [121] = { [1] = sym_keyword, [4] = sym_keyword, }, - [125] = { - [2] = sym_keyword, - }, - [126] = { + [122] = { [2] = sym_keyword, [3] = sym_identifier, }, - [127] = { + [123] = { [2] = sym_keyword, }, - [128] = { + [124] = { [1] = sym_keyword, [2] = sym_keyword, [5] = sym_keyword, @@ -2342,6 +2158,9 @@ static const uint16_t ts_non_terminal_alias_map[] = { sym_type, anon_alias_sym_type, sym_type, + sym__binaryOperator, 2, + sym__binaryOperator, + sym_operator, sym_structure_type_pair, 2, sym_pair, anon_alias_sym_type_check, @@ -2355,10 +2174,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 3, [4] = 4, [5] = 5, - [6] = 3, - [7] = 5, - [8] = 8, - [9] = 8, + [6] = 6, + [7] = 6, + [8] = 5, + [9] = 4, [10] = 10, [11] = 11, [12] = 12, @@ -2366,29 +2185,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [14] = 14, [15] = 15, [16] = 16, - [17] = 17, - [18] = 18, - [19] = 19, - [20] = 20, + [17] = 15, + [18] = 16, + [19] = 13, + [20] = 14, [21] = 21, - [22] = 14, - [23] = 19, - [24] = 21, - [25] = 25, - [26] = 20, - [27] = 19, - [28] = 18, - [29] = 15, - [30] = 17, + [22] = 13, + [23] = 15, + [24] = 16, + [25] = 14, + [26] = 26, + [27] = 26, + [28] = 28, + [29] = 29, + [30] = 30, [31] = 31, - [32] = 15, - [33] = 16, - [34] = 16, - [35] = 20, + [32] = 32, + [33] = 33, + [34] = 34, + [35] = 35, [36] = 36, - [37] = 18, - [38] = 21, - [39] = 17, + [37] = 37, + [38] = 38, + [39] = 39, [40] = 40, [41] = 41, [42] = 42, @@ -2398,7 +2217,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [46] = 46, [47] = 47, [48] = 48, - [49] = 36, + [49] = 49, [50] = 50, [51] = 51, [52] = 52, @@ -2418,22 +2237,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [66] = 66, [67] = 67, [68] = 68, - [69] = 57, - [70] = 57, + [69] = 69, + [70] = 70, [71] = 71, [72] = 72, [73] = 73, - [74] = 74, - [75] = 75, - [76] = 76, + [74] = 33, + [75] = 34, + [76] = 35, [77] = 77, [78] = 78, [79] = 79, [80] = 80, [81] = 81, - [82] = 82, - [83] = 83, - [84] = 84, + [82] = 39, + [83] = 31, + [84] = 32, [85] = 85, [86] = 86, [87] = 87, @@ -2442,37 +2261,37 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [90] = 90, [91] = 91, [92] = 92, - [93] = 93, - [94] = 94, + [93] = 60, + [94] = 51, [95] = 95, [96] = 96, [97] = 97, [98] = 98, [99] = 99, [100] = 100, - [101] = 60, - [102] = 72, - [103] = 52, - [104] = 54, - [105] = 105, - [106] = 51, + [101] = 101, + [102] = 102, + [103] = 103, + [104] = 102, + [105] = 26, + [106] = 106, [107] = 107, [108] = 108, - [109] = 53, + [109] = 109, [110] = 110, [111] = 111, - [112] = 107, + [112] = 112, [113] = 113, [114] = 114, [115] = 115, [116] = 116, - [117] = 108, + [117] = 98, [118] = 118, [119] = 119, - [120] = 120, - [121] = 121, + [120] = 71, + [121] = 92, [122] = 122, - [123] = 113, + [123] = 123, [124] = 124, [125] = 125, [126] = 126, @@ -2485,11 +2304,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [133] = 133, [134] = 134, [135] = 135, - [136] = 136, + [136] = 103, [137] = 137, [138] = 138, [139] = 139, - [140] = 135, + [140] = 140, [141] = 141, [142] = 142, [143] = 143, @@ -2544,7 +2363,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [192] = 192, [193] = 193, [194] = 194, - [195] = 195, + [195] = 172, [196] = 196, [197] = 197, [198] = 198, @@ -2556,7 +2375,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [204] = 204, [205] = 205, [206] = 206, - [207] = 166, + [207] = 207, [208] = 208, [209] = 209, [210] = 210, @@ -2594,7 +2413,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [242] = 242, [243] = 243, [244] = 244, - [245] = 178, + [245] = 245, [246] = 246, [247] = 247, [248] = 248, @@ -2604,7 +2423,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [252] = 252, [253] = 253, [254] = 254, - [255] = 167, + [255] = 255, [256] = 256, [257] = 257, [258] = 258, @@ -2612,7 +2431,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [260] = 260, [261] = 261, [262] = 262, - [263] = 263, + [263] = 168, [264] = 264, [265] = 265, [266] = 266, @@ -2647,757 +2466,757 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [295] = 295, [296] = 296, [297] = 297, - [298] = 298, + [298] = 297, [299] = 299, - [300] = 300, + [300] = 299, [301] = 301, [302] = 302, [303] = 303, [304] = 304, [305] = 305, [306] = 306, - [307] = 307, - [308] = 308, + [307] = 304, + [308] = 305, [309] = 309, - [310] = 310, - [311] = 311, + [310] = 305, + [311] = 304, [312] = 312, [313] = 313, [314] = 314, - [315] = 315, - [316] = 316, - [317] = 317, - [318] = 318, - [319] = 319, - [320] = 320, - [321] = 321, + [315] = 313, + [316] = 313, + [317] = 312, + [318] = 314, + [319] = 312, + [320] = 312, + [321] = 314, [322] = 322, [323] = 323, [324] = 324, - [325] = 325, + [325] = 323, [326] = 326, - [327] = 327, + [327] = 323, [328] = 328, [329] = 329, [330] = 330, [331] = 331, - [332] = 332, + [332] = 326, [333] = 333, [334] = 334, - [335] = 335, - [336] = 336, - [337] = 337, + [335] = 333, + [336] = 329, + [337] = 329, [338] = 338, - [339] = 339, - [340] = 340, - [341] = 341, - [342] = 339, - [343] = 340, - [344] = 344, - [345] = 344, - [346] = 346, + [339] = 334, + [340] = 333, + [341] = 326, + [342] = 342, + [343] = 333, + [344] = 334, + [345] = 333, + [346] = 326, [347] = 347, - [348] = 347, - [349] = 346, - [350] = 344, - [351] = 351, - [352] = 352, + [348] = 326, + [349] = 329, + [350] = 333, + [351] = 334, + [352] = 326, [353] = 353, - [354] = 354, - [355] = 355, + [354] = 333, + [355] = 329, [356] = 356, - [357] = 357, - [358] = 358, - [359] = 359, - [360] = 360, - [361] = 361, - [362] = 362, - [363] = 360, - [364] = 364, + [357] = 333, + [358] = 329, + [359] = 329, + [360] = 329, + [361] = 329, + [362] = 326, + [363] = 363, + [364] = 326, [365] = 365, - [366] = 361, - [367] = 360, - [368] = 368, - [369] = 360, - [370] = 370, - [371] = 371, - [372] = 360, - [373] = 360, - [374] = 374, - [375] = 360, - [376] = 360, - [377] = 360, + [366] = 366, + [367] = 334, + [368] = 334, + [369] = 369, + [370] = 326, + [371] = 326, + [372] = 334, + [373] = 334, + [374] = 334, + [375] = 333, + [376] = 326, + [377] = 329, [378] = 378, - [379] = 360, - [380] = 380, - [381] = 381, + [379] = 334, + [380] = 334, + [381] = 326, [382] = 382, - [383] = 360, - [384] = 384, - [385] = 360, - [386] = 386, - [387] = 387, - [388] = 388, - [389] = 389, + [383] = 329, + [384] = 334, + [385] = 329, + [386] = 326, + [387] = 334, + [388] = 329, + [389] = 333, [390] = 390, - [391] = 391, + [391] = 16, [392] = 392, - [393] = 15, - [394] = 16, - [395] = 17, - [396] = 20, - [397] = 21, - [398] = 18, + [393] = 14, + [394] = 394, + [395] = 13, + [396] = 15, + [397] = 16, + [398] = 15, [399] = 399, - [400] = 19, - [401] = 401, - [402] = 60, + [400] = 400, + [401] = 13, + [402] = 402, [403] = 403, [404] = 404, - [405] = 405, + [405] = 14, [406] = 406, [407] = 407, - [408] = 408, - [409] = 409, - [410] = 410, + [408] = 16, + [409] = 14, + [410] = 13, [411] = 411, [412] = 412, [413] = 413, [414] = 414, [415] = 415, - [416] = 416, - [417] = 417, + [416] = 15, + [417] = 15, [418] = 418, [419] = 419, [420] = 14, - [421] = 18, - [422] = 19, - [423] = 14, - [424] = 17, - [425] = 16, - [426] = 15, - [427] = 21, - [428] = 20, - [429] = 14, - [430] = 57, - [431] = 25, - [432] = 14, - [433] = 36, - [434] = 14, - [435] = 31, - [436] = 14, - [437] = 36, - [438] = 438, - [439] = 439, - [440] = 20, - [441] = 19, - [442] = 18, - [443] = 21, - [444] = 16, - [445] = 15, - [446] = 17, - [447] = 17, - [448] = 16, - [449] = 18, - [450] = 19, - [451] = 20, - [452] = 21, - [453] = 15, - [454] = 454, - [455] = 107, - [456] = 57, - [457] = 97, + [421] = 13, + [422] = 16, + [423] = 423, + [424] = 14, + [425] = 13, + [426] = 16, + [427] = 15, + [428] = 13, + [429] = 16, + [430] = 13, + [431] = 14, + [432] = 15, + [433] = 14, + [434] = 15, + [435] = 16, + [436] = 13, + [437] = 15, + [438] = 16, + [439] = 14, + [440] = 440, + [441] = 440, + [442] = 440, + [443] = 443, + [444] = 51, + [445] = 445, + [446] = 446, + [447] = 447, + [448] = 448, + [449] = 449, + [450] = 445, + [451] = 451, + [452] = 452, + [453] = 453, + [454] = 34, + [455] = 31, + [456] = 456, + [457] = 457, [458] = 458, - [459] = 107, - [460] = 107, - [461] = 108, - [462] = 105, - [463] = 108, - [464] = 113, - [465] = 113, - [466] = 113, - [467] = 113, + [459] = 459, + [460] = 460, + [461] = 461, + [462] = 54, + [463] = 459, + [464] = 464, + [465] = 465, + [466] = 51, + [467] = 467, [468] = 468, [469] = 469, [470] = 470, - [471] = 25, - [472] = 36, - [473] = 31, - [474] = 25, - [475] = 475, - [476] = 57, - [477] = 36, - [478] = 25, - [479] = 479, - [480] = 31, - [481] = 25, - [482] = 482, + [471] = 467, + [472] = 472, + [473] = 470, + [474] = 474, + [475] = 51, + [476] = 33, + [477] = 469, + [478] = 478, + [479] = 459, + [480] = 467, + [481] = 481, + [482] = 469, [483] = 483, [484] = 484, [485] = 485, - [486] = 31, - [487] = 482, - [488] = 488, - [489] = 36, + [486] = 470, + [487] = 487, + [488] = 32, + [489] = 489, [490] = 490, - [491] = 25, - [492] = 57, - [493] = 36, - [494] = 494, - [495] = 25, - [496] = 496, - [497] = 485, - [498] = 498, - [499] = 499, - [500] = 500, - [501] = 501, - [502] = 502, + [491] = 491, + [492] = 492, + [493] = 38, + [494] = 37, + [495] = 36, + [496] = 39, + [497] = 497, + [498] = 35, + [499] = 16, + [500] = 32, + [501] = 31, + [502] = 39, [503] = 503, - [504] = 504, - [505] = 505, - [506] = 506, - [507] = 507, - [508] = 31, - [509] = 509, - [510] = 503, - [511] = 25, - [512] = 25, - [513] = 503, - [514] = 31, - [515] = 499, - [516] = 516, - [517] = 36, - [518] = 518, - [519] = 499, + [504] = 13, + [505] = 14, + [506] = 15, + [507] = 35, + [508] = 34, + [509] = 33, + [510] = 510, + [511] = 26, + [512] = 29, + [513] = 60, + [514] = 514, + [515] = 26, + [516] = 28, + [517] = 60, + [518] = 65, + [519] = 26, [520] = 520, - [521] = 521, - [522] = 522, - [523] = 36, - [524] = 25, - [525] = 31, - [526] = 526, - [527] = 527, - [528] = 528, - [529] = 529, - [530] = 530, - [531] = 531, - [532] = 532, - [533] = 36, - [534] = 534, - [535] = 535, - [536] = 536, - [537] = 537, - [538] = 538, + [521] = 28, + [522] = 520, + [523] = 520, + [524] = 520, + [525] = 520, + [526] = 29, + [527] = 520, + [528] = 520, + [529] = 520, + [530] = 520, + [531] = 102, + [532] = 26, + [533] = 520, + [534] = 520, + [535] = 520, + [536] = 520, + [537] = 102, + [538] = 13, [539] = 539, - [540] = 540, - [541] = 541, - [542] = 542, - [543] = 25, - [544] = 544, - [545] = 545, - [546] = 546, - [547] = 547, - [548] = 548, - [549] = 549, - [550] = 550, - [551] = 551, + [540] = 13, + [541] = 14, + [542] = 539, + [543] = 543, + [544] = 16, + [545] = 15, + [546] = 539, + [547] = 539, + [548] = 539, + [549] = 15, + [550] = 16, + [551] = 539, [552] = 552, - [553] = 553, - [554] = 554, - [555] = 555, - [556] = 556, - [557] = 557, - [558] = 558, - [559] = 559, - [560] = 560, - [561] = 561, - [562] = 562, - [563] = 563, - [564] = 564, + [553] = 539, + [554] = 539, + [555] = 543, + [556] = 543, + [557] = 14, + [558] = 539, + [559] = 539, + [560] = 539, + [561] = 539, + [562] = 539, + [563] = 552, + [564] = 552, [565] = 565, - [566] = 566, - [567] = 567, + [566] = 26, + [567] = 26, [568] = 568, - [569] = 569, + [569] = 568, [570] = 570, - [571] = 571, + [571] = 570, [572] = 572, - [573] = 573, - [574] = 574, - [575] = 575, - [576] = 576, - [577] = 577, - [578] = 578, + [573] = 570, + [574] = 568, + [575] = 572, + [576] = 572, + [577] = 568, + [578] = 570, [579] = 579, - [580] = 580, - [581] = 581, - [582] = 582, - [583] = 583, - [584] = 584, - [585] = 585, - [586] = 586, - [587] = 587, - [588] = 588, - [589] = 589, + [580] = 570, + [581] = 572, + [582] = 568, + [583] = 570, + [584] = 572, + [585] = 568, + [586] = 572, + [587] = 568, + [588] = 570, + [589] = 570, [590] = 590, - [591] = 591, - [592] = 592, - [593] = 593, - [594] = 551, - [595] = 595, - [596] = 595, - [597] = 597, - [598] = 598, - [599] = 599, - [600] = 600, - [601] = 601, - [602] = 602, - [603] = 16, - [604] = 21, - [605] = 19, - [606] = 18, - [607] = 15, - [608] = 17, - [609] = 20, - [610] = 107, - [611] = 107, - [612] = 18, - [613] = 613, - [614] = 614, - [615] = 17, - [616] = 614, - [617] = 15, - [618] = 19, - [619] = 20, - [620] = 21, - [621] = 16, - [622] = 107, - [623] = 107, - [624] = 614, - [625] = 107, - [626] = 107, + [591] = 572, + [592] = 568, + [593] = 568, + [594] = 570, + [595] = 572, + [596] = 26, + [597] = 572, + [598] = 570, + [599] = 26, + [600] = 572, + [601] = 568, + [602] = 570, + [603] = 572, + [604] = 568, + [605] = 570, + [606] = 572, + [607] = 568, + [608] = 570, + [609] = 579, + [610] = 570, + [611] = 579, + [612] = 579, + [613] = 568, + [614] = 568, + [615] = 572, + [616] = 572, + [617] = 617, + [618] = 618, + [619] = 619, + [620] = 620, + [621] = 621, + [622] = 622, + [623] = 623, + [624] = 624, + [625] = 625, + [626] = 626, [627] = 627, [628] = 628, [629] = 629, [630] = 630, - [631] = 107, - [632] = 14, + [631] = 631, + [632] = 632, [633] = 633, - [634] = 108, - [635] = 635, - [636] = 636, - [637] = 107, + [634] = 633, + [635] = 633, + [636] = 26, + [637] = 637, [638] = 638, - [639] = 639, + [639] = 637, [640] = 640, [641] = 641, [642] = 642, [643] = 643, - [644] = 108, - [645] = 645, - [646] = 646, - [647] = 647, - [648] = 648, + [644] = 51, + [645] = 51, + [646] = 51, + [647] = 54, + [648] = 37, [649] = 649, - [650] = 650, + [650] = 34, [651] = 651, - [652] = 652, - [653] = 653, - [654] = 654, - [655] = 655, + [652] = 31, + [653] = 26, + [654] = 26, + [655] = 54, [656] = 656, - [657] = 108, - [658] = 658, - [659] = 659, - [660] = 660, - [661] = 661, - [662] = 108, - [663] = 663, - [664] = 664, - [665] = 665, - [666] = 666, - [667] = 652, - [668] = 653, - [669] = 654, - [670] = 654, - [671] = 671, - [672] = 652, - [673] = 653, - [674] = 671, - [675] = 105, - [676] = 676, - [677] = 107, - [678] = 678, - [679] = 97, - [680] = 16, - [681] = 21, - [682] = 20, - [683] = 19, - [684] = 18, - [685] = 98, - [686] = 56, - [687] = 68, - [688] = 65, - [689] = 15, - [690] = 17, - [691] = 108, - [692] = 105, - [693] = 108, - [694] = 113, - [695] = 80, - [696] = 14, - [697] = 107, - [698] = 698, - [699] = 113, - [700] = 698, - [701] = 18, - [702] = 89, - [703] = 64, - [704] = 73, - [705] = 75, - [706] = 76, - [707] = 113, - [708] = 61, - [709] = 79, - [710] = 81, - [711] = 85, - [712] = 87, - [713] = 14, - [714] = 58, - [715] = 96, - [716] = 63, - [717] = 86, - [718] = 55, - [719] = 95, - [720] = 77, - [721] = 62, - [722] = 94, - [723] = 90, - [724] = 113, - [725] = 66, - [726] = 91, - [727] = 100, - [728] = 78, - [729] = 99, - [730] = 83, - [731] = 67, - [732] = 59, - [733] = 16, - [734] = 21, - [735] = 20, - [736] = 19, - [737] = 93, - [738] = 92, - [739] = 15, - [740] = 71, - [741] = 54, + [657] = 30, + [658] = 60, + [659] = 30, + [660] = 33, + [661] = 36, + [662] = 37, + [663] = 99, + [664] = 38, + [665] = 34, + [666] = 39, + [667] = 51, + [668] = 668, + [669] = 39, + [670] = 35, + [671] = 32, + [672] = 38, + [673] = 673, + [674] = 51, + [675] = 675, + [676] = 31, + [677] = 33, + [678] = 47, + [679] = 49, + [680] = 99, + [681] = 45, + [682] = 43, + [683] = 36, + [684] = 44, + [685] = 88, + [686] = 51, + [687] = 50, + [688] = 55, + [689] = 31, + [690] = 39, + [691] = 63, + [692] = 60, + [693] = 61, + [694] = 59, + [695] = 42, + [696] = 51, + [697] = 52, + [698] = 92, + [699] = 67, + [700] = 56, + [701] = 58, + [702] = 41, + [703] = 66, + [704] = 60, + [705] = 64, + [706] = 71, + [707] = 32, + [708] = 91, + [709] = 100, + [710] = 40, + [711] = 86, + [712] = 57, + [713] = 48, + [714] = 46, + [715] = 34, + [716] = 33, + [717] = 35, + [718] = 54, + [719] = 53, + [720] = 89, + [721] = 98, + [722] = 80, + [723] = 51, + [724] = 96, + [725] = 37, + [726] = 31, + [727] = 727, + [728] = 80, + [729] = 35, + [730] = 730, + [731] = 731, + [732] = 732, + [733] = 88, + [734] = 734, + [735] = 735, + [736] = 53, + [737] = 46, + [738] = 47, + [739] = 48, + [740] = 57, + [741] = 40, [742] = 51, - [743] = 105, - [744] = 52, - [745] = 53, - [746] = 17, - [747] = 747, - [748] = 747, - [749] = 113, - [750] = 747, - [751] = 113, - [752] = 747, - [753] = 16, - [754] = 21, - [755] = 747, - [756] = 747, - [757] = 20, - [758] = 108, - [759] = 19, - [760] = 18, - [761] = 747, - [762] = 747, - [763] = 15, - [764] = 113, - [765] = 17, - [766] = 747, - [767] = 747, - [768] = 747, - [769] = 747, - [770] = 747, - [771] = 747, - [772] = 747, - [773] = 747, - [774] = 747, - [775] = 775, - [776] = 775, - [777] = 17, - [778] = 778, - [779] = 113, - [780] = 775, - [781] = 775, - [782] = 105, - [783] = 775, - [784] = 778, - [785] = 775, - [786] = 775, - [787] = 778, - [788] = 20, - [789] = 775, - [790] = 97, - [791] = 775, - [792] = 775, - [793] = 775, - [794] = 778, - [795] = 778, - [796] = 778, - [797] = 778, - [798] = 15, - [799] = 778, - [800] = 775, - [801] = 775, - [802] = 21, - [803] = 775, - [804] = 775, - [805] = 778, - [806] = 18, - [807] = 807, - [808] = 775, - [809] = 809, - [810] = 775, - [811] = 19, - [812] = 778, - [813] = 807, - [814] = 16, - [815] = 809, - [816] = 778, - [817] = 817, - [818] = 57, - [819] = 21, - [820] = 17, - [821] = 15, - [822] = 18, - [823] = 19, - [824] = 20, - [825] = 113, - [826] = 826, - [827] = 827, - [828] = 16, + [743] = 65, + [744] = 744, + [745] = 28, + [746] = 41, + [747] = 59, + [748] = 61, + [749] = 55, + [750] = 50, + [751] = 751, + [752] = 29, + [753] = 49, + [754] = 45, + [755] = 44, + [756] = 100, + [757] = 730, + [758] = 64, + [759] = 43, + [760] = 66, + [761] = 731, + [762] = 98, + [763] = 763, + [764] = 71, + [765] = 32, + [766] = 63, + [767] = 91, + [768] = 42, + [769] = 67, + [770] = 52, + [771] = 96, + [772] = 89, + [773] = 56, + [774] = 58, + [775] = 86, + [776] = 776, + [777] = 730, + [778] = 92, + [779] = 29, + [780] = 731, + [781] = 28, + [782] = 34, + [783] = 783, + [784] = 784, + [785] = 51, + [786] = 33, + [787] = 34, + [788] = 35, + [789] = 65, + [790] = 790, + [791] = 790, + [792] = 39, + [793] = 39, + [794] = 794, + [795] = 32, + [796] = 38, + [797] = 51, + [798] = 784, + [799] = 38, + [800] = 790, + [801] = 36, + [802] = 31, + [803] = 784, + [804] = 54, + [805] = 33, + [806] = 54, + [807] = 38, + [808] = 37, + [809] = 60, + [810] = 794, + [811] = 51, + [812] = 784, + [813] = 794, + [814] = 794, + [815] = 34, + [816] = 31, + [817] = 102, + [818] = 37, + [819] = 102, + [820] = 37, + [821] = 36, + [822] = 38, + [823] = 102, + [824] = 102, + [825] = 36, + [826] = 34, + [827] = 31, + [828] = 38, [829] = 829, - [830] = 72, - [831] = 831, - [832] = 831, - [833] = 833, - [834] = 831, - [835] = 835, + [830] = 60, + [831] = 31, + [832] = 39, + [833] = 35, + [834] = 39, + [835] = 33, [836] = 836, [837] = 837, - [838] = 831, - [839] = 836, - [840] = 836, - [841] = 841, - [842] = 835, - [843] = 843, - [844] = 833, - [845] = 835, - [846] = 841, - [847] = 831, - [848] = 837, - [849] = 836, - [850] = 833, - [851] = 831, - [852] = 841, - [853] = 833, - [854] = 835, - [855] = 841, - [856] = 835, - [857] = 836, - [858] = 833, - [859] = 833, - [860] = 841, - [861] = 837, - [862] = 837, - [863] = 837, - [864] = 837, - [865] = 831, - [866] = 841, - [867] = 841, - [868] = 841, - [869] = 835, - [870] = 836, - [871] = 835, - [872] = 833, - [873] = 836, - [874] = 833, - [875] = 831, - [876] = 841, - [877] = 836, - [878] = 835, - [879] = 836, - [880] = 837, - [881] = 837, - [882] = 837, - [883] = 837, - [884] = 841, - [885] = 833, - [886] = 833, - [887] = 837, - [888] = 888, - [889] = 835, - [890] = 837, - [891] = 831, - [892] = 835, - [893] = 836, - [894] = 831, - [895] = 841, - [896] = 836, - [897] = 833, - [898] = 835, - [899] = 841, - [900] = 836, - [901] = 888, - [902] = 837, - [903] = 831, - [904] = 835, - [905] = 837, - [906] = 831, - [907] = 833, - [908] = 836, - [909] = 841, - [910] = 831, - [911] = 843, - [912] = 841, - [913] = 831, - [914] = 833, - [915] = 835, + [838] = 32, + [839] = 37, + [840] = 33, + [841] = 39, + [842] = 33, + [843] = 829, + [844] = 60, + [845] = 36, + [846] = 38, + [847] = 847, + [848] = 829, + [849] = 37, + [850] = 32, + [851] = 829, + [852] = 852, + [853] = 847, + [854] = 34, + [855] = 847, + [856] = 856, + [857] = 35, + [858] = 858, + [859] = 859, + [860] = 860, + [861] = 861, + [862] = 862, + [863] = 863, + [864] = 864, + [865] = 865, + [866] = 866, + [867] = 861, + [868] = 863, + [869] = 861, + [870] = 863, + [871] = 861, + [872] = 863, + [873] = 873, + [874] = 861, + [875] = 861, + [876] = 876, + [877] = 863, + [878] = 861, + [879] = 879, + [880] = 858, + [881] = 863, + [882] = 109, + [883] = 108, + [884] = 879, + [885] = 861, + [886] = 861, + [887] = 861, + [888] = 863, + [889] = 889, + [890] = 890, + [891] = 863, + [892] = 861, + [893] = 863, + [894] = 863, + [895] = 895, + [896] = 896, + [897] = 897, + [898] = 898, + [899] = 899, + [900] = 900, + [901] = 863, + [902] = 902, + [903] = 863, + [904] = 861, + [905] = 863, + [906] = 879, + [907] = 858, + [908] = 908, + [909] = 32, + [910] = 861, + [911] = 60, + [912] = 912, + [913] = 33, + [914] = 914, + [915] = 915, [916] = 916, - [917] = 843, - [918] = 835, - [919] = 919, - [920] = 833, - [921] = 836, - [922] = 922, + [917] = 917, + [918] = 918, + [919] = 36, + [920] = 34, + [921] = 921, + [922] = 39, [923] = 923, - [924] = 924, - [925] = 925, + [924] = 36, + [925] = 35, [926] = 926, [927] = 927, - [928] = 928, - [929] = 929, + [928] = 32, + [929] = 65, [930] = 930, [931] = 931, - [932] = 932, - [933] = 933, + [932] = 31, + [933] = 35, [934] = 934, [935] = 935, - [936] = 936, + [936] = 35, [937] = 937, - [938] = 74, - [939] = 57, - [940] = 940, - [941] = 60, - [942] = 72, - [943] = 943, - [944] = 57, - [945] = 943, - [946] = 946, - [947] = 947, + [938] = 938, + [939] = 939, + [940] = 935, + [941] = 935, + [942] = 102, + [943] = 32, + [944] = 935, + [945] = 935, + [946] = 60, + [947] = 65, [948] = 948, - [949] = 949, - [950] = 946, + [949] = 935, + [950] = 60, [951] = 951, - [952] = 933, - [953] = 57, + [952] = 935, + [953] = 953, [954] = 954, - [955] = 57, - [956] = 74, - [957] = 57, - [958] = 57, - [959] = 60, - [960] = 72, - [961] = 80, - [962] = 128, - [963] = 146, - [964] = 108, - [965] = 108, - [966] = 108, - [967] = 108, - [968] = 108, - [969] = 969, + [955] = 954, + [956] = 935, + [957] = 957, + [958] = 935, + [959] = 102, + [960] = 960, + [961] = 935, + [962] = 962, + [963] = 110, + [964] = 964, + [965] = 935, + [966] = 935, + [967] = 967, + [968] = 954, + [969] = 935, [970] = 970, [971] = 971, - [972] = 57, - [973] = 970, - [974] = 969, - [975] = 105, + [972] = 102, + [973] = 122, + [974] = 112, + [975] = 975, [976] = 976, - [977] = 977, - [978] = 108, - [979] = 979, - [980] = 108, - [981] = 979, - [982] = 982, - [983] = 983, - [984] = 984, - [985] = 985, - [986] = 105, - [987] = 108, - [988] = 988, - [989] = 989, - [990] = 990, + [977] = 102, + [978] = 111, + [979] = 65, + [980] = 119, + [981] = 116, + [982] = 102, + [983] = 115, + [984] = 113, + [985] = 118, + [986] = 102, + [987] = 114, + [988] = 65, + [989] = 102, + [990] = 102, [991] = 991, - [992] = 113, - [993] = 113, - [994] = 113, - [995] = 995, - [996] = 996, - [997] = 120, - [998] = 998, - [999] = 113, + [992] = 992, + [993] = 991, + [994] = 994, + [995] = 992, + [996] = 991, + [997] = 992, + [998] = 26, + [999] = 999, [1000] = 1000, [1001] = 1001, [1002] = 1002, - [1003] = 108, - [1004] = 105, - [1005] = 1005, - [1006] = 126, + [1003] = 1003, + [1004] = 999, + [1005] = 60, + [1006] = 1006, [1007] = 1007, - [1008] = 120, - [1009] = 115, - [1010] = 115, + [1008] = 1008, + [1009] = 1009, + [1010] = 1010, [1011] = 1011, [1012] = 1012, [1013] = 1013, [1014] = 1014, - [1015] = 113, - [1016] = 108, + [1015] = 1015, + [1016] = 1016, [1017] = 1017, [1018] = 1018, [1019] = 1019, [1020] = 1020, - [1021] = 113, + [1021] = 1021, [1022] = 1022, - [1023] = 113, - [1024] = 60, - [1025] = 1025, + [1023] = 1023, + [1024] = 1024, + [1025] = 65, [1026] = 1026, [1027] = 1027, [1028] = 1028, [1029] = 1029, - [1030] = 1001, + [1030] = 1030, [1031] = 1031, [1032] = 1032, [1033] = 1033, - [1034] = 1034, - [1035] = 1025, + [1034] = 28, + [1035] = 60, [1036] = 1036, - [1037] = 131, - [1038] = 1038, + [1037] = 1037, + [1038] = 1018, [1039] = 1039, - [1040] = 129, - [1041] = 130, + [1040] = 1040, + [1041] = 1041, [1042] = 1042, - [1043] = 1043, + [1043] = 102, [1044] = 1044, - [1045] = 129, - [1046] = 130, + [1045] = 1045, + [1046] = 1046, [1047] = 1047, - [1048] = 131, + [1048] = 1048, [1049] = 1049, [1050] = 1050, [1051] = 1051, @@ -3408,8 +3227,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1056] = 1056, [1057] = 1057, [1058] = 1058, - [1059] = 1054, - [1060] = 113, + [1059] = 1059, + [1060] = 1060, [1061] = 1061, [1062] = 1062, [1063] = 1063, @@ -3417,302 +3236,200 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1065] = 1065, [1066] = 1066, [1067] = 1067, - [1068] = 119, - [1069] = 1069, + [1068] = 1068, + [1069] = 1041, [1070] = 1070, - [1071] = 1071, + [1071] = 1044, [1072] = 1072, - [1073] = 1073, + [1073] = 1045, [1074] = 1074, - [1075] = 1054, - [1076] = 1051, - [1077] = 113, + [1075] = 1075, + [1076] = 101, + [1077] = 1077, [1078] = 1078, - [1079] = 1079, + [1079] = 1068, [1080] = 1080, [1081] = 1081, [1082] = 1082, [1083] = 1083, - [1084] = 1043, - [1085] = 1064, + [1084] = 65, + [1085] = 1085, [1086] = 1086, [1087] = 1087, [1088] = 1088, - [1089] = 1089, + [1089] = 1046, [1090] = 1090, - [1091] = 1080, - [1092] = 1092, - [1093] = 1093, - [1094] = 113, - [1095] = 1095, + [1091] = 1091, + [1092] = 1045, + [1093] = 1044, + [1094] = 1094, + [1095] = 1041, [1096] = 1096, [1097] = 1097, - [1098] = 1098, + [1098] = 1068, [1099] = 1099, [1100] = 1100, [1101] = 1101, - [1102] = 105, - [1103] = 114, + [1102] = 1102, + [1103] = 1103, [1104] = 1104, - [1105] = 1105, - [1106] = 1106, - [1107] = 116, - [1108] = 1065, + [1105] = 1045, + [1106] = 101, + [1107] = 1107, + [1108] = 1108, [1109] = 1109, [1110] = 1110, - [1111] = 111, + [1111] = 1111, [1112] = 1112, - [1113] = 1039, + [1113] = 1113, [1114] = 1114, [1115] = 1115, - [1116] = 1116, + [1116] = 65, [1117] = 1117, - [1118] = 1039, + [1118] = 1118, [1119] = 1119, - [1120] = 105, + [1120] = 1120, [1121] = 1121, - [1122] = 118, + [1122] = 1122, [1123] = 1123, [1124] = 1124, [1125] = 1125, [1126] = 1126, - [1127] = 1127, + [1127] = 1115, [1128] = 1128, - [1129] = 1129, + [1129] = 1124, [1130] = 1130, [1131] = 1131, - [1132] = 1131, - [1133] = 1124, - [1134] = 1131, + [1132] = 1132, + [1133] = 1133, + [1134] = 102, [1135] = 1135, [1136] = 1136, [1137] = 1137, - [1138] = 1124, - [1139] = 1124, - [1140] = 1140, - [1141] = 1124, + [1138] = 1138, + [1139] = 118, + [1140] = 122, + [1141] = 1141, [1142] = 1142, - [1143] = 1124, + [1143] = 1117, [1144] = 1144, - [1145] = 1125, - [1146] = 1127, + [1145] = 1145, + [1146] = 1146, [1147] = 1147, [1148] = 1148, - [1149] = 1124, + [1149] = 1149, [1150] = 1150, [1151] = 1124, - [1152] = 1124, - [1153] = 1153, + [1152] = 119, + [1153] = 1149, [1154] = 1154, - [1155] = 1129, - [1156] = 1154, - [1157] = 1157, + [1155] = 1117, + [1156] = 1156, + [1157] = 1118, [1158] = 1158, - [1159] = 1124, - [1160] = 1160, - [1161] = 1126, - [1162] = 1124, - [1163] = 1163, - [1164] = 1124, - [1165] = 1165, - [1166] = 1166, - [1167] = 1124, + [1159] = 1114, + [1160] = 1149, + [1161] = 1156, + [1162] = 1114, + [1163] = 1117, + [1164] = 1120, + [1165] = 1156, + [1166] = 1115, + [1167] = 1125, [1168] = 1168, [1169] = 1169, - [1170] = 1144, + [1170] = 1170, [1171] = 1171, - [1172] = 1172, - [1173] = 1154, - [1174] = 1124, - [1175] = 1140, + [1172] = 1168, + [1173] = 1168, + [1174] = 1174, + [1175] = 1175, [1176] = 1176, - [1177] = 1177, - [1178] = 1178, - [1179] = 1179, - [1180] = 1180, - [1181] = 1136, - [1182] = 1182, - [1183] = 1160, + [1177] = 1168, + [1178] = 1176, + [1179] = 1168, + [1180] = 1168, + [1181] = 1181, + [1182] = 1170, + [1183] = 1183, [1184] = 1184, - [1185] = 1168, - [1186] = 1137, - [1187] = 1136, - [1188] = 1188, - [1189] = 1189, - [1190] = 1190, - [1191] = 1191, - [1192] = 1192, + [1185] = 1185, + [1186] = 1168, + [1187] = 1187, + [1188] = 65, + [1189] = 1168, + [1190] = 1187, + [1191] = 1168, + [1192] = 1168, [1193] = 1193, - [1194] = 1191, - [1195] = 1195, + [1194] = 1168, + [1195] = 1176, [1196] = 1196, - [1197] = 1196, - [1198] = 1198, + [1197] = 1168, + [1198] = 1168, [1199] = 1199, [1200] = 1200, [1201] = 1201, [1202] = 1202, - [1203] = 1203, + [1203] = 1170, [1204] = 1204, - [1205] = 1191, + [1205] = 1170, [1206] = 1206, - [1207] = 1207, - [1208] = 1208, - [1209] = 1191, + [1207] = 1168, + [1208] = 1187, + [1209] = 1209, [1210] = 1210, [1211] = 1211, - [1212] = 1212, + [1212] = 1181, [1213] = 1213, - [1214] = 1195, + [1214] = 1214, [1215] = 1215, - [1216] = 1191, + [1216] = 1214, [1217] = 1217, [1218] = 1218, - [1219] = 1215, - [1220] = 1220, + [1219] = 1219, + [1220] = 1213, [1221] = 1221, [1222] = 1222, - [1223] = 1191, - [1224] = 1224, + [1223] = 1223, + [1224] = 1213, [1225] = 1225, - [1226] = 1226, - [1227] = 1191, - [1228] = 1228, - [1229] = 1229, + [1226] = 1213, + [1227] = 1217, + [1228] = 1213, + [1229] = 1222, [1230] = 1230, [1231] = 1231, - [1232] = 1232, - [1233] = 1191, - [1234] = 1234, + [1232] = 1215, + [1233] = 1230, + [1234] = 1213, [1235] = 1235, - [1236] = 1191, + [1236] = 1223, [1237] = 1237, - [1238] = 1238, - [1239] = 1217, - [1240] = 1240, - [1241] = 1241, + [1238] = 1222, + [1239] = 1230, + [1240] = 1213, + [1241] = 1214, [1242] = 1242, - [1243] = 1230, - [1244] = 1191, - [1245] = 1245, - [1246] = 1246, + [1243] = 1243, + [1244] = 1215, + [1245] = 1221, + [1246] = 1213, [1247] = 1247, - [1248] = 1248, - [1249] = 1249, - [1250] = 1191, - [1251] = 1191, - [1252] = 105, + [1248] = 1219, + [1249] = 1213, + [1250] = 1213, + [1251] = 1221, + [1252] = 1213, [1253] = 1253, - [1254] = 1254, - [1255] = 1255, + [1254] = 1213, + [1255] = 1219, [1256] = 1256, - [1257] = 1191, - [1258] = 1191, - [1259] = 1259, - [1260] = 1260, - [1261] = 1261, - [1262] = 1217, - [1263] = 1263, - [1264] = 1264, - [1265] = 1265, - [1266] = 1266, - [1267] = 1267, - [1268] = 1268, - [1269] = 1269, - [1270] = 1264, - [1271] = 1271, - [1272] = 1269, - [1273] = 1273, - [1274] = 1274, - [1275] = 1275, - [1276] = 1276, - [1277] = 1275, - [1278] = 1278, - [1279] = 1278, - [1280] = 1274, - [1281] = 1281, - [1282] = 1282, - [1283] = 1283, - [1284] = 1284, - [1285] = 1285, - [1286] = 1286, - [1287] = 1287, - [1288] = 1288, - [1289] = 1289, - [1290] = 1290, - [1291] = 1291, - [1292] = 1292, - [1293] = 1293, - [1294] = 1294, - [1295] = 1295, - [1296] = 1283, - [1297] = 1297, - [1298] = 1269, - [1299] = 1283, - [1300] = 1300, - [1301] = 1301, - [1302] = 1295, - [1303] = 1273, - [1304] = 1281, - [1305] = 1293, - [1306] = 1306, - [1307] = 1307, - [1308] = 1308, - [1309] = 1282, - [1310] = 1281, - [1311] = 1311, - [1312] = 1264, - [1313] = 1269, - [1314] = 1275, - [1315] = 1315, - [1316] = 1316, - [1317] = 1317, - [1318] = 1318, - [1319] = 1264, - [1320] = 1320, - [1321] = 1269, - [1322] = 1322, - [1323] = 1264, - [1324] = 1269, - [1325] = 1275, - [1326] = 1326, - [1327] = 1327, - [1328] = 1264, - [1329] = 1269, - [1330] = 1275, - [1331] = 1331, - [1332] = 1275, - [1333] = 1264, - [1334] = 1269, - [1335] = 1275, - [1336] = 1336, - [1337] = 1264, - [1338] = 1269, - [1339] = 1275, - [1340] = 1311, - [1341] = 1264, - [1342] = 1269, - [1343] = 1275, - [1344] = 1344, - [1345] = 1264, - [1346] = 1275, - [1347] = 1347, - [1348] = 1264, - [1349] = 1269, - [1350] = 1275, - [1351] = 1351, - [1352] = 1264, - [1353] = 1269, - [1354] = 1275, - [1355] = 1355, - [1356] = 1264, - [1357] = 1269, - [1358] = 1275, - [1359] = 1317, - [1360] = 1282, - [1361] = 1266, - [1362] = 1264, - [1363] = 1275, + [1257] = 1213, + [1258] = 1217, + [1259] = 1213, + [1260] = 1243, + [1261] = 1243, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -3720,76 +3437,82 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(42); + if (eof) ADVANCE(46); ADVANCE_MAP( - '!', 67, - '"', 120, - '#', 43, - '$', 126, - '%', 72, - '&', 79, - '\'', 110, - '(', 49, - ')', 50, - '*', 73, - '+', 75, - ',', 54, - '-', 69, - '.', 59, - '/', 74, - '0', 100, - ':', 53, - ';', 143, - '<', 87, - '=', 95, - '>', 90, - '?', 61, - '@', 63, - '[', 56, - '\\', 31, - ']', 57, - '^', 81, - '_', 98, - 'e', 137, - '{', 127, - '|', 80, - '}', 52, - '~', 66, + '"', 118, + '#', 47, + '$', 124, + '&', 12, + '\'', 107, + '(', 53, + ')', 54, + '+', 76, + ',', 58, + '-', 71, + '.', 63, + '/', 75, + '0', 97, + ':', 57, + ';', 141, + '<', 92, + '=', 90, + '>', 94, + '?', 64, + '@', 66, + '[', 60, + '\\', 33, + ']', 61, + '_', 95, + 'e', 135, + '{', 125, + '|', 35, + '}', 56, + '!', 69, + '~', 69, + '%', 74, + '*', 74, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(101); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(98); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(38); + lookahead == 0xfeff) SKIP(43); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); case 1: ADVANCE_MAP( - '!', 67, - '%', 72, - '&', 79, - '(', 49, - ')', 50, - '*', 73, - '+', 75, - ',', 54, - '-', 69, - '.', 59, - '/', 74, - ':', 53, - '<', 87, - '=', 95, - '>', 90, - '?', 61, - '[', 56, - '^', 81, - '|', 80, - '}', 52, - '~', 66, + '!', 22, + '"', 118, + '&', 80, + '\'', 107, + '(', 53, + ')', 54, + '+', 76, + ',', 58, + '-', 78, + '.', 63, + '/', 75, + '0', 97, + ':', 57, + ';', 141, + '<', 93, + '=', 89, + '>', 86, + '?', 64, + '[', 60, + ']', 61, + '^', 79, + '_', 95, + '{', 55, + '|', 82, + '}', 56, + '%', 74, + '*', 74, ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(98); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || @@ -3797,37 +3520,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x2060 || lookahead == 0xfeff) SKIP(1); if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); case 2: ADVANCE_MAP( - '!', 67, - '%', 72, - '&', 79, - '(', 49, - ')', 50, - '*', 73, - '+', 75, - ',', 54, - '-', 68, - '.', 59, - '/', 74, - ':', 53, - ';', 143, - '<', 87, - '=', 95, - '>', 90, - '?', 61, - '@', 63, - '[', 56, - ']', 57, - '^', 81, - '{', 51, - '|', 80, - '}', 52, - '~', 66, + '!', 22, + '"', 118, + '&', 80, + '\'', 107, + '(', 53, + ')', 54, + ',', 58, + '.', 63, + '/', 75, + '0', 97, + ':', 57, + ';', 141, + '<', 93, + '=', 89, + '>', 86, + '?', 64, + '[', 60, + ']', 61, + '^', 79, + '_', 95, + '{', 55, + '|', 82, + '}', 56, + '%', 74, + '*', 74, + '+', 74, + '-', 74, ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(98); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || @@ -3835,33 +3560,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x2060 || lookahead == 0xfeff) SKIP(2); if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); case 3: ADVANCE_MAP( - '"', 120, - '\'', 110, - '(', 49, - ')', 50, - ',', 54, - '-', 19, - '.', 58, - '/', 12, - '0', 100, - ':', 53, - ';', 143, - '<', 86, - '=', 96, - '>', 89, - '?', 60, - '[', 56, - ']', 57, - '_', 98, - '{', 51, - '}', 52, + '!', 22, + '&', 80, + '(', 53, + ')', 54, + '+', 76, + ',', 58, + '-', 78, + '.', 63, + '/', 75, + ':', 57, + ';', 141, + '<', 93, + '=', 89, + '>', 86, + '?', 64, + '@', 66, + '[', 60, + ']', 61, + '^', 79, + '{', 55, + '|', 82, + '}', 56, + '%', 74, + '*', 74, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(101); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || @@ -3869,32 +3596,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x2060 || lookahead == 0xfeff) SKIP(3); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(141); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); case 4: ADVANCE_MAP( - '"', 120, - '\'', 110, - '(', 49, - ')', 50, - ',', 54, - '-', 19, - '/', 12, - '0', 100, - ':', 53, - ';', 143, - '<', 86, - '=', 94, - '>', 89, - '?', 60, - '@', 63, - '[', 56, - ']', 57, - '_', 98, - '{', 51, - '}', 52, + '!', 22, + '&', 80, + '(', 53, + ')', 54, + ',', 58, + '.', 63, + '/', 75, + ':', 57, + ';', 141, + '<', 93, + '=', 89, + '>', 86, + '?', 64, + ']', 61, + '^', 79, + '|', 82, + '}', 56, + '%', 74, + '*', 74, + '+', 74, + '-', 74, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(101); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || @@ -3902,981 +3630,1027 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x2060 || lookahead == 0xfeff) SKIP(4); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(141); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); case 5: - if (lookahead == '"') ADVANCE(120); - if (lookahead == '/') ADVANCE(122); - if (lookahead == '\\') ADVANCE(124); + ADVANCE_MAP( + '!', 22, + '&', 80, + ')', 54, + '+', 76, + ',', 58, + '-', 77, + '.', 63, + '/', 75, + ':', 57, + ';', 141, + '<', 85, + '=', 89, + '>', 86, + '?', 64, + '[', 60, + ']', 61, + '^', 79, + '|', 82, + '}', 56, + '%', 74, + '*', 74, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(123); - if (lookahead != 0) ADVANCE(121); + lookahead == 0xfeff) SKIP(5); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); case 6: ADVANCE_MAP( - '"', 111, - '$', 126, - '\'', 110, - '.', 58, - '/', 116, - '0', 100, - ':', 53, - '=', 117, - '?', 60, - '[', 56, - '\\', 119, - '_', 98, - '{', 51, + '!', 22, + '&', 80, + ')', 54, + ',', 58, + '.', 63, + '/', 75, + ':', 57, + ';', 141, + '<', 85, + '=', 89, + '>', 86, + '?', 64, + '[', 60, + ']', 61, + '^', 79, + '|', 82, + '}', 56, + '%', 74, + '*', 74, + '+', 74, + '-', 74, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(101); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(112); + lookahead == 0xfeff) SKIP(6); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(118); - if (lookahead != 0) ADVANCE(111); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); case 7: - ADVANCE_MAP( - '"', 111, - '$', 126, - '\'', 110, - '/', 116, - '0', 100, - '[', 56, - '\\', 119, - '_', 98, - '{', 51, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(101); + if (lookahead == '"') ADVANCE(118); + if (lookahead == '/') ADVANCE(120); + if (lookahead == '\\') ADVANCE(122); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(113); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(118); - if (lookahead != 0) ADVANCE(111); + lookahead == 0xfeff) ADVANCE(121); + if (lookahead != 0) ADVANCE(119); END_STATE(); case 8: ADVANCE_MAP( - '$', 126, - '\'', 110, - '.', 58, - '/', 116, - ':', 53, - '=', 117, - '?', 60, - '\\', 119, + '"', 108, + '$', 124, + '\'', 107, + '.', 62, + '/', 113, + '0', 97, + ':', 57, + '=', 115, + '?', 114, + '[', 60, + '\\', 117, + '_', 95, + '{', 55, ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(98); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(114); - if (lookahead != 0) ADVANCE(111); + lookahead == 0xfeff) ADVANCE(109); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(116); + if (lookahead != 0) ADVANCE(108); END_STATE(); case 9: - if (lookahead == '$') ADVANCE(126); - if (lookahead == '\'') ADVANCE(110); - if (lookahead == '/') ADVANCE(116); - if (lookahead == '\\') ADVANCE(119); + ADVANCE_MAP( + '"', 108, + '$', 124, + '\'', 107, + '/', 113, + '0', 97, + '[', 60, + '\\', 117, + '_', 95, + '{', 55, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(98); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(115); - if (lookahead != 0) ADVANCE(111); + lookahead == 0xfeff) ADVANCE(110); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(116); + if (lookahead != 0) ADVANCE(108); END_STATE(); case 10: ADVANCE_MAP( - '(', 49, - ')', 50, - ',', 54, - '-', 19, - '/', 12, - '=', 94, - '>', 89, - '{', 51, - '}', 52, + '$', 124, + '\'', 107, + '.', 62, + '/', 113, + ':', 57, + '=', 115, + '?', 114, + '\\', 117, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(10); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(141); + lookahead == 0xfeff) ADVANCE(111); + if (lookahead != 0) ADVANCE(108); END_STATE(); case 11: - ADVANCE_MAP( - '(', 49, - ')', 50, - ',', 54, - '.', 58, - '/', 12, - ':', 53, - ';', 143, - '<', 86, - '=', 20, - '?', 60, - ']', 57, - '{', 51, - '}', 52, - ); + if (lookahead == '$') ADVANCE(124); + if (lookahead == '\'') ADVANCE(107); + if (lookahead == '/') ADVANCE(113); + if (lookahead == '\\') ADVANCE(117); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(11); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(141); + lookahead == 0xfeff) ADVANCE(112); + if (lookahead != 0) ADVANCE(108); END_STATE(); case 12: - if (lookahead == '*') ADVANCE(14); - if (lookahead == '/') ADVANCE(132); + if (lookahead == '&') ADVANCE(83); END_STATE(); case 13: - if (lookahead == '*') ADVANCE(13); - if (lookahead == '/') ADVANCE(131); - if (lookahead != 0) ADVANCE(14); + if (lookahead == '*') ADVANCE(15); + if (lookahead == '/') ADVANCE(130); END_STATE(); case 14: - if (lookahead == '*') ADVANCE(13); - if (lookahead != 0) ADVANCE(14); + if (lookahead == '*') ADVANCE(14); + if (lookahead == '/') ADVANCE(129); + if (lookahead != 0) ADVANCE(15); END_STATE(); case 15: - if (lookahead == '.') ADVANCE(97); + if (lookahead == '*') ADVANCE(14); + if (lookahead != 0) ADVANCE(15); END_STATE(); case 16: - if (lookahead == '/') ADVANCE(12); - if (lookahead == '0') ADVANCE(104); - if (lookahead == '_') ADVANCE(102); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(105); + if (lookahead == '+') ADVANCE(73); + END_STATE(); + case 17: + if (lookahead == '.') ADVANCE(62); + END_STATE(); + case 18: + if (lookahead == '.') ADVANCE(91); + END_STATE(); + case 19: + if (lookahead == '/') ADVANCE(13); + if (lookahead == '0') ADVANCE(101); + if (lookahead == '_') ADVANCE(99); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(102); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(16); + lookahead == 0xfeff) SKIP(19); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); - case 17: - if (lookahead == '/') ADVANCE(12); - if (lookahead == '0') ADVANCE(104); - if (lookahead == 'e') ADVANCE(27); - if (lookahead == 'i') ADVANCE(25); + case 20: + if (lookahead == '/') ADVANCE(13); + if (lookahead == '0') ADVANCE(101); + if (lookahead == 'e') ADVANCE(29); + if (lookahead == 'i') ADVANCE(27); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(18); + lookahead == 0xfeff) SKIP(21); if (('1' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(105); + lookahead == '_') ADVANCE(102); END_STATE(); - case 18: - if (lookahead == '/') ADVANCE(12); - if (lookahead == '0') ADVANCE(104); + case 21: + if (lookahead == '/') ADVANCE(13); + if (lookahead == '0') ADVANCE(101); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(18); + lookahead == 0xfeff) SKIP(21); if (('1' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(105); - END_STATE(); - case 19: - if (lookahead == '>') ADVANCE(62); - END_STATE(); - case 20: - if (lookahead == '>') ADVANCE(92); - END_STATE(); - case 21: - if (lookahead == 'd') ADVANCE(45); + lookahead == '_') ADVANCE(102); END_STATE(); case 22: - if (lookahead == 'e') ADVANCE(55); + if (lookahead == '=') ADVANCE(84); END_STATE(); case 23: - if (lookahead == 'e') ADVANCE(48); + if (lookahead == 'd') ADVANCE(49); END_STATE(); case 24: - if (lookahead == 'f') ADVANCE(65); + if (lookahead == 'e') ADVANCE(59); END_STATE(); case 25: - if (lookahead == 'f') ADVANCE(44); + if (lookahead == 'e') ADVANCE(52); END_STATE(); case 26: - if (lookahead == 'i') ADVANCE(24); + if (lookahead == 'f') ADVANCE(68); END_STATE(); case 27: - if (lookahead == 'l') ADVANCE(29); - if (lookahead == 'n') ADVANCE(21); + if (lookahead == 'f') ADVANCE(48); END_STATE(); case 28: - if (lookahead == 'p') ADVANCE(22); + if (lookahead == 'i') ADVANCE(26); END_STATE(); case 29: - if (lookahead == 's') ADVANCE(23); + if (lookahead == 'l') ADVANCE(31); + if (lookahead == 'n') ADVANCE(23); END_STATE(); case 30: - if (lookahead == 't') ADVANCE(32); + if (lookahead == 'p') ADVANCE(24); END_STATE(); case 31: - if (lookahead == 'u') ADVANCE(36); - if (lookahead == 'x') ADVANCE(34); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(130); - if (lookahead != 0) ADVANCE(128); + if (lookahead == 's') ADVANCE(25); END_STATE(); case 32: - if (lookahead == 'y') ADVANCE(28); + if (lookahead == 't') ADVANCE(34); END_STATE(); case 33: + if (lookahead == 'u') ADVANCE(39); + if (lookahead == 'x') ADVANCE(37); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(128); + if (lookahead != 0) ADVANCE(126); + END_STATE(); + case 34: + if (lookahead == 'y') ADVANCE(30); + END_STATE(); + case 35: + if (lookahead == '|') ADVANCE(83); + END_STATE(); + case 36: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(128); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(126); END_STATE(); - case 34: + case 37: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(33); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(36); END_STATE(); - case 35: + case 38: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(34); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(37); END_STATE(); - case 36: + case 39: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(35); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(38); END_STATE(); - case 37: + case 40: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(106); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(103); END_STATE(); - case 38: - if (eof) ADVANCE(42); + case 41: + if (eof) ADVANCE(46); ADVANCE_MAP( - '!', 67, - '"', 120, - '#', 43, - '$', 126, - '%', 72, - '&', 79, - '\'', 110, - '(', 49, - ')', 50, - '*', 73, - '+', 75, - ',', 54, - '-', 69, - '.', 59, - '/', 74, - '0', 100, - ':', 53, - ';', 143, - '<', 87, - '=', 95, - '>', 90, - '?', 61, - '@', 63, - '[', 56, - ']', 57, - '^', 81, - '_', 98, - 'e', 138, - '{', 51, - '|', 80, - '}', 52, - '~', 66, + '!', 72, + '"', 118, + '#', 47, + '$', 32, + '&', 80, + '\'', 107, + '(', 53, + ')', 54, + '+', 76, + ',', 58, + '-', 71, + '.', 63, + '/', 75, + '0', 97, + ':', 57, + ';', 141, + '<', 93, + '=', 89, + '>', 86, + '?', 64, + '@', 66, + '[', 60, + ']', 61, + '^', 79, + '_', 95, + '{', 55, + '|', 82, + '}', 56, + '~', 69, + '%', 74, + '*', 74, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(101); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(98); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(38); + lookahead == 0xfeff) SKIP(41); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); - case 39: - if (eof) ADVANCE(42); + case 42: + if (eof) ADVANCE(46); ADVANCE_MAP( - '!', 67, - '"', 120, - '#', 43, - '$', 30, - '%', 72, - '&', 79, - '\'', 110, - '(', 49, - ')', 50, - '*', 73, - '+', 75, - ',', 54, - '-', 69, - '.', 59, - '/', 74, - '0', 100, - ':', 53, - ';', 143, - '<', 87, - '=', 95, - '>', 90, - '?', 61, - '@', 63, - '[', 56, - '^', 81, - '_', 98, - '{', 51, - '|', 80, - '}', 52, - '~', 66, + '!', 72, + '"', 118, + '#', 47, + '$', 32, + '&', 80, + '\'', 107, + '(', 53, + ')', 54, + '+', 76, + ',', 58, + '-', 71, + '.', 63, + '/', 75, + '0', 97, + ':', 57, + ';', 141, + '<', 85, + '=', 89, + '>', 86, + '?', 64, + '@', 66, + '[', 60, + '^', 79, + '_', 95, + '{', 55, + '|', 82, + '}', 56, + '~', 69, + '%', 74, + '*', 74, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(101); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(98); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(39); + lookahead == 0xfeff) SKIP(42); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); - case 40: - if (eof) ADVANCE(42); + case 43: + if (eof) ADVANCE(46); ADVANCE_MAP( - '!', 67, - '"', 120, - '#', 43, - '$', 30, - '%', 72, - '&', 79, - '\'', 110, - '(', 49, - ')', 50, - '*', 73, - '+', 75, - ',', 54, - '-', 68, - '.', 59, - '/', 74, - '0', 100, - ':', 53, - ';', 143, - '<', 87, - '=', 95, - '>', 90, - '?', 61, - '@', 63, - '[', 56, - ']', 57, - '^', 81, - '_', 98, - 'e', 138, - '{', 51, - '|', 80, - '}', 52, - '~', 66, + '"', 118, + '#', 47, + '$', 124, + '&', 12, + '\'', 107, + '(', 53, + ')', 54, + '+', 76, + ',', 58, + '-', 71, + '.', 63, + '/', 75, + '0', 97, + ':', 57, + ';', 141, + '<', 92, + '=', 90, + '>', 94, + '?', 64, + '@', 66, + '[', 60, + ']', 61, + '_', 95, + 'e', 136, + '{', 55, + '|', 35, + '}', 56, + '!', 69, + '~', 69, + '%', 74, + '*', 74, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(101); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(98); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(40); + lookahead == 0xfeff) SKIP(43); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); - case 41: - if (eof) ADVANCE(42); + case 44: + if (eof) ADVANCE(46); ADVANCE_MAP( - '!', 67, - '"', 120, - '#', 43, - '$', 30, - '%', 72, - '&', 79, - '\'', 110, - '(', 49, - ')', 50, - '*', 73, - '+', 75, - ',', 54, - '-', 68, - '.', 59, - '/', 74, - '0', 100, - ':', 53, - ';', 143, - '<', 87, - '=', 95, - '>', 90, - '?', 61, - '@', 63, - '[', 56, - ']', 57, - '^', 81, - '_', 98, - '{', 51, - '|', 80, - '}', 52, - '~', 66, + '"', 118, + '#', 47, + '$', 32, + '\'', 107, + '(', 53, + ')', 54, + '+', 16, + ',', 58, + '-', 71, + '.', 62, + '/', 13, + '0', 97, + ':', 57, + ';', 141, + '<', 92, + '=', 90, + '>', 94, + '?', 17, + '@', 66, + '[', 60, + '_', 95, + '{', 55, + '}', 56, + '!', 69, + '~', 69, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(101); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(98); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(41); + lookahead == 0xfeff) SKIP(44); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(141); - END_STATE(); - case 42: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); - case 43: - ACCEPT_TOKEN(anon_sym_POUND); - END_STATE(); - case 44: - ACCEPT_TOKEN(aux_sym_preprocessor_statement_token1); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); case 45: - ACCEPT_TOKEN(aux_sym_preprocessor_statement_token2); + if (eof) ADVANCE(46); + ADVANCE_MAP( + '"', 118, + '#', 47, + '$', 32, + '\'', 107, + '(', 53, + ')', 54, + '+', 16, + ',', 58, + '-', 70, + '/', 13, + '0', 97, + ':', 57, + ';', 141, + '@', 66, + '[', 60, + '_', 95, + 'e', 136, + '{', 55, + '}', 56, + '!', 69, + '~', 69, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(98); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0xa0 || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(45); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); case 46: - ACCEPT_TOKEN(aux_sym_preprocessor_statement_token2); - if (lookahead == ' ') ADVANCE(26); - if (lookahead == '_') ADVANCE(141); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(142); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(141); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 47: - ACCEPT_TOKEN(aux_sym_preprocessor_statement_token2); - if (lookahead == '_') ADVANCE(141); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(142); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(141); + ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); case 48: - ACCEPT_TOKEN(aux_sym_preprocessor_statement_token2); - if (lookahead == 'i') ADVANCE(25); + ACCEPT_TOKEN(aux_sym_preprocessor_statement_token1); END_STATE(); case 49: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(aux_sym_preprocessor_statement_token2); END_STATE(); case 50: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(aux_sym_preprocessor_statement_token2); + if (lookahead == ' ') ADVANCE(28); + if (lookahead == '_') ADVANCE(139); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(140); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); case 51: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(aux_sym_preprocessor_statement_token2); + if (lookahead == '_') ADVANCE(139); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(140); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); case 52: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(aux_sym_preprocessor_statement_token2); + if (lookahead == 'i') ADVANCE(27); END_STATE(); case 53: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 54: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 55: - ACCEPT_TOKEN(anon_sym_DOLLARtype); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 56: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 57: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 58: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 59: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(15); + ACCEPT_TOKEN(anon_sym_DOLLARtype); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '?') ADVANCE(93); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 62: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(aux_sym_member_expression_token1); END_STATE(); case 63: - ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == ':') ADVANCE(64); + ACCEPT_TOKEN(aux_sym_member_expression_token1); + if (lookahead == '.') ADVANCE(18); END_STATE(); case 64: - ACCEPT_TOKEN(anon_sym_AT_COLON); + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '.') ADVANCE(62); + if (lookahead == '?') ADVANCE(88); END_STATE(); case 65: - ACCEPT_TOKEN(anon_sym_elseif); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 66: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == ':') ADVANCE(67); END_STATE(); case 67: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(85); + ACCEPT_TOKEN(anon_sym_AT_COLON); END_STATE(); case 68: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(71); + ACCEPT_TOKEN(anon_sym_elseif); END_STATE(); case 69: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(71); - if (lookahead == '>') ADVANCE(62); + ACCEPT_TOKEN(sym__prefixUnaryOperator); END_STATE(); case 70: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(sym__prefixUnaryOperator); + if (lookahead == '-') ADVANCE(73); END_STATE(); case 71: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(sym__prefixUnaryOperator); + if (lookahead == '-') ADVANCE(73); + if (lookahead == '>') ADVANCE(65); END_STATE(); case 72: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(sym__prefixUnaryOperator); + if (lookahead == '=') ADVANCE(84); END_STATE(); case 73: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(sym__eitherUnaryOperator); END_STATE(); case 74: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(14); - if (lookahead == '/') ADVANCE(132); + ACCEPT_TOKEN(sym__arithmetic_operator); END_STATE(); case 75: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(70); + ACCEPT_TOKEN(sym__arithmetic_operator); + if (lookahead == '*') ADVANCE(15); + if (lookahead == '/') ADVANCE(130); END_STATE(); case 76: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(sym__arithmetic_operator); + if (lookahead == '+') ADVANCE(73); END_STATE(); case 77: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(78); + ACCEPT_TOKEN(sym__arithmetic_operator); + if (lookahead == '-') ADVANCE(73); END_STATE(); case 78: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); + ACCEPT_TOKEN(sym__arithmetic_operator); + if (lookahead == '-') ADVANCE(73); + if (lookahead == '>') ADVANCE(65); END_STATE(); case 79: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(82); + ACCEPT_TOKEN(sym__bitwise_operator); END_STATE(); case 80: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(83); + ACCEPT_TOKEN(sym__bitwise_operator); + if (lookahead == '&') ADVANCE(83); END_STATE(); case 81: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(sym__bitwise_operator); + if (lookahead == '>') ADVANCE(79); END_STATE(); case 82: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(sym__bitwise_operator); + if (lookahead == '|') ADVANCE(83); END_STATE(); case 83: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(sym__logical_operator); END_STATE(); case 84: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(sym__comparison_operator); END_STATE(); case 85: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(sym__comparison_operator); + if (lookahead == '<') ADVANCE(79); + if (lookahead == '=') ADVANCE(84); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(sym__comparison_operator); + if (lookahead == '=') ADVANCE(84); + if (lookahead == '>') ADVANCE(81); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(76); - if (lookahead == '=') ADVANCE(88); + ACCEPT_TOKEN(sym__map_operator); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(sym__null_colalese_operator); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(84); + if (lookahead == '>') ADVANCE(87); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(91); - if (lookahead == '>') ADVANCE(77); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(87); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(sym__range_operator); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(79); + if (lookahead == '=') ADVANCE(84); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(84); - if (lookahead == '>') ADVANCE(92); - END_STATE(); - case 96: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(92); - END_STATE(); - case 97: - ACCEPT_TOKEN(sym__rangeOperator); - END_STATE(); - case 98: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == '.') ADVANCE(107); - if (lookahead == '_') ADVANCE(98); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(99); + if (lookahead == '.') ADVANCE(104); + if (lookahead == '_') ADVANCE(95); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(96); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); - case 99: + case 96: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == '.') ADVANCE(107); - if (lookahead == '_') ADVANCE(101); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(99); + if (lookahead == '.') ADVANCE(104); + if (lookahead == '_') ADVANCE(98); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(96); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(142); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(140); END_STATE(); - case 100: + case 97: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == '.') ADVANCE(107); - if (lookahead == 'x') ADVANCE(37); + if (lookahead == '.') ADVANCE(104); + if (lookahead == 'x') ADVANCE(40); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(101); + lookahead == '_') ADVANCE(98); END_STATE(); - case 101: + case 98: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == '.') ADVANCE(107); + if (lookahead == '.') ADVANCE(104); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(101); + lookahead == '_') ADVANCE(98); END_STATE(); - case 102: + case 99: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == '_') ADVANCE(102); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(103); + if (lookahead == '_') ADVANCE(99); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(100); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); - case 103: + case 100: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == '_') ADVANCE(105); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(103); + if (lookahead == '_') ADVANCE(102); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(100); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(142); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(140); END_STATE(); - case 104: + case 101: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == 'x') ADVANCE(37); + if (lookahead == 'x') ADVANCE(40); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(105); + lookahead == '_') ADVANCE(102); END_STATE(); - case 105: + case 102: ACCEPT_TOKEN(aux_sym_integer_token1); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(105); + lookahead == '_') ADVANCE(102); END_STATE(); - case 106: + case 103: ACCEPT_TOKEN(aux_sym_integer_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(106); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(103); END_STATE(); - case 107: + case 104: ACCEPT_TOKEN(aux_sym_float_token1); - if (lookahead == '.') ADVANCE(107); - if (lookahead == 'e') ADVANCE(109); + if (lookahead == '.') ADVANCE(104); + if (lookahead == 'e') ADVANCE(106); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(108); + lookahead == '_') ADVANCE(105); END_STATE(); - case 108: + case 105: ACCEPT_TOKEN(aux_sym_float_token1); - if (lookahead == 'e') ADVANCE(109); + if (lookahead == 'e') ADVANCE(106); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(108); + lookahead == '_') ADVANCE(105); END_STATE(); - case 109: + case 106: ACCEPT_TOKEN(aux_sym_float_token2); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(109); + lookahead == '_') ADVANCE(106); END_STATE(); - case 110: + case 107: ACCEPT_TOKEN(aux_sym_string_token1); END_STATE(); - case 111: + case 108: ACCEPT_TOKEN(aux_sym_string_token2); END_STATE(); - case 112: + case 109: ACCEPT_TOKEN(aux_sym_string_token2); ADVANCE_MAP( - '"', 111, - '$', 126, - '.', 58, - '/', 116, - '0', 100, - ':', 53, - '=', 117, - '?', 60, - '[', 56, - '_', 98, - '{', 51, + '"', 108, + '$', 124, + '.', 62, + '/', 113, + '0', 97, + ':', 57, + '=', 115, + '?', 114, + '[', 60, + '_', 95, + '{', 55, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(101); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(98); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(112); + lookahead == 0xfeff) ADVANCE(109); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(118); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(116); if (lookahead != 0 && - lookahead != '\'') ADVANCE(111); + lookahead != '\'') ADVANCE(108); END_STATE(); - case 113: + case 110: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '"') ADVANCE(111); - if (lookahead == '$') ADVANCE(126); - if (lookahead == '/') ADVANCE(116); - if (lookahead == '0') ADVANCE(100); - if (lookahead == '[') ADVANCE(56); - if (lookahead == '_') ADVANCE(98); - if (lookahead == '{') ADVANCE(51); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(101); + if (lookahead == '"') ADVANCE(108); + if (lookahead == '$') ADVANCE(124); + if (lookahead == '/') ADVANCE(113); + if (lookahead == '0') ADVANCE(97); + if (lookahead == '[') ADVANCE(60); + if (lookahead == '_') ADVANCE(95); + if (lookahead == '{') ADVANCE(55); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(98); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(113); + lookahead == 0xfeff) ADVANCE(110); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(118); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(116); if (lookahead != 0 && - lookahead != '\'') ADVANCE(111); + lookahead != '\'') ADVANCE(108); END_STATE(); - case 114: + case 111: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '$') ADVANCE(126); - if (lookahead == '.') ADVANCE(58); - if (lookahead == '/') ADVANCE(116); - if (lookahead == ':') ADVANCE(53); - if (lookahead == '=') ADVANCE(117); - if (lookahead == '?') ADVANCE(60); + if (lookahead == '$') ADVANCE(124); + if (lookahead == '.') ADVANCE(62); + if (lookahead == '/') ADVANCE(113); + if (lookahead == ':') ADVANCE(57); + if (lookahead == '=') ADVANCE(115); + if (lookahead == '?') ADVANCE(114); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(114); + lookahead == 0xfeff) ADVANCE(111); if (lookahead != 0 && - lookahead != '\'') ADVANCE(111); + lookahead != '\'') ADVANCE(108); END_STATE(); - case 115: + case 112: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '$') ADVANCE(126); - if (lookahead == '/') ADVANCE(116); + if (lookahead == '$') ADVANCE(124); + if (lookahead == '/') ADVANCE(113); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(115); + lookahead == 0xfeff) ADVANCE(112); if (lookahead != 0 && - lookahead != '\'') ADVANCE(111); + lookahead != '\'') ADVANCE(108); END_STATE(); - case 116: + case 113: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '*') ADVANCE(14); - if (lookahead == '/') ADVANCE(132); + if (lookahead == '*') ADVANCE(15); + if (lookahead == '/') ADVANCE(130); END_STATE(); - case 117: + case 114: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '>') ADVANCE(92); + if (lookahead == '.') ADVANCE(62); END_STATE(); - case 118: + case 115: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '_') ADVANCE(141); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(142); + if (lookahead == '>') ADVANCE(87); + END_STATE(); + case 116: + ACCEPT_TOKEN(aux_sym_string_token2); + if (lookahead == '_') ADVANCE(139); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(140); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); - case 119: + case 117: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == 'u') ADVANCE(36); - if (lookahead == 'x') ADVANCE(34); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(130); - if (lookahead != 0) ADVANCE(128); + if (lookahead == 'u') ADVANCE(39); + if (lookahead == 'x') ADVANCE(37); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(128); + if (lookahead != 0) ADVANCE(126); END_STATE(); - case 120: + case 118: ACCEPT_TOKEN(aux_sym_string_token3); END_STATE(); - case 121: + case 119: ACCEPT_TOKEN(aux_sym_string_token4); END_STATE(); - case 122: + case 120: ACCEPT_TOKEN(aux_sym_string_token4); - if (lookahead == '*') ADVANCE(14); - if (lookahead == '/') ADVANCE(132); + if (lookahead == '*') ADVANCE(15); + if (lookahead == '/') ADVANCE(130); END_STATE(); - case 123: + case 121: ACCEPT_TOKEN(aux_sym_string_token4); - if (lookahead == '/') ADVANCE(122); + if (lookahead == '/') ADVANCE(120); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(123); + lookahead == 0xfeff) ADVANCE(121); if (lookahead != 0 && - lookahead != '"') ADVANCE(121); + lookahead != '"') ADVANCE(119); END_STATE(); - case 124: + case 122: ACCEPT_TOKEN(aux_sym_string_token4); - if (lookahead == 'u') ADVANCE(36); - if (lookahead == 'x') ADVANCE(34); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(130); - if (lookahead != 0) ADVANCE(128); + if (lookahead == 'u') ADVANCE(39); + if (lookahead == 'x') ADVANCE(37); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(128); + if (lookahead != 0) ADVANCE(126); END_STATE(); - case 125: + case 123: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 126: + case 124: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '{') ADVANCE(125); + if (lookahead == '{') ADVANCE(123); END_STATE(); - case 127: + case 125: ACCEPT_TOKEN(anon_sym_LBRACE2); END_STATE(); - case 128: + case 126: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 129: + case 127: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(128); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(126); END_STATE(); - case 130: + case 128: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(129); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(127); END_STATE(); - case 131: + case 129: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 132: + case 130: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(132); + lookahead != '\n') ADVANCE(130); + END_STATE(); + case 131: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == ' ') ADVANCE(28); + if (lookahead == '_') ADVANCE(139); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(140); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); + END_STATE(); + case 132: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(139); + if (lookahead == 'd') ADVANCE(51); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(140); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); case 133: ACCEPT_TOKEN(sym_identifier); - if (lookahead == ' ') ADVANCE(26); - if (lookahead == '_') ADVANCE(141); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(142); + if (lookahead == '_') ADVANCE(139); + if (lookahead == 'e') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(140); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); case 134: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(141); - if (lookahead == 'd') ADVANCE(47); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(142); + if (lookahead == '_') ADVANCE(139); + if (lookahead == 'e') ADVANCE(131); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(140); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); case 135: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(141); - if (lookahead == 'e') ADVANCE(46); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(142); + if (lookahead == '_') ADVANCE(139); + if (lookahead == 'l') ADVANCE(137); + if (lookahead == 'n') ADVANCE(132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(140); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); case 136: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(141); - if (lookahead == 'e') ADVANCE(133); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(142); + if (lookahead == '_') ADVANCE(139); + if (lookahead == 'l') ADVANCE(138); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(140); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); case 137: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(141); - if (lookahead == 'l') ADVANCE(139); - if (lookahead == 'n') ADVANCE(134); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(142); + if (lookahead == '_') ADVANCE(139); + if (lookahead == 's') ADVANCE(133); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(140); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); case 138: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(141); - if (lookahead == 'l') ADVANCE(140); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(142); + if (lookahead == '_') ADVANCE(139); + if (lookahead == 's') ADVANCE(134); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(140); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); case 139: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(141); - if (lookahead == 's') ADVANCE(135); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(142); + if (lookahead == '_') ADVANCE(139); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(140); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(141); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); END_STATE(); case 140: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(141); - if (lookahead == 's') ADVANCE(136); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(142); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(141); - END_STATE(); - case 141: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(141); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(142); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(141); - END_STATE(); - case 142: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(142); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(140); END_STATE(); - case 143: + case 141: ACCEPT_TOKEN(sym__semicolon); END_STATE(); default: @@ -5689,153 +5463,153 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [23] = {.lex_state = 41}, [24] = {.lex_state = 41}, [25] = {.lex_state = 41}, - [26] = {.lex_state = 39}, - [27] = {.lex_state = 39}, - [28] = {.lex_state = 39}, - [29] = {.lex_state = 39}, - [30] = {.lex_state = 39}, - [31] = {.lex_state = 41}, - [32] = {.lex_state = 41}, - [33] = {.lex_state = 41}, - [34] = {.lex_state = 39}, - [35] = {.lex_state = 41}, - [36] = {.lex_state = 41}, - [37] = {.lex_state = 41}, - [38] = {.lex_state = 39}, - [39] = {.lex_state = 41}, - [40] = {.lex_state = 41}, - [41] = {.lex_state = 41}, - [42] = {.lex_state = 41}, - [43] = {.lex_state = 41}, - [44] = {.lex_state = 41}, - [45] = {.lex_state = 41}, - [46] = {.lex_state = 41}, - [47] = {.lex_state = 41}, - [48] = {.lex_state = 41}, - [49] = {.lex_state = 41}, - [50] = {.lex_state = 41}, - [51] = {.lex_state = 40}, - [52] = {.lex_state = 40}, - [53] = {.lex_state = 40}, - [54] = {.lex_state = 40}, - [55] = {.lex_state = 41}, - [56] = {.lex_state = 41}, - [57] = {.lex_state = 41}, - [58] = {.lex_state = 41}, - [59] = {.lex_state = 41}, + [26] = {.lex_state = 41}, + [27] = {.lex_state = 41}, + [28] = {.lex_state = 41}, + [29] = {.lex_state = 41}, + [30] = {.lex_state = 41}, + [31] = {.lex_state = 42}, + [32] = {.lex_state = 42}, + [33] = {.lex_state = 42}, + [34] = {.lex_state = 42}, + [35] = {.lex_state = 42}, + [36] = {.lex_state = 42}, + [37] = {.lex_state = 42}, + [38] = {.lex_state = 42}, + [39] = {.lex_state = 42}, + [40] = {.lex_state = 42}, + [41] = {.lex_state = 42}, + [42] = {.lex_state = 42}, + [43] = {.lex_state = 42}, + [44] = {.lex_state = 42}, + [45] = {.lex_state = 42}, + [46] = {.lex_state = 42}, + [47] = {.lex_state = 42}, + [48] = {.lex_state = 42}, + [49] = {.lex_state = 42}, + [50] = {.lex_state = 42}, + [51] = {.lex_state = 41}, + [52] = {.lex_state = 42}, + [53] = {.lex_state = 42}, + [54] = {.lex_state = 41}, + [55] = {.lex_state = 42}, + [56] = {.lex_state = 42}, + [57] = {.lex_state = 42}, + [58] = {.lex_state = 42}, + [59] = {.lex_state = 42}, [60] = {.lex_state = 41}, - [61] = {.lex_state = 41}, - [62] = {.lex_state = 41}, - [63] = {.lex_state = 41}, - [64] = {.lex_state = 41}, - [65] = {.lex_state = 41}, - [66] = {.lex_state = 41}, - [67] = {.lex_state = 41}, - [68] = {.lex_state = 41}, - [69] = {.lex_state = 39}, - [70] = {.lex_state = 41}, - [71] = {.lex_state = 41}, - [72] = {.lex_state = 41}, - [73] = {.lex_state = 41}, - [74] = {.lex_state = 41}, - [75] = {.lex_state = 41}, - [76] = {.lex_state = 41}, - [77] = {.lex_state = 41}, - [78] = {.lex_state = 41}, - [79] = {.lex_state = 41}, - [80] = {.lex_state = 41}, - [81] = {.lex_state = 41}, - [82] = {.lex_state = 41}, - [83] = {.lex_state = 41}, - [84] = {.lex_state = 41}, - [85] = {.lex_state = 41}, - [86] = {.lex_state = 41}, - [87] = {.lex_state = 41}, - [88] = {.lex_state = 41}, - [89] = {.lex_state = 41}, - [90] = {.lex_state = 41}, - [91] = {.lex_state = 41}, - [92] = {.lex_state = 41}, + [61] = {.lex_state = 42}, + [62] = {.lex_state = 42}, + [63] = {.lex_state = 42}, + [64] = {.lex_state = 42}, + [65] = {.lex_state = 42}, + [66] = {.lex_state = 42}, + [67] = {.lex_state = 42}, + [68] = {.lex_state = 42}, + [69] = {.lex_state = 42}, + [70] = {.lex_state = 42}, + [71] = {.lex_state = 42}, + [72] = {.lex_state = 42}, + [73] = {.lex_state = 42}, + [74] = {.lex_state = 42}, + [75] = {.lex_state = 42}, + [76] = {.lex_state = 42}, + [77] = {.lex_state = 42}, + [78] = {.lex_state = 42}, + [79] = {.lex_state = 42}, + [80] = {.lex_state = 42}, + [81] = {.lex_state = 42}, + [82] = {.lex_state = 42}, + [83] = {.lex_state = 42}, + [84] = {.lex_state = 42}, + [85] = {.lex_state = 42}, + [86] = {.lex_state = 42}, + [87] = {.lex_state = 42}, + [88] = {.lex_state = 42}, + [89] = {.lex_state = 42}, + [90] = {.lex_state = 42}, + [91] = {.lex_state = 42}, + [92] = {.lex_state = 42}, [93] = {.lex_state = 41}, [94] = {.lex_state = 41}, - [95] = {.lex_state = 41}, - [96] = {.lex_state = 41}, - [97] = {.lex_state = 41}, - [98] = {.lex_state = 41}, - [99] = {.lex_state = 41}, - [100] = {.lex_state = 41}, - [101] = {.lex_state = 39}, - [102] = {.lex_state = 39}, - [103] = {.lex_state = 41}, - [104] = {.lex_state = 41}, + [95] = {.lex_state = 42}, + [96] = {.lex_state = 42}, + [97] = {.lex_state = 42}, + [98] = {.lex_state = 42}, + [99] = {.lex_state = 42}, + [100] = {.lex_state = 42}, + [101] = {.lex_state = 42}, + [102] = {.lex_state = 42}, + [103] = {.lex_state = 42}, + [104] = {.lex_state = 42}, [105] = {.lex_state = 41}, [106] = {.lex_state = 41}, [107] = {.lex_state = 41}, - [108] = {.lex_state = 41}, - [109] = {.lex_state = 41}, - [110] = {.lex_state = 41}, - [111] = {.lex_state = 39}, - [112] = {.lex_state = 41}, - [113] = {.lex_state = 41}, - [114] = {.lex_state = 39}, - [115] = {.lex_state = 39}, - [116] = {.lex_state = 39}, - [117] = {.lex_state = 41}, - [118] = {.lex_state = 39}, + [108] = {.lex_state = 44}, + [109] = {.lex_state = 44}, + [110] = {.lex_state = 44}, + [111] = {.lex_state = 44}, + [112] = {.lex_state = 44}, + [113] = {.lex_state = 44}, + [114] = {.lex_state = 44}, + [115] = {.lex_state = 44}, + [116] = {.lex_state = 44}, + [117] = {.lex_state = 45}, + [118] = {.lex_state = 41}, [119] = {.lex_state = 41}, - [120] = {.lex_state = 39}, - [121] = {.lex_state = 41}, + [120] = {.lex_state = 45}, + [121] = {.lex_state = 45}, [122] = {.lex_state = 41}, [123] = {.lex_state = 41}, - [124] = {.lex_state = 39}, - [125] = {.lex_state = 39}, - [126] = {.lex_state = 39}, - [127] = {.lex_state = 39}, - [128] = {.lex_state = 39}, - [129] = {.lex_state = 39}, - [130] = {.lex_state = 39}, - [131] = {.lex_state = 39}, - [132] = {.lex_state = 39}, + [124] = {.lex_state = 41}, + [125] = {.lex_state = 41}, + [126] = {.lex_state = 41}, + [127] = {.lex_state = 41}, + [128] = {.lex_state = 41}, + [129] = {.lex_state = 41}, + [130] = {.lex_state = 41}, + [131] = {.lex_state = 41}, + [132] = {.lex_state = 41}, [133] = {.lex_state = 41}, - [134] = {.lex_state = 39}, + [134] = {.lex_state = 41}, [135] = {.lex_state = 41}, - [136] = {.lex_state = 40}, + [136] = {.lex_state = 41}, [137] = {.lex_state = 41}, - [138] = {.lex_state = 39}, - [139] = {.lex_state = 39}, + [138] = {.lex_state = 41}, + [139] = {.lex_state = 41}, [140] = {.lex_state = 41}, - [141] = {.lex_state = 39}, + [141] = {.lex_state = 41}, [142] = {.lex_state = 41}, - [143] = {.lex_state = 39}, - [144] = {.lex_state = 39}, + [143] = {.lex_state = 45}, + [144] = {.lex_state = 41}, [145] = {.lex_state = 41}, - [146] = {.lex_state = 39}, - [147] = {.lex_state = 39}, - [148] = {.lex_state = 39}, - [149] = {.lex_state = 39}, + [146] = {.lex_state = 41}, + [147] = {.lex_state = 41}, + [148] = {.lex_state = 41}, + [149] = {.lex_state = 41}, [150] = {.lex_state = 41}, - [151] = {.lex_state = 39}, + [151] = {.lex_state = 41}, [152] = {.lex_state = 41}, - [153] = {.lex_state = 39}, + [153] = {.lex_state = 41}, [154] = {.lex_state = 41}, - [155] = {.lex_state = 39}, + [155] = {.lex_state = 41}, [156] = {.lex_state = 41}, [157] = {.lex_state = 41}, [158] = {.lex_state = 41}, - [159] = {.lex_state = 39}, + [159] = {.lex_state = 41}, [160] = {.lex_state = 41}, - [161] = {.lex_state = 39}, - [162] = {.lex_state = 40}, + [161] = {.lex_state = 41}, + [162] = {.lex_state = 41}, [163] = {.lex_state = 41}, [164] = {.lex_state = 41}, - [165] = {.lex_state = 39}, - [166] = {.lex_state = 40}, - [167] = {.lex_state = 40}, - [168] = {.lex_state = 39}, - [169] = {.lex_state = 41}, + [165] = {.lex_state = 41}, + [166] = {.lex_state = 41}, + [167] = {.lex_state = 41}, + [168] = {.lex_state = 45}, + [169] = {.lex_state = 45}, [170] = {.lex_state = 41}, [171] = {.lex_state = 41}, - [172] = {.lex_state = 41}, + [172] = {.lex_state = 45}, [173] = {.lex_state = 41}, [174] = {.lex_state = 41}, [175] = {.lex_state = 41}, @@ -5972,7 +5746,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [306] = {.lex_state = 41}, [307] = {.lex_state = 41}, [308] = {.lex_state = 41}, - [309] = {.lex_state = 41}, + [309] = {.lex_state = 3}, [310] = {.lex_state = 41}, [311] = {.lex_state = 41}, [312] = {.lex_state = 41}, @@ -6010,7 +5784,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [344] = {.lex_state = 41}, [345] = {.lex_state = 41}, [346] = {.lex_state = 41}, - [347] = {.lex_state = 41}, + [347] = {.lex_state = 3}, [348] = {.lex_state = 41}, [349] = {.lex_state = 41}, [350] = {.lex_state = 41}, @@ -6054,55 +5828,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [388] = {.lex_state = 41}, [389] = {.lex_state = 41}, [390] = {.lex_state = 41}, - [391] = {.lex_state = 41}, - [392] = {.lex_state = 41}, - [393] = {.lex_state = 41}, - [394] = {.lex_state = 41}, - [395] = {.lex_state = 41}, - [396] = {.lex_state = 41}, - [397] = {.lex_state = 41}, - [398] = {.lex_state = 41}, - [399] = {.lex_state = 41}, - [400] = {.lex_state = 41}, - [401] = {.lex_state = 41}, - [402] = {.lex_state = 4}, - [403] = {.lex_state = 41}, - [404] = {.lex_state = 41}, - [405] = {.lex_state = 41}, - [406] = {.lex_state = 41}, - [407] = {.lex_state = 41}, - [408] = {.lex_state = 41}, - [409] = {.lex_state = 41}, - [410] = {.lex_state = 41}, - [411] = {.lex_state = 41}, - [412] = {.lex_state = 41}, - [413] = {.lex_state = 41}, - [414] = {.lex_state = 41}, - [415] = {.lex_state = 41}, - [416] = {.lex_state = 41}, - [417] = {.lex_state = 41}, - [418] = {.lex_state = 41}, - [419] = {.lex_state = 41}, - [420] = {.lex_state = 41}, - [421] = {.lex_state = 39}, - [422] = {.lex_state = 39}, - [423] = {.lex_state = 41}, - [424] = {.lex_state = 39}, - [425] = {.lex_state = 39}, - [426] = {.lex_state = 39}, - [427] = {.lex_state = 39}, - [428] = {.lex_state = 39}, - [429] = {.lex_state = 41}, - [430] = {.lex_state = 41}, - [431] = {.lex_state = 41}, - [432] = {.lex_state = 41}, - [433] = {.lex_state = 41}, - [434] = {.lex_state = 41}, - [435] = {.lex_state = 41}, - [436] = {.lex_state = 41}, - [437] = {.lex_state = 41}, - [438] = {.lex_state = 41}, - [439] = {.lex_state = 41}, + [391] = {.lex_state = 1}, + [392] = {.lex_state = 3}, + [393] = {.lex_state = 1}, + [394] = {.lex_state = 3}, + [395] = {.lex_state = 1}, + [396] = {.lex_state = 1}, + [397] = {.lex_state = 1}, + [398] = {.lex_state = 1}, + [399] = {.lex_state = 3}, + [400] = {.lex_state = 3}, + [401] = {.lex_state = 1}, + [402] = {.lex_state = 3}, + [403] = {.lex_state = 3}, + [404] = {.lex_state = 3}, + [405] = {.lex_state = 1}, + [406] = {.lex_state = 3}, + [407] = {.lex_state = 3}, + [408] = {.lex_state = 2}, + [409] = {.lex_state = 2}, + [410] = {.lex_state = 2}, + [411] = {.lex_state = 3}, + [412] = {.lex_state = 3}, + [413] = {.lex_state = 3}, + [414] = {.lex_state = 3}, + [415] = {.lex_state = 3}, + [416] = {.lex_state = 2}, + [417] = {.lex_state = 2}, + [418] = {.lex_state = 3}, + [419] = {.lex_state = 3}, + [420] = {.lex_state = 2}, + [421] = {.lex_state = 2}, + [422] = {.lex_state = 2}, + [423] = {.lex_state = 3}, + [424] = {.lex_state = 1}, + [425] = {.lex_state = 1}, + [426] = {.lex_state = 1}, + [427] = {.lex_state = 1}, + [428] = {.lex_state = 1}, + [429] = {.lex_state = 1}, + [430] = {.lex_state = 2}, + [431] = {.lex_state = 2}, + [432] = {.lex_state = 1}, + [433] = {.lex_state = 1}, + [434] = {.lex_state = 2}, + [435] = {.lex_state = 2}, + [436] = {.lex_state = 2}, + [437] = {.lex_state = 2}, + [438] = {.lex_state = 2}, + [439] = {.lex_state = 2}, [440] = {.lex_state = 41}, [441] = {.lex_state = 41}, [442] = {.lex_state = 41}, @@ -6117,10 +5891,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [451] = {.lex_state = 41}, [452] = {.lex_state = 41}, [453] = {.lex_state = 41}, - [454] = {.lex_state = 39}, - [455] = {.lex_state = 39}, - [456] = {.lex_state = 39}, - [457] = {.lex_state = 39}, + [454] = {.lex_state = 42}, + [455] = {.lex_state = 42}, + [456] = {.lex_state = 41}, + [457] = {.lex_state = 41}, [458] = {.lex_state = 41}, [459] = {.lex_state = 41}, [460] = {.lex_state = 41}, @@ -6131,96 +5905,96 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [465] = {.lex_state = 41}, [466] = {.lex_state = 41}, [467] = {.lex_state = 41}, - [468] = {.lex_state = 2}, + [468] = {.lex_state = 41}, [469] = {.lex_state = 41}, - [470] = {.lex_state = 2}, + [470] = {.lex_state = 41}, [471] = {.lex_state = 41}, [472] = {.lex_state = 41}, [473] = {.lex_state = 41}, [474] = {.lex_state = 41}, - [475] = {.lex_state = 2}, - [476] = {.lex_state = 41}, - [477] = {.lex_state = 2}, - [478] = {.lex_state = 2}, - [479] = {.lex_state = 2}, - [480] = {.lex_state = 2}, - [481] = {.lex_state = 2}, - [482] = {.lex_state = 2}, - [483] = {.lex_state = 2}, - [484] = {.lex_state = 2}, - [485] = {.lex_state = 2}, + [475] = {.lex_state = 41}, + [476] = {.lex_state = 42}, + [477] = {.lex_state = 41}, + [478] = {.lex_state = 41}, + [479] = {.lex_state = 41}, + [480] = {.lex_state = 41}, + [481] = {.lex_state = 41}, + [482] = {.lex_state = 41}, + [483] = {.lex_state = 41}, + [484] = {.lex_state = 41}, + [485] = {.lex_state = 41}, [486] = {.lex_state = 41}, - [487] = {.lex_state = 2}, - [488] = {.lex_state = 2}, + [487] = {.lex_state = 41}, + [488] = {.lex_state = 42}, [489] = {.lex_state = 41}, - [490] = {.lex_state = 2}, + [490] = {.lex_state = 41}, [491] = {.lex_state = 41}, [492] = {.lex_state = 41}, - [493] = {.lex_state = 41}, - [494] = {.lex_state = 2}, - [495] = {.lex_state = 41}, - [496] = {.lex_state = 2}, - [497] = {.lex_state = 2}, - [498] = {.lex_state = 2}, + [493] = {.lex_state = 42}, + [494] = {.lex_state = 42}, + [495] = {.lex_state = 42}, + [496] = {.lex_state = 42}, + [497] = {.lex_state = 41}, + [498] = {.lex_state = 42}, [499] = {.lex_state = 41}, - [500] = {.lex_state = 0}, - [501] = {.lex_state = 0}, - [502] = {.lex_state = 0}, - [503] = {.lex_state = 41}, + [500] = {.lex_state = 42}, + [501] = {.lex_state = 42}, + [502] = {.lex_state = 42}, + [503] = {.lex_state = 42}, [504] = {.lex_state = 41}, - [505] = {.lex_state = 0}, - [506] = {.lex_state = 0}, - [507] = {.lex_state = 0}, - [508] = {.lex_state = 41}, - [509] = {.lex_state = 2}, - [510] = {.lex_state = 41}, - [511] = {.lex_state = 41}, - [512] = {.lex_state = 41}, + [505] = {.lex_state = 41}, + [506] = {.lex_state = 41}, + [507] = {.lex_state = 42}, + [508] = {.lex_state = 42}, + [509] = {.lex_state = 42}, + [510] = {.lex_state = 42}, + [511] = {.lex_state = 1}, + [512] = {.lex_state = 1}, [513] = {.lex_state = 41}, - [514] = {.lex_state = 41}, - [515] = {.lex_state = 41}, - [516] = {.lex_state = 0}, - [517] = {.lex_state = 2}, - [518] = {.lex_state = 0}, - [519] = {.lex_state = 41}, - [520] = {.lex_state = 0}, - [521] = {.lex_state = 41}, + [514] = {.lex_state = 42}, + [515] = {.lex_state = 1}, + [516] = {.lex_state = 1}, + [517] = {.lex_state = 41}, + [518] = {.lex_state = 42}, + [519] = {.lex_state = 2}, + [520] = {.lex_state = 41}, + [521] = {.lex_state = 2}, [522] = {.lex_state = 41}, [523] = {.lex_state = 41}, [524] = {.lex_state = 41}, [525] = {.lex_state = 41}, - [526] = {.lex_state = 41}, + [526] = {.lex_state = 2}, [527] = {.lex_state = 41}, [528] = {.lex_state = 41}, - [529] = {.lex_state = 2}, - [530] = {.lex_state = 2}, - [531] = {.lex_state = 41}, - [532] = {.lex_state = 41}, + [529] = {.lex_state = 41}, + [530] = {.lex_state = 41}, + [531] = {.lex_state = 42}, + [532] = {.lex_state = 2}, [533] = {.lex_state = 41}, [534] = {.lex_state = 41}, [535] = {.lex_state = 41}, - [536] = {.lex_state = 2}, - [537] = {.lex_state = 41}, - [538] = {.lex_state = 41}, + [536] = {.lex_state = 41}, + [537] = {.lex_state = 42}, + [538] = {.lex_state = 9}, [539] = {.lex_state = 41}, - [540] = {.lex_state = 41}, - [541] = {.lex_state = 41}, + [540] = {.lex_state = 44}, + [541] = {.lex_state = 44}, [542] = {.lex_state = 41}, [543] = {.lex_state = 41}, - [544] = {.lex_state = 41}, - [545] = {.lex_state = 41}, + [544] = {.lex_state = 44}, + [545] = {.lex_state = 44}, [546] = {.lex_state = 41}, [547] = {.lex_state = 41}, [548] = {.lex_state = 41}, - [549] = {.lex_state = 41}, - [550] = {.lex_state = 41}, + [549] = {.lex_state = 9}, + [550] = {.lex_state = 9}, [551] = {.lex_state = 41}, [552] = {.lex_state = 41}, [553] = {.lex_state = 41}, [554] = {.lex_state = 41}, [555] = {.lex_state = 41}, [556] = {.lex_state = 41}, - [557] = {.lex_state = 41}, + [557] = {.lex_state = 9}, [558] = {.lex_state = 41}, [559] = {.lex_state = 41}, [560] = {.lex_state = 41}, @@ -6229,8 +6003,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [563] = {.lex_state = 41}, [564] = {.lex_state = 41}, [565] = {.lex_state = 41}, - [566] = {.lex_state = 41}, - [567] = {.lex_state = 41}, + [566] = {.lex_state = 1}, + [567] = {.lex_state = 1}, [568] = {.lex_state = 41}, [569] = {.lex_state = 41}, [570] = {.lex_state = 41}, @@ -6259,540 +6033,540 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [593] = {.lex_state = 41}, [594] = {.lex_state = 41}, [595] = {.lex_state = 41}, - [596] = {.lex_state = 41}, + [596] = {.lex_state = 2}, [597] = {.lex_state = 41}, [598] = {.lex_state = 41}, - [599] = {.lex_state = 41}, + [599] = {.lex_state = 2}, [600] = {.lex_state = 41}, [601] = {.lex_state = 41}, [602] = {.lex_state = 41}, - [603] = {.lex_state = 4}, - [604] = {.lex_state = 4}, - [605] = {.lex_state = 4}, - [606] = {.lex_state = 4}, - [607] = {.lex_state = 4}, - [608] = {.lex_state = 4}, - [609] = {.lex_state = 4}, - [610] = {.lex_state = 2}, - [611] = {.lex_state = 2}, - [612] = {.lex_state = 3}, + [603] = {.lex_state = 41}, + [604] = {.lex_state = 41}, + [605] = {.lex_state = 41}, + [606] = {.lex_state = 41}, + [607] = {.lex_state = 41}, + [608] = {.lex_state = 41}, + [609] = {.lex_state = 41}, + [610] = {.lex_state = 41}, + [611] = {.lex_state = 41}, + [612] = {.lex_state = 41}, [613] = {.lex_state = 41}, [614] = {.lex_state = 41}, - [615] = {.lex_state = 3}, + [615] = {.lex_state = 41}, [616] = {.lex_state = 41}, - [617] = {.lex_state = 3}, - [618] = {.lex_state = 3}, - [619] = {.lex_state = 3}, - [620] = {.lex_state = 3}, - [621] = {.lex_state = 3}, - [622] = {.lex_state = 1}, - [623] = {.lex_state = 2}, + [617] = {.lex_state = 41}, + [618] = {.lex_state = 41}, + [619] = {.lex_state = 41}, + [620] = {.lex_state = 41}, + [621] = {.lex_state = 41}, + [622] = {.lex_state = 41}, + [623] = {.lex_state = 41}, [624] = {.lex_state = 41}, - [625] = {.lex_state = 2}, - [626] = {.lex_state = 1}, + [625] = {.lex_state = 41}, + [626] = {.lex_state = 41}, [627] = {.lex_state = 41}, [628] = {.lex_state = 41}, [629] = {.lex_state = 41}, [630] = {.lex_state = 41}, - [631] = {.lex_state = 2}, + [631] = {.lex_state = 41}, [632] = {.lex_state = 41}, [633] = {.lex_state = 41}, [634] = {.lex_state = 41}, [635] = {.lex_state = 41}, [636] = {.lex_state = 41}, - [637] = {.lex_state = 2}, + [637] = {.lex_state = 41}, [638] = {.lex_state = 41}, [639] = {.lex_state = 41}, [640] = {.lex_state = 41}, [641] = {.lex_state = 41}, [642] = {.lex_state = 41}, [643] = {.lex_state = 41}, - [644] = {.lex_state = 41}, - [645] = {.lex_state = 41}, - [646] = {.lex_state = 41}, - [647] = {.lex_state = 41}, - [648] = {.lex_state = 41}, + [644] = {.lex_state = 3}, + [645] = {.lex_state = 3}, + [646] = {.lex_state = 3}, + [647] = {.lex_state = 3}, + [648] = {.lex_state = 5}, [649] = {.lex_state = 41}, - [650] = {.lex_state = 41}, + [650] = {.lex_state = 5}, [651] = {.lex_state = 41}, - [652] = {.lex_state = 41}, - [653] = {.lex_state = 41}, - [654] = {.lex_state = 41}, - [655] = {.lex_state = 41}, + [652] = {.lex_state = 5}, + [653] = {.lex_state = 44}, + [654] = {.lex_state = 8}, + [655] = {.lex_state = 3}, [656] = {.lex_state = 41}, - [657] = {.lex_state = 2}, - [658] = {.lex_state = 41}, - [659] = {.lex_state = 41}, - [660] = {.lex_state = 41}, - [661] = {.lex_state = 41}, - [662] = {.lex_state = 2}, - [663] = {.lex_state = 41}, - [664] = {.lex_state = 41}, - [665] = {.lex_state = 41}, - [666] = {.lex_state = 41}, - [667] = {.lex_state = 41}, - [668] = {.lex_state = 41}, - [669] = {.lex_state = 41}, - [670] = {.lex_state = 41}, - [671] = {.lex_state = 41}, - [672] = {.lex_state = 41}, - [673] = {.lex_state = 41}, - [674] = {.lex_state = 41}, - [675] = {.lex_state = 41}, - [676] = {.lex_state = 41}, - [677] = {.lex_state = 2}, - [678] = {.lex_state = 41}, - [679] = {.lex_state = 2}, - [680] = {.lex_state = 3}, - [681] = {.lex_state = 3}, - [682] = {.lex_state = 3}, - [683] = {.lex_state = 3}, - [684] = {.lex_state = 3}, - [685] = {.lex_state = 2}, - [686] = {.lex_state = 2}, - [687] = {.lex_state = 2}, - [688] = {.lex_state = 2}, - [689] = {.lex_state = 3}, - [690] = {.lex_state = 3}, - [691] = {.lex_state = 41}, - [692] = {.lex_state = 2}, - [693] = {.lex_state = 41}, - [694] = {.lex_state = 41}, - [695] = {.lex_state = 2}, - [696] = {.lex_state = 41}, - [697] = {.lex_state = 2}, - [698] = {.lex_state = 2}, - [699] = {.lex_state = 41}, - [700] = {.lex_state = 2}, - [701] = {.lex_state = 3}, - [702] = {.lex_state = 2}, - [703] = {.lex_state = 2}, - [704] = {.lex_state = 2}, - [705] = {.lex_state = 2}, - [706] = {.lex_state = 2}, - [707] = {.lex_state = 2}, - [708] = {.lex_state = 2}, - [709] = {.lex_state = 2}, - [710] = {.lex_state = 2}, - [711] = {.lex_state = 2}, - [712] = {.lex_state = 2}, - [713] = {.lex_state = 41}, - [714] = {.lex_state = 2}, - [715] = {.lex_state = 2}, - [716] = {.lex_state = 2}, - [717] = {.lex_state = 2}, - [718] = {.lex_state = 2}, - [719] = {.lex_state = 2}, - [720] = {.lex_state = 2}, - [721] = {.lex_state = 2}, - [722] = {.lex_state = 2}, - [723] = {.lex_state = 2}, - [724] = {.lex_state = 2}, - [725] = {.lex_state = 2}, - [726] = {.lex_state = 2}, - [727] = {.lex_state = 2}, - [728] = {.lex_state = 2}, - [729] = {.lex_state = 2}, - [730] = {.lex_state = 2}, - [731] = {.lex_state = 2}, - [732] = {.lex_state = 2}, - [733] = {.lex_state = 3}, - [734] = {.lex_state = 3}, - [735] = {.lex_state = 3}, - [736] = {.lex_state = 3}, - [737] = {.lex_state = 2}, - [738] = {.lex_state = 2}, - [739] = {.lex_state = 3}, - [740] = {.lex_state = 2}, - [741] = {.lex_state = 2}, - [742] = {.lex_state = 2}, - [743] = {.lex_state = 41}, - [744] = {.lex_state = 2}, - [745] = {.lex_state = 2}, - [746] = {.lex_state = 3}, - [747] = {.lex_state = 41}, - [748] = {.lex_state = 41}, - [749] = {.lex_state = 41}, - [750] = {.lex_state = 41}, - [751] = {.lex_state = 41}, - [752] = {.lex_state = 41}, - [753] = {.lex_state = 4}, - [754] = {.lex_state = 4}, - [755] = {.lex_state = 41}, - [756] = {.lex_state = 41}, - [757] = {.lex_state = 4}, - [758] = {.lex_state = 41}, - [759] = {.lex_state = 4}, - [760] = {.lex_state = 4}, - [761] = {.lex_state = 41}, - [762] = {.lex_state = 41}, - [763] = {.lex_state = 4}, - [764] = {.lex_state = 41}, - [765] = {.lex_state = 4}, - [766] = {.lex_state = 41}, - [767] = {.lex_state = 41}, - [768] = {.lex_state = 41}, - [769] = {.lex_state = 41}, - [770] = {.lex_state = 41}, - [771] = {.lex_state = 41}, - [772] = {.lex_state = 41}, - [773] = {.lex_state = 41}, - [774] = {.lex_state = 41}, - [775] = {.lex_state = 41}, - [776] = {.lex_state = 41}, - [777] = {.lex_state = 7}, - [778] = {.lex_state = 41}, - [779] = {.lex_state = 41}, - [780] = {.lex_state = 41}, - [781] = {.lex_state = 41}, - [782] = {.lex_state = 41}, - [783] = {.lex_state = 41}, - [784] = {.lex_state = 41}, - [785] = {.lex_state = 41}, - [786] = {.lex_state = 41}, - [787] = {.lex_state = 41}, - [788] = {.lex_state = 7}, - [789] = {.lex_state = 41}, - [790] = {.lex_state = 41}, - [791] = {.lex_state = 41}, - [792] = {.lex_state = 41}, - [793] = {.lex_state = 41}, - [794] = {.lex_state = 41}, - [795] = {.lex_state = 41}, - [796] = {.lex_state = 41}, - [797] = {.lex_state = 41}, - [798] = {.lex_state = 7}, - [799] = {.lex_state = 41}, - [800] = {.lex_state = 41}, - [801] = {.lex_state = 41}, - [802] = {.lex_state = 7}, - [803] = {.lex_state = 41}, - [804] = {.lex_state = 41}, - [805] = {.lex_state = 41}, - [806] = {.lex_state = 7}, - [807] = {.lex_state = 41}, - [808] = {.lex_state = 41}, - [809] = {.lex_state = 41}, - [810] = {.lex_state = 41}, - [811] = {.lex_state = 7}, - [812] = {.lex_state = 41}, - [813] = {.lex_state = 41}, - [814] = {.lex_state = 7}, - [815] = {.lex_state = 41}, - [816] = {.lex_state = 41}, - [817] = {.lex_state = 41}, - [818] = {.lex_state = 3}, - [819] = {.lex_state = 4}, - [820] = {.lex_state = 4}, - [821] = {.lex_state = 4}, - [822] = {.lex_state = 4}, - [823] = {.lex_state = 4}, - [824] = {.lex_state = 4}, - [825] = {.lex_state = 41}, - [826] = {.lex_state = 41}, - [827] = {.lex_state = 41}, - [828] = {.lex_state = 4}, - [829] = {.lex_state = 41}, - [830] = {.lex_state = 4}, - [831] = {.lex_state = 41}, - [832] = {.lex_state = 41}, - [833] = {.lex_state = 41}, - [834] = {.lex_state = 41}, - [835] = {.lex_state = 41}, - [836] = {.lex_state = 41}, - [837] = {.lex_state = 41}, - [838] = {.lex_state = 41}, - [839] = {.lex_state = 41}, - [840] = {.lex_state = 41}, - [841] = {.lex_state = 41}, - [842] = {.lex_state = 41}, - [843] = {.lex_state = 41}, - [844] = {.lex_state = 41}, - [845] = {.lex_state = 41}, - [846] = {.lex_state = 41}, - [847] = {.lex_state = 41}, - [848] = {.lex_state = 41}, - [849] = {.lex_state = 41}, - [850] = {.lex_state = 41}, - [851] = {.lex_state = 41}, - [852] = {.lex_state = 41}, - [853] = {.lex_state = 41}, - [854] = {.lex_state = 41}, - [855] = {.lex_state = 41}, - [856] = {.lex_state = 41}, - [857] = {.lex_state = 41}, - [858] = {.lex_state = 41}, - [859] = {.lex_state = 41}, - [860] = {.lex_state = 41}, - [861] = {.lex_state = 41}, - [862] = {.lex_state = 41}, - [863] = {.lex_state = 41}, - [864] = {.lex_state = 41}, - [865] = {.lex_state = 41}, - [866] = {.lex_state = 41}, - [867] = {.lex_state = 41}, - [868] = {.lex_state = 41}, - [869] = {.lex_state = 41}, - [870] = {.lex_state = 41}, - [871] = {.lex_state = 41}, - [872] = {.lex_state = 41}, - [873] = {.lex_state = 41}, - [874] = {.lex_state = 41}, - [875] = {.lex_state = 41}, - [876] = {.lex_state = 41}, - [877] = {.lex_state = 41}, - [878] = {.lex_state = 41}, - [879] = {.lex_state = 41}, - [880] = {.lex_state = 41}, - [881] = {.lex_state = 41}, + [657] = {.lex_state = 3}, + [658] = {.lex_state = 3}, + [659] = {.lex_state = 4}, + [660] = {.lex_state = 5}, + [661] = {.lex_state = 5}, + [662] = {.lex_state = 6}, + [663] = {.lex_state = 5}, + [664] = {.lex_state = 5}, + [665] = {.lex_state = 6}, + [666] = {.lex_state = 5}, + [667] = {.lex_state = 3}, + [668] = {.lex_state = 42}, + [669] = {.lex_state = 5}, + [670] = {.lex_state = 5}, + [671] = {.lex_state = 5}, + [672] = {.lex_state = 5}, + [673] = {.lex_state = 42}, + [674] = {.lex_state = 3}, + [675] = {.lex_state = 42}, + [676] = {.lex_state = 6}, + [677] = {.lex_state = 5}, + [678] = {.lex_state = 5}, + [679] = {.lex_state = 5}, + [680] = {.lex_state = 6}, + [681] = {.lex_state = 5}, + [682] = {.lex_state = 5}, + [683] = {.lex_state = 6}, + [684] = {.lex_state = 5}, + [685] = {.lex_state = 5}, + [686] = {.lex_state = 3}, + [687] = {.lex_state = 5}, + [688] = {.lex_state = 5}, + [689] = {.lex_state = 6}, + [690] = {.lex_state = 5}, + [691] = {.lex_state = 5}, + [692] = {.lex_state = 4}, + [693] = {.lex_state = 5}, + [694] = {.lex_state = 5}, + [695] = {.lex_state = 5}, + [696] = {.lex_state = 3}, + [697] = {.lex_state = 5}, + [698] = {.lex_state = 5}, + [699] = {.lex_state = 5}, + [700] = {.lex_state = 5}, + [701] = {.lex_state = 5}, + [702] = {.lex_state = 5}, + [703] = {.lex_state = 5}, + [704] = {.lex_state = 4}, + [705] = {.lex_state = 5}, + [706] = {.lex_state = 5}, + [707] = {.lex_state = 6}, + [708] = {.lex_state = 5}, + [709] = {.lex_state = 5}, + [710] = {.lex_state = 5}, + [711] = {.lex_state = 5}, + [712] = {.lex_state = 5}, + [713] = {.lex_state = 5}, + [714] = {.lex_state = 5}, + [715] = {.lex_state = 6}, + [716] = {.lex_state = 5}, + [717] = {.lex_state = 6}, + [718] = {.lex_state = 3}, + [719] = {.lex_state = 5}, + [720] = {.lex_state = 5}, + [721] = {.lex_state = 5}, + [722] = {.lex_state = 5}, + [723] = {.lex_state = 3}, + [724] = {.lex_state = 5}, + [725] = {.lex_state = 5}, + [726] = {.lex_state = 5}, + [727] = {.lex_state = 42}, + [728] = {.lex_state = 6}, + [729] = {.lex_state = 6}, + [730] = {.lex_state = 5}, + [731] = {.lex_state = 6}, + [732] = {.lex_state = 42}, + [733] = {.lex_state = 6}, + [734] = {.lex_state = 42}, + [735] = {.lex_state = 42}, + [736] = {.lex_state = 6}, + [737] = {.lex_state = 6}, + [738] = {.lex_state = 6}, + [739] = {.lex_state = 6}, + [740] = {.lex_state = 6}, + [741] = {.lex_state = 6}, + [742] = {.lex_state = 3}, + [743] = {.lex_state = 5}, + [744] = {.lex_state = 42}, + [745] = {.lex_state = 9}, + [746] = {.lex_state = 6}, + [747] = {.lex_state = 6}, + [748] = {.lex_state = 6}, + [749] = {.lex_state = 6}, + [750] = {.lex_state = 6}, + [751] = {.lex_state = 42}, + [752] = {.lex_state = 44}, + [753] = {.lex_state = 6}, + [754] = {.lex_state = 6}, + [755] = {.lex_state = 6}, + [756] = {.lex_state = 6}, + [757] = {.lex_state = 5}, + [758] = {.lex_state = 6}, + [759] = {.lex_state = 6}, + [760] = {.lex_state = 6}, + [761] = {.lex_state = 6}, + [762] = {.lex_state = 6}, + [763] = {.lex_state = 42}, + [764] = {.lex_state = 6}, + [765] = {.lex_state = 6}, + [766] = {.lex_state = 6}, + [767] = {.lex_state = 6}, + [768] = {.lex_state = 6}, + [769] = {.lex_state = 6}, + [770] = {.lex_state = 6}, + [771] = {.lex_state = 6}, + [772] = {.lex_state = 6}, + [773] = {.lex_state = 6}, + [774] = {.lex_state = 6}, + [775] = {.lex_state = 6}, + [776] = {.lex_state = 42}, + [777] = {.lex_state = 5}, + [778] = {.lex_state = 6}, + [779] = {.lex_state = 9}, + [780] = {.lex_state = 6}, + [781] = {.lex_state = 44}, + [782] = {.lex_state = 5}, + [783] = {.lex_state = 42}, + [784] = {.lex_state = 6}, + [785] = {.lex_state = 3}, + [786] = {.lex_state = 5}, + [787] = {.lex_state = 6}, + [788] = {.lex_state = 5}, + [789] = {.lex_state = 6}, + [790] = {.lex_state = 6}, + [791] = {.lex_state = 6}, + [792] = {.lex_state = 5}, + [793] = {.lex_state = 5}, + [794] = {.lex_state = 5}, + [795] = {.lex_state = 5}, + [796] = {.lex_state = 5}, + [797] = {.lex_state = 3}, + [798] = {.lex_state = 6}, + [799] = {.lex_state = 5}, + [800] = {.lex_state = 6}, + [801] = {.lex_state = 5}, + [802] = {.lex_state = 6}, + [803] = {.lex_state = 6}, + [804] = {.lex_state = 3}, + [805] = {.lex_state = 5}, + [806] = {.lex_state = 3}, + [807] = {.lex_state = 5}, + [808] = {.lex_state = 6}, + [809] = {.lex_state = 3}, + [810] = {.lex_state = 5}, + [811] = {.lex_state = 3}, + [812] = {.lex_state = 6}, + [813] = {.lex_state = 5}, + [814] = {.lex_state = 5}, + [815] = {.lex_state = 5}, + [816] = {.lex_state = 5}, + [817] = {.lex_state = 5}, + [818] = {.lex_state = 5}, + [819] = {.lex_state = 5}, + [820] = {.lex_state = 6}, + [821] = {.lex_state = 6}, + [822] = {.lex_state = 5}, + [823] = {.lex_state = 6}, + [824] = {.lex_state = 6}, + [825] = {.lex_state = 5}, + [826] = {.lex_state = 6}, + [827] = {.lex_state = 6}, + [828] = {.lex_state = 5}, + [829] = {.lex_state = 6}, + [830] = {.lex_state = 2}, + [831] = {.lex_state = 6}, + [832] = {.lex_state = 5}, + [833] = {.lex_state = 5}, + [834] = {.lex_state = 5}, + [835] = {.lex_state = 5}, + [836] = {.lex_state = 5}, + [837] = {.lex_state = 6}, + [838] = {.lex_state = 5}, + [839] = {.lex_state = 6}, + [840] = {.lex_state = 5}, + [841] = {.lex_state = 5}, + [842] = {.lex_state = 5}, + [843] = {.lex_state = 6}, + [844] = {.lex_state = 2}, + [845] = {.lex_state = 6}, + [846] = {.lex_state = 5}, + [847] = {.lex_state = 5}, + [848] = {.lex_state = 6}, + [849] = {.lex_state = 6}, + [850] = {.lex_state = 6}, + [851] = {.lex_state = 6}, + [852] = {.lex_state = 5}, + [853] = {.lex_state = 5}, + [854] = {.lex_state = 6}, + [855] = {.lex_state = 5}, + [856] = {.lex_state = 6}, + [857] = {.lex_state = 6}, + [858] = {.lex_state = 6}, + [859] = {.lex_state = 5}, + [860] = {.lex_state = 6}, + [861] = {.lex_state = 6}, + [862] = {.lex_state = 5}, + [863] = {.lex_state = 5}, + [864] = {.lex_state = 6}, + [865] = {.lex_state = 5}, + [866] = {.lex_state = 5}, + [867] = {.lex_state = 6}, + [868] = {.lex_state = 5}, + [869] = {.lex_state = 6}, + [870] = {.lex_state = 5}, + [871] = {.lex_state = 6}, + [872] = {.lex_state = 5}, + [873] = {.lex_state = 6}, + [874] = {.lex_state = 6}, + [875] = {.lex_state = 6}, + [876] = {.lex_state = 6}, + [877] = {.lex_state = 5}, + [878] = {.lex_state = 6}, + [879] = {.lex_state = 5}, + [880] = {.lex_state = 6}, + [881] = {.lex_state = 5}, [882] = {.lex_state = 41}, [883] = {.lex_state = 41}, - [884] = {.lex_state = 41}, - [885] = {.lex_state = 41}, - [886] = {.lex_state = 41}, - [887] = {.lex_state = 41}, - [888] = {.lex_state = 41}, - [889] = {.lex_state = 41}, - [890] = {.lex_state = 41}, - [891] = {.lex_state = 41}, - [892] = {.lex_state = 41}, - [893] = {.lex_state = 41}, - [894] = {.lex_state = 41}, - [895] = {.lex_state = 41}, - [896] = {.lex_state = 41}, - [897] = {.lex_state = 41}, - [898] = {.lex_state = 41}, - [899] = {.lex_state = 41}, - [900] = {.lex_state = 41}, - [901] = {.lex_state = 41}, - [902] = {.lex_state = 41}, - [903] = {.lex_state = 41}, - [904] = {.lex_state = 41}, - [905] = {.lex_state = 41}, - [906] = {.lex_state = 41}, - [907] = {.lex_state = 41}, - [908] = {.lex_state = 41}, - [909] = {.lex_state = 41}, - [910] = {.lex_state = 41}, - [911] = {.lex_state = 41}, - [912] = {.lex_state = 41}, - [913] = {.lex_state = 41}, - [914] = {.lex_state = 41}, - [915] = {.lex_state = 41}, - [916] = {.lex_state = 41}, - [917] = {.lex_state = 41}, - [918] = {.lex_state = 41}, - [919] = {.lex_state = 41}, - [920] = {.lex_state = 41}, - [921] = {.lex_state = 41}, - [922] = {.lex_state = 41}, - [923] = {.lex_state = 41}, - [924] = {.lex_state = 41}, - [925] = {.lex_state = 41}, - [926] = {.lex_state = 41}, - [927] = {.lex_state = 41}, - [928] = {.lex_state = 41}, - [929] = {.lex_state = 41}, - [930] = {.lex_state = 41}, - [931] = {.lex_state = 41}, - [932] = {.lex_state = 41}, - [933] = {.lex_state = 3}, - [934] = {.lex_state = 41}, - [935] = {.lex_state = 41}, - [936] = {.lex_state = 41}, - [937] = {.lex_state = 41}, - [938] = {.lex_state = 3}, - [939] = {.lex_state = 3}, - [940] = {.lex_state = 41}, - [941] = {.lex_state = 3}, - [942] = {.lex_state = 3}, - [943] = {.lex_state = 41}, - [944] = {.lex_state = 3}, - [945] = {.lex_state = 41}, - [946] = {.lex_state = 41}, - [947] = {.lex_state = 41}, - [948] = {.lex_state = 41}, - [949] = {.lex_state = 41}, - [950] = {.lex_state = 41}, - [951] = {.lex_state = 41}, - [952] = {.lex_state = 4}, + [884] = {.lex_state = 5}, + [885] = {.lex_state = 6}, + [886] = {.lex_state = 6}, + [887] = {.lex_state = 6}, + [888] = {.lex_state = 5}, + [889] = {.lex_state = 5}, + [890] = {.lex_state = 6}, + [891] = {.lex_state = 5}, + [892] = {.lex_state = 6}, + [893] = {.lex_state = 5}, + [894] = {.lex_state = 5}, + [895] = {.lex_state = 5}, + [896] = {.lex_state = 6}, + [897] = {.lex_state = 6}, + [898] = {.lex_state = 5}, + [899] = {.lex_state = 5}, + [900] = {.lex_state = 6}, + [901] = {.lex_state = 5}, + [902] = {.lex_state = 6}, + [903] = {.lex_state = 5}, + [904] = {.lex_state = 6}, + [905] = {.lex_state = 5}, + [906] = {.lex_state = 5}, + [907] = {.lex_state = 6}, + [908] = {.lex_state = 5}, + [909] = {.lex_state = 6}, + [910] = {.lex_state = 6}, + [911] = {.lex_state = 3}, + [912] = {.lex_state = 6}, + [913] = {.lex_state = 5}, + [914] = {.lex_state = 6}, + [915] = {.lex_state = 6}, + [916] = {.lex_state = 5}, + [917] = {.lex_state = 5}, + [918] = {.lex_state = 5}, + [919] = {.lex_state = 6}, + [920] = {.lex_state = 6}, + [921] = {.lex_state = 6}, + [922] = {.lex_state = 5}, + [923] = {.lex_state = 5}, + [924] = {.lex_state = 6}, + [925] = {.lex_state = 6}, + [926] = {.lex_state = 6}, + [927] = {.lex_state = 6}, + [928] = {.lex_state = 6}, + [929] = {.lex_state = 5}, + [930] = {.lex_state = 6}, + [931] = {.lex_state = 5}, + [932] = {.lex_state = 6}, + [933] = {.lex_state = 6}, + [934] = {.lex_state = 6}, + [935] = {.lex_state = 6}, + [936] = {.lex_state = 6}, + [937] = {.lex_state = 6}, + [938] = {.lex_state = 6}, + [939] = {.lex_state = 6}, + [940] = {.lex_state = 6}, + [941] = {.lex_state = 6}, + [942] = {.lex_state = 5}, + [943] = {.lex_state = 6}, + [944] = {.lex_state = 6}, + [945] = {.lex_state = 6}, + [946] = {.lex_state = 2}, + [947] = {.lex_state = 6}, + [948] = {.lex_state = 6}, + [949] = {.lex_state = 6}, + [950] = {.lex_state = 2}, + [951] = {.lex_state = 6}, + [952] = {.lex_state = 6}, [953] = {.lex_state = 6}, - [954] = {.lex_state = 41}, - [955] = {.lex_state = 3}, - [956] = {.lex_state = 4}, - [957] = {.lex_state = 3}, - [958] = {.lex_state = 3}, - [959] = {.lex_state = 7}, - [960] = {.lex_state = 7}, - [961] = {.lex_state = 11}, - [962] = {.lex_state = 10}, - [963] = {.lex_state = 10}, - [964] = {.lex_state = 3}, - [965] = {.lex_state = 3}, - [966] = {.lex_state = 11}, - [967] = {.lex_state = 11}, - [968] = {.lex_state = 3}, - [969] = {.lex_state = 9}, - [970] = {.lex_state = 9}, - [971] = {.lex_state = 9}, - [972] = {.lex_state = 8}, - [973] = {.lex_state = 9}, - [974] = {.lex_state = 9}, - [975] = {.lex_state = 0}, - [976] = {.lex_state = 3}, - [977] = {.lex_state = 3}, - [978] = {.lex_state = 3}, - [979] = {.lex_state = 4}, - [980] = {.lex_state = 3}, - [981] = {.lex_state = 4}, - [982] = {.lex_state = 2}, - [983] = {.lex_state = 11}, - [984] = {.lex_state = 4}, - [985] = {.lex_state = 11}, - [986] = {.lex_state = 2}, - [987] = {.lex_state = 3}, - [988] = {.lex_state = 4}, - [989] = {.lex_state = 2}, - [990] = {.lex_state = 11}, + [954] = {.lex_state = 6}, + [955] = {.lex_state = 6}, + [956] = {.lex_state = 6}, + [957] = {.lex_state = 6}, + [958] = {.lex_state = 6}, + [959] = {.lex_state = 5}, + [960] = {.lex_state = 6}, + [961] = {.lex_state = 6}, + [962] = {.lex_state = 6}, + [963] = {.lex_state = 41}, + [964] = {.lex_state = 6}, + [965] = {.lex_state = 6}, + [966] = {.lex_state = 6}, + [967] = {.lex_state = 6}, + [968] = {.lex_state = 6}, + [969] = {.lex_state = 6}, + [970] = {.lex_state = 6}, + [971] = {.lex_state = 6}, + [972] = {.lex_state = 6}, + [973] = {.lex_state = 42}, + [974] = {.lex_state = 42}, + [975] = {.lex_state = 42}, + [976] = {.lex_state = 42}, + [977] = {.lex_state = 6}, + [978] = {.lex_state = 42}, + [979] = {.lex_state = 5}, + [980] = {.lex_state = 42}, + [981] = {.lex_state = 42}, + [982] = {.lex_state = 5}, + [983] = {.lex_state = 42}, + [984] = {.lex_state = 42}, + [985] = {.lex_state = 42}, + [986] = {.lex_state = 5}, + [987] = {.lex_state = 42}, + [988] = {.lex_state = 6}, + [989] = {.lex_state = 6}, + [990] = {.lex_state = 6}, [991] = {.lex_state = 11}, - [992] = {.lex_state = 0}, - [993] = {.lex_state = 0}, - [994] = {.lex_state = 0}, + [992] = {.lex_state = 11}, + [993] = {.lex_state = 11}, + [994] = {.lex_state = 11}, [995] = {.lex_state = 11}, - [996] = {.lex_state = 3}, - [997] = {.lex_state = 4}, - [998] = {.lex_state = 11}, - [999] = {.lex_state = 2}, - [1000] = {.lex_state = 11}, + [996] = {.lex_state = 11}, + [997] = {.lex_state = 11}, + [998] = {.lex_state = 10}, + [999] = {.lex_state = 0}, + [1000] = {.lex_state = 0}, [1001] = {.lex_state = 0}, - [1002] = {.lex_state = 11}, + [1002] = {.lex_state = 0}, [1003] = {.lex_state = 3}, [1004] = {.lex_state = 0}, - [1005] = {.lex_state = 11}, - [1006] = {.lex_state = 4}, - [1007] = {.lex_state = 11}, - [1008] = {.lex_state = 4}, - [1009] = {.lex_state = 4}, - [1010] = {.lex_state = 4}, - [1011] = {.lex_state = 11}, - [1012] = {.lex_state = 4}, - [1013] = {.lex_state = 11}, - [1014] = {.lex_state = 11}, - [1015] = {.lex_state = 2}, + [1005] = {.lex_state = 0}, + [1006] = {.lex_state = 3}, + [1007] = {.lex_state = 3}, + [1008] = {.lex_state = 3}, + [1009] = {.lex_state = 3}, + [1010] = {.lex_state = 0}, + [1011] = {.lex_state = 3}, + [1012] = {.lex_state = 3}, + [1013] = {.lex_state = 3}, + [1014] = {.lex_state = 3}, + [1015] = {.lex_state = 3}, [1016] = {.lex_state = 3}, - [1017] = {.lex_state = 11}, - [1018] = {.lex_state = 4}, - [1019] = {.lex_state = 2}, - [1020] = {.lex_state = 4}, - [1021] = {.lex_state = 0}, - [1022] = {.lex_state = 2}, - [1023] = {.lex_state = 0}, - [1024] = {.lex_state = 9}, - [1025] = {.lex_state = 2}, - [1026] = {.lex_state = 9}, - [1027] = {.lex_state = 9}, - [1028] = {.lex_state = 9}, - [1029] = {.lex_state = 2}, - [1030] = {.lex_state = 0}, - [1031] = {.lex_state = 9}, - [1032] = {.lex_state = 2}, - [1033] = {.lex_state = 4}, - [1034] = {.lex_state = 9}, - [1035] = {.lex_state = 2}, - [1036] = {.lex_state = 4}, - [1037] = {.lex_state = 0}, - [1038] = {.lex_state = 2}, + [1017] = {.lex_state = 3}, + [1018] = {.lex_state = 0}, + [1019] = {.lex_state = 3}, + [1020] = {.lex_state = 0}, + [1021] = {.lex_state = 3}, + [1022] = {.lex_state = 3}, + [1023] = {.lex_state = 3}, + [1024] = {.lex_state = 3}, + [1025] = {.lex_state = 0}, + [1026] = {.lex_state = 11}, + [1027] = {.lex_state = 0}, + [1028] = {.lex_state = 0}, + [1029] = {.lex_state = 11}, + [1030] = {.lex_state = 11}, + [1031] = {.lex_state = 3}, + [1032] = {.lex_state = 3}, + [1033] = {.lex_state = 0}, + [1034] = {.lex_state = 11}, + [1035] = {.lex_state = 0}, + [1036] = {.lex_state = 3}, + [1037] = {.lex_state = 11}, + [1038] = {.lex_state = 0}, [1039] = {.lex_state = 0}, [1040] = {.lex_state = 0}, - [1041] = {.lex_state = 0}, - [1042] = {.lex_state = 0}, - [1043] = {.lex_state = 16}, - [1044] = {.lex_state = 2}, - [1045] = {.lex_state = 4}, - [1046] = {.lex_state = 4}, - [1047] = {.lex_state = 2}, - [1048] = {.lex_state = 4}, - [1049] = {.lex_state = 2}, - [1050] = {.lex_state = 0}, - [1051] = {.lex_state = 5}, - [1052] = {.lex_state = 2}, - [1053] = {.lex_state = 2}, - [1054] = {.lex_state = 4}, - [1055] = {.lex_state = 4}, - [1056] = {.lex_state = 2}, - [1057] = {.lex_state = 2}, - [1058] = {.lex_state = 2}, - [1059] = {.lex_state = 4}, - [1060] = {.lex_state = 0}, - [1061] = {.lex_state = 2}, - [1062] = {.lex_state = 2}, - [1063] = {.lex_state = 2}, - [1064] = {.lex_state = 5}, - [1065] = {.lex_state = 2}, - [1066] = {.lex_state = 2}, - [1067] = {.lex_state = 2}, - [1068] = {.lex_state = 0}, - [1069] = {.lex_state = 2}, - [1070] = {.lex_state = 2}, - [1071] = {.lex_state = 2}, - [1072] = {.lex_state = 2}, - [1073] = {.lex_state = 2}, - [1074] = {.lex_state = 2}, - [1075] = {.lex_state = 4}, - [1076] = {.lex_state = 5}, - [1077] = {.lex_state = 0}, - [1078] = {.lex_state = 2}, - [1079] = {.lex_state = 2}, - [1080] = {.lex_state = 0}, - [1081] = {.lex_state = 2}, - [1082] = {.lex_state = 2}, - [1083] = {.lex_state = 2}, - [1084] = {.lex_state = 16}, - [1085] = {.lex_state = 5}, - [1086] = {.lex_state = 2}, - [1087] = {.lex_state = 2}, - [1088] = {.lex_state = 2}, - [1089] = {.lex_state = 5}, - [1090] = {.lex_state = 2}, + [1041] = {.lex_state = 19}, + [1042] = {.lex_state = 3}, + [1043] = {.lex_state = 0}, + [1044] = {.lex_state = 7}, + [1045] = {.lex_state = 0}, + [1046] = {.lex_state = 0}, + [1047] = {.lex_state = 0}, + [1048] = {.lex_state = 3}, + [1049] = {.lex_state = 3}, + [1050] = {.lex_state = 3}, + [1051] = {.lex_state = 3}, + [1052] = {.lex_state = 3}, + [1053] = {.lex_state = 3}, + [1054] = {.lex_state = 3}, + [1055] = {.lex_state = 3}, + [1056] = {.lex_state = 3}, + [1057] = {.lex_state = 3}, + [1058] = {.lex_state = 3}, + [1059] = {.lex_state = 3}, + [1060] = {.lex_state = 3}, + [1061] = {.lex_state = 3}, + [1062] = {.lex_state = 0}, + [1063] = {.lex_state = 0}, + [1064] = {.lex_state = 3}, + [1065] = {.lex_state = 3}, + [1066] = {.lex_state = 3}, + [1067] = {.lex_state = 0}, + [1068] = {.lex_state = 7}, + [1069] = {.lex_state = 19}, + [1070] = {.lex_state = 0}, + [1071] = {.lex_state = 7}, + [1072] = {.lex_state = 0}, + [1073] = {.lex_state = 0}, + [1074] = {.lex_state = 3}, + [1075] = {.lex_state = 3}, + [1076] = {.lex_state = 0}, + [1077] = {.lex_state = 3}, + [1078] = {.lex_state = 3}, + [1079] = {.lex_state = 7}, + [1080] = {.lex_state = 3}, + [1081] = {.lex_state = 3}, + [1082] = {.lex_state = 3}, + [1083] = {.lex_state = 3}, + [1084] = {.lex_state = 0}, + [1085] = {.lex_state = 3}, + [1086] = {.lex_state = 3}, + [1087] = {.lex_state = 3}, + [1088] = {.lex_state = 3}, + [1089] = {.lex_state = 0}, + [1090] = {.lex_state = 3}, [1091] = {.lex_state = 0}, - [1092] = {.lex_state = 4}, - [1093] = {.lex_state = 4}, - [1094] = {.lex_state = 0}, - [1095] = {.lex_state = 0}, - [1096] = {.lex_state = 4}, - [1097] = {.lex_state = 2}, - [1098] = {.lex_state = 2}, - [1099] = {.lex_state = 4}, - [1100] = {.lex_state = 4}, - [1101] = {.lex_state = 2}, - [1102] = {.lex_state = 0}, - [1103] = {.lex_state = 4}, - [1104] = {.lex_state = 2}, + [1092] = {.lex_state = 0}, + [1093] = {.lex_state = 7}, + [1094] = {.lex_state = 3}, + [1095] = {.lex_state = 19}, + [1096] = {.lex_state = 3}, + [1097] = {.lex_state = 3}, + [1098] = {.lex_state = 7}, + [1099] = {.lex_state = 3}, + [1100] = {.lex_state = 3}, + [1101] = {.lex_state = 3}, + [1102] = {.lex_state = 3}, + [1103] = {.lex_state = 0}, + [1104] = {.lex_state = 0}, [1105] = {.lex_state = 0}, - [1106] = {.lex_state = 2}, - [1107] = {.lex_state = 4}, - [1108] = {.lex_state = 2}, - [1109] = {.lex_state = 4}, - [1110] = {.lex_state = 4}, - [1111] = {.lex_state = 4}, - [1112] = {.lex_state = 2}, + [1106] = {.lex_state = 0}, + [1107] = {.lex_state = 3}, + [1108] = {.lex_state = 0}, + [1109] = {.lex_state = 7}, + [1110] = {.lex_state = 0}, + [1111] = {.lex_state = 3}, + [1112] = {.lex_state = 0}, [1113] = {.lex_state = 0}, - [1114] = {.lex_state = 4}, - [1115] = {.lex_state = 2}, - [1116] = {.lex_state = 2}, - [1117] = {.lex_state = 2}, + [1114] = {.lex_state = 0}, + [1115] = {.lex_state = 20}, + [1116] = {.lex_state = 0}, + [1117] = {.lex_state = 0}, [1118] = {.lex_state = 0}, - [1119] = {.lex_state = 11}, + [1119] = {.lex_state = 0}, [1120] = {.lex_state = 0}, - [1121] = {.lex_state = 11}, - [1122] = {.lex_state = 4}, + [1121] = {.lex_state = 0}, + [1122] = {.lex_state = 0}, [1123] = {.lex_state = 0}, - [1124] = {.lex_state = 0}, + [1124] = {.lex_state = 3}, [1125] = {.lex_state = 0}, - [1126] = {.lex_state = 17}, - [1127] = {.lex_state = 4}, + [1126] = {.lex_state = 0}, + [1127] = {.lex_state = 20}, [1128] = {.lex_state = 0}, - [1129] = {.lex_state = 0}, + [1129] = {.lex_state = 3}, [1130] = {.lex_state = 0}, [1131] = {.lex_state = 0}, [1132] = {.lex_state = 0}, @@ -6801,54 +6575,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1135] = {.lex_state = 0}, [1136] = {.lex_state = 0}, [1137] = {.lex_state = 0}, - [1138] = {.lex_state = 0}, + [1138] = {.lex_state = 3}, [1139] = {.lex_state = 0}, [1140] = {.lex_state = 0}, - [1141] = {.lex_state = 0}, - [1142] = {.lex_state = 4}, + [1141] = {.lex_state = 3}, + [1142] = {.lex_state = 0}, [1143] = {.lex_state = 0}, [1144] = {.lex_state = 0}, [1145] = {.lex_state = 0}, - [1146] = {.lex_state = 4}, - [1147] = {.lex_state = 2}, + [1146] = {.lex_state = 0}, + [1147] = {.lex_state = 0}, [1148] = {.lex_state = 0}, [1149] = {.lex_state = 0}, [1150] = {.lex_state = 0}, - [1151] = {.lex_state = 0}, + [1151] = {.lex_state = 3}, [1152] = {.lex_state = 0}, - [1153] = {.lex_state = 2}, + [1153] = {.lex_state = 0}, [1154] = {.lex_state = 0}, [1155] = {.lex_state = 0}, [1156] = {.lex_state = 0}, [1157] = {.lex_state = 0}, [1158] = {.lex_state = 0}, [1159] = {.lex_state = 0}, - [1160] = {.lex_state = 2}, - [1161] = {.lex_state = 17}, + [1160] = {.lex_state = 0}, + [1161] = {.lex_state = 0}, [1162] = {.lex_state = 0}, - [1163] = {.lex_state = 4}, + [1163] = {.lex_state = 0}, [1164] = {.lex_state = 0}, [1165] = {.lex_state = 0}, - [1166] = {.lex_state = 0}, + [1166] = {.lex_state = 20}, [1167] = {.lex_state = 0}, - [1168] = {.lex_state = 4}, + [1168] = {.lex_state = 0}, [1169] = {.lex_state = 0}, [1170] = {.lex_state = 0}, - [1171] = {.lex_state = 0}, + [1171] = {.lex_state = 41}, [1172] = {.lex_state = 0}, [1173] = {.lex_state = 0}, [1174] = {.lex_state = 0}, - [1175] = {.lex_state = 0}, - [1176] = {.lex_state = 4}, + [1175] = {.lex_state = 3}, + [1176] = {.lex_state = 0}, [1177] = {.lex_state = 0}, [1178] = {.lex_state = 0}, [1179] = {.lex_state = 0}, - [1180] = {.lex_state = 4}, + [1180] = {.lex_state = 0}, [1181] = {.lex_state = 0}, [1182] = {.lex_state = 0}, - [1183] = {.lex_state = 2}, - [1184] = {.lex_state = 4}, - [1185] = {.lex_state = 4}, + [1183] = {.lex_state = 41}, + [1184] = {.lex_state = 0}, + [1185] = {.lex_state = 0}, [1186] = {.lex_state = 0}, [1187] = {.lex_state = 0}, [1188] = {.lex_state = 0}, @@ -6856,18 +6630,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1190] = {.lex_state = 0}, [1191] = {.lex_state = 0}, [1192] = {.lex_state = 0}, - [1193] = {.lex_state = 0}, + [1193] = {.lex_state = 3}, [1194] = {.lex_state = 0}, [1195] = {.lex_state = 0}, [1196] = {.lex_state = 0}, [1197] = {.lex_state = 0}, [1198] = {.lex_state = 0}, [1199] = {.lex_state = 0}, - [1200] = {.lex_state = 17}, + [1200] = {.lex_state = 3}, [1201] = {.lex_state = 0}, [1202] = {.lex_state = 0}, [1203] = {.lex_state = 0}, - [1204] = {.lex_state = 0}, + [1204] = {.lex_state = 20}, [1205] = {.lex_state = 0}, [1206] = {.lex_state = 0}, [1207] = {.lex_state = 0}, @@ -6884,7 +6658,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1218] = {.lex_state = 0}, [1219] = {.lex_state = 0}, [1220] = {.lex_state = 0}, - [1221] = {.lex_state = 2}, + [1221] = {.lex_state = 0}, [1222] = {.lex_state = 0}, [1223] = {.lex_state = 0}, [1224] = {.lex_state = 0}, @@ -6898,10 +6672,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1232] = {.lex_state = 0}, [1233] = {.lex_state = 0}, [1234] = {.lex_state = 0}, - [1235] = {.lex_state = 4}, + [1235] = {.lex_state = 0}, [1236] = {.lex_state = 0}, - [1237] = {.lex_state = 2}, - [1238] = {.lex_state = 2}, + [1237] = {.lex_state = 0}, + [1238] = {.lex_state = 0}, [1239] = {.lex_state = 0}, [1240] = {.lex_state = 0}, [1241] = {.lex_state = 0}, @@ -6911,7 +6685,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1245] = {.lex_state = 0}, [1246] = {.lex_state = 0}, [1247] = {.lex_state = 0}, - [1248] = {.lex_state = 4}, + [1248] = {.lex_state = 0}, [1249] = {.lex_state = 0}, [1250] = {.lex_state = 0}, [1251] = {.lex_state = 0}, @@ -6919,114 +6693,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1253] = {.lex_state = 0}, [1254] = {.lex_state = 0}, [1255] = {.lex_state = 0}, - [1256] = {.lex_state = 41}, + [1256] = {.lex_state = 0}, [1257] = {.lex_state = 0}, [1258] = {.lex_state = 0}, [1259] = {.lex_state = 0}, - [1260] = {.lex_state = 41}, + [1260] = {.lex_state = 0}, [1261] = {.lex_state = 0}, - [1262] = {.lex_state = 0}, - [1263] = {.lex_state = 0}, - [1264] = {.lex_state = 0}, - [1265] = {.lex_state = 0}, - [1266] = {.lex_state = 0}, - [1267] = {.lex_state = 0}, - [1268] = {.lex_state = 0}, - [1269] = {.lex_state = 0}, - [1270] = {.lex_state = 0}, - [1271] = {.lex_state = 0}, - [1272] = {.lex_state = 0}, - [1273] = {.lex_state = 0}, - [1274] = {.lex_state = 0}, - [1275] = {.lex_state = 0}, - [1276] = {.lex_state = 0}, - [1277] = {.lex_state = 0}, - [1278] = {.lex_state = 0}, - [1279] = {.lex_state = 0}, - [1280] = {.lex_state = 0}, - [1281] = {.lex_state = 0}, - [1282] = {.lex_state = 0}, - [1283] = {.lex_state = 0}, - [1284] = {.lex_state = 0}, - [1285] = {.lex_state = 0}, - [1286] = {.lex_state = 4}, - [1287] = {.lex_state = 0}, - [1288] = {.lex_state = 0}, - [1289] = {.lex_state = 0}, - [1290] = {.lex_state = 0}, - [1291] = {.lex_state = 0}, - [1292] = {.lex_state = 0}, - [1293] = {.lex_state = 0}, - [1294] = {.lex_state = 0}, - [1295] = {.lex_state = 0}, - [1296] = {.lex_state = 0}, - [1297] = {.lex_state = 0}, - [1298] = {.lex_state = 0}, - [1299] = {.lex_state = 0}, - [1300] = {.lex_state = 0}, - [1301] = {.lex_state = 0}, - [1302] = {.lex_state = 0}, - [1303] = {.lex_state = 0}, - [1304] = {.lex_state = 0}, - [1305] = {.lex_state = 0}, - [1306] = {.lex_state = 0}, - [1307] = {.lex_state = 0}, - [1308] = {.lex_state = 0}, - [1309] = {.lex_state = 0}, - [1310] = {.lex_state = 0}, - [1311] = {.lex_state = 0}, - [1312] = {.lex_state = 0}, - [1313] = {.lex_state = 0}, - [1314] = {.lex_state = 0}, - [1315] = {.lex_state = 4}, - [1316] = {.lex_state = 0}, - [1317] = {.lex_state = 0}, - [1318] = {.lex_state = 0}, - [1319] = {.lex_state = 0}, - [1320] = {.lex_state = 0}, - [1321] = {.lex_state = 0}, - [1322] = {.lex_state = 0}, - [1323] = {.lex_state = 0}, - [1324] = {.lex_state = 0}, - [1325] = {.lex_state = 0}, - [1326] = {.lex_state = 0}, - [1327] = {.lex_state = 0}, - [1328] = {.lex_state = 0}, - [1329] = {.lex_state = 0}, - [1330] = {.lex_state = 0}, - [1331] = {.lex_state = 0}, - [1332] = {.lex_state = 0}, - [1333] = {.lex_state = 0}, - [1334] = {.lex_state = 0}, - [1335] = {.lex_state = 0}, - [1336] = {.lex_state = 0}, - [1337] = {.lex_state = 0}, - [1338] = {.lex_state = 0}, - [1339] = {.lex_state = 0}, - [1340] = {.lex_state = 0}, - [1341] = {.lex_state = 0}, - [1342] = {.lex_state = 0}, - [1343] = {.lex_state = 0}, - [1344] = {.lex_state = 0}, - [1345] = {.lex_state = 0}, - [1346] = {.lex_state = 0}, - [1347] = {.lex_state = 0}, - [1348] = {.lex_state = 0}, - [1349] = {.lex_state = 0}, - [1350] = {.lex_state = 0}, - [1351] = {.lex_state = 0}, - [1352] = {.lex_state = 0}, - [1353] = {.lex_state = 0}, - [1354] = {.lex_state = 0}, - [1355] = {.lex_state = 0}, - [1356] = {.lex_state = 0}, - [1357] = {.lex_state = 0}, - [1358] = {.lex_state = 0}, - [1359] = {.lex_state = 0}, - [1360] = {.lex_state = 0}, - [1361] = {.lex_state = 0}, - [1362] = {.lex_state = 0}, - [1363] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -7054,7 +6726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), [anon_sym_this] = ACTIONS(1), - [anon_sym_DOT] = ACTIONS(1), + [aux_sym_member_expression_token1] = ACTIONS(1), [anon_sym_QMARK] = ACTIONS(1), [anon_sym_Void] = ACTIONS(1), [anon_sym_Int] = ACTIONS(1), @@ -7068,38 +6740,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(1), [anon_sym_elseif] = ACTIONS(1), [anon_sym_new] = ACTIONS(1), - [anon_sym_TILDE] = ACTIONS(1), - [anon_sym_BANG] = ACTIONS(1), - [anon_sym_DASH] = ACTIONS(1), - [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), - [anon_sym_GT_GT] = ACTIONS(1), - [anon_sym_GT_GT_GT] = ACTIONS(1), - [anon_sym_AMP] = ACTIONS(1), - [anon_sym_PIPE] = ACTIONS(1), - [anon_sym_CARET] = ACTIONS(1), - [anon_sym_AMP_AMP] = ACTIONS(1), - [anon_sym_PIPE_PIPE] = ACTIONS(1), - [anon_sym_EQ_EQ] = ACTIONS(1), - [anon_sym_BANG_EQ] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(1), - [anon_sym_LT_EQ] = ACTIONS(1), - [anon_sym_GT] = ACTIONS(1), - [anon_sym_GT_EQ] = ACTIONS(1), - [anon_sym_EQ_GT] = ACTIONS(1), - [anon_sym_QMARK_QMARK] = ACTIONS(1), + [sym__prefixUnaryOperator] = ACTIONS(1), + [sym__eitherUnaryOperator] = ACTIONS(1), + [sym__arithmetic_operator] = ACTIONS(1), + [sym__logical_operator] = ACTIONS(1), + [sym__map_operator] = ACTIONS(1), + [sym__null_colalese_operator] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), - [sym__rangeOperator] = ACTIONS(1), + [sym__range_operator] = ACTIONS(1), [anon_sym_null] = ACTIONS(1), [anon_sym_get] = ACTIONS(1), [anon_sym_set] = ACTIONS(1), [anon_sym_dynamic] = ACTIONS(1), [anon_sym_never] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), [anon_sym_final] = ACTIONS(1), [anon_sym_abstract] = ACTIONS(1), [anon_sym_class] = ACTIONS(1), @@ -7144,62 +6799,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__semicolon] = ACTIONS(1), }, [1] = { - [sym_module] = STATE(1285), - [sym_preprocessor_statement] = STATE(297), - [sym_package_statement] = STATE(297), - [sym_import_statement] = STATE(297), - [sym_using_statement] = STATE(297), - [sym_throw_statement] = STATE(297), - [sym__rhs_expression] = STATE(42), - [sym__unaryExpression] = STATE(297), - [sym_runtime_type_check_expression] = STATE(297), - [sym_switch_expression] = STATE(297), - [sym_case_statement] = STATE(297), - [sym_cast_expression] = STATE(297), - [sym_type_trace_expression] = STATE(297), - [sym__parenthesized_expression] = STATE(282), - [sym_range_expression] = STATE(297), - [sym_subscript_expression] = STATE(297), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1054), - [sym_block] = STATE(297), - [sym_metadata] = STATE(468), - [sym_conditional_statement] = STATE(297), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(42), - [sym_operator] = STATE(781), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym_declaration] = STATE(297), - [sym_class_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym_typedef_declaration] = STATE(243), - [sym_function_declaration] = STATE(243), - [sym_variable_declaration] = STATE(243), - [sym__literal] = STATE(123), - [sym_integer] = STATE(123), - [sym_float] = STATE(123), - [sym_bool] = STATE(123), - [sym_string] = STATE(105), - [sym_null] = STATE(123), - [sym_array] = STATE(123), - [sym_map] = STATE(123), - [sym_object] = STATE(123), - [sym_pair] = STATE(123), - [sym_keyword] = STATE(494), - [aux_sym_module_repeat1] = STATE(4), - [aux_sym_class_declaration_repeat1] = STATE(468), - [aux_sym_function_declaration_repeat1] = STATE(494), + [sym_module] = STATE(1256), + [sym_preprocessor_statement] = STATE(212), + [sym_package_statement] = STATE(212), + [sym_import_statement] = STATE(212), + [sym_using_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym__unaryExpression] = STATE(73), + [sym_runtime_type_check_expression] = STATE(73), + [sym_switch_expression] = STATE(73), + [sym_case_statement] = STATE(212), + [sym_cast_expression] = STATE(73), + [sym_type_trace_expression] = STATE(73), + [sym__parenthesized_expression] = STATE(72), + [sym_range_expression] = STATE(73), + [sym_subscript_expression] = STATE(73), + [sym_member_expression] = STATE(54), + [sym__binary_expression] = STATE(73), + [sym_ternary_expression] = STATE(73), + [sym__lhs_expression] = STATE(1045), + [sym__rhs_expression] = STATE(90), + [sym_block] = STATE(212), + [sym_metadata] = STATE(309), + [sym_conditional_statement] = STATE(212), + [sym__call] = STATE(57), + [sym__constructor_call] = STATE(40), + [sym_call_expression] = STATE(90), + [sym_declaration] = STATE(212), + [sym_class_declaration] = STATE(197), + [sym_interface_declaration] = STATE(197), + [sym_typedef_declaration] = STATE(197), + [sym_function_declaration] = STATE(197), + [sym_variable_declaration] = STATE(197), + [sym__literal] = STATE(104), + [sym_integer] = STATE(104), + [sym_float] = STATE(104), + [sym_bool] = STATE(104), + [sym_string] = STATE(65), + [sym_null] = STATE(104), + [sym_array] = STATE(104), + [sym_map] = STATE(104), + [sym_object] = STATE(104), + [sym_pair] = STATE(104), + [sym_keyword] = STATE(404), + [aux_sym_module_repeat1] = STATE(3), + [aux_sym_class_declaration_repeat1] = STATE(309), + [aux_sym_function_declaration_repeat1] = STATE(404), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(9), @@ -7222,52 +6867,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(43), [anon_sym_else] = ACTIONS(33), [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), + [sym__prefixUnaryOperator] = ACTIONS(47), + [sym__eitherUnaryOperator] = ACTIONS(49), + [anon_sym_null] = ACTIONS(51), [anon_sym_dynamic] = ACTIONS(33), - [anon_sym_final] = ACTIONS(61), - [anon_sym_abstract] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), + [anon_sym_final] = ACTIONS(53), + [anon_sym_abstract] = ACTIONS(55), + [anon_sym_class] = ACTIONS(57), [anon_sym_extends] = ACTIONS(33), [anon_sym_implements] = ACTIONS(33), - [anon_sym_interface] = ACTIONS(67), - [anon_sym_typedef] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_var] = ACTIONS(73), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_typedef] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), + [anon_sym_var] = ACTIONS(65), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), [sym_comment] = ACTIONS(3), [anon_sym_break] = ACTIONS(33), [anon_sym_catch] = ACTIONS(33), @@ -7290,207 +6910,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(33), }, [2] = { - [sym_preprocessor_statement] = STATE(297), - [sym_package_statement] = STATE(297), - [sym_import_statement] = STATE(297), - [sym_using_statement] = STATE(297), - [sym_throw_statement] = STATE(297), - [sym__rhs_expression] = STATE(42), - [sym__unaryExpression] = STATE(297), - [sym_runtime_type_check_expression] = STATE(297), - [sym_switch_expression] = STATE(297), - [sym_case_statement] = STATE(297), - [sym_cast_expression] = STATE(297), - [sym_type_trace_expression] = STATE(297), - [sym__parenthesized_expression] = STATE(282), - [sym_range_expression] = STATE(297), - [sym_subscript_expression] = STATE(297), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1054), - [sym_block] = STATE(297), - [sym_metadata] = STATE(468), - [sym_conditional_statement] = STATE(297), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(42), - [sym_operator] = STATE(781), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym_declaration] = STATE(297), - [sym_class_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym_typedef_declaration] = STATE(243), - [sym_function_declaration] = STATE(243), - [sym_variable_declaration] = STATE(243), - [sym__literal] = STATE(123), - [sym_integer] = STATE(123), - [sym_float] = STATE(123), - [sym_bool] = STATE(123), - [sym_string] = STATE(105), - [sym_null] = STATE(123), - [sym_array] = STATE(123), - [sym_map] = STATE(123), - [sym_object] = STATE(123), - [sym_pair] = STATE(123), - [sym_keyword] = STATE(494), + [sym_preprocessor_statement] = STATE(212), + [sym_package_statement] = STATE(212), + [sym_import_statement] = STATE(212), + [sym_using_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym__unaryExpression] = STATE(73), + [sym_runtime_type_check_expression] = STATE(73), + [sym_switch_expression] = STATE(73), + [sym_case_statement] = STATE(212), + [sym_cast_expression] = STATE(73), + [sym_type_trace_expression] = STATE(73), + [sym__parenthesized_expression] = STATE(72), + [sym_range_expression] = STATE(73), + [sym_subscript_expression] = STATE(73), + [sym_member_expression] = STATE(54), + [sym__binary_expression] = STATE(73), + [sym_ternary_expression] = STATE(73), + [sym__lhs_expression] = STATE(1045), + [sym__rhs_expression] = STATE(90), + [sym_block] = STATE(212), + [sym_metadata] = STATE(309), + [sym_conditional_statement] = STATE(212), + [sym__call] = STATE(57), + [sym__constructor_call] = STATE(40), + [sym_call_expression] = STATE(90), + [sym_declaration] = STATE(212), + [sym_class_declaration] = STATE(197), + [sym_interface_declaration] = STATE(197), + [sym_typedef_declaration] = STATE(197), + [sym_function_declaration] = STATE(197), + [sym_variable_declaration] = STATE(197), + [sym__literal] = STATE(104), + [sym_integer] = STATE(104), + [sym_float] = STATE(104), + [sym_bool] = STATE(104), + [sym_string] = STATE(65), + [sym_null] = STATE(104), + [sym_array] = STATE(104), + [sym_map] = STATE(104), + [sym_object] = STATE(104), + [sym_pair] = STATE(104), + [sym_keyword] = STATE(404), [aux_sym_module_repeat1] = STATE(2), - [aux_sym_class_declaration_repeat1] = STATE(468), - [aux_sym_function_declaration_repeat1] = STATE(494), - [ts_builtin_sym_end] = ACTIONS(89), - [sym_identifier] = ACTIONS(91), - [anon_sym_POUND] = ACTIONS(94), - [anon_sym_package] = ACTIONS(97), - [anon_sym_import] = ACTIONS(100), - [anon_sym_using] = ACTIONS(103), - [anon_sym_throw] = ACTIONS(106), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_switch] = ACTIONS(112), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_RBRACE] = ACTIONS(89), - [anon_sym_case] = ACTIONS(118), - [anon_sym_default] = ACTIONS(121), - [anon_sym_cast] = ACTIONS(124), - [anon_sym_DOLLARtype] = ACTIONS(127), - [anon_sym_in] = ACTIONS(130), - [anon_sym_LBRACK] = ACTIONS(133), - [anon_sym_this] = ACTIONS(136), - [anon_sym_AT] = ACTIONS(139), - [anon_sym_AT_COLON] = ACTIONS(142), - [anon_sym_if] = ACTIONS(145), - [anon_sym_else] = ACTIONS(130), - [anon_sym_new] = ACTIONS(148), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_PLUS_PLUS] = ACTIONS(160), - [anon_sym_DASH_DASH] = ACTIONS(160), - [anon_sym_PERCENT] = ACTIONS(163), - [anon_sym_STAR] = ACTIONS(163), - [anon_sym_SLASH] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(166), - [anon_sym_LT_LT] = ACTIONS(163), - [anon_sym_GT_GT] = ACTIONS(166), - [anon_sym_GT_GT_GT] = ACTIONS(163), - [anon_sym_AMP] = ACTIONS(166), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_CARET] = ACTIONS(163), - [anon_sym_AMP_AMP] = ACTIONS(151), - [anon_sym_PIPE_PIPE] = ACTIONS(151), - [anon_sym_EQ_EQ] = ACTIONS(151), - [anon_sym_BANG_EQ] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(154), - [anon_sym_LT_EQ] = ACTIONS(151), - [anon_sym_GT] = ACTIONS(154), - [anon_sym_GT_EQ] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(151), - [anon_sym_QMARK_QMARK] = ACTIONS(151), - [anon_sym_EQ] = ACTIONS(154), - [sym__rangeOperator] = ACTIONS(151), - [anon_sym_null] = ACTIONS(169), - [anon_sym_dynamic] = ACTIONS(130), - [anon_sym_final] = ACTIONS(172), - [anon_sym_abstract] = ACTIONS(175), - [anon_sym_class] = ACTIONS(178), - [anon_sym_extends] = ACTIONS(130), - [anon_sym_implements] = ACTIONS(130), - [anon_sym_interface] = ACTIONS(181), - [anon_sym_typedef] = ACTIONS(184), - [anon_sym_function] = ACTIONS(187), - [anon_sym_var] = ACTIONS(190), - [aux_sym_integer_token1] = ACTIONS(193), - [aux_sym_integer_token2] = ACTIONS(196), - [aux_sym_float_token1] = ACTIONS(199), - [aux_sym_float_token2] = ACTIONS(202), - [anon_sym_true] = ACTIONS(205), - [anon_sym_false] = ACTIONS(205), - [aux_sym_string_token1] = ACTIONS(208), - [aux_sym_string_token3] = ACTIONS(211), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(130), - [anon_sym_catch] = ACTIONS(130), - [anon_sym_continue] = ACTIONS(130), - [anon_sym_do] = ACTIONS(130), - [anon_sym_enum] = ACTIONS(130), - [anon_sym_extern] = ACTIONS(130), - [anon_sym_for] = ACTIONS(130), - [anon_sym_inline] = ACTIONS(130), - [anon_sym_macro] = ACTIONS(130), - [anon_sym_operator] = ACTIONS(130), - [anon_sym_overload] = ACTIONS(130), - [anon_sym_override] = ACTIONS(130), - [anon_sym_private] = ACTIONS(130), - [anon_sym_public] = ACTIONS(130), - [anon_sym_return] = ACTIONS(130), - [anon_sym_static] = ACTIONS(130), - [anon_sym_try] = ACTIONS(130), - [anon_sym_untyped] = ACTIONS(130), - [anon_sym_while] = ACTIONS(130), + [aux_sym_class_declaration_repeat1] = STATE(309), + [aux_sym_function_declaration_repeat1] = STATE(404), + [ts_builtin_sym_end] = ACTIONS(81), + [sym_identifier] = ACTIONS(83), + [anon_sym_POUND] = ACTIONS(86), + [anon_sym_package] = ACTIONS(89), + [anon_sym_import] = ACTIONS(92), + [anon_sym_using] = ACTIONS(95), + [anon_sym_throw] = ACTIONS(98), + [anon_sym_LPAREN] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(104), + [anon_sym_LBRACE] = ACTIONS(107), + [anon_sym_RBRACE] = ACTIONS(81), + [anon_sym_case] = ACTIONS(110), + [anon_sym_default] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(116), + [anon_sym_DOLLARtype] = ACTIONS(119), + [anon_sym_in] = ACTIONS(122), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_this] = ACTIONS(128), + [anon_sym_AT] = ACTIONS(131), + [anon_sym_AT_COLON] = ACTIONS(134), + [anon_sym_if] = ACTIONS(137), + [anon_sym_else] = ACTIONS(122), + [anon_sym_new] = ACTIONS(140), + [sym__prefixUnaryOperator] = ACTIONS(143), + [sym__eitherUnaryOperator] = ACTIONS(146), + [anon_sym_null] = ACTIONS(149), + [anon_sym_dynamic] = ACTIONS(122), + [anon_sym_final] = ACTIONS(152), + [anon_sym_abstract] = ACTIONS(155), + [anon_sym_class] = ACTIONS(158), + [anon_sym_extends] = ACTIONS(122), + [anon_sym_implements] = ACTIONS(122), + [anon_sym_interface] = ACTIONS(161), + [anon_sym_typedef] = ACTIONS(164), + [anon_sym_function] = ACTIONS(167), + [anon_sym_var] = ACTIONS(170), + [aux_sym_integer_token1] = ACTIONS(173), + [aux_sym_integer_token2] = ACTIONS(176), + [aux_sym_float_token1] = ACTIONS(179), + [aux_sym_float_token2] = ACTIONS(182), + [anon_sym_true] = ACTIONS(185), + [anon_sym_false] = ACTIONS(185), + [aux_sym_string_token1] = ACTIONS(188), + [aux_sym_string_token3] = ACTIONS(191), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(122), + [anon_sym_catch] = ACTIONS(122), + [anon_sym_continue] = ACTIONS(122), + [anon_sym_do] = ACTIONS(122), + [anon_sym_enum] = ACTIONS(122), + [anon_sym_extern] = ACTIONS(122), + [anon_sym_for] = ACTIONS(122), + [anon_sym_inline] = ACTIONS(122), + [anon_sym_macro] = ACTIONS(122), + [anon_sym_operator] = ACTIONS(122), + [anon_sym_overload] = ACTIONS(122), + [anon_sym_override] = ACTIONS(122), + [anon_sym_private] = ACTIONS(122), + [anon_sym_public] = ACTIONS(122), + [anon_sym_return] = ACTIONS(122), + [anon_sym_static] = ACTIONS(122), + [anon_sym_try] = ACTIONS(122), + [anon_sym_untyped] = ACTIONS(122), + [anon_sym_while] = ACTIONS(122), }, [3] = { - [sym_preprocessor_statement] = STATE(297), - [sym_package_statement] = STATE(297), - [sym_import_statement] = STATE(297), - [sym_using_statement] = STATE(297), - [sym_throw_statement] = STATE(297), - [sym__rhs_expression] = STATE(42), - [sym__unaryExpression] = STATE(297), - [sym_runtime_type_check_expression] = STATE(297), - [sym_switch_expression] = STATE(297), - [sym_case_statement] = STATE(297), - [sym_cast_expression] = STATE(297), - [sym_type_trace_expression] = STATE(297), - [sym__parenthesized_expression] = STATE(282), - [sym_range_expression] = STATE(297), - [sym_subscript_expression] = STATE(297), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1054), - [sym_block] = STATE(297), - [sym_metadata] = STATE(468), - [sym_conditional_statement] = STATE(297), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(42), - [sym_operator] = STATE(781), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym_declaration] = STATE(297), - [sym_class_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym_typedef_declaration] = STATE(243), - [sym_function_declaration] = STATE(243), - [sym_variable_declaration] = STATE(243), - [sym__literal] = STATE(123), - [sym_integer] = STATE(123), - [sym_float] = STATE(123), - [sym_bool] = STATE(123), - [sym_string] = STATE(105), - [sym_null] = STATE(123), - [sym_array] = STATE(123), - [sym_map] = STATE(123), - [sym_object] = STATE(123), - [sym_pair] = STATE(123), - [sym_keyword] = STATE(494), + [sym_preprocessor_statement] = STATE(212), + [sym_package_statement] = STATE(212), + [sym_import_statement] = STATE(212), + [sym_using_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym__unaryExpression] = STATE(73), + [sym_runtime_type_check_expression] = STATE(73), + [sym_switch_expression] = STATE(73), + [sym_case_statement] = STATE(212), + [sym_cast_expression] = STATE(73), + [sym_type_trace_expression] = STATE(73), + [sym__parenthesized_expression] = STATE(72), + [sym_range_expression] = STATE(73), + [sym_subscript_expression] = STATE(73), + [sym_member_expression] = STATE(54), + [sym__binary_expression] = STATE(73), + [sym_ternary_expression] = STATE(73), + [sym__lhs_expression] = STATE(1045), + [sym__rhs_expression] = STATE(90), + [sym_block] = STATE(212), + [sym_metadata] = STATE(309), + [sym_conditional_statement] = STATE(212), + [sym__call] = STATE(57), + [sym__constructor_call] = STATE(40), + [sym_call_expression] = STATE(90), + [sym_declaration] = STATE(212), + [sym_class_declaration] = STATE(197), + [sym_interface_declaration] = STATE(197), + [sym_typedef_declaration] = STATE(197), + [sym_function_declaration] = STATE(197), + [sym_variable_declaration] = STATE(197), + [sym__literal] = STATE(104), + [sym_integer] = STATE(104), + [sym_float] = STATE(104), + [sym_bool] = STATE(104), + [sym_string] = STATE(65), + [sym_null] = STATE(104), + [sym_array] = STATE(104), + [sym_map] = STATE(104), + [sym_object] = STATE(104), + [sym_pair] = STATE(104), + [sym_keyword] = STATE(404), [aux_sym_module_repeat1] = STATE(2), - [aux_sym_class_declaration_repeat1] = STATE(468), - [aux_sym_function_declaration_repeat1] = STATE(494), + [aux_sym_class_declaration_repeat1] = STATE(309), + [aux_sym_function_declaration_repeat1] = STATE(404), + [ts_builtin_sym_end] = ACTIONS(194), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(9), [anon_sym_package] = ACTIONS(11), @@ -7500,7 +7076,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_switch] = ACTIONS(21), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(214), [anon_sym_case] = ACTIONS(25), [anon_sym_default] = ACTIONS(27), [anon_sym_cast] = ACTIONS(29), @@ -7513,52 +7088,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(43), [anon_sym_else] = ACTIONS(33), [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), + [sym__prefixUnaryOperator] = ACTIONS(47), + [sym__eitherUnaryOperator] = ACTIONS(49), + [anon_sym_null] = ACTIONS(51), [anon_sym_dynamic] = ACTIONS(33), - [anon_sym_final] = ACTIONS(61), - [anon_sym_abstract] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), + [anon_sym_final] = ACTIONS(53), + [anon_sym_abstract] = ACTIONS(55), + [anon_sym_class] = ACTIONS(57), [anon_sym_extends] = ACTIONS(33), [anon_sym_implements] = ACTIONS(33), - [anon_sym_interface] = ACTIONS(67), - [anon_sym_typedef] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_var] = ACTIONS(73), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_typedef] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), + [anon_sym_var] = ACTIONS(65), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), [sym_comment] = ACTIONS(3), [anon_sym_break] = ACTIONS(33), [anon_sym_catch] = ACTIONS(33), @@ -7581,62 +7131,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(33), }, [4] = { - [sym_preprocessor_statement] = STATE(297), - [sym_package_statement] = STATE(297), - [sym_import_statement] = STATE(297), - [sym_using_statement] = STATE(297), - [sym_throw_statement] = STATE(297), - [sym__rhs_expression] = STATE(42), - [sym__unaryExpression] = STATE(297), - [sym_runtime_type_check_expression] = STATE(297), - [sym_switch_expression] = STATE(297), - [sym_case_statement] = STATE(297), - [sym_cast_expression] = STATE(297), - [sym_type_trace_expression] = STATE(297), - [sym__parenthesized_expression] = STATE(282), - [sym_range_expression] = STATE(297), - [sym_subscript_expression] = STATE(297), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1054), - [sym_block] = STATE(297), - [sym_metadata] = STATE(468), - [sym_conditional_statement] = STATE(297), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(42), - [sym_operator] = STATE(781), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym_declaration] = STATE(297), - [sym_class_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym_typedef_declaration] = STATE(243), - [sym_function_declaration] = STATE(243), - [sym_variable_declaration] = STATE(243), - [sym__literal] = STATE(123), - [sym_integer] = STATE(123), - [sym_float] = STATE(123), - [sym_bool] = STATE(123), - [sym_string] = STATE(105), - [sym_null] = STATE(123), - [sym_array] = STATE(123), - [sym_map] = STATE(123), - [sym_object] = STATE(123), - [sym_pair] = STATE(123), - [sym_keyword] = STATE(494), - [aux_sym_module_repeat1] = STATE(2), - [aux_sym_class_declaration_repeat1] = STATE(468), - [aux_sym_function_declaration_repeat1] = STATE(494), - [ts_builtin_sym_end] = ACTIONS(216), + [sym_preprocessor_statement] = STATE(212), + [sym_package_statement] = STATE(212), + [sym_import_statement] = STATE(212), + [sym_using_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym__unaryExpression] = STATE(73), + [sym_runtime_type_check_expression] = STATE(73), + [sym_switch_expression] = STATE(73), + [sym_case_statement] = STATE(212), + [sym_cast_expression] = STATE(73), + [sym_type_trace_expression] = STATE(73), + [sym__parenthesized_expression] = STATE(72), + [sym_range_expression] = STATE(73), + [sym_subscript_expression] = STATE(73), + [sym_member_expression] = STATE(54), + [sym__binary_expression] = STATE(73), + [sym_ternary_expression] = STATE(73), + [sym__lhs_expression] = STATE(1045), + [sym__rhs_expression] = STATE(90), + [sym_block] = STATE(212), + [sym_metadata] = STATE(309), + [sym_conditional_statement] = STATE(212), + [sym__call] = STATE(57), + [sym__constructor_call] = STATE(40), + [sym_call_expression] = STATE(90), + [sym_declaration] = STATE(212), + [sym_class_declaration] = STATE(197), + [sym_interface_declaration] = STATE(197), + [sym_typedef_declaration] = STATE(197), + [sym_function_declaration] = STATE(197), + [sym_variable_declaration] = STATE(197), + [sym__literal] = STATE(104), + [sym_integer] = STATE(104), + [sym_float] = STATE(104), + [sym_bool] = STATE(104), + [sym_string] = STATE(65), + [sym_null] = STATE(104), + [sym_array] = STATE(104), + [sym_map] = STATE(104), + [sym_object] = STATE(104), + [sym_pair] = STATE(101), + [sym_keyword] = STATE(404), + [aux_sym_module_repeat1] = STATE(5), + [aux_sym_class_declaration_repeat1] = STATE(309), + [aux_sym_function_declaration_repeat1] = STATE(404), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(9), [anon_sym_package] = ACTIONS(11), @@ -7646,6 +7185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_switch] = ACTIONS(21), [anon_sym_LBRACE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(196), [anon_sym_case] = ACTIONS(25), [anon_sym_default] = ACTIONS(27), [anon_sym_cast] = ACTIONS(29), @@ -7658,52 +7198,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(43), [anon_sym_else] = ACTIONS(33), [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), + [sym__prefixUnaryOperator] = ACTIONS(47), + [sym__eitherUnaryOperator] = ACTIONS(49), + [anon_sym_null] = ACTIONS(51), [anon_sym_dynamic] = ACTIONS(33), - [anon_sym_final] = ACTIONS(61), - [anon_sym_abstract] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), + [anon_sym_final] = ACTIONS(53), + [anon_sym_abstract] = ACTIONS(55), + [anon_sym_class] = ACTIONS(57), [anon_sym_extends] = ACTIONS(33), [anon_sym_implements] = ACTIONS(33), - [anon_sym_interface] = ACTIONS(67), - [anon_sym_typedef] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_var] = ACTIONS(73), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_typedef] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), + [anon_sym_var] = ACTIONS(65), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), [sym_comment] = ACTIONS(3), [anon_sym_break] = ACTIONS(33), [anon_sym_catch] = ACTIONS(33), @@ -7726,61 +7241,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(33), }, [5] = { - [sym_preprocessor_statement] = STATE(297), - [sym_package_statement] = STATE(297), - [sym_import_statement] = STATE(297), - [sym_using_statement] = STATE(297), - [sym_throw_statement] = STATE(297), - [sym__rhs_expression] = STATE(42), - [sym__unaryExpression] = STATE(297), - [sym_runtime_type_check_expression] = STATE(297), - [sym_switch_expression] = STATE(297), - [sym_case_statement] = STATE(297), - [sym_cast_expression] = STATE(297), - [sym_type_trace_expression] = STATE(297), - [sym__parenthesized_expression] = STATE(282), - [sym_range_expression] = STATE(297), - [sym_subscript_expression] = STATE(297), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1054), - [sym_block] = STATE(297), - [sym_metadata] = STATE(468), - [sym_conditional_statement] = STATE(297), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(42), - [sym_operator] = STATE(781), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym_declaration] = STATE(297), - [sym_class_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym_typedef_declaration] = STATE(243), - [sym_function_declaration] = STATE(243), - [sym_variable_declaration] = STATE(243), - [sym__literal] = STATE(123), - [sym_integer] = STATE(123), - [sym_float] = STATE(123), - [sym_bool] = STATE(123), - [sym_string] = STATE(105), - [sym_null] = STATE(123), - [sym_array] = STATE(123), - [sym_map] = STATE(123), - [sym_object] = STATE(123), - [sym_pair] = STATE(119), - [sym_keyword] = STATE(494), - [aux_sym_module_repeat1] = STATE(3), - [aux_sym_class_declaration_repeat1] = STATE(468), - [aux_sym_function_declaration_repeat1] = STATE(494), + [sym_preprocessor_statement] = STATE(212), + [sym_package_statement] = STATE(212), + [sym_import_statement] = STATE(212), + [sym_using_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym__unaryExpression] = STATE(73), + [sym_runtime_type_check_expression] = STATE(73), + [sym_switch_expression] = STATE(73), + [sym_case_statement] = STATE(212), + [sym_cast_expression] = STATE(73), + [sym_type_trace_expression] = STATE(73), + [sym__parenthesized_expression] = STATE(72), + [sym_range_expression] = STATE(73), + [sym_subscript_expression] = STATE(73), + [sym_member_expression] = STATE(54), + [sym__binary_expression] = STATE(73), + [sym_ternary_expression] = STATE(73), + [sym__lhs_expression] = STATE(1045), + [sym__rhs_expression] = STATE(90), + [sym_block] = STATE(212), + [sym_metadata] = STATE(309), + [sym_conditional_statement] = STATE(212), + [sym__call] = STATE(57), + [sym__constructor_call] = STATE(40), + [sym_call_expression] = STATE(90), + [sym_declaration] = STATE(212), + [sym_class_declaration] = STATE(197), + [sym_interface_declaration] = STATE(197), + [sym_typedef_declaration] = STATE(197), + [sym_function_declaration] = STATE(197), + [sym_variable_declaration] = STATE(197), + [sym__literal] = STATE(104), + [sym_integer] = STATE(104), + [sym_float] = STATE(104), + [sym_bool] = STATE(104), + [sym_string] = STATE(65), + [sym_null] = STATE(104), + [sym_array] = STATE(104), + [sym_map] = STATE(104), + [sym_object] = STATE(104), + [sym_pair] = STATE(104), + [sym_keyword] = STATE(404), + [aux_sym_module_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(309), + [aux_sym_function_declaration_repeat1] = STATE(404), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(9), [anon_sym_package] = ACTIONS(11), @@ -7790,7 +7295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_switch] = ACTIONS(21), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(218), + [anon_sym_RBRACE] = ACTIONS(198), [anon_sym_case] = ACTIONS(25), [anon_sym_default] = ACTIONS(27), [anon_sym_cast] = ACTIONS(29), @@ -7803,52 +7308,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(43), [anon_sym_else] = ACTIONS(33), [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), + [sym__prefixUnaryOperator] = ACTIONS(47), + [sym__eitherUnaryOperator] = ACTIONS(49), + [anon_sym_null] = ACTIONS(51), [anon_sym_dynamic] = ACTIONS(33), - [anon_sym_final] = ACTIONS(61), - [anon_sym_abstract] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), + [anon_sym_final] = ACTIONS(53), + [anon_sym_abstract] = ACTIONS(55), + [anon_sym_class] = ACTIONS(57), [anon_sym_extends] = ACTIONS(33), [anon_sym_implements] = ACTIONS(33), - [anon_sym_interface] = ACTIONS(67), - [anon_sym_typedef] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_var] = ACTIONS(73), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_typedef] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), + [anon_sym_var] = ACTIONS(65), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), [sym_comment] = ACTIONS(3), [anon_sym_break] = ACTIONS(33), [anon_sym_catch] = ACTIONS(33), @@ -7871,61 +7351,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(33), }, [6] = { - [sym_preprocessor_statement] = STATE(297), - [sym_package_statement] = STATE(297), - [sym_import_statement] = STATE(297), - [sym_using_statement] = STATE(297), - [sym_throw_statement] = STATE(297), - [sym__rhs_expression] = STATE(42), - [sym__unaryExpression] = STATE(297), - [sym_runtime_type_check_expression] = STATE(297), - [sym_switch_expression] = STATE(297), - [sym_case_statement] = STATE(297), - [sym_cast_expression] = STATE(297), - [sym_type_trace_expression] = STATE(297), - [sym__parenthesized_expression] = STATE(282), - [sym_range_expression] = STATE(297), - [sym_subscript_expression] = STATE(297), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1054), - [sym_block] = STATE(297), - [sym_metadata] = STATE(468), - [sym_conditional_statement] = STATE(297), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(42), - [sym_operator] = STATE(781), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym_declaration] = STATE(297), - [sym_class_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym_typedef_declaration] = STATE(243), - [sym_function_declaration] = STATE(243), - [sym_variable_declaration] = STATE(243), - [sym__literal] = STATE(123), - [sym_integer] = STATE(123), - [sym_float] = STATE(123), - [sym_bool] = STATE(123), - [sym_string] = STATE(105), - [sym_null] = STATE(123), - [sym_array] = STATE(123), - [sym_map] = STATE(123), - [sym_object] = STATE(123), - [sym_pair] = STATE(123), - [sym_keyword] = STATE(494), - [aux_sym_module_repeat1] = STATE(2), - [aux_sym_class_declaration_repeat1] = STATE(468), - [aux_sym_function_declaration_repeat1] = STATE(494), + [sym_preprocessor_statement] = STATE(212), + [sym_package_statement] = STATE(212), + [sym_import_statement] = STATE(212), + [sym_using_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym__unaryExpression] = STATE(73), + [sym_runtime_type_check_expression] = STATE(73), + [sym_switch_expression] = STATE(73), + [sym_case_statement] = STATE(212), + [sym_cast_expression] = STATE(73), + [sym_type_trace_expression] = STATE(73), + [sym__parenthesized_expression] = STATE(72), + [sym_range_expression] = STATE(73), + [sym_subscript_expression] = STATE(73), + [sym_member_expression] = STATE(54), + [sym__binary_expression] = STATE(73), + [sym_ternary_expression] = STATE(73), + [sym__lhs_expression] = STATE(1045), + [sym__rhs_expression] = STATE(90), + [sym_block] = STATE(212), + [sym_metadata] = STATE(309), + [sym_conditional_statement] = STATE(212), + [sym__call] = STATE(57), + [sym__constructor_call] = STATE(40), + [sym_call_expression] = STATE(90), + [sym_declaration] = STATE(212), + [sym_class_declaration] = STATE(197), + [sym_interface_declaration] = STATE(197), + [sym_typedef_declaration] = STATE(197), + [sym_function_declaration] = STATE(197), + [sym_variable_declaration] = STATE(197), + [sym__literal] = STATE(104), + [sym_integer] = STATE(104), + [sym_float] = STATE(104), + [sym_bool] = STATE(104), + [sym_string] = STATE(65), + [sym_null] = STATE(104), + [sym_array] = STATE(104), + [sym_map] = STATE(104), + [sym_object] = STATE(104), + [sym_pair] = STATE(104), + [sym_keyword] = STATE(404), + [aux_sym_module_repeat1] = STATE(5), + [aux_sym_class_declaration_repeat1] = STATE(309), + [aux_sym_function_declaration_repeat1] = STATE(404), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(9), [anon_sym_package] = ACTIONS(11), @@ -7935,7 +7405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_switch] = ACTIONS(21), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(220), + [anon_sym_RBRACE] = ACTIONS(200), [anon_sym_case] = ACTIONS(25), [anon_sym_default] = ACTIONS(27), [anon_sym_cast] = ACTIONS(29), @@ -7948,52 +7418,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(43), [anon_sym_else] = ACTIONS(33), [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), + [sym__prefixUnaryOperator] = ACTIONS(47), + [sym__eitherUnaryOperator] = ACTIONS(49), + [anon_sym_null] = ACTIONS(51), [anon_sym_dynamic] = ACTIONS(33), - [anon_sym_final] = ACTIONS(61), - [anon_sym_abstract] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), + [anon_sym_final] = ACTIONS(53), + [anon_sym_abstract] = ACTIONS(55), + [anon_sym_class] = ACTIONS(57), [anon_sym_extends] = ACTIONS(33), [anon_sym_implements] = ACTIONS(33), - [anon_sym_interface] = ACTIONS(67), - [anon_sym_typedef] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_var] = ACTIONS(73), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_typedef] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), + [anon_sym_var] = ACTIONS(65), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), [sym_comment] = ACTIONS(3), [anon_sym_break] = ACTIONS(33), [anon_sym_catch] = ACTIONS(33), @@ -8016,61 +7461,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(33), }, [7] = { - [sym_preprocessor_statement] = STATE(297), - [sym_package_statement] = STATE(297), - [sym_import_statement] = STATE(297), - [sym_using_statement] = STATE(297), - [sym_throw_statement] = STATE(297), - [sym__rhs_expression] = STATE(42), - [sym__unaryExpression] = STATE(297), - [sym_runtime_type_check_expression] = STATE(297), - [sym_switch_expression] = STATE(297), - [sym_case_statement] = STATE(297), - [sym_cast_expression] = STATE(297), - [sym_type_trace_expression] = STATE(297), - [sym__parenthesized_expression] = STATE(282), - [sym_range_expression] = STATE(297), - [sym_subscript_expression] = STATE(297), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1054), - [sym_block] = STATE(297), - [sym_metadata] = STATE(468), - [sym_conditional_statement] = STATE(297), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(42), - [sym_operator] = STATE(781), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym_declaration] = STATE(297), - [sym_class_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym_typedef_declaration] = STATE(243), - [sym_function_declaration] = STATE(243), - [sym_variable_declaration] = STATE(243), - [sym__literal] = STATE(123), - [sym_integer] = STATE(123), - [sym_float] = STATE(123), - [sym_bool] = STATE(123), - [sym_string] = STATE(105), - [sym_null] = STATE(123), - [sym_array] = STATE(123), - [sym_map] = STATE(123), - [sym_object] = STATE(123), - [sym_pair] = STATE(119), - [sym_keyword] = STATE(494), - [aux_sym_module_repeat1] = STATE(3), - [aux_sym_class_declaration_repeat1] = STATE(468), - [aux_sym_function_declaration_repeat1] = STATE(494), + [sym_preprocessor_statement] = STATE(212), + [sym_package_statement] = STATE(212), + [sym_import_statement] = STATE(212), + [sym_using_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym__unaryExpression] = STATE(73), + [sym_runtime_type_check_expression] = STATE(73), + [sym_switch_expression] = STATE(73), + [sym_case_statement] = STATE(212), + [sym_cast_expression] = STATE(73), + [sym_type_trace_expression] = STATE(73), + [sym__parenthesized_expression] = STATE(72), + [sym_range_expression] = STATE(73), + [sym_subscript_expression] = STATE(73), + [sym_member_expression] = STATE(54), + [sym__binary_expression] = STATE(73), + [sym_ternary_expression] = STATE(73), + [sym__lhs_expression] = STATE(1045), + [sym__rhs_expression] = STATE(90), + [sym_block] = STATE(212), + [sym_metadata] = STATE(309), + [sym_conditional_statement] = STATE(212), + [sym__call] = STATE(57), + [sym__constructor_call] = STATE(40), + [sym_call_expression] = STATE(90), + [sym_declaration] = STATE(212), + [sym_class_declaration] = STATE(197), + [sym_interface_declaration] = STATE(197), + [sym_typedef_declaration] = STATE(197), + [sym_function_declaration] = STATE(197), + [sym_variable_declaration] = STATE(197), + [sym__literal] = STATE(104), + [sym_integer] = STATE(104), + [sym_float] = STATE(104), + [sym_bool] = STATE(104), + [sym_string] = STATE(65), + [sym_null] = STATE(104), + [sym_array] = STATE(104), + [sym_map] = STATE(104), + [sym_object] = STATE(104), + [sym_pair] = STATE(104), + [sym_keyword] = STATE(404), + [aux_sym_module_repeat1] = STATE(8), + [aux_sym_class_declaration_repeat1] = STATE(309), + [aux_sym_function_declaration_repeat1] = STATE(404), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(9), [anon_sym_package] = ACTIONS(11), @@ -8080,7 +7515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_switch] = ACTIONS(21), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(222), + [anon_sym_RBRACE] = ACTIONS(202), [anon_sym_case] = ACTIONS(25), [anon_sym_default] = ACTIONS(27), [anon_sym_cast] = ACTIONS(29), @@ -8093,52 +7528,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(43), [anon_sym_else] = ACTIONS(33), [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), + [sym__prefixUnaryOperator] = ACTIONS(47), + [sym__eitherUnaryOperator] = ACTIONS(49), + [anon_sym_null] = ACTIONS(51), [anon_sym_dynamic] = ACTIONS(33), - [anon_sym_final] = ACTIONS(61), - [anon_sym_abstract] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), + [anon_sym_final] = ACTIONS(53), + [anon_sym_abstract] = ACTIONS(55), + [anon_sym_class] = ACTIONS(57), [anon_sym_extends] = ACTIONS(33), [anon_sym_implements] = ACTIONS(33), - [anon_sym_interface] = ACTIONS(67), - [anon_sym_typedef] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_var] = ACTIONS(73), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_typedef] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), + [anon_sym_var] = ACTIONS(65), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), [sym_comment] = ACTIONS(3), [anon_sym_break] = ACTIONS(33), [anon_sym_catch] = ACTIONS(33), @@ -8161,61 +7571,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(33), }, [8] = { - [sym_preprocessor_statement] = STATE(297), - [sym_package_statement] = STATE(297), - [sym_import_statement] = STATE(297), - [sym_using_statement] = STATE(297), - [sym_throw_statement] = STATE(297), - [sym__rhs_expression] = STATE(42), - [sym__unaryExpression] = STATE(297), - [sym_runtime_type_check_expression] = STATE(297), - [sym_switch_expression] = STATE(297), - [sym_case_statement] = STATE(297), - [sym_cast_expression] = STATE(297), - [sym_type_trace_expression] = STATE(297), - [sym__parenthesized_expression] = STATE(282), - [sym_range_expression] = STATE(297), - [sym_subscript_expression] = STATE(297), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1054), - [sym_block] = STATE(297), - [sym_metadata] = STATE(468), - [sym_conditional_statement] = STATE(297), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(42), - [sym_operator] = STATE(781), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym_declaration] = STATE(297), - [sym_class_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym_typedef_declaration] = STATE(243), - [sym_function_declaration] = STATE(243), - [sym_variable_declaration] = STATE(243), - [sym__literal] = STATE(123), - [sym_integer] = STATE(123), - [sym_float] = STATE(123), - [sym_bool] = STATE(123), - [sym_string] = STATE(105), - [sym_null] = STATE(123), - [sym_array] = STATE(123), - [sym_map] = STATE(123), - [sym_object] = STATE(123), - [sym_pair] = STATE(123), - [sym_keyword] = STATE(494), - [aux_sym_module_repeat1] = STATE(3), - [aux_sym_class_declaration_repeat1] = STATE(468), - [aux_sym_function_declaration_repeat1] = STATE(494), + [sym_preprocessor_statement] = STATE(212), + [sym_package_statement] = STATE(212), + [sym_import_statement] = STATE(212), + [sym_using_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym__unaryExpression] = STATE(73), + [sym_runtime_type_check_expression] = STATE(73), + [sym_switch_expression] = STATE(73), + [sym_case_statement] = STATE(212), + [sym_cast_expression] = STATE(73), + [sym_type_trace_expression] = STATE(73), + [sym__parenthesized_expression] = STATE(72), + [sym_range_expression] = STATE(73), + [sym_subscript_expression] = STATE(73), + [sym_member_expression] = STATE(54), + [sym__binary_expression] = STATE(73), + [sym_ternary_expression] = STATE(73), + [sym__lhs_expression] = STATE(1045), + [sym__rhs_expression] = STATE(90), + [sym_block] = STATE(212), + [sym_metadata] = STATE(309), + [sym_conditional_statement] = STATE(212), + [sym__call] = STATE(57), + [sym__constructor_call] = STATE(40), + [sym_call_expression] = STATE(90), + [sym_declaration] = STATE(212), + [sym_class_declaration] = STATE(197), + [sym_interface_declaration] = STATE(197), + [sym_typedef_declaration] = STATE(197), + [sym_function_declaration] = STATE(197), + [sym_variable_declaration] = STATE(197), + [sym__literal] = STATE(104), + [sym_integer] = STATE(104), + [sym_float] = STATE(104), + [sym_bool] = STATE(104), + [sym_string] = STATE(65), + [sym_null] = STATE(104), + [sym_array] = STATE(104), + [sym_map] = STATE(104), + [sym_object] = STATE(104), + [sym_pair] = STATE(104), + [sym_keyword] = STATE(404), + [aux_sym_module_repeat1] = STATE(2), + [aux_sym_class_declaration_repeat1] = STATE(309), + [aux_sym_function_declaration_repeat1] = STATE(404), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(9), [anon_sym_package] = ACTIONS(11), @@ -8225,7 +7625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_switch] = ACTIONS(21), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(224), + [anon_sym_RBRACE] = ACTIONS(204), [anon_sym_case] = ACTIONS(25), [anon_sym_default] = ACTIONS(27), [anon_sym_cast] = ACTIONS(29), @@ -8238,52 +7638,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(43), [anon_sym_else] = ACTIONS(33), [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), + [sym__prefixUnaryOperator] = ACTIONS(47), + [sym__eitherUnaryOperator] = ACTIONS(49), + [anon_sym_null] = ACTIONS(51), [anon_sym_dynamic] = ACTIONS(33), - [anon_sym_final] = ACTIONS(61), - [anon_sym_abstract] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), + [anon_sym_final] = ACTIONS(53), + [anon_sym_abstract] = ACTIONS(55), + [anon_sym_class] = ACTIONS(57), [anon_sym_extends] = ACTIONS(33), [anon_sym_implements] = ACTIONS(33), - [anon_sym_interface] = ACTIONS(67), - [anon_sym_typedef] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_var] = ACTIONS(73), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_typedef] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), + [anon_sym_var] = ACTIONS(65), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), [sym_comment] = ACTIONS(3), [anon_sym_break] = ACTIONS(33), [anon_sym_catch] = ACTIONS(33), @@ -8306,61 +7681,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(33), }, [9] = { - [sym_preprocessor_statement] = STATE(297), - [sym_package_statement] = STATE(297), - [sym_import_statement] = STATE(297), - [sym_using_statement] = STATE(297), - [sym_throw_statement] = STATE(297), - [sym__rhs_expression] = STATE(42), - [sym__unaryExpression] = STATE(297), - [sym_runtime_type_check_expression] = STATE(297), - [sym_switch_expression] = STATE(297), - [sym_case_statement] = STATE(297), - [sym_cast_expression] = STATE(297), - [sym_type_trace_expression] = STATE(297), - [sym__parenthesized_expression] = STATE(282), - [sym_range_expression] = STATE(297), - [sym_subscript_expression] = STATE(297), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1054), - [sym_block] = STATE(297), - [sym_metadata] = STATE(468), - [sym_conditional_statement] = STATE(297), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(42), - [sym_operator] = STATE(781), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym_declaration] = STATE(297), - [sym_class_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym_typedef_declaration] = STATE(243), - [sym_function_declaration] = STATE(243), - [sym_variable_declaration] = STATE(243), - [sym__literal] = STATE(123), - [sym_integer] = STATE(123), - [sym_float] = STATE(123), - [sym_bool] = STATE(123), - [sym_string] = STATE(105), - [sym_null] = STATE(123), - [sym_array] = STATE(123), - [sym_map] = STATE(123), - [sym_object] = STATE(123), - [sym_pair] = STATE(123), - [sym_keyword] = STATE(494), - [aux_sym_module_repeat1] = STATE(6), - [aux_sym_class_declaration_repeat1] = STATE(468), - [aux_sym_function_declaration_repeat1] = STATE(494), + [sym_preprocessor_statement] = STATE(212), + [sym_package_statement] = STATE(212), + [sym_import_statement] = STATE(212), + [sym_using_statement] = STATE(212), + [sym_throw_statement] = STATE(212), + [sym__unaryExpression] = STATE(73), + [sym_runtime_type_check_expression] = STATE(73), + [sym_switch_expression] = STATE(73), + [sym_case_statement] = STATE(212), + [sym_cast_expression] = STATE(73), + [sym_type_trace_expression] = STATE(73), + [sym__parenthesized_expression] = STATE(72), + [sym_range_expression] = STATE(73), + [sym_subscript_expression] = STATE(73), + [sym_member_expression] = STATE(54), + [sym__binary_expression] = STATE(73), + [sym_ternary_expression] = STATE(73), + [sym__lhs_expression] = STATE(1045), + [sym__rhs_expression] = STATE(90), + [sym_block] = STATE(212), + [sym_metadata] = STATE(309), + [sym_conditional_statement] = STATE(212), + [sym__call] = STATE(57), + [sym__constructor_call] = STATE(40), + [sym_call_expression] = STATE(90), + [sym_declaration] = STATE(212), + [sym_class_declaration] = STATE(197), + [sym_interface_declaration] = STATE(197), + [sym_typedef_declaration] = STATE(197), + [sym_function_declaration] = STATE(197), + [sym_variable_declaration] = STATE(197), + [sym__literal] = STATE(104), + [sym_integer] = STATE(104), + [sym_float] = STATE(104), + [sym_bool] = STATE(104), + [sym_string] = STATE(65), + [sym_null] = STATE(104), + [sym_array] = STATE(104), + [sym_map] = STATE(104), + [sym_object] = STATE(104), + [sym_pair] = STATE(101), + [sym_keyword] = STATE(404), + [aux_sym_module_repeat1] = STATE(5), + [aux_sym_class_declaration_repeat1] = STATE(309), + [aux_sym_function_declaration_repeat1] = STATE(404), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(9), [anon_sym_package] = ACTIONS(11), @@ -8370,7 +7735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_switch] = ACTIONS(21), [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(226), + [anon_sym_RBRACE] = ACTIONS(206), [anon_sym_case] = ACTIONS(25), [anon_sym_default] = ACTIONS(27), [anon_sym_cast] = ACTIONS(29), @@ -8383,52 +7748,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(43), [anon_sym_else] = ACTIONS(33), [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), + [sym__prefixUnaryOperator] = ACTIONS(47), + [sym__eitherUnaryOperator] = ACTIONS(49), + [anon_sym_null] = ACTIONS(51), [anon_sym_dynamic] = ACTIONS(33), - [anon_sym_final] = ACTIONS(61), - [anon_sym_abstract] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), + [anon_sym_final] = ACTIONS(53), + [anon_sym_abstract] = ACTIONS(55), + [anon_sym_class] = ACTIONS(57), [anon_sym_extends] = ACTIONS(33), [anon_sym_implements] = ACTIONS(33), - [anon_sym_interface] = ACTIONS(67), - [anon_sym_typedef] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_var] = ACTIONS(73), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_typedef] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), + [anon_sym_var] = ACTIONS(65), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), [sym_comment] = ACTIONS(3), [anon_sym_break] = ACTIONS(33), [anon_sym_catch] = ACTIONS(33), @@ -8451,60 +7791,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(33), }, [10] = { - [sym_preprocessor_statement] = STATE(247), - [sym_package_statement] = STATE(247), - [sym_import_statement] = STATE(247), - [sym_using_statement] = STATE(247), - [sym_throw_statement] = STATE(247), - [sym__rhs_expression] = STATE(47), - [sym__unaryExpression] = STATE(247), - [sym_runtime_type_check_expression] = STATE(247), - [sym_switch_expression] = STATE(247), - [sym_case_statement] = STATE(247), - [sym_cast_expression] = STATE(247), - [sym_type_trace_expression] = STATE(247), - [sym__parenthesized_expression] = STATE(249), - [sym_range_expression] = STATE(247), - [sym_subscript_expression] = STATE(247), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1054), - [sym_block] = STATE(247), - [sym_metadata] = STATE(468), - [sym_conditional_statement] = STATE(247), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(47), - [sym_operator] = STATE(781), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym_declaration] = STATE(247), - [sym_class_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym_typedef_declaration] = STATE(243), - [sym_function_declaration] = STATE(243), - [sym_variable_declaration] = STATE(243), - [sym__literal] = STATE(123), - [sym_integer] = STATE(123), - [sym_float] = STATE(123), - [sym_bool] = STATE(123), - [sym_string] = STATE(105), - [sym_null] = STATE(123), - [sym_array] = STATE(123), - [sym_map] = STATE(123), - [sym_object] = STATE(123), - [sym_pair] = STATE(123), - [sym_keyword] = STATE(494), - [aux_sym_class_declaration_repeat1] = STATE(468), - [aux_sym_function_declaration_repeat1] = STATE(494), + [sym_preprocessor_statement] = STATE(219), + [sym_package_statement] = STATE(219), + [sym_import_statement] = STATE(219), + [sym_using_statement] = STATE(219), + [sym_throw_statement] = STATE(219), + [sym__unaryExpression] = STATE(81), + [sym_runtime_type_check_expression] = STATE(81), + [sym_switch_expression] = STATE(81), + [sym_case_statement] = STATE(219), + [sym_cast_expression] = STATE(81), + [sym_type_trace_expression] = STATE(81), + [sym__parenthesized_expression] = STATE(85), + [sym_range_expression] = STATE(81), + [sym_subscript_expression] = STATE(81), + [sym_member_expression] = STATE(54), + [sym__binary_expression] = STATE(81), + [sym_ternary_expression] = STATE(81), + [sym__lhs_expression] = STATE(1045), + [sym__rhs_expression] = STATE(87), + [sym_block] = STATE(219), + [sym_metadata] = STATE(309), + [sym_conditional_statement] = STATE(219), + [sym__call] = STATE(57), + [sym__constructor_call] = STATE(40), + [sym_call_expression] = STATE(87), + [sym_declaration] = STATE(219), + [sym_class_declaration] = STATE(197), + [sym_interface_declaration] = STATE(197), + [sym_typedef_declaration] = STATE(197), + [sym_function_declaration] = STATE(197), + [sym_variable_declaration] = STATE(197), + [sym__literal] = STATE(104), + [sym_integer] = STATE(104), + [sym_float] = STATE(104), + [sym_bool] = STATE(104), + [sym_string] = STATE(65), + [sym_null] = STATE(104), + [sym_array] = STATE(104), + [sym_map] = STATE(104), + [sym_object] = STATE(104), + [sym_pair] = STATE(104), + [sym_keyword] = STATE(404), + [aux_sym_class_declaration_repeat1] = STATE(309), + [aux_sym_function_declaration_repeat1] = STATE(404), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(9), [anon_sym_package] = ACTIONS(11), @@ -8526,52 +7856,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(43), [anon_sym_else] = ACTIONS(33), [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), + [sym__prefixUnaryOperator] = ACTIONS(47), + [sym__eitherUnaryOperator] = ACTIONS(49), + [anon_sym_null] = ACTIONS(51), [anon_sym_dynamic] = ACTIONS(33), - [anon_sym_final] = ACTIONS(61), - [anon_sym_abstract] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), + [anon_sym_final] = ACTIONS(53), + [anon_sym_abstract] = ACTIONS(55), + [anon_sym_class] = ACTIONS(57), [anon_sym_extends] = ACTIONS(33), [anon_sym_implements] = ACTIONS(33), - [anon_sym_interface] = ACTIONS(67), - [anon_sym_typedef] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_var] = ACTIONS(73), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_typedef] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), + [anon_sym_var] = ACTIONS(65), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), [sym_comment] = ACTIONS(3), [anon_sym_break] = ACTIONS(33), [anon_sym_catch] = ACTIONS(33), @@ -8594,60 +7899,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(33), }, [11] = { - [sym_preprocessor_statement] = STATE(210), - [sym_package_statement] = STATE(210), - [sym_import_statement] = STATE(210), - [sym_using_statement] = STATE(210), - [sym_throw_statement] = STATE(210), - [sym__rhs_expression] = STATE(44), - [sym__unaryExpression] = STATE(210), - [sym_runtime_type_check_expression] = STATE(210), - [sym_switch_expression] = STATE(210), - [sym_case_statement] = STATE(210), - [sym_cast_expression] = STATE(210), - [sym_type_trace_expression] = STATE(210), - [sym__parenthesized_expression] = STATE(217), - [sym_range_expression] = STATE(210), - [sym_subscript_expression] = STATE(210), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1054), - [sym_block] = STATE(210), - [sym_metadata] = STATE(468), - [sym_conditional_statement] = STATE(210), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(44), - [sym_operator] = STATE(781), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym_declaration] = STATE(210), - [sym_class_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym_typedef_declaration] = STATE(243), - [sym_function_declaration] = STATE(243), - [sym_variable_declaration] = STATE(243), - [sym__literal] = STATE(123), - [sym_integer] = STATE(123), - [sym_float] = STATE(123), - [sym_bool] = STATE(123), - [sym_string] = STATE(105), - [sym_null] = STATE(123), - [sym_array] = STATE(123), - [sym_map] = STATE(123), - [sym_object] = STATE(123), - [sym_pair] = STATE(123), - [sym_keyword] = STATE(494), - [aux_sym_class_declaration_repeat1] = STATE(468), - [aux_sym_function_declaration_repeat1] = STATE(494), + [sym_preprocessor_statement] = STATE(199), + [sym_package_statement] = STATE(199), + [sym_import_statement] = STATE(199), + [sym_using_statement] = STATE(199), + [sym_throw_statement] = STATE(199), + [sym__unaryExpression] = STATE(97), + [sym_runtime_type_check_expression] = STATE(97), + [sym_switch_expression] = STATE(97), + [sym_case_statement] = STATE(199), + [sym_cast_expression] = STATE(97), + [sym_type_trace_expression] = STATE(97), + [sym__parenthesized_expression] = STATE(62), + [sym_range_expression] = STATE(97), + [sym_subscript_expression] = STATE(97), + [sym_member_expression] = STATE(54), + [sym__binary_expression] = STATE(97), + [sym_ternary_expression] = STATE(97), + [sym__lhs_expression] = STATE(1045), + [sym__rhs_expression] = STATE(95), + [sym_block] = STATE(199), + [sym_metadata] = STATE(309), + [sym_conditional_statement] = STATE(199), + [sym__call] = STATE(57), + [sym__constructor_call] = STATE(40), + [sym_call_expression] = STATE(95), + [sym_declaration] = STATE(199), + [sym_class_declaration] = STATE(197), + [sym_interface_declaration] = STATE(197), + [sym_typedef_declaration] = STATE(197), + [sym_function_declaration] = STATE(197), + [sym_variable_declaration] = STATE(197), + [sym__literal] = STATE(104), + [sym_integer] = STATE(104), + [sym_float] = STATE(104), + [sym_bool] = STATE(104), + [sym_string] = STATE(65), + [sym_null] = STATE(104), + [sym_array] = STATE(104), + [sym_map] = STATE(104), + [sym_object] = STATE(104), + [sym_pair] = STATE(104), + [sym_keyword] = STATE(404), + [aux_sym_class_declaration_repeat1] = STATE(309), + [aux_sym_function_declaration_repeat1] = STATE(404), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(9), [anon_sym_package] = ACTIONS(11), @@ -8669,52 +7964,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(43), [anon_sym_else] = ACTIONS(33), [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), + [sym__prefixUnaryOperator] = ACTIONS(47), + [sym__eitherUnaryOperator] = ACTIONS(49), + [anon_sym_null] = ACTIONS(51), [anon_sym_dynamic] = ACTIONS(33), - [anon_sym_final] = ACTIONS(61), - [anon_sym_abstract] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), + [anon_sym_final] = ACTIONS(53), + [anon_sym_abstract] = ACTIONS(55), + [anon_sym_class] = ACTIONS(57), [anon_sym_extends] = ACTIONS(33), [anon_sym_implements] = ACTIONS(33), - [anon_sym_interface] = ACTIONS(67), - [anon_sym_typedef] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_var] = ACTIONS(73), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_typedef] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), + [anon_sym_var] = ACTIONS(65), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), [sym_comment] = ACTIONS(3), [anon_sym_break] = ACTIONS(33), [anon_sym_catch] = ACTIONS(33), @@ -8737,60 +8007,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(33), }, [12] = { - [sym_preprocessor_statement] = STATE(211), - [sym_package_statement] = STATE(211), - [sym_import_statement] = STATE(211), - [sym_using_statement] = STATE(211), - [sym_throw_statement] = STATE(211), - [sym__rhs_expression] = STATE(41), - [sym__unaryExpression] = STATE(211), - [sym_runtime_type_check_expression] = STATE(211), - [sym_switch_expression] = STATE(211), - [sym_case_statement] = STATE(211), - [sym_cast_expression] = STATE(211), - [sym_type_trace_expression] = STATE(211), - [sym__parenthesized_expression] = STATE(213), - [sym_range_expression] = STATE(211), - [sym_subscript_expression] = STATE(211), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1054), - [sym_block] = STATE(211), - [sym_metadata] = STATE(468), - [sym_conditional_statement] = STATE(211), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(41), - [sym_operator] = STATE(781), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym_declaration] = STATE(211), - [sym_class_declaration] = STATE(243), - [sym_interface_declaration] = STATE(243), - [sym_typedef_declaration] = STATE(243), - [sym_function_declaration] = STATE(243), - [sym_variable_declaration] = STATE(243), - [sym__literal] = STATE(123), - [sym_integer] = STATE(123), - [sym_float] = STATE(123), - [sym_bool] = STATE(123), - [sym_string] = STATE(105), - [sym_null] = STATE(123), - [sym_array] = STATE(123), - [sym_map] = STATE(123), - [sym_object] = STATE(123), - [sym_pair] = STATE(123), - [sym_keyword] = STATE(494), - [aux_sym_class_declaration_repeat1] = STATE(468), - [aux_sym_function_declaration_repeat1] = STATE(494), + [sym_preprocessor_statement] = STATE(245), + [sym_package_statement] = STATE(245), + [sym_import_statement] = STATE(245), + [sym_using_statement] = STATE(245), + [sym_throw_statement] = STATE(245), + [sym__unaryExpression] = STATE(70), + [sym_runtime_type_check_expression] = STATE(70), + [sym_switch_expression] = STATE(70), + [sym_case_statement] = STATE(245), + [sym_cast_expression] = STATE(70), + [sym_type_trace_expression] = STATE(70), + [sym__parenthesized_expression] = STATE(69), + [sym_range_expression] = STATE(70), + [sym_subscript_expression] = STATE(70), + [sym_member_expression] = STATE(54), + [sym__binary_expression] = STATE(70), + [sym_ternary_expression] = STATE(70), + [sym__lhs_expression] = STATE(1045), + [sym__rhs_expression] = STATE(68), + [sym_block] = STATE(245), + [sym_metadata] = STATE(309), + [sym_conditional_statement] = STATE(245), + [sym__call] = STATE(57), + [sym__constructor_call] = STATE(40), + [sym_call_expression] = STATE(68), + [sym_declaration] = STATE(245), + [sym_class_declaration] = STATE(197), + [sym_interface_declaration] = STATE(197), + [sym_typedef_declaration] = STATE(197), + [sym_function_declaration] = STATE(197), + [sym_variable_declaration] = STATE(197), + [sym__literal] = STATE(104), + [sym_integer] = STATE(104), + [sym_float] = STATE(104), + [sym_bool] = STATE(104), + [sym_string] = STATE(65), + [sym_null] = STATE(104), + [sym_array] = STATE(104), + [sym_map] = STATE(104), + [sym_object] = STATE(104), + [sym_pair] = STATE(104), + [sym_keyword] = STATE(404), + [aux_sym_class_declaration_repeat1] = STATE(309), + [aux_sym_function_declaration_repeat1] = STATE(404), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(9), [anon_sym_package] = ACTIONS(11), @@ -8812,52 +8072,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(43), [anon_sym_else] = ACTIONS(33), [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), + [sym__prefixUnaryOperator] = ACTIONS(47), + [sym__eitherUnaryOperator] = ACTIONS(49), + [anon_sym_null] = ACTIONS(51), [anon_sym_dynamic] = ACTIONS(33), - [anon_sym_final] = ACTIONS(61), - [anon_sym_abstract] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), + [anon_sym_final] = ACTIONS(53), + [anon_sym_abstract] = ACTIONS(55), + [anon_sym_class] = ACTIONS(57), [anon_sym_extends] = ACTIONS(33), [anon_sym_implements] = ACTIONS(33), - [anon_sym_interface] = ACTIONS(67), - [anon_sym_typedef] = ACTIONS(69), - [anon_sym_function] = ACTIONS(71), - [anon_sym_var] = ACTIONS(73), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), + [anon_sym_interface] = ACTIONS(59), + [anon_sym_typedef] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), + [anon_sym_var] = ACTIONS(65), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), [sym_comment] = ACTIONS(3), [anon_sym_break] = ACTIONS(33), [anon_sym_catch] = ACTIONS(33), @@ -8880,2966 +8115,2879 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(33), }, [13] = { - [sym__rhs_expression] = STATE(50), - [sym__unaryExpression] = STATE(316), - [sym_runtime_type_check_expression] = STATE(316), - [sym_switch_expression] = STATE(316), - [sym_cast_expression] = STATE(316), - [sym_type_trace_expression] = STATE(316), - [sym__parenthesized_expression] = STATE(313), - [sym_range_expression] = STATE(316), - [sym_subscript_expression] = STATE(316), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1054), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(50), - [sym_operator] = STATE(781), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(123), - [sym_integer] = STATE(123), - [sym_float] = STATE(123), - [sym_bool] = STATE(123), - [sym_string] = STATE(105), - [sym_null] = STATE(123), - [sym_array] = STATE(123), - [sym_map] = STATE(123), - [sym_object] = STATE(123), - [sym_pair] = STATE(123), - [sym_identifier] = ACTIONS(7), - [anon_sym_package] = ACTIONS(228), - [anon_sym_import] = ACTIONS(228), - [anon_sym_using] = ACTIONS(228), - [anon_sym_throw] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_case] = ACTIONS(228), - [anon_sym_default] = ACTIONS(228), - [anon_sym_cast] = ACTIONS(234), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_in] = ACTIONS(228), + [sym_member_expression] = STATE(28), + [sym__lhs_expression] = STATE(29), + [sym__literal] = STATE(1194), + [sym_integer] = STATE(1194), + [sym_float] = STATE(1194), + [sym_bool] = STATE(1194), + [sym_string] = STATE(1025), + [sym_null] = STATE(1194), + [sym_array] = STATE(1194), + [sym_map] = STATE(1194), + [sym_object] = STATE(1194), + [sym_pair] = STATE(1194), + [aux_sym_member_expression_repeat1] = STATE(14), + [ts_builtin_sym_end] = ACTIONS(208), + [sym_identifier] = ACTIONS(210), + [anon_sym_POUND] = ACTIONS(208), + [anon_sym_package] = ACTIONS(212), + [anon_sym_import] = ACTIONS(212), + [anon_sym_using] = ACTIONS(212), + [anon_sym_throw] = ACTIONS(212), + [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_RPAREN] = ACTIONS(208), + [anon_sym_switch] = ACTIONS(212), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_RBRACE] = ACTIONS(208), + [anon_sym_case] = ACTIONS(212), + [anon_sym_default] = ACTIONS(212), + [anon_sym_cast] = ACTIONS(212), + [anon_sym_COMMA] = ACTIONS(208), + [anon_sym_DOLLARtype] = ACTIONS(208), + [anon_sym_in] = ACTIONS(212), [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_if] = ACTIONS(228), - [anon_sym_else] = ACTIONS(228), - [anon_sym_new] = ACTIONS(238), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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_dynamic] = ACTIONS(228), - [anon_sym_final] = ACTIONS(228), - [anon_sym_abstract] = ACTIONS(228), - [anon_sym_class] = ACTIONS(228), - [anon_sym_extends] = ACTIONS(228), - [anon_sym_implements] = ACTIONS(228), - [anon_sym_interface] = ACTIONS(228), - [anon_sym_typedef] = ACTIONS(228), - [anon_sym_function] = ACTIONS(228), - [anon_sym_var] = ACTIONS(228), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(228), - [anon_sym_catch] = ACTIONS(228), - [anon_sym_continue] = ACTIONS(228), - [anon_sym_do] = ACTIONS(228), - [anon_sym_enum] = ACTIONS(228), - [anon_sym_extern] = ACTIONS(228), - [anon_sym_for] = ACTIONS(228), - [anon_sym_inline] = ACTIONS(228), - [anon_sym_macro] = ACTIONS(228), - [anon_sym_operator] = ACTIONS(228), - [anon_sym_overload] = ACTIONS(228), - [anon_sym_override] = ACTIONS(228), - [anon_sym_private] = ACTIONS(228), - [anon_sym_public] = ACTIONS(228), - [anon_sym_return] = ACTIONS(228), - [anon_sym_static] = ACTIONS(228), - [anon_sym_try] = ACTIONS(228), - [anon_sym_untyped] = ACTIONS(228), - [anon_sym_while] = ACTIONS(228), + [anon_sym_this] = ACTIONS(216), + [aux_sym_member_expression_token1] = ACTIONS(212), + [anon_sym_QMARK] = ACTIONS(212), + [anon_sym_DASH_GT] = ACTIONS(208), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_AT_COLON] = ACTIONS(208), + [anon_sym_if] = ACTIONS(212), + [anon_sym_else] = ACTIONS(212), + [anon_sym_new] = ACTIONS(212), + [sym__prefixUnaryOperator] = ACTIONS(212), + [sym__eitherUnaryOperator] = ACTIONS(208), + [sym__arithmetic_operator] = ACTIONS(212), + [sym__bitwise_operator] = ACTIONS(212), + [sym__logical_operator] = ACTIONS(208), + [sym__comparison_operator] = ACTIONS(212), + [sym__map_operator] = ACTIONS(208), + [sym__null_colalese_operator] = ACTIONS(208), + [anon_sym_EQ] = ACTIONS(212), + [sym__range_operator] = ACTIONS(208), + [anon_sym_null] = ACTIONS(51), + [anon_sym_dynamic] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(212), + [anon_sym_final] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_class] = ACTIONS(212), + [anon_sym_extends] = ACTIONS(212), + [anon_sym_implements] = ACTIONS(212), + [anon_sym_interface] = ACTIONS(212), + [anon_sym_typedef] = ACTIONS(212), + [anon_sym_function] = ACTIONS(212), + [anon_sym_var] = ACTIONS(212), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(212), + [anon_sym_catch] = ACTIONS(212), + [anon_sym_continue] = ACTIONS(212), + [anon_sym_do] = ACTIONS(212), + [anon_sym_enum] = ACTIONS(212), + [anon_sym_extern] = ACTIONS(212), + [anon_sym_for] = ACTIONS(212), + [anon_sym_inline] = ACTIONS(212), + [anon_sym_macro] = ACTIONS(212), + [anon_sym_operator] = ACTIONS(212), + [anon_sym_overload] = ACTIONS(212), + [anon_sym_override] = ACTIONS(212), + [anon_sym_private] = ACTIONS(212), + [anon_sym_public] = ACTIONS(212), + [anon_sym_return] = ACTIONS(212), + [anon_sym_static] = ACTIONS(212), + [anon_sym_try] = ACTIONS(212), + [anon_sym_untyped] = ACTIONS(212), + [anon_sym_while] = ACTIONS(212), + [sym__semicolon] = ACTIONS(208), }, [14] = { - [sym__rhs_expression] = STATE(61), - [sym_member_expression] = STATE(80), - [sym__lhs_expression] = STATE(1054), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(61), - [sym__literal] = STATE(113), - [sym_integer] = STATE(113), - [sym_float] = STATE(113), - [sym_bool] = STATE(113), - [sym_string] = STATE(105), - [sym_null] = STATE(113), - [sym_array] = STATE(113), - [sym_map] = STATE(113), - [sym_object] = STATE(113), - [sym_pair] = STATE(113), - [ts_builtin_sym_end] = ACTIONS(240), - [sym_identifier] = ACTIONS(242), - [anon_sym_POUND] = ACTIONS(240), - [anon_sym_package] = ACTIONS(242), - [anon_sym_import] = ACTIONS(242), - [anon_sym_using] = ACTIONS(242), - [anon_sym_throw] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(240), - [anon_sym_switch] = ACTIONS(242), - [anon_sym_LBRACE] = ACTIONS(240), - [anon_sym_RBRACE] = ACTIONS(240), - [anon_sym_case] = ACTIONS(242), - [anon_sym_default] = ACTIONS(242), - [anon_sym_cast] = ACTIONS(242), - [anon_sym_COMMA] = ACTIONS(240), - [anon_sym_DOLLARtype] = ACTIONS(240), - [anon_sym_in] = ACTIONS(242), - [anon_sym_LBRACK] = ACTIONS(240), - [anon_sym_this] = ACTIONS(242), - [anon_sym_DOT] = ACTIONS(242), - [anon_sym_QMARK] = ACTIONS(242), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_AT_COLON] = ACTIONS(240), - [anon_sym_if] = ACTIONS(242), - [anon_sym_else] = ACTIONS(242), - [anon_sym_new] = ACTIONS(242), - [anon_sym_TILDE] = ACTIONS(240), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_DASH] = ACTIONS(242), - [anon_sym_PLUS_PLUS] = ACTIONS(240), - [anon_sym_DASH_DASH] = ACTIONS(240), - [anon_sym_PERCENT] = ACTIONS(240), - [anon_sym_STAR] = ACTIONS(240), - [anon_sym_SLASH] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(242), - [anon_sym_LT_LT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(242), - [anon_sym_GT_GT_GT] = ACTIONS(240), - [anon_sym_AMP] = ACTIONS(242), - [anon_sym_PIPE] = ACTIONS(242), - [anon_sym_CARET] = ACTIONS(240), - [anon_sym_AMP_AMP] = ACTIONS(240), - [anon_sym_PIPE_PIPE] = ACTIONS(240), - [anon_sym_EQ_EQ] = ACTIONS(240), - [anon_sym_BANG_EQ] = ACTIONS(240), - [anon_sym_LT] = ACTIONS(242), - [anon_sym_LT_EQ] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(242), - [anon_sym_GT_EQ] = ACTIONS(240), - [anon_sym_EQ_GT] = ACTIONS(240), - [anon_sym_QMARK_QMARK] = ACTIONS(240), - [anon_sym_EQ] = ACTIONS(242), - [sym__rangeOperator] = ACTIONS(240), - [anon_sym_null] = ACTIONS(242), - [anon_sym_dynamic] = ACTIONS(242), - [anon_sym_final] = ACTIONS(242), - [anon_sym_abstract] = ACTIONS(242), - [anon_sym_class] = ACTIONS(242), - [anon_sym_extends] = ACTIONS(242), - [anon_sym_implements] = ACTIONS(242), - [anon_sym_interface] = ACTIONS(242), - [anon_sym_typedef] = ACTIONS(242), - [anon_sym_function] = ACTIONS(242), - [anon_sym_var] = ACTIONS(242), - [aux_sym_integer_token1] = ACTIONS(242), + [sym_member_expression] = STATE(28), + [sym__lhs_expression] = STATE(29), + [sym__literal] = STATE(1194), + [sym_integer] = STATE(1194), + [sym_float] = STATE(1194), + [sym_bool] = STATE(1194), + [sym_string] = STATE(1025), + [sym_null] = STATE(1194), + [sym_array] = STATE(1194), + [sym_map] = STATE(1194), + [sym_object] = STATE(1194), + [sym_pair] = STATE(1194), + [aux_sym_member_expression_repeat1] = STATE(14), + [ts_builtin_sym_end] = ACTIONS(218), + [sym_identifier] = ACTIONS(220), + [anon_sym_POUND] = ACTIONS(218), + [anon_sym_package] = ACTIONS(223), + [anon_sym_import] = ACTIONS(223), + [anon_sym_using] = ACTIONS(223), + [anon_sym_throw] = ACTIONS(223), + [anon_sym_LPAREN] = ACTIONS(218), + [anon_sym_RPAREN] = ACTIONS(218), + [anon_sym_switch] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [anon_sym_RBRACE] = ACTIONS(218), + [anon_sym_case] = ACTIONS(223), + [anon_sym_default] = ACTIONS(223), + [anon_sym_cast] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(218), + [anon_sym_DOLLARtype] = ACTIONS(218), + [anon_sym_in] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(228), + [anon_sym_this] = ACTIONS(231), + [aux_sym_member_expression_token1] = ACTIONS(223), + [anon_sym_QMARK] = ACTIONS(223), + [anon_sym_DASH_GT] = ACTIONS(218), + [anon_sym_AT] = ACTIONS(223), + [anon_sym_AT_COLON] = ACTIONS(218), + [anon_sym_if] = ACTIONS(223), + [anon_sym_else] = ACTIONS(223), + [anon_sym_new] = ACTIONS(223), + [sym__prefixUnaryOperator] = ACTIONS(223), + [sym__eitherUnaryOperator] = ACTIONS(218), + [sym__arithmetic_operator] = ACTIONS(223), + [sym__bitwise_operator] = ACTIONS(223), + [sym__logical_operator] = ACTIONS(218), + [sym__comparison_operator] = ACTIONS(223), + [sym__map_operator] = ACTIONS(218), + [sym__null_colalese_operator] = ACTIONS(218), + [anon_sym_EQ] = ACTIONS(223), + [sym__range_operator] = ACTIONS(218), + [anon_sym_null] = ACTIONS(234), + [anon_sym_dynamic] = ACTIONS(223), + [anon_sym_LT] = ACTIONS(223), + [anon_sym_final] = ACTIONS(223), + [anon_sym_abstract] = ACTIONS(223), + [anon_sym_class] = ACTIONS(223), + [anon_sym_extends] = ACTIONS(223), + [anon_sym_implements] = ACTIONS(223), + [anon_sym_interface] = ACTIONS(223), + [anon_sym_typedef] = ACTIONS(223), + [anon_sym_function] = ACTIONS(223), + [anon_sym_var] = ACTIONS(223), + [aux_sym_integer_token1] = ACTIONS(237), [aux_sym_integer_token2] = ACTIONS(240), - [aux_sym_float_token1] = ACTIONS(242), - [aux_sym_float_token2] = ACTIONS(240), - [anon_sym_true] = ACTIONS(242), - [anon_sym_false] = ACTIONS(242), - [aux_sym_string_token1] = ACTIONS(240), - [aux_sym_string_token3] = ACTIONS(240), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(242), - [anon_sym_catch] = ACTIONS(242), - [anon_sym_continue] = ACTIONS(242), - [anon_sym_do] = ACTIONS(242), - [anon_sym_enum] = ACTIONS(242), - [anon_sym_extern] = ACTIONS(242), - [anon_sym_for] = ACTIONS(242), - [anon_sym_inline] = ACTIONS(242), - [anon_sym_macro] = ACTIONS(242), - [anon_sym_operator] = ACTIONS(242), - [anon_sym_overload] = ACTIONS(242), - [anon_sym_override] = ACTIONS(242), - [anon_sym_private] = ACTIONS(242), - [anon_sym_public] = ACTIONS(242), - [anon_sym_return] = ACTIONS(242), - [anon_sym_static] = ACTIONS(242), - [anon_sym_try] = ACTIONS(242), - [anon_sym_untyped] = ACTIONS(242), - [anon_sym_while] = ACTIONS(242), - [sym__semicolon] = ACTIONS(240), + [aux_sym_float_token1] = ACTIONS(243), + [aux_sym_float_token2] = ACTIONS(246), + [anon_sym_true] = ACTIONS(249), + [anon_sym_false] = ACTIONS(249), + [aux_sym_string_token1] = ACTIONS(252), + [aux_sym_string_token3] = ACTIONS(255), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(223), + [anon_sym_catch] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(223), + [anon_sym_do] = ACTIONS(223), + [anon_sym_enum] = ACTIONS(223), + [anon_sym_extern] = ACTIONS(223), + [anon_sym_for] = ACTIONS(223), + [anon_sym_inline] = ACTIONS(223), + [anon_sym_macro] = ACTIONS(223), + [anon_sym_operator] = ACTIONS(223), + [anon_sym_overload] = ACTIONS(223), + [anon_sym_override] = ACTIONS(223), + [anon_sym_private] = ACTIONS(223), + [anon_sym_public] = ACTIONS(223), + [anon_sym_return] = ACTIONS(223), + [anon_sym_static] = ACTIONS(223), + [anon_sym_try] = ACTIONS(223), + [anon_sym_untyped] = ACTIONS(223), + [anon_sym_while] = ACTIONS(223), + [sym__semicolon] = ACTIONS(218), }, [15] = { - [sym_member_expression] = STATE(60), - [sym__lhs_expression] = STATE(72), - [sym__literal] = STATE(1152), - [sym_integer] = STATE(1152), - [sym_float] = STATE(1152), - [sym_bool] = STATE(1152), - [sym_string] = STATE(975), - [sym_null] = STATE(1152), - [sym_array] = STATE(1152), - [sym_map] = STATE(1152), - [sym_object] = STATE(1152), - [sym_pair] = STATE(1152), - [aux_sym_member_expression_repeat1] = STATE(19), - [ts_builtin_sym_end] = ACTIONS(244), - [sym_identifier] = ACTIONS(246), - [anon_sym_POUND] = ACTIONS(244), - [anon_sym_package] = ACTIONS(248), - [anon_sym_import] = ACTIONS(248), - [anon_sym_using] = ACTIONS(248), - [anon_sym_throw] = ACTIONS(248), - [anon_sym_LPAREN] = ACTIONS(244), - [anon_sym_RPAREN] = ACTIONS(244), - [anon_sym_switch] = ACTIONS(248), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_RBRACE] = ACTIONS(244), - [anon_sym_case] = ACTIONS(248), - [anon_sym_default] = ACTIONS(248), - [anon_sym_cast] = ACTIONS(248), - [anon_sym_COMMA] = ACTIONS(244), - [anon_sym_DOLLARtype] = ACTIONS(244), - [anon_sym_in] = ACTIONS(248), + [sym_member_expression] = STATE(28), + [sym__lhs_expression] = STATE(29), + [sym__literal] = STATE(1194), + [sym_integer] = STATE(1194), + [sym_float] = STATE(1194), + [sym_bool] = STATE(1194), + [sym_string] = STATE(1025), + [sym_null] = STATE(1194), + [sym_array] = STATE(1194), + [sym_map] = STATE(1194), + [sym_object] = STATE(1194), + [sym_pair] = STATE(1194), + [aux_sym_member_expression_repeat1] = STATE(14), + [ts_builtin_sym_end] = ACTIONS(258), + [sym_identifier] = ACTIONS(210), + [anon_sym_POUND] = ACTIONS(258), + [anon_sym_package] = ACTIONS(260), + [anon_sym_import] = ACTIONS(260), + [anon_sym_using] = ACTIONS(260), + [anon_sym_throw] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(258), + [anon_sym_RPAREN] = ACTIONS(258), + [anon_sym_switch] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_RBRACE] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_default] = ACTIONS(260), + [anon_sym_cast] = ACTIONS(260), + [anon_sym_COMMA] = ACTIONS(258), + [anon_sym_DOLLARtype] = ACTIONS(258), + [anon_sym_in] = ACTIONS(260), [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_RBRACK] = ACTIONS(244), - [anon_sym_this] = ACTIONS(250), - [anon_sym_DOT] = ACTIONS(248), - [anon_sym_QMARK] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(248), - [anon_sym_AT_COLON] = ACTIONS(244), - [anon_sym_if] = ACTIONS(248), - [anon_sym_else] = ACTIONS(248), - [anon_sym_new] = ACTIONS(248), - [anon_sym_TILDE] = ACTIONS(244), - [anon_sym_BANG] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_PLUS_PLUS] = ACTIONS(244), - [anon_sym_DASH_DASH] = ACTIONS(244), - [anon_sym_PERCENT] = ACTIONS(244), - [anon_sym_STAR] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(248), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_LT_LT] = ACTIONS(244), - [anon_sym_GT_GT] = ACTIONS(248), - [anon_sym_GT_GT_GT] = ACTIONS(244), - [anon_sym_AMP] = ACTIONS(248), - [anon_sym_PIPE] = ACTIONS(248), - [anon_sym_CARET] = ACTIONS(244), - [anon_sym_AMP_AMP] = ACTIONS(244), - [anon_sym_PIPE_PIPE] = ACTIONS(244), - [anon_sym_EQ_EQ] = ACTIONS(244), - [anon_sym_BANG_EQ] = ACTIONS(244), - [anon_sym_LT] = ACTIONS(248), - [anon_sym_LT_EQ] = ACTIONS(244), - [anon_sym_GT] = ACTIONS(248), - [anon_sym_GT_EQ] = ACTIONS(244), - [anon_sym_EQ_GT] = ACTIONS(244), - [anon_sym_QMARK_QMARK] = ACTIONS(244), - [anon_sym_EQ] = ACTIONS(248), - [sym__rangeOperator] = ACTIONS(244), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(248), - [anon_sym_final] = ACTIONS(248), - [anon_sym_abstract] = ACTIONS(248), - [anon_sym_class] = ACTIONS(248), - [anon_sym_extends] = ACTIONS(248), - [anon_sym_implements] = ACTIONS(248), - [anon_sym_interface] = ACTIONS(248), - [anon_sym_typedef] = ACTIONS(248), - [anon_sym_function] = ACTIONS(248), - [anon_sym_var] = ACTIONS(248), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(248), - [anon_sym_catch] = ACTIONS(248), - [anon_sym_continue] = ACTIONS(248), - [anon_sym_do] = ACTIONS(248), - [anon_sym_enum] = ACTIONS(248), - [anon_sym_extern] = ACTIONS(248), - [anon_sym_for] = ACTIONS(248), - [anon_sym_inline] = ACTIONS(248), - [anon_sym_macro] = ACTIONS(248), - [anon_sym_operator] = ACTIONS(248), - [anon_sym_overload] = ACTIONS(248), - [anon_sym_override] = ACTIONS(248), - [anon_sym_private] = ACTIONS(248), - [anon_sym_public] = ACTIONS(248), - [anon_sym_return] = ACTIONS(248), - [anon_sym_static] = ACTIONS(248), - [anon_sym_try] = ACTIONS(248), - [anon_sym_untyped] = ACTIONS(248), - [anon_sym_while] = ACTIONS(248), - [sym__semicolon] = ACTIONS(244), + [anon_sym_this] = ACTIONS(216), + [aux_sym_member_expression_token1] = ACTIONS(260), + [anon_sym_QMARK] = ACTIONS(260), + [anon_sym_DASH_GT] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_AT_COLON] = ACTIONS(258), + [anon_sym_if] = ACTIONS(260), + [anon_sym_else] = ACTIONS(260), + [anon_sym_new] = ACTIONS(260), + [sym__prefixUnaryOperator] = ACTIONS(260), + [sym__eitherUnaryOperator] = ACTIONS(258), + [sym__arithmetic_operator] = ACTIONS(260), + [sym__bitwise_operator] = ACTIONS(260), + [sym__logical_operator] = ACTIONS(258), + [sym__comparison_operator] = ACTIONS(260), + [sym__map_operator] = ACTIONS(258), + [sym__null_colalese_operator] = ACTIONS(258), + [anon_sym_EQ] = ACTIONS(260), + [sym__range_operator] = ACTIONS(258), + [anon_sym_null] = ACTIONS(51), + [anon_sym_dynamic] = ACTIONS(260), + [anon_sym_LT] = ACTIONS(260), + [anon_sym_final] = ACTIONS(260), + [anon_sym_abstract] = ACTIONS(260), + [anon_sym_class] = ACTIONS(260), + [anon_sym_extends] = ACTIONS(260), + [anon_sym_implements] = ACTIONS(260), + [anon_sym_interface] = ACTIONS(260), + [anon_sym_typedef] = ACTIONS(260), + [anon_sym_function] = ACTIONS(260), + [anon_sym_var] = ACTIONS(260), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(260), + [anon_sym_catch] = ACTIONS(260), + [anon_sym_continue] = ACTIONS(260), + [anon_sym_do] = ACTIONS(260), + [anon_sym_enum] = ACTIONS(260), + [anon_sym_extern] = ACTIONS(260), + [anon_sym_for] = ACTIONS(260), + [anon_sym_inline] = ACTIONS(260), + [anon_sym_macro] = ACTIONS(260), + [anon_sym_operator] = ACTIONS(260), + [anon_sym_overload] = ACTIONS(260), + [anon_sym_override] = ACTIONS(260), + [anon_sym_private] = ACTIONS(260), + [anon_sym_public] = ACTIONS(260), + [anon_sym_return] = ACTIONS(260), + [anon_sym_static] = ACTIONS(260), + [anon_sym_try] = ACTIONS(260), + [anon_sym_untyped] = ACTIONS(260), + [anon_sym_while] = ACTIONS(260), + [sym__semicolon] = ACTIONS(258), }, [16] = { - [sym_member_expression] = STATE(60), - [sym__lhs_expression] = STATE(72), - [sym__literal] = STATE(1152), - [sym_integer] = STATE(1152), - [sym_float] = STATE(1152), - [sym_bool] = STATE(1152), - [sym_string] = STATE(975), - [sym_null] = STATE(1152), - [sym_array] = STATE(1152), - [sym_map] = STATE(1152), - [sym_object] = STATE(1152), - [sym_pair] = STATE(1152), - [aux_sym_member_expression_repeat1] = STATE(19), - [ts_builtin_sym_end] = ACTIONS(252), - [sym_identifier] = ACTIONS(246), - [anon_sym_POUND] = ACTIONS(252), - [anon_sym_package] = ACTIONS(254), - [anon_sym_import] = ACTIONS(254), - [anon_sym_using] = ACTIONS(254), - [anon_sym_throw] = ACTIONS(254), - [anon_sym_LPAREN] = ACTIONS(252), - [anon_sym_RPAREN] = ACTIONS(252), - [anon_sym_switch] = ACTIONS(254), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_RBRACE] = ACTIONS(252), - [anon_sym_case] = ACTIONS(254), - [anon_sym_default] = ACTIONS(254), - [anon_sym_cast] = ACTIONS(254), - [anon_sym_COMMA] = ACTIONS(252), - [anon_sym_DOLLARtype] = ACTIONS(252), - [anon_sym_in] = ACTIONS(254), + [sym_member_expression] = STATE(28), + [sym__lhs_expression] = STATE(29), + [sym__literal] = STATE(1194), + [sym_integer] = STATE(1194), + [sym_float] = STATE(1194), + [sym_bool] = STATE(1194), + [sym_string] = STATE(1025), + [sym_null] = STATE(1194), + [sym_array] = STATE(1194), + [sym_map] = STATE(1194), + [sym_object] = STATE(1194), + [sym_pair] = STATE(1194), + [aux_sym_member_expression_repeat1] = STATE(14), + [ts_builtin_sym_end] = ACTIONS(262), + [sym_identifier] = ACTIONS(210), + [anon_sym_POUND] = ACTIONS(262), + [anon_sym_package] = ACTIONS(264), + [anon_sym_import] = ACTIONS(264), + [anon_sym_using] = ACTIONS(264), + [anon_sym_throw] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_RPAREN] = ACTIONS(262), + [anon_sym_switch] = ACTIONS(264), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_RBRACE] = ACTIONS(262), + [anon_sym_case] = ACTIONS(264), + [anon_sym_default] = ACTIONS(264), + [anon_sym_cast] = ACTIONS(264), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_DOLLARtype] = ACTIONS(262), + [anon_sym_in] = ACTIONS(264), [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_RBRACK] = ACTIONS(252), - [anon_sym_this] = ACTIONS(250), - [anon_sym_DOT] = ACTIONS(254), - [anon_sym_QMARK] = ACTIONS(254), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_AT_COLON] = ACTIONS(252), - [anon_sym_if] = ACTIONS(254), - [anon_sym_else] = ACTIONS(254), - [anon_sym_new] = ACTIONS(254), - [anon_sym_TILDE] = ACTIONS(252), - [anon_sym_BANG] = ACTIONS(254), - [anon_sym_DASH] = ACTIONS(254), - [anon_sym_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(252), - [anon_sym_PERCENT] = ACTIONS(252), - [anon_sym_STAR] = ACTIONS(252), - [anon_sym_SLASH] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(254), - [anon_sym_LT_LT] = ACTIONS(252), - [anon_sym_GT_GT] = ACTIONS(254), - [anon_sym_GT_GT_GT] = ACTIONS(252), - [anon_sym_AMP] = ACTIONS(254), - [anon_sym_PIPE] = ACTIONS(254), - [anon_sym_CARET] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ] = ACTIONS(252), - [anon_sym_LT] = ACTIONS(254), - [anon_sym_LT_EQ] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(254), - [anon_sym_GT_EQ] = ACTIONS(252), - [anon_sym_EQ_GT] = ACTIONS(252), - [anon_sym_QMARK_QMARK] = ACTIONS(252), - [anon_sym_EQ] = ACTIONS(254), - [sym__rangeOperator] = ACTIONS(252), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(254), - [anon_sym_final] = ACTIONS(254), - [anon_sym_abstract] = ACTIONS(254), - [anon_sym_class] = ACTIONS(254), - [anon_sym_extends] = ACTIONS(254), - [anon_sym_implements] = ACTIONS(254), - [anon_sym_interface] = ACTIONS(254), - [anon_sym_typedef] = ACTIONS(254), - [anon_sym_function] = ACTIONS(254), - [anon_sym_var] = ACTIONS(254), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(254), - [anon_sym_catch] = ACTIONS(254), - [anon_sym_continue] = ACTIONS(254), - [anon_sym_do] = ACTIONS(254), - [anon_sym_enum] = ACTIONS(254), - [anon_sym_extern] = ACTIONS(254), - [anon_sym_for] = ACTIONS(254), - [anon_sym_inline] = ACTIONS(254), - [anon_sym_macro] = ACTIONS(254), - [anon_sym_operator] = ACTIONS(254), - [anon_sym_overload] = ACTIONS(254), - [anon_sym_override] = ACTIONS(254), - [anon_sym_private] = ACTIONS(254), - [anon_sym_public] = ACTIONS(254), - [anon_sym_return] = ACTIONS(254), - [anon_sym_static] = ACTIONS(254), - [anon_sym_try] = ACTIONS(254), - [anon_sym_untyped] = ACTIONS(254), - [anon_sym_while] = ACTIONS(254), - [sym__semicolon] = ACTIONS(252), + [anon_sym_this] = ACTIONS(216), + [aux_sym_member_expression_token1] = ACTIONS(264), + [anon_sym_QMARK] = ACTIONS(264), + [anon_sym_DASH_GT] = ACTIONS(262), + [anon_sym_AT] = ACTIONS(264), + [anon_sym_AT_COLON] = ACTIONS(262), + [anon_sym_if] = ACTIONS(264), + [anon_sym_else] = ACTIONS(264), + [anon_sym_new] = ACTIONS(264), + [sym__prefixUnaryOperator] = ACTIONS(264), + [sym__eitherUnaryOperator] = ACTIONS(262), + [sym__arithmetic_operator] = ACTIONS(264), + [sym__bitwise_operator] = ACTIONS(264), + [sym__logical_operator] = ACTIONS(262), + [sym__comparison_operator] = ACTIONS(264), + [sym__map_operator] = ACTIONS(262), + [sym__null_colalese_operator] = ACTIONS(262), + [anon_sym_EQ] = ACTIONS(264), + [sym__range_operator] = ACTIONS(262), + [anon_sym_null] = ACTIONS(51), + [anon_sym_dynamic] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_final] = ACTIONS(264), + [anon_sym_abstract] = ACTIONS(264), + [anon_sym_class] = ACTIONS(264), + [anon_sym_extends] = ACTIONS(264), + [anon_sym_implements] = ACTIONS(264), + [anon_sym_interface] = ACTIONS(264), + [anon_sym_typedef] = ACTIONS(264), + [anon_sym_function] = ACTIONS(264), + [anon_sym_var] = ACTIONS(264), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(264), + [anon_sym_catch] = ACTIONS(264), + [anon_sym_continue] = ACTIONS(264), + [anon_sym_do] = ACTIONS(264), + [anon_sym_enum] = ACTIONS(264), + [anon_sym_extern] = ACTIONS(264), + [anon_sym_for] = ACTIONS(264), + [anon_sym_inline] = ACTIONS(264), + [anon_sym_macro] = ACTIONS(264), + [anon_sym_operator] = ACTIONS(264), + [anon_sym_overload] = ACTIONS(264), + [anon_sym_override] = ACTIONS(264), + [anon_sym_private] = ACTIONS(264), + [anon_sym_public] = ACTIONS(264), + [anon_sym_return] = ACTIONS(264), + [anon_sym_static] = ACTIONS(264), + [anon_sym_try] = ACTIONS(264), + [anon_sym_untyped] = ACTIONS(264), + [anon_sym_while] = ACTIONS(264), + [sym__semicolon] = ACTIONS(262), }, [17] = { - [sym_member_expression] = STATE(60), - [sym__lhs_expression] = STATE(72), - [sym__literal] = STATE(1152), - [sym_integer] = STATE(1152), - [sym_float] = STATE(1152), - [sym_bool] = STATE(1152), - [sym_string] = STATE(975), - [sym_null] = STATE(1152), - [sym_array] = STATE(1152), - [sym_map] = STATE(1152), - [sym_object] = STATE(1152), - [sym_pair] = STATE(1152), - [aux_sym_member_expression_repeat1] = STATE(19), - [ts_builtin_sym_end] = ACTIONS(256), - [sym_identifier] = ACTIONS(246), - [anon_sym_POUND] = ACTIONS(256), - [anon_sym_package] = ACTIONS(258), - [anon_sym_import] = ACTIONS(258), - [anon_sym_using] = ACTIONS(258), - [anon_sym_throw] = ACTIONS(258), - [anon_sym_LPAREN] = ACTIONS(256), - [anon_sym_RPAREN] = ACTIONS(256), - [anon_sym_switch] = ACTIONS(258), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_RBRACE] = ACTIONS(256), - [anon_sym_case] = ACTIONS(258), - [anon_sym_default] = ACTIONS(258), - [anon_sym_cast] = ACTIONS(258), - [anon_sym_COMMA] = ACTIONS(256), - [anon_sym_DOLLARtype] = ACTIONS(256), - [anon_sym_in] = ACTIONS(258), + [sym_member_expression] = STATE(28), + [sym__lhs_expression] = STATE(29), + [sym__literal] = STATE(1197), + [sym_integer] = STATE(1197), + [sym_float] = STATE(1197), + [sym_bool] = STATE(1197), + [sym_string] = STATE(1025), + [sym_null] = STATE(1197), + [sym_array] = STATE(1197), + [sym_map] = STATE(1197), + [sym_object] = STATE(1197), + [sym_pair] = STATE(1197), + [aux_sym_member_expression_repeat1] = STATE(20), + [ts_builtin_sym_end] = ACTIONS(258), + [sym_identifier] = ACTIONS(266), + [anon_sym_POUND] = ACTIONS(258), + [anon_sym_package] = ACTIONS(260), + [anon_sym_import] = ACTIONS(260), + [anon_sym_using] = ACTIONS(260), + [anon_sym_throw] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(258), + [anon_sym_RPAREN] = ACTIONS(258), + [anon_sym_switch] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_RBRACE] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_default] = ACTIONS(260), + [anon_sym_cast] = ACTIONS(260), + [anon_sym_COMMA] = ACTIONS(258), + [anon_sym_DOLLARtype] = ACTIONS(258), + [anon_sym_in] = ACTIONS(260), [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_RBRACK] = ACTIONS(256), - [anon_sym_this] = ACTIONS(250), - [anon_sym_DOT] = ACTIONS(258), - [anon_sym_QMARK] = ACTIONS(258), - [anon_sym_AT] = ACTIONS(258), - [anon_sym_AT_COLON] = ACTIONS(256), - [anon_sym_if] = ACTIONS(258), - [anon_sym_else] = ACTIONS(258), - [anon_sym_new] = ACTIONS(258), - [anon_sym_TILDE] = ACTIONS(256), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_DASH] = ACTIONS(258), - [anon_sym_PLUS_PLUS] = ACTIONS(256), - [anon_sym_DASH_DASH] = ACTIONS(256), - [anon_sym_PERCENT] = ACTIONS(256), - [anon_sym_STAR] = ACTIONS(256), - [anon_sym_SLASH] = ACTIONS(258), - [anon_sym_PLUS] = ACTIONS(258), - [anon_sym_LT_LT] = ACTIONS(256), - [anon_sym_GT_GT] = ACTIONS(258), - [anon_sym_GT_GT_GT] = ACTIONS(256), - [anon_sym_AMP] = ACTIONS(258), - [anon_sym_PIPE] = ACTIONS(258), - [anon_sym_CARET] = ACTIONS(256), - [anon_sym_AMP_AMP] = ACTIONS(256), - [anon_sym_PIPE_PIPE] = ACTIONS(256), - [anon_sym_EQ_EQ] = ACTIONS(256), - [anon_sym_BANG_EQ] = ACTIONS(256), - [anon_sym_LT] = ACTIONS(258), - [anon_sym_LT_EQ] = ACTIONS(256), - [anon_sym_GT] = ACTIONS(258), - [anon_sym_GT_EQ] = ACTIONS(256), - [anon_sym_EQ_GT] = ACTIONS(256), - [anon_sym_QMARK_QMARK] = ACTIONS(256), - [anon_sym_EQ] = ACTIONS(258), - [sym__rangeOperator] = ACTIONS(256), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(258), - [anon_sym_final] = ACTIONS(258), - [anon_sym_abstract] = ACTIONS(258), - [anon_sym_class] = ACTIONS(258), - [anon_sym_extends] = ACTIONS(258), - [anon_sym_implements] = ACTIONS(258), - [anon_sym_interface] = ACTIONS(258), - [anon_sym_typedef] = ACTIONS(258), - [anon_sym_function] = ACTIONS(258), - [anon_sym_var] = ACTIONS(258), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(258), - [anon_sym_catch] = ACTIONS(258), - [anon_sym_continue] = ACTIONS(258), - [anon_sym_do] = ACTIONS(258), - [anon_sym_enum] = ACTIONS(258), - [anon_sym_extern] = ACTIONS(258), - [anon_sym_for] = ACTIONS(258), - [anon_sym_inline] = ACTIONS(258), - [anon_sym_macro] = ACTIONS(258), - [anon_sym_operator] = ACTIONS(258), - [anon_sym_overload] = ACTIONS(258), - [anon_sym_override] = ACTIONS(258), - [anon_sym_private] = ACTIONS(258), - [anon_sym_public] = ACTIONS(258), - [anon_sym_return] = ACTIONS(258), - [anon_sym_static] = ACTIONS(258), - [anon_sym_try] = ACTIONS(258), - [anon_sym_untyped] = ACTIONS(258), - [anon_sym_while] = ACTIONS(258), - [sym__semicolon] = ACTIONS(256), + [anon_sym_this] = ACTIONS(268), + [anon_sym_QMARK] = ACTIONS(260), + [anon_sym_DASH_GT] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_AT_COLON] = ACTIONS(258), + [anon_sym_if] = ACTIONS(260), + [anon_sym_else] = ACTIONS(260), + [anon_sym_new] = ACTIONS(260), + [sym__prefixUnaryOperator] = ACTIONS(260), + [sym__eitherUnaryOperator] = ACTIONS(258), + [sym__arithmetic_operator] = ACTIONS(260), + [sym__bitwise_operator] = ACTIONS(260), + [sym__logical_operator] = ACTIONS(258), + [sym__comparison_operator] = ACTIONS(260), + [sym__map_operator] = ACTIONS(258), + [sym__null_colalese_operator] = ACTIONS(258), + [anon_sym_EQ] = ACTIONS(260), + [sym__range_operator] = ACTIONS(258), + [anon_sym_null] = ACTIONS(51), + [anon_sym_dynamic] = ACTIONS(260), + [anon_sym_LT] = ACTIONS(260), + [anon_sym_final] = ACTIONS(260), + [anon_sym_abstract] = ACTIONS(260), + [anon_sym_class] = ACTIONS(260), + [anon_sym_extends] = ACTIONS(260), + [anon_sym_implements] = ACTIONS(260), + [anon_sym_interface] = ACTIONS(260), + [anon_sym_typedef] = ACTIONS(260), + [anon_sym_function] = ACTIONS(260), + [anon_sym_var] = ACTIONS(260), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(260), + [anon_sym_catch] = ACTIONS(260), + [anon_sym_continue] = ACTIONS(260), + [anon_sym_do] = ACTIONS(260), + [anon_sym_enum] = ACTIONS(260), + [anon_sym_extern] = ACTIONS(260), + [anon_sym_for] = ACTIONS(260), + [anon_sym_inline] = ACTIONS(260), + [anon_sym_macro] = ACTIONS(260), + [anon_sym_operator] = ACTIONS(260), + [anon_sym_overload] = ACTIONS(260), + [anon_sym_override] = ACTIONS(260), + [anon_sym_private] = ACTIONS(260), + [anon_sym_public] = ACTIONS(260), + [anon_sym_return] = ACTIONS(260), + [anon_sym_static] = ACTIONS(260), + [anon_sym_try] = ACTIONS(260), + [anon_sym_untyped] = ACTIONS(260), + [anon_sym_while] = ACTIONS(260), + [sym__semicolon] = ACTIONS(258), }, [18] = { - [sym_member_expression] = STATE(60), - [sym__lhs_expression] = STATE(72), - [sym__literal] = STATE(1152), - [sym_integer] = STATE(1152), - [sym_float] = STATE(1152), - [sym_bool] = STATE(1152), - [sym_string] = STATE(975), - [sym_null] = STATE(1152), - [sym_array] = STATE(1152), - [sym_map] = STATE(1152), - [sym_object] = STATE(1152), - [sym_pair] = STATE(1152), - [aux_sym_member_expression_repeat1] = STATE(19), - [ts_builtin_sym_end] = ACTIONS(260), - [sym_identifier] = ACTIONS(246), - [anon_sym_POUND] = ACTIONS(260), - [anon_sym_package] = ACTIONS(262), - [anon_sym_import] = ACTIONS(262), - [anon_sym_using] = ACTIONS(262), - [anon_sym_throw] = ACTIONS(262), - [anon_sym_LPAREN] = ACTIONS(260), - [anon_sym_RPAREN] = ACTIONS(260), - [anon_sym_switch] = ACTIONS(262), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_RBRACE] = ACTIONS(260), - [anon_sym_case] = ACTIONS(262), - [anon_sym_default] = ACTIONS(262), - [anon_sym_cast] = ACTIONS(262), - [anon_sym_COMMA] = ACTIONS(260), - [anon_sym_DOLLARtype] = ACTIONS(260), - [anon_sym_in] = ACTIONS(262), + [sym_member_expression] = STATE(28), + [sym__lhs_expression] = STATE(29), + [sym__literal] = STATE(1197), + [sym_integer] = STATE(1197), + [sym_float] = STATE(1197), + [sym_bool] = STATE(1197), + [sym_string] = STATE(1025), + [sym_null] = STATE(1197), + [sym_array] = STATE(1197), + [sym_map] = STATE(1197), + [sym_object] = STATE(1197), + [sym_pair] = STATE(1197), + [aux_sym_member_expression_repeat1] = STATE(20), + [ts_builtin_sym_end] = ACTIONS(262), + [sym_identifier] = ACTIONS(266), + [anon_sym_POUND] = ACTIONS(262), + [anon_sym_package] = ACTIONS(264), + [anon_sym_import] = ACTIONS(264), + [anon_sym_using] = ACTIONS(264), + [anon_sym_throw] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_RPAREN] = ACTIONS(262), + [anon_sym_switch] = ACTIONS(264), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_RBRACE] = ACTIONS(262), + [anon_sym_case] = ACTIONS(264), + [anon_sym_default] = ACTIONS(264), + [anon_sym_cast] = ACTIONS(264), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_DOLLARtype] = ACTIONS(262), + [anon_sym_in] = ACTIONS(264), [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_RBRACK] = ACTIONS(260), - [anon_sym_this] = ACTIONS(250), - [anon_sym_DOT] = ACTIONS(262), - [anon_sym_QMARK] = ACTIONS(262), - [anon_sym_AT] = ACTIONS(262), - [anon_sym_AT_COLON] = ACTIONS(260), - [anon_sym_if] = ACTIONS(262), - [anon_sym_else] = ACTIONS(262), - [anon_sym_new] = ACTIONS(262), - [anon_sym_TILDE] = ACTIONS(260), - [anon_sym_BANG] = ACTIONS(262), - [anon_sym_DASH] = ACTIONS(262), - [anon_sym_PLUS_PLUS] = ACTIONS(260), - [anon_sym_DASH_DASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(260), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(262), - [anon_sym_PLUS] = ACTIONS(262), - [anon_sym_LT_LT] = ACTIONS(260), - [anon_sym_GT_GT] = ACTIONS(262), - [anon_sym_GT_GT_GT] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(262), - [anon_sym_CARET] = ACTIONS(260), - [anon_sym_AMP_AMP] = ACTIONS(260), - [anon_sym_PIPE_PIPE] = ACTIONS(260), - [anon_sym_EQ_EQ] = ACTIONS(260), - [anon_sym_BANG_EQ] = ACTIONS(260), - [anon_sym_LT] = ACTIONS(262), - [anon_sym_LT_EQ] = ACTIONS(260), - [anon_sym_GT] = ACTIONS(262), - [anon_sym_GT_EQ] = ACTIONS(260), - [anon_sym_EQ_GT] = ACTIONS(260), - [anon_sym_QMARK_QMARK] = ACTIONS(260), - [anon_sym_EQ] = ACTIONS(262), - [sym__rangeOperator] = ACTIONS(260), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(262), - [anon_sym_final] = ACTIONS(262), - [anon_sym_abstract] = ACTIONS(262), - [anon_sym_class] = ACTIONS(262), - [anon_sym_extends] = ACTIONS(262), - [anon_sym_implements] = ACTIONS(262), - [anon_sym_interface] = ACTIONS(262), - [anon_sym_typedef] = ACTIONS(262), - [anon_sym_function] = ACTIONS(262), - [anon_sym_var] = ACTIONS(262), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(262), - [anon_sym_catch] = ACTIONS(262), - [anon_sym_continue] = ACTIONS(262), - [anon_sym_do] = ACTIONS(262), - [anon_sym_enum] = ACTIONS(262), - [anon_sym_extern] = ACTIONS(262), - [anon_sym_for] = ACTIONS(262), - [anon_sym_inline] = ACTIONS(262), - [anon_sym_macro] = ACTIONS(262), - [anon_sym_operator] = ACTIONS(262), - [anon_sym_overload] = ACTIONS(262), - [anon_sym_override] = ACTIONS(262), - [anon_sym_private] = ACTIONS(262), - [anon_sym_public] = ACTIONS(262), - [anon_sym_return] = ACTIONS(262), - [anon_sym_static] = ACTIONS(262), - [anon_sym_try] = ACTIONS(262), - [anon_sym_untyped] = ACTIONS(262), - [anon_sym_while] = ACTIONS(262), - [sym__semicolon] = ACTIONS(260), + [anon_sym_this] = ACTIONS(268), + [anon_sym_QMARK] = ACTIONS(264), + [anon_sym_DASH_GT] = ACTIONS(262), + [anon_sym_AT] = ACTIONS(264), + [anon_sym_AT_COLON] = ACTIONS(262), + [anon_sym_if] = ACTIONS(264), + [anon_sym_else] = ACTIONS(264), + [anon_sym_new] = ACTIONS(264), + [sym__prefixUnaryOperator] = ACTIONS(264), + [sym__eitherUnaryOperator] = ACTIONS(262), + [sym__arithmetic_operator] = ACTIONS(264), + [sym__bitwise_operator] = ACTIONS(264), + [sym__logical_operator] = ACTIONS(262), + [sym__comparison_operator] = ACTIONS(264), + [sym__map_operator] = ACTIONS(262), + [sym__null_colalese_operator] = ACTIONS(262), + [anon_sym_EQ] = ACTIONS(264), + [sym__range_operator] = ACTIONS(262), + [anon_sym_null] = ACTIONS(51), + [anon_sym_dynamic] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(264), + [anon_sym_final] = ACTIONS(264), + [anon_sym_abstract] = ACTIONS(264), + [anon_sym_class] = ACTIONS(264), + [anon_sym_extends] = ACTIONS(264), + [anon_sym_implements] = ACTIONS(264), + [anon_sym_interface] = ACTIONS(264), + [anon_sym_typedef] = ACTIONS(264), + [anon_sym_function] = ACTIONS(264), + [anon_sym_var] = ACTIONS(264), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(264), + [anon_sym_catch] = ACTIONS(264), + [anon_sym_continue] = ACTIONS(264), + [anon_sym_do] = ACTIONS(264), + [anon_sym_enum] = ACTIONS(264), + [anon_sym_extern] = ACTIONS(264), + [anon_sym_for] = ACTIONS(264), + [anon_sym_inline] = ACTIONS(264), + [anon_sym_macro] = ACTIONS(264), + [anon_sym_operator] = ACTIONS(264), + [anon_sym_overload] = ACTIONS(264), + [anon_sym_override] = ACTIONS(264), + [anon_sym_private] = ACTIONS(264), + [anon_sym_public] = ACTIONS(264), + [anon_sym_return] = ACTIONS(264), + [anon_sym_static] = ACTIONS(264), + [anon_sym_try] = ACTIONS(264), + [anon_sym_untyped] = ACTIONS(264), + [anon_sym_while] = ACTIONS(264), + [sym__semicolon] = ACTIONS(262), }, [19] = { - [sym_member_expression] = STATE(60), - [sym__lhs_expression] = STATE(72), - [sym__literal] = STATE(1152), - [sym_integer] = STATE(1152), - [sym_float] = STATE(1152), - [sym_bool] = STATE(1152), - [sym_string] = STATE(975), - [sym_null] = STATE(1152), - [sym_array] = STATE(1152), - [sym_map] = STATE(1152), - [sym_object] = STATE(1152), - [sym_pair] = STATE(1152), - [aux_sym_member_expression_repeat1] = STATE(19), - [ts_builtin_sym_end] = ACTIONS(264), + [sym_member_expression] = STATE(28), + [sym__lhs_expression] = STATE(29), + [sym__literal] = STATE(1197), + [sym_integer] = STATE(1197), + [sym_float] = STATE(1197), + [sym_bool] = STATE(1197), + [sym_string] = STATE(1025), + [sym_null] = STATE(1197), + [sym_array] = STATE(1197), + [sym_map] = STATE(1197), + [sym_object] = STATE(1197), + [sym_pair] = STATE(1197), + [aux_sym_member_expression_repeat1] = STATE(20), + [ts_builtin_sym_end] = ACTIONS(208), [sym_identifier] = ACTIONS(266), - [anon_sym_POUND] = ACTIONS(264), - [anon_sym_package] = ACTIONS(269), - [anon_sym_import] = ACTIONS(269), - [anon_sym_using] = ACTIONS(269), - [anon_sym_throw] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(264), - [anon_sym_RPAREN] = ACTIONS(264), - [anon_sym_switch] = ACTIONS(269), - [anon_sym_LBRACE] = ACTIONS(271), - [anon_sym_RBRACE] = ACTIONS(264), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(269), - [anon_sym_cast] = ACTIONS(269), - [anon_sym_COMMA] = ACTIONS(264), - [anon_sym_DOLLARtype] = ACTIONS(264), - [anon_sym_in] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_RBRACK] = ACTIONS(264), - [anon_sym_this] = ACTIONS(277), - [anon_sym_DOT] = ACTIONS(269), - [anon_sym_QMARK] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(269), - [anon_sym_AT_COLON] = ACTIONS(264), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(269), - [anon_sym_new] = ACTIONS(269), - [anon_sym_TILDE] = ACTIONS(264), - [anon_sym_BANG] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(269), - [anon_sym_PLUS_PLUS] = ACTIONS(264), - [anon_sym_DASH_DASH] = ACTIONS(264), - [anon_sym_PERCENT] = ACTIONS(264), - [anon_sym_STAR] = ACTIONS(264), - [anon_sym_SLASH] = ACTIONS(269), - [anon_sym_PLUS] = ACTIONS(269), - [anon_sym_LT_LT] = ACTIONS(264), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_GT_GT_GT] = ACTIONS(264), - [anon_sym_AMP] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(264), - [anon_sym_AMP_AMP] = ACTIONS(264), - [anon_sym_PIPE_PIPE] = ACTIONS(264), - [anon_sym_EQ_EQ] = ACTIONS(264), - [anon_sym_BANG_EQ] = ACTIONS(264), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(264), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(264), - [anon_sym_EQ_GT] = ACTIONS(264), - [anon_sym_QMARK_QMARK] = ACTIONS(264), - [anon_sym_EQ] = ACTIONS(269), - [sym__rangeOperator] = ACTIONS(264), - [anon_sym_null] = ACTIONS(280), - [anon_sym_dynamic] = ACTIONS(269), - [anon_sym_final] = ACTIONS(269), - [anon_sym_abstract] = ACTIONS(269), - [anon_sym_class] = ACTIONS(269), - [anon_sym_extends] = ACTIONS(269), - [anon_sym_implements] = ACTIONS(269), - [anon_sym_interface] = ACTIONS(269), - [anon_sym_typedef] = ACTIONS(269), - [anon_sym_function] = ACTIONS(269), - [anon_sym_var] = ACTIONS(269), - [aux_sym_integer_token1] = ACTIONS(283), - [aux_sym_integer_token2] = ACTIONS(286), - [aux_sym_float_token1] = ACTIONS(289), - [aux_sym_float_token2] = ACTIONS(292), - [anon_sym_true] = ACTIONS(295), - [anon_sym_false] = ACTIONS(295), - [aux_sym_string_token1] = ACTIONS(298), - [aux_sym_string_token3] = ACTIONS(301), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(269), - [anon_sym_catch] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(269), - [anon_sym_do] = ACTIONS(269), - [anon_sym_enum] = ACTIONS(269), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_for] = ACTIONS(269), - [anon_sym_inline] = ACTIONS(269), - [anon_sym_macro] = ACTIONS(269), - [anon_sym_operator] = ACTIONS(269), - [anon_sym_overload] = ACTIONS(269), - [anon_sym_override] = ACTIONS(269), - [anon_sym_private] = ACTIONS(269), - [anon_sym_public] = ACTIONS(269), - [anon_sym_return] = ACTIONS(269), - [anon_sym_static] = ACTIONS(269), - [anon_sym_try] = ACTIONS(269), - [anon_sym_untyped] = ACTIONS(269), - [anon_sym_while] = ACTIONS(269), - [sym__semicolon] = ACTIONS(264), + [anon_sym_POUND] = ACTIONS(208), + [anon_sym_package] = ACTIONS(212), + [anon_sym_import] = ACTIONS(212), + [anon_sym_using] = ACTIONS(212), + [anon_sym_throw] = ACTIONS(212), + [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_RPAREN] = ACTIONS(208), + [anon_sym_switch] = ACTIONS(212), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_RBRACE] = ACTIONS(208), + [anon_sym_case] = ACTIONS(212), + [anon_sym_default] = ACTIONS(212), + [anon_sym_cast] = ACTIONS(212), + [anon_sym_COMMA] = ACTIONS(208), + [anon_sym_DOLLARtype] = ACTIONS(208), + [anon_sym_in] = ACTIONS(212), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_this] = ACTIONS(268), + [anon_sym_QMARK] = ACTIONS(212), + [anon_sym_DASH_GT] = ACTIONS(208), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_AT_COLON] = ACTIONS(208), + [anon_sym_if] = ACTIONS(212), + [anon_sym_else] = ACTIONS(212), + [anon_sym_new] = ACTIONS(212), + [sym__prefixUnaryOperator] = ACTIONS(212), + [sym__eitherUnaryOperator] = ACTIONS(208), + [sym__arithmetic_operator] = ACTIONS(212), + [sym__bitwise_operator] = ACTIONS(212), + [sym__logical_operator] = ACTIONS(208), + [sym__comparison_operator] = ACTIONS(212), + [sym__map_operator] = ACTIONS(208), + [sym__null_colalese_operator] = ACTIONS(208), + [anon_sym_EQ] = ACTIONS(212), + [sym__range_operator] = ACTIONS(208), + [anon_sym_null] = ACTIONS(51), + [anon_sym_dynamic] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(212), + [anon_sym_final] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_class] = ACTIONS(212), + [anon_sym_extends] = ACTIONS(212), + [anon_sym_implements] = ACTIONS(212), + [anon_sym_interface] = ACTIONS(212), + [anon_sym_typedef] = ACTIONS(212), + [anon_sym_function] = ACTIONS(212), + [anon_sym_var] = ACTIONS(212), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(212), + [anon_sym_catch] = ACTIONS(212), + [anon_sym_continue] = ACTIONS(212), + [anon_sym_do] = ACTIONS(212), + [anon_sym_enum] = ACTIONS(212), + [anon_sym_extern] = ACTIONS(212), + [anon_sym_for] = ACTIONS(212), + [anon_sym_inline] = ACTIONS(212), + [anon_sym_macro] = ACTIONS(212), + [anon_sym_operator] = ACTIONS(212), + [anon_sym_overload] = ACTIONS(212), + [anon_sym_override] = ACTIONS(212), + [anon_sym_private] = ACTIONS(212), + [anon_sym_public] = ACTIONS(212), + [anon_sym_return] = ACTIONS(212), + [anon_sym_static] = ACTIONS(212), + [anon_sym_try] = ACTIONS(212), + [anon_sym_untyped] = ACTIONS(212), + [anon_sym_while] = ACTIONS(212), + [sym__semicolon] = ACTIONS(208), }, [20] = { - [sym_member_expression] = STATE(60), - [sym__lhs_expression] = STATE(72), - [sym__literal] = STATE(1152), - [sym_integer] = STATE(1152), - [sym_float] = STATE(1152), - [sym_bool] = STATE(1152), - [sym_string] = STATE(975), - [sym_null] = STATE(1152), - [sym_array] = STATE(1152), - [sym_map] = STATE(1152), - [sym_object] = STATE(1152), - [sym_pair] = STATE(1152), - [aux_sym_member_expression_repeat1] = STATE(19), - [ts_builtin_sym_end] = ACTIONS(304), - [sym_identifier] = ACTIONS(246), - [anon_sym_POUND] = ACTIONS(304), - [anon_sym_package] = ACTIONS(306), - [anon_sym_import] = ACTIONS(306), - [anon_sym_using] = ACTIONS(306), - [anon_sym_throw] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_RPAREN] = ACTIONS(304), - [anon_sym_switch] = ACTIONS(306), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_RBRACE] = ACTIONS(304), - [anon_sym_case] = ACTIONS(306), - [anon_sym_default] = ACTIONS(306), - [anon_sym_cast] = ACTIONS(306), - [anon_sym_COMMA] = ACTIONS(304), - [anon_sym_DOLLARtype] = ACTIONS(304), - [anon_sym_in] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_RBRACK] = ACTIONS(304), - [anon_sym_this] = ACTIONS(250), - [anon_sym_DOT] = ACTIONS(306), - [anon_sym_QMARK] = ACTIONS(306), - [anon_sym_AT] = ACTIONS(306), - [anon_sym_AT_COLON] = ACTIONS(304), - [anon_sym_if] = ACTIONS(306), - [anon_sym_else] = ACTIONS(306), - [anon_sym_new] = ACTIONS(306), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_BANG] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_PLUS_PLUS] = ACTIONS(304), - [anon_sym_DASH_DASH] = ACTIONS(304), - [anon_sym_PERCENT] = ACTIONS(304), - [anon_sym_STAR] = ACTIONS(304), - [anon_sym_SLASH] = ACTIONS(306), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_LT_LT] = ACTIONS(304), - [anon_sym_GT_GT] = ACTIONS(306), - [anon_sym_GT_GT_GT] = ACTIONS(304), - [anon_sym_AMP] = ACTIONS(306), - [anon_sym_PIPE] = ACTIONS(306), - [anon_sym_CARET] = ACTIONS(304), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_PIPE_PIPE] = ACTIONS(304), - [anon_sym_EQ_EQ] = ACTIONS(304), - [anon_sym_BANG_EQ] = ACTIONS(304), - [anon_sym_LT] = ACTIONS(306), - [anon_sym_LT_EQ] = ACTIONS(304), - [anon_sym_GT] = ACTIONS(306), - [anon_sym_GT_EQ] = ACTIONS(304), - [anon_sym_EQ_GT] = ACTIONS(304), - [anon_sym_QMARK_QMARK] = ACTIONS(304), - [anon_sym_EQ] = ACTIONS(306), - [sym__rangeOperator] = ACTIONS(304), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(306), - [anon_sym_final] = ACTIONS(306), - [anon_sym_abstract] = ACTIONS(306), - [anon_sym_class] = ACTIONS(306), - [anon_sym_extends] = ACTIONS(306), - [anon_sym_implements] = ACTIONS(306), - [anon_sym_interface] = ACTIONS(306), - [anon_sym_typedef] = ACTIONS(306), - [anon_sym_function] = ACTIONS(306), - [anon_sym_var] = ACTIONS(306), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(306), - [anon_sym_catch] = ACTIONS(306), - [anon_sym_continue] = ACTIONS(306), - [anon_sym_do] = ACTIONS(306), - [anon_sym_enum] = ACTIONS(306), - [anon_sym_extern] = ACTIONS(306), - [anon_sym_for] = ACTIONS(306), - [anon_sym_inline] = ACTIONS(306), - [anon_sym_macro] = ACTIONS(306), - [anon_sym_operator] = ACTIONS(306), - [anon_sym_overload] = ACTIONS(306), - [anon_sym_override] = ACTIONS(306), - [anon_sym_private] = ACTIONS(306), - [anon_sym_public] = ACTIONS(306), - [anon_sym_return] = ACTIONS(306), - [anon_sym_static] = ACTIONS(306), - [anon_sym_try] = ACTIONS(306), - [anon_sym_untyped] = ACTIONS(306), - [anon_sym_while] = ACTIONS(306), - [sym__semicolon] = ACTIONS(304), + [sym_member_expression] = STATE(28), + [sym__lhs_expression] = STATE(29), + [sym__literal] = STATE(1197), + [sym_integer] = STATE(1197), + [sym_float] = STATE(1197), + [sym_bool] = STATE(1197), + [sym_string] = STATE(1025), + [sym_null] = STATE(1197), + [sym_array] = STATE(1197), + [sym_map] = STATE(1197), + [sym_object] = STATE(1197), + [sym_pair] = STATE(1197), + [aux_sym_member_expression_repeat1] = STATE(20), + [ts_builtin_sym_end] = ACTIONS(218), + [sym_identifier] = ACTIONS(270), + [anon_sym_POUND] = ACTIONS(218), + [anon_sym_package] = ACTIONS(223), + [anon_sym_import] = ACTIONS(223), + [anon_sym_using] = ACTIONS(223), + [anon_sym_throw] = ACTIONS(223), + [anon_sym_LPAREN] = ACTIONS(218), + [anon_sym_RPAREN] = ACTIONS(218), + [anon_sym_switch] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [anon_sym_RBRACE] = ACTIONS(218), + [anon_sym_case] = ACTIONS(223), + [anon_sym_default] = ACTIONS(223), + [anon_sym_cast] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(218), + [anon_sym_DOLLARtype] = ACTIONS(218), + [anon_sym_in] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(228), + [anon_sym_this] = ACTIONS(273), + [anon_sym_QMARK] = ACTIONS(223), + [anon_sym_DASH_GT] = ACTIONS(218), + [anon_sym_AT] = ACTIONS(223), + [anon_sym_AT_COLON] = ACTIONS(218), + [anon_sym_if] = ACTIONS(223), + [anon_sym_else] = ACTIONS(223), + [anon_sym_new] = ACTIONS(223), + [sym__prefixUnaryOperator] = ACTIONS(223), + [sym__eitherUnaryOperator] = ACTIONS(218), + [sym__arithmetic_operator] = ACTIONS(223), + [sym__bitwise_operator] = ACTIONS(223), + [sym__logical_operator] = ACTIONS(218), + [sym__comparison_operator] = ACTIONS(223), + [sym__map_operator] = ACTIONS(218), + [sym__null_colalese_operator] = ACTIONS(218), + [anon_sym_EQ] = ACTIONS(223), + [sym__range_operator] = ACTIONS(218), + [anon_sym_null] = ACTIONS(234), + [anon_sym_dynamic] = ACTIONS(223), + [anon_sym_LT] = ACTIONS(223), + [anon_sym_final] = ACTIONS(223), + [anon_sym_abstract] = ACTIONS(223), + [anon_sym_class] = ACTIONS(223), + [anon_sym_extends] = ACTIONS(223), + [anon_sym_implements] = ACTIONS(223), + [anon_sym_interface] = ACTIONS(223), + [anon_sym_typedef] = ACTIONS(223), + [anon_sym_function] = ACTIONS(223), + [anon_sym_var] = ACTIONS(223), + [aux_sym_integer_token1] = ACTIONS(237), + [aux_sym_integer_token2] = ACTIONS(240), + [aux_sym_float_token1] = ACTIONS(243), + [aux_sym_float_token2] = ACTIONS(246), + [anon_sym_true] = ACTIONS(249), + [anon_sym_false] = ACTIONS(249), + [aux_sym_string_token1] = ACTIONS(252), + [aux_sym_string_token3] = ACTIONS(255), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(223), + [anon_sym_catch] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(223), + [anon_sym_do] = ACTIONS(223), + [anon_sym_enum] = ACTIONS(223), + [anon_sym_extern] = ACTIONS(223), + [anon_sym_for] = ACTIONS(223), + [anon_sym_inline] = ACTIONS(223), + [anon_sym_macro] = ACTIONS(223), + [anon_sym_operator] = ACTIONS(223), + [anon_sym_overload] = ACTIONS(223), + [anon_sym_override] = ACTIONS(223), + [anon_sym_private] = ACTIONS(223), + [anon_sym_public] = ACTIONS(223), + [anon_sym_return] = ACTIONS(223), + [anon_sym_static] = ACTIONS(223), + [anon_sym_try] = ACTIONS(223), + [anon_sym_untyped] = ACTIONS(223), + [anon_sym_while] = ACTIONS(223), + [sym__semicolon] = ACTIONS(218), }, [21] = { - [sym_member_expression] = STATE(60), - [sym__lhs_expression] = STATE(72), - [sym__literal] = STATE(1152), - [sym_integer] = STATE(1152), - [sym_float] = STATE(1152), - [sym_bool] = STATE(1152), - [sym_string] = STATE(975), - [sym_null] = STATE(1152), - [sym_array] = STATE(1152), - [sym_map] = STATE(1152), - [sym_object] = STATE(1152), - [sym_pair] = STATE(1152), - [aux_sym_member_expression_repeat1] = STATE(19), - [ts_builtin_sym_end] = ACTIONS(308), - [sym_identifier] = ACTIONS(246), - [anon_sym_POUND] = ACTIONS(308), - [anon_sym_package] = ACTIONS(310), - [anon_sym_import] = ACTIONS(310), - [anon_sym_using] = ACTIONS(310), - [anon_sym_throw] = ACTIONS(310), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_RPAREN] = ACTIONS(308), - [anon_sym_switch] = ACTIONS(310), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_RBRACE] = ACTIONS(308), - [anon_sym_case] = ACTIONS(310), - [anon_sym_default] = ACTIONS(310), - [anon_sym_cast] = ACTIONS(310), - [anon_sym_COMMA] = ACTIONS(308), - [anon_sym_DOLLARtype] = ACTIONS(308), - [anon_sym_in] = ACTIONS(310), + [sym__unaryExpression] = STATE(77), + [sym_runtime_type_check_expression] = STATE(77), + [sym_switch_expression] = STATE(77), + [sym_cast_expression] = STATE(77), + [sym_type_trace_expression] = STATE(77), + [sym__parenthesized_expression] = STATE(78), + [sym_range_expression] = STATE(77), + [sym_subscript_expression] = STATE(77), + [sym_member_expression] = STATE(54), + [sym__binary_expression] = STATE(77), + [sym_ternary_expression] = STATE(77), + [sym__lhs_expression] = STATE(1045), + [sym__rhs_expression] = STATE(79), + [sym__call] = STATE(57), + [sym__constructor_call] = STATE(40), + [sym_call_expression] = STATE(79), + [sym__literal] = STATE(104), + [sym_integer] = STATE(104), + [sym_float] = STATE(104), + [sym_bool] = STATE(104), + [sym_string] = STATE(65), + [sym_null] = STATE(104), + [sym_array] = STATE(104), + [sym_map] = STATE(104), + [sym_object] = STATE(104), + [sym_pair] = STATE(104), + [sym_identifier] = ACTIONS(7), + [anon_sym_package] = ACTIONS(276), + [anon_sym_import] = ACTIONS(276), + [anon_sym_using] = ACTIONS(276), + [anon_sym_throw] = ACTIONS(276), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_switch] = ACTIONS(278), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_case] = ACTIONS(276), + [anon_sym_default] = ACTIONS(276), + [anon_sym_cast] = ACTIONS(280), + [anon_sym_DOLLARtype] = ACTIONS(31), + [anon_sym_in] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_RBRACK] = ACTIONS(308), - [anon_sym_this] = ACTIONS(250), - [anon_sym_DOT] = ACTIONS(310), - [anon_sym_QMARK] = ACTIONS(310), - [anon_sym_AT] = ACTIONS(310), - [anon_sym_AT_COLON] = ACTIONS(308), - [anon_sym_if] = ACTIONS(310), - [anon_sym_else] = ACTIONS(310), - [anon_sym_new] = ACTIONS(310), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_BANG] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(310), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PERCENT] = ACTIONS(308), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_SLASH] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_GT_GT_GT] = ACTIONS(308), - [anon_sym_AMP] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(310), - [anon_sym_CARET] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(308), - [anon_sym_PIPE_PIPE] = ACTIONS(308), - [anon_sym_EQ_EQ] = ACTIONS(308), - [anon_sym_BANG_EQ] = ACTIONS(308), - [anon_sym_LT] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(308), - [anon_sym_GT] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(308), - [anon_sym_EQ_GT] = ACTIONS(308), - [anon_sym_QMARK_QMARK] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(310), - [sym__rangeOperator] = ACTIONS(308), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(310), - [anon_sym_final] = ACTIONS(310), - [anon_sym_abstract] = ACTIONS(310), - [anon_sym_class] = ACTIONS(310), - [anon_sym_extends] = ACTIONS(310), - [anon_sym_implements] = ACTIONS(310), - [anon_sym_interface] = ACTIONS(310), - [anon_sym_typedef] = ACTIONS(310), - [anon_sym_function] = ACTIONS(310), - [anon_sym_var] = ACTIONS(310), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(310), - [anon_sym_catch] = ACTIONS(310), - [anon_sym_continue] = ACTIONS(310), - [anon_sym_do] = ACTIONS(310), - [anon_sym_enum] = ACTIONS(310), - [anon_sym_extern] = ACTIONS(310), - [anon_sym_for] = ACTIONS(310), - [anon_sym_inline] = ACTIONS(310), - [anon_sym_macro] = ACTIONS(310), - [anon_sym_operator] = ACTIONS(310), - [anon_sym_overload] = ACTIONS(310), - [anon_sym_override] = ACTIONS(310), - [anon_sym_private] = ACTIONS(310), - [anon_sym_public] = ACTIONS(310), - [anon_sym_return] = ACTIONS(310), - [anon_sym_static] = ACTIONS(310), - [anon_sym_try] = ACTIONS(310), - [anon_sym_untyped] = ACTIONS(310), - [anon_sym_while] = ACTIONS(310), - [sym__semicolon] = ACTIONS(308), + [anon_sym_this] = ACTIONS(268), + [anon_sym_if] = ACTIONS(276), + [anon_sym_else] = ACTIONS(276), + [anon_sym_new] = ACTIONS(282), + [sym__prefixUnaryOperator] = ACTIONS(47), + [sym__eitherUnaryOperator] = ACTIONS(49), + [anon_sym_null] = ACTIONS(51), + [anon_sym_dynamic] = ACTIONS(276), + [anon_sym_final] = ACTIONS(276), + [anon_sym_abstract] = ACTIONS(276), + [anon_sym_class] = ACTIONS(276), + [anon_sym_extends] = ACTIONS(276), + [anon_sym_implements] = ACTIONS(276), + [anon_sym_interface] = ACTIONS(276), + [anon_sym_typedef] = ACTIONS(276), + [anon_sym_function] = ACTIONS(276), + [anon_sym_var] = ACTIONS(276), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(276), + [anon_sym_catch] = ACTIONS(276), + [anon_sym_continue] = ACTIONS(276), + [anon_sym_do] = ACTIONS(276), + [anon_sym_enum] = ACTIONS(276), + [anon_sym_extern] = ACTIONS(276), + [anon_sym_for] = ACTIONS(276), + [anon_sym_inline] = ACTIONS(276), + [anon_sym_macro] = ACTIONS(276), + [anon_sym_operator] = ACTIONS(276), + [anon_sym_overload] = ACTIONS(276), + [anon_sym_override] = ACTIONS(276), + [anon_sym_private] = ACTIONS(276), + [anon_sym_public] = ACTIONS(276), + [anon_sym_return] = ACTIONS(276), + [anon_sym_static] = ACTIONS(276), + [anon_sym_try] = ACTIONS(276), + [anon_sym_untyped] = ACTIONS(276), + [anon_sym_while] = ACTIONS(276), }, [22] = { - [sym__rhs_expression] = STATE(61), - [sym_member_expression] = STATE(80), - [sym__lhs_expression] = STATE(1054), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(61), - [sym__literal] = STATE(123), - [sym_integer] = STATE(123), - [sym_float] = STATE(123), - [sym_bool] = STATE(123), - [sym_string] = STATE(105), - [sym_null] = STATE(123), - [sym_array] = STATE(123), - [sym_map] = STATE(123), - [sym_object] = STATE(123), - [sym_pair] = STATE(123), - [ts_builtin_sym_end] = ACTIONS(240), - [sym_identifier] = ACTIONS(242), - [anon_sym_POUND] = ACTIONS(240), - [anon_sym_package] = ACTIONS(242), - [anon_sym_import] = ACTIONS(242), - [anon_sym_using] = ACTIONS(242), - [anon_sym_throw] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(240), - [anon_sym_switch] = ACTIONS(242), - [anon_sym_LBRACE] = ACTIONS(240), - [anon_sym_RBRACE] = ACTIONS(240), - [anon_sym_case] = ACTIONS(242), - [anon_sym_default] = ACTIONS(242), - [anon_sym_cast] = ACTIONS(242), - [anon_sym_DOLLARtype] = ACTIONS(240), - [anon_sym_in] = ACTIONS(242), - [anon_sym_LBRACK] = ACTIONS(240), - [anon_sym_this] = ACTIONS(242), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_AT_COLON] = ACTIONS(240), - [anon_sym_if] = ACTIONS(242), - [anon_sym_else] = ACTIONS(242), - [anon_sym_new] = ACTIONS(242), - [anon_sym_TILDE] = ACTIONS(240), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_DASH] = ACTIONS(242), - [anon_sym_PLUS_PLUS] = ACTIONS(240), - [anon_sym_DASH_DASH] = ACTIONS(240), - [anon_sym_PERCENT] = ACTIONS(240), - [anon_sym_STAR] = ACTIONS(240), - [anon_sym_SLASH] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(242), - [anon_sym_LT_LT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(242), - [anon_sym_GT_GT_GT] = ACTIONS(240), - [anon_sym_AMP] = ACTIONS(242), - [anon_sym_PIPE] = ACTIONS(242), - [anon_sym_CARET] = ACTIONS(240), - [anon_sym_AMP_AMP] = ACTIONS(240), - [anon_sym_PIPE_PIPE] = ACTIONS(240), - [anon_sym_EQ_EQ] = ACTIONS(240), - [anon_sym_BANG_EQ] = ACTIONS(240), - [anon_sym_LT] = ACTIONS(242), - [anon_sym_LT_EQ] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(242), - [anon_sym_GT_EQ] = ACTIONS(240), - [anon_sym_EQ_GT] = ACTIONS(240), - [anon_sym_QMARK_QMARK] = ACTIONS(240), - [anon_sym_EQ] = ACTIONS(242), - [sym__rangeOperator] = ACTIONS(240), - [anon_sym_null] = ACTIONS(242), - [anon_sym_dynamic] = ACTIONS(242), - [anon_sym_final] = ACTIONS(242), - [anon_sym_abstract] = ACTIONS(242), - [anon_sym_class] = ACTIONS(242), - [anon_sym_extends] = ACTIONS(242), - [anon_sym_implements] = ACTIONS(242), - [anon_sym_interface] = ACTIONS(242), - [anon_sym_typedef] = ACTIONS(242), - [anon_sym_function] = ACTIONS(242), - [anon_sym_var] = ACTIONS(242), - [aux_sym_integer_token1] = ACTIONS(242), - [aux_sym_integer_token2] = ACTIONS(240), - [aux_sym_float_token1] = ACTIONS(242), - [aux_sym_float_token2] = ACTIONS(240), - [anon_sym_true] = ACTIONS(242), - [anon_sym_false] = ACTIONS(242), - [aux_sym_string_token1] = ACTIONS(240), - [aux_sym_string_token3] = ACTIONS(240), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(242), - [anon_sym_catch] = ACTIONS(242), - [anon_sym_continue] = ACTIONS(242), - [anon_sym_do] = ACTIONS(242), - [anon_sym_enum] = ACTIONS(242), - [anon_sym_extern] = ACTIONS(242), - [anon_sym_for] = ACTIONS(242), - [anon_sym_inline] = ACTIONS(242), - [anon_sym_macro] = ACTIONS(242), - [anon_sym_operator] = ACTIONS(242), - [anon_sym_overload] = ACTIONS(242), - [anon_sym_override] = ACTIONS(242), - [anon_sym_private] = ACTIONS(242), - [anon_sym_public] = ACTIONS(242), - [anon_sym_return] = ACTIONS(242), - [anon_sym_static] = ACTIONS(242), - [anon_sym_try] = ACTIONS(242), - [anon_sym_untyped] = ACTIONS(242), - [anon_sym_while] = ACTIONS(242), - [sym__semicolon] = ACTIONS(240), + [sym_member_expression] = STATE(28), + [sym__lhs_expression] = STATE(29), + [sym__literal] = STATE(1172), + [sym_integer] = STATE(1172), + [sym_float] = STATE(1172), + [sym_bool] = STATE(1172), + [sym_string] = STATE(1025), + [sym_null] = STATE(1172), + [sym_array] = STATE(1172), + [sym_map] = STATE(1172), + [sym_object] = STATE(1172), + [sym_pair] = STATE(1172), + [aux_sym_member_expression_repeat1] = STATE(25), + [ts_builtin_sym_end] = ACTIONS(208), + [sym_identifier] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(208), + [anon_sym_package] = ACTIONS(212), + [anon_sym_import] = ACTIONS(212), + [anon_sym_using] = ACTIONS(212), + [anon_sym_throw] = ACTIONS(212), + [anon_sym_LPAREN] = ACTIONS(208), + [anon_sym_RPAREN] = ACTIONS(208), + [anon_sym_switch] = ACTIONS(212), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_RBRACE] = ACTIONS(208), + [anon_sym_case] = ACTIONS(212), + [anon_sym_default] = ACTIONS(212), + [anon_sym_cast] = ACTIONS(212), + [anon_sym_COMMA] = ACTIONS(208), + [anon_sym_DOLLARtype] = ACTIONS(208), + [anon_sym_in] = ACTIONS(212), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_this] = ACTIONS(286), + [anon_sym_DASH_GT] = ACTIONS(208), + [anon_sym_AT] = ACTIONS(212), + [anon_sym_AT_COLON] = ACTIONS(208), + [anon_sym_if] = ACTIONS(212), + [anon_sym_else] = ACTIONS(212), + [anon_sym_new] = ACTIONS(212), + [sym__prefixUnaryOperator] = ACTIONS(212), + [sym__eitherUnaryOperator] = ACTIONS(208), + [anon_sym_EQ] = ACTIONS(208), + [anon_sym_null] = ACTIONS(51), + [anon_sym_dynamic] = ACTIONS(212), + [anon_sym_LT] = ACTIONS(208), + [anon_sym_final] = ACTIONS(212), + [anon_sym_abstract] = ACTIONS(212), + [anon_sym_class] = ACTIONS(212), + [anon_sym_extends] = ACTIONS(212), + [anon_sym_implements] = ACTIONS(212), + [anon_sym_interface] = ACTIONS(212), + [anon_sym_typedef] = ACTIONS(212), + [anon_sym_function] = ACTIONS(212), + [anon_sym_var] = ACTIONS(212), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(212), + [anon_sym_catch] = ACTIONS(212), + [anon_sym_continue] = ACTIONS(212), + [anon_sym_do] = ACTIONS(212), + [anon_sym_enum] = ACTIONS(212), + [anon_sym_extern] = ACTIONS(212), + [anon_sym_for] = ACTIONS(212), + [anon_sym_inline] = ACTIONS(212), + [anon_sym_macro] = ACTIONS(212), + [anon_sym_operator] = ACTIONS(212), + [anon_sym_overload] = ACTIONS(212), + [anon_sym_override] = ACTIONS(212), + [anon_sym_private] = ACTIONS(212), + [anon_sym_public] = ACTIONS(212), + [anon_sym_return] = ACTIONS(212), + [anon_sym_static] = ACTIONS(212), + [anon_sym_try] = ACTIONS(212), + [anon_sym_untyped] = ACTIONS(212), + [anon_sym_while] = ACTIONS(212), + [sym__semicolon] = ACTIONS(208), }, [23] = { - [sym_member_expression] = STATE(60), - [sym__lhs_expression] = STATE(72), - [sym__literal] = STATE(1124), - [sym_integer] = STATE(1124), - [sym_float] = STATE(1124), - [sym_bool] = STATE(1124), - [sym_string] = STATE(975), - [sym_null] = STATE(1124), - [sym_array] = STATE(1124), - [sym_map] = STATE(1124), - [sym_object] = STATE(1124), - [sym_pair] = STATE(1124), - [aux_sym_member_expression_repeat1] = STATE(23), - [ts_builtin_sym_end] = ACTIONS(264), - [sym_identifier] = ACTIONS(312), - [anon_sym_POUND] = ACTIONS(264), - [anon_sym_package] = ACTIONS(269), - [anon_sym_import] = ACTIONS(269), - [anon_sym_using] = ACTIONS(269), - [anon_sym_throw] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(264), - [anon_sym_RPAREN] = ACTIONS(264), - [anon_sym_switch] = ACTIONS(269), - [anon_sym_LBRACE] = ACTIONS(271), - [anon_sym_RBRACE] = ACTIONS(264), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(269), - [anon_sym_cast] = ACTIONS(269), - [anon_sym_COMMA] = ACTIONS(264), - [anon_sym_DOLLARtype] = ACTIONS(264), - [anon_sym_in] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_RBRACK] = ACTIONS(264), - [anon_sym_this] = ACTIONS(315), - [anon_sym_AT] = ACTIONS(269), - [anon_sym_AT_COLON] = ACTIONS(264), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(269), - [anon_sym_new] = ACTIONS(269), - [anon_sym_TILDE] = ACTIONS(264), - [anon_sym_BANG] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(269), - [anon_sym_PLUS_PLUS] = ACTIONS(264), - [anon_sym_DASH_DASH] = ACTIONS(264), - [anon_sym_PERCENT] = ACTIONS(264), - [anon_sym_STAR] = ACTIONS(264), - [anon_sym_SLASH] = ACTIONS(269), - [anon_sym_PLUS] = ACTIONS(269), - [anon_sym_LT_LT] = ACTIONS(264), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_GT_GT_GT] = ACTIONS(264), - [anon_sym_AMP] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(264), - [anon_sym_AMP_AMP] = ACTIONS(264), - [anon_sym_PIPE_PIPE] = ACTIONS(264), - [anon_sym_EQ_EQ] = ACTIONS(264), - [anon_sym_BANG_EQ] = ACTIONS(264), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(264), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(264), - [anon_sym_EQ_GT] = ACTIONS(264), - [anon_sym_QMARK_QMARK] = ACTIONS(264), - [anon_sym_EQ] = ACTIONS(269), - [sym__rangeOperator] = ACTIONS(264), - [anon_sym_null] = ACTIONS(280), - [anon_sym_dynamic] = ACTIONS(269), - [anon_sym_final] = ACTIONS(269), - [anon_sym_abstract] = ACTIONS(269), - [anon_sym_class] = ACTIONS(269), - [anon_sym_extends] = ACTIONS(269), - [anon_sym_implements] = ACTIONS(269), - [anon_sym_interface] = ACTIONS(269), - [anon_sym_typedef] = ACTIONS(269), - [anon_sym_function] = ACTIONS(269), - [anon_sym_var] = ACTIONS(269), - [aux_sym_integer_token1] = ACTIONS(283), - [aux_sym_integer_token2] = ACTIONS(286), - [aux_sym_float_token1] = ACTIONS(289), - [aux_sym_float_token2] = ACTIONS(292), - [anon_sym_true] = ACTIONS(295), - [anon_sym_false] = ACTIONS(295), - [aux_sym_string_token1] = ACTIONS(298), - [aux_sym_string_token3] = ACTIONS(301), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(269), - [anon_sym_catch] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(269), - [anon_sym_do] = ACTIONS(269), - [anon_sym_enum] = ACTIONS(269), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_for] = ACTIONS(269), - [anon_sym_inline] = ACTIONS(269), - [anon_sym_macro] = ACTIONS(269), - [anon_sym_operator] = ACTIONS(269), - [anon_sym_overload] = ACTIONS(269), - [anon_sym_override] = ACTIONS(269), - [anon_sym_private] = ACTIONS(269), - [anon_sym_public] = ACTIONS(269), - [anon_sym_return] = ACTIONS(269), - [anon_sym_static] = ACTIONS(269), - [anon_sym_try] = ACTIONS(269), - [anon_sym_untyped] = ACTIONS(269), - [anon_sym_while] = ACTIONS(269), - [sym__semicolon] = ACTIONS(264), + [sym_member_expression] = STATE(28), + [sym__lhs_expression] = STATE(29), + [sym__literal] = STATE(1172), + [sym_integer] = STATE(1172), + [sym_float] = STATE(1172), + [sym_bool] = STATE(1172), + [sym_string] = STATE(1025), + [sym_null] = STATE(1172), + [sym_array] = STATE(1172), + [sym_map] = STATE(1172), + [sym_object] = STATE(1172), + [sym_pair] = STATE(1172), + [aux_sym_member_expression_repeat1] = STATE(25), + [ts_builtin_sym_end] = ACTIONS(258), + [sym_identifier] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(258), + [anon_sym_package] = ACTIONS(260), + [anon_sym_import] = ACTIONS(260), + [anon_sym_using] = ACTIONS(260), + [anon_sym_throw] = ACTIONS(260), + [anon_sym_LPAREN] = ACTIONS(258), + [anon_sym_RPAREN] = ACTIONS(258), + [anon_sym_switch] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_RBRACE] = ACTIONS(258), + [anon_sym_case] = ACTIONS(260), + [anon_sym_default] = ACTIONS(260), + [anon_sym_cast] = ACTIONS(260), + [anon_sym_COMMA] = ACTIONS(258), + [anon_sym_DOLLARtype] = ACTIONS(258), + [anon_sym_in] = ACTIONS(260), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_this] = ACTIONS(286), + [anon_sym_DASH_GT] = ACTIONS(258), + [anon_sym_AT] = ACTIONS(260), + [anon_sym_AT_COLON] = ACTIONS(258), + [anon_sym_if] = ACTIONS(260), + [anon_sym_else] = ACTIONS(260), + [anon_sym_new] = ACTIONS(260), + [sym__prefixUnaryOperator] = ACTIONS(260), + [sym__eitherUnaryOperator] = ACTIONS(258), + [anon_sym_EQ] = ACTIONS(258), + [anon_sym_null] = ACTIONS(51), + [anon_sym_dynamic] = ACTIONS(260), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_final] = ACTIONS(260), + [anon_sym_abstract] = ACTIONS(260), + [anon_sym_class] = ACTIONS(260), + [anon_sym_extends] = ACTIONS(260), + [anon_sym_implements] = ACTIONS(260), + [anon_sym_interface] = ACTIONS(260), + [anon_sym_typedef] = ACTIONS(260), + [anon_sym_function] = ACTIONS(260), + [anon_sym_var] = ACTIONS(260), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(260), + [anon_sym_catch] = ACTIONS(260), + [anon_sym_continue] = ACTIONS(260), + [anon_sym_do] = ACTIONS(260), + [anon_sym_enum] = ACTIONS(260), + [anon_sym_extern] = ACTIONS(260), + [anon_sym_for] = ACTIONS(260), + [anon_sym_inline] = ACTIONS(260), + [anon_sym_macro] = ACTIONS(260), + [anon_sym_operator] = ACTIONS(260), + [anon_sym_overload] = ACTIONS(260), + [anon_sym_override] = ACTIONS(260), + [anon_sym_private] = ACTIONS(260), + [anon_sym_public] = ACTIONS(260), + [anon_sym_return] = ACTIONS(260), + [anon_sym_static] = ACTIONS(260), + [anon_sym_try] = ACTIONS(260), + [anon_sym_untyped] = ACTIONS(260), + [anon_sym_while] = ACTIONS(260), + [sym__semicolon] = ACTIONS(258), }, [24] = { - [sym_member_expression] = STATE(60), - [sym__lhs_expression] = STATE(72), - [sym__literal] = STATE(1124), - [sym_integer] = STATE(1124), - [sym_float] = STATE(1124), - [sym_bool] = STATE(1124), - [sym_string] = STATE(975), - [sym_null] = STATE(1124), - [sym_array] = STATE(1124), - [sym_map] = STATE(1124), - [sym_object] = STATE(1124), - [sym_pair] = STATE(1124), - [aux_sym_member_expression_repeat1] = STATE(23), - [ts_builtin_sym_end] = ACTIONS(308), - [sym_identifier] = ACTIONS(318), - [anon_sym_POUND] = ACTIONS(308), - [anon_sym_package] = ACTIONS(310), - [anon_sym_import] = ACTIONS(310), - [anon_sym_using] = ACTIONS(310), - [anon_sym_throw] = ACTIONS(310), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_RPAREN] = ACTIONS(308), - [anon_sym_switch] = ACTIONS(310), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_RBRACE] = ACTIONS(308), - [anon_sym_case] = ACTIONS(310), - [anon_sym_default] = ACTIONS(310), - [anon_sym_cast] = ACTIONS(310), - [anon_sym_COMMA] = ACTIONS(308), - [anon_sym_DOLLARtype] = ACTIONS(308), - [anon_sym_in] = ACTIONS(310), + [sym_member_expression] = STATE(28), + [sym__lhs_expression] = STATE(29), + [sym__literal] = STATE(1172), + [sym_integer] = STATE(1172), + [sym_float] = STATE(1172), + [sym_bool] = STATE(1172), + [sym_string] = STATE(1025), + [sym_null] = STATE(1172), + [sym_array] = STATE(1172), + [sym_map] = STATE(1172), + [sym_object] = STATE(1172), + [sym_pair] = STATE(1172), + [aux_sym_member_expression_repeat1] = STATE(25), + [ts_builtin_sym_end] = ACTIONS(262), + [sym_identifier] = ACTIONS(284), + [anon_sym_POUND] = ACTIONS(262), + [anon_sym_package] = ACTIONS(264), + [anon_sym_import] = ACTIONS(264), + [anon_sym_using] = ACTIONS(264), + [anon_sym_throw] = ACTIONS(264), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_RPAREN] = ACTIONS(262), + [anon_sym_switch] = ACTIONS(264), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_RBRACE] = ACTIONS(262), + [anon_sym_case] = ACTIONS(264), + [anon_sym_default] = ACTIONS(264), + [anon_sym_cast] = ACTIONS(264), + [anon_sym_COMMA] = ACTIONS(262), + [anon_sym_DOLLARtype] = ACTIONS(262), + [anon_sym_in] = ACTIONS(264), [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_RBRACK] = ACTIONS(308), - [anon_sym_this] = ACTIONS(236), - [anon_sym_AT] = ACTIONS(310), - [anon_sym_AT_COLON] = ACTIONS(308), - [anon_sym_if] = ACTIONS(310), - [anon_sym_else] = ACTIONS(310), - [anon_sym_new] = ACTIONS(310), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_BANG] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(310), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PERCENT] = ACTIONS(308), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_SLASH] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_GT_GT_GT] = ACTIONS(308), - [anon_sym_AMP] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(310), - [anon_sym_CARET] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(308), - [anon_sym_PIPE_PIPE] = ACTIONS(308), - [anon_sym_EQ_EQ] = ACTIONS(308), - [anon_sym_BANG_EQ] = ACTIONS(308), - [anon_sym_LT] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(308), - [anon_sym_GT] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(308), - [anon_sym_EQ_GT] = ACTIONS(308), - [anon_sym_QMARK_QMARK] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(310), - [sym__rangeOperator] = ACTIONS(308), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(310), - [anon_sym_final] = ACTIONS(310), - [anon_sym_abstract] = ACTIONS(310), - [anon_sym_class] = ACTIONS(310), - [anon_sym_extends] = ACTIONS(310), - [anon_sym_implements] = ACTIONS(310), - [anon_sym_interface] = ACTIONS(310), - [anon_sym_typedef] = ACTIONS(310), - [anon_sym_function] = ACTIONS(310), - [anon_sym_var] = ACTIONS(310), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(310), - [anon_sym_catch] = ACTIONS(310), - [anon_sym_continue] = ACTIONS(310), - [anon_sym_do] = ACTIONS(310), - [anon_sym_enum] = ACTIONS(310), - [anon_sym_extern] = ACTIONS(310), - [anon_sym_for] = ACTIONS(310), - [anon_sym_inline] = ACTIONS(310), - [anon_sym_macro] = ACTIONS(310), - [anon_sym_operator] = ACTIONS(310), - [anon_sym_overload] = ACTIONS(310), - [anon_sym_override] = ACTIONS(310), - [anon_sym_private] = ACTIONS(310), - [anon_sym_public] = ACTIONS(310), - [anon_sym_return] = ACTIONS(310), - [anon_sym_static] = ACTIONS(310), - [anon_sym_try] = ACTIONS(310), - [anon_sym_untyped] = ACTIONS(310), - [anon_sym_while] = ACTIONS(310), - [sym__semicolon] = ACTIONS(308), + [anon_sym_this] = ACTIONS(286), + [anon_sym_DASH_GT] = ACTIONS(262), + [anon_sym_AT] = ACTIONS(264), + [anon_sym_AT_COLON] = ACTIONS(262), + [anon_sym_if] = ACTIONS(264), + [anon_sym_else] = ACTIONS(264), + [anon_sym_new] = ACTIONS(264), + [sym__prefixUnaryOperator] = ACTIONS(264), + [sym__eitherUnaryOperator] = ACTIONS(262), + [anon_sym_EQ] = ACTIONS(262), + [anon_sym_null] = ACTIONS(51), + [anon_sym_dynamic] = ACTIONS(264), + [anon_sym_LT] = ACTIONS(262), + [anon_sym_final] = ACTIONS(264), + [anon_sym_abstract] = ACTIONS(264), + [anon_sym_class] = ACTIONS(264), + [anon_sym_extends] = ACTIONS(264), + [anon_sym_implements] = ACTIONS(264), + [anon_sym_interface] = ACTIONS(264), + [anon_sym_typedef] = ACTIONS(264), + [anon_sym_function] = ACTIONS(264), + [anon_sym_var] = ACTIONS(264), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(264), + [anon_sym_catch] = ACTIONS(264), + [anon_sym_continue] = ACTIONS(264), + [anon_sym_do] = ACTIONS(264), + [anon_sym_enum] = ACTIONS(264), + [anon_sym_extern] = ACTIONS(264), + [anon_sym_for] = ACTIONS(264), + [anon_sym_inline] = ACTIONS(264), + [anon_sym_macro] = ACTIONS(264), + [anon_sym_operator] = ACTIONS(264), + [anon_sym_overload] = ACTIONS(264), + [anon_sym_override] = ACTIONS(264), + [anon_sym_private] = ACTIONS(264), + [anon_sym_public] = ACTIONS(264), + [anon_sym_return] = ACTIONS(264), + [anon_sym_static] = ACTIONS(264), + [anon_sym_try] = ACTIONS(264), + [anon_sym_untyped] = ACTIONS(264), + [anon_sym_while] = ACTIONS(264), + [sym__semicolon] = ACTIONS(262), }, [25] = { - [sym_operator] = STATE(14), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(88), - [sym__bitwiseOperator] = STATE(88), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [aux_sym_expression_repeat1] = STATE(31), - [ts_builtin_sym_end] = ACTIONS(320), - [sym_identifier] = ACTIONS(322), - [anon_sym_POUND] = ACTIONS(320), - [anon_sym_package] = ACTIONS(322), - [anon_sym_import] = ACTIONS(322), - [anon_sym_using] = ACTIONS(322), - [anon_sym_throw] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(320), - [anon_sym_switch] = ACTIONS(322), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_RBRACE] = ACTIONS(320), - [anon_sym_case] = ACTIONS(322), - [anon_sym_default] = ACTIONS(322), - [anon_sym_cast] = ACTIONS(322), - [anon_sym_COMMA] = ACTIONS(320), - [anon_sym_DOLLARtype] = ACTIONS(320), - [anon_sym_in] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(320), - [anon_sym_this] = ACTIONS(322), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_QMARK] = ACTIONS(322), - [anon_sym_AT] = ACTIONS(322), - [anon_sym_AT_COLON] = ACTIONS(320), - [anon_sym_if] = ACTIONS(322), - [anon_sym_else] = ACTIONS(322), - [anon_sym_new] = ACTIONS(322), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(324), - [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(322), - [anon_sym_dynamic] = ACTIONS(322), - [anon_sym_final] = ACTIONS(322), - [anon_sym_abstract] = ACTIONS(322), - [anon_sym_class] = ACTIONS(322), - [anon_sym_extends] = ACTIONS(322), - [anon_sym_implements] = ACTIONS(322), - [anon_sym_interface] = ACTIONS(322), - [anon_sym_typedef] = ACTIONS(322), - [anon_sym_function] = ACTIONS(322), - [anon_sym_var] = ACTIONS(322), - [aux_sym_integer_token1] = ACTIONS(322), - [aux_sym_integer_token2] = ACTIONS(320), - [aux_sym_float_token1] = ACTIONS(322), - [aux_sym_float_token2] = ACTIONS(320), - [anon_sym_true] = ACTIONS(322), - [anon_sym_false] = ACTIONS(322), - [aux_sym_string_token1] = ACTIONS(320), - [aux_sym_string_token3] = ACTIONS(320), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(322), - [anon_sym_catch] = ACTIONS(322), - [anon_sym_continue] = ACTIONS(322), - [anon_sym_do] = ACTIONS(322), - [anon_sym_enum] = ACTIONS(322), - [anon_sym_extern] = ACTIONS(322), - [anon_sym_for] = ACTIONS(322), - [anon_sym_inline] = ACTIONS(322), - [anon_sym_macro] = ACTIONS(322), - [anon_sym_operator] = ACTIONS(322), - [anon_sym_overload] = ACTIONS(322), - [anon_sym_override] = ACTIONS(322), - [anon_sym_private] = ACTIONS(322), - [anon_sym_public] = ACTIONS(322), - [anon_sym_return] = ACTIONS(322), - [anon_sym_static] = ACTIONS(322), - [anon_sym_try] = ACTIONS(322), - [anon_sym_untyped] = ACTIONS(322), - [anon_sym_while] = ACTIONS(322), - [sym__semicolon] = ACTIONS(320), + [sym_member_expression] = STATE(28), + [sym__lhs_expression] = STATE(29), + [sym__literal] = STATE(1172), + [sym_integer] = STATE(1172), + [sym_float] = STATE(1172), + [sym_bool] = STATE(1172), + [sym_string] = STATE(1025), + [sym_null] = STATE(1172), + [sym_array] = STATE(1172), + [sym_map] = STATE(1172), + [sym_object] = STATE(1172), + [sym_pair] = STATE(1172), + [aux_sym_member_expression_repeat1] = STATE(25), + [ts_builtin_sym_end] = ACTIONS(218), + [sym_identifier] = ACTIONS(288), + [anon_sym_POUND] = ACTIONS(218), + [anon_sym_package] = ACTIONS(223), + [anon_sym_import] = ACTIONS(223), + [anon_sym_using] = ACTIONS(223), + [anon_sym_throw] = ACTIONS(223), + [anon_sym_LPAREN] = ACTIONS(218), + [anon_sym_RPAREN] = ACTIONS(218), + [anon_sym_switch] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(225), + [anon_sym_RBRACE] = ACTIONS(218), + [anon_sym_case] = ACTIONS(223), + [anon_sym_default] = ACTIONS(223), + [anon_sym_cast] = ACTIONS(223), + [anon_sym_COMMA] = ACTIONS(218), + [anon_sym_DOLLARtype] = ACTIONS(218), + [anon_sym_in] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(228), + [anon_sym_this] = ACTIONS(291), + [anon_sym_DASH_GT] = ACTIONS(218), + [anon_sym_AT] = ACTIONS(223), + [anon_sym_AT_COLON] = ACTIONS(218), + [anon_sym_if] = ACTIONS(223), + [anon_sym_else] = ACTIONS(223), + [anon_sym_new] = ACTIONS(223), + [sym__prefixUnaryOperator] = ACTIONS(223), + [sym__eitherUnaryOperator] = ACTIONS(218), + [anon_sym_EQ] = ACTIONS(218), + [anon_sym_null] = ACTIONS(234), + [anon_sym_dynamic] = ACTIONS(223), + [anon_sym_LT] = ACTIONS(218), + [anon_sym_final] = ACTIONS(223), + [anon_sym_abstract] = ACTIONS(223), + [anon_sym_class] = ACTIONS(223), + [anon_sym_extends] = ACTIONS(223), + [anon_sym_implements] = ACTIONS(223), + [anon_sym_interface] = ACTIONS(223), + [anon_sym_typedef] = ACTIONS(223), + [anon_sym_function] = ACTIONS(223), + [anon_sym_var] = ACTIONS(223), + [aux_sym_integer_token1] = ACTIONS(237), + [aux_sym_integer_token2] = ACTIONS(240), + [aux_sym_float_token1] = ACTIONS(243), + [aux_sym_float_token2] = ACTIONS(246), + [anon_sym_true] = ACTIONS(249), + [anon_sym_false] = ACTIONS(249), + [aux_sym_string_token1] = ACTIONS(252), + [aux_sym_string_token3] = ACTIONS(255), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(223), + [anon_sym_catch] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(223), + [anon_sym_do] = ACTIONS(223), + [anon_sym_enum] = ACTIONS(223), + [anon_sym_extern] = ACTIONS(223), + [anon_sym_for] = ACTIONS(223), + [anon_sym_inline] = ACTIONS(223), + [anon_sym_macro] = ACTIONS(223), + [anon_sym_operator] = ACTIONS(223), + [anon_sym_overload] = ACTIONS(223), + [anon_sym_override] = ACTIONS(223), + [anon_sym_private] = ACTIONS(223), + [anon_sym_public] = ACTIONS(223), + [anon_sym_return] = ACTIONS(223), + [anon_sym_static] = ACTIONS(223), + [anon_sym_try] = ACTIONS(223), + [anon_sym_untyped] = ACTIONS(223), + [anon_sym_while] = ACTIONS(223), + [sym__semicolon] = ACTIONS(218), }, [26] = { - [sym_member_expression] = STATE(101), - [sym__lhs_expression] = STATE(102), - [sym__literal] = STATE(1167), - [sym_integer] = STATE(1167), - [sym_float] = STATE(1167), - [sym_bool] = STATE(1167), - [sym_string] = STATE(975), - [sym_null] = STATE(1167), - [sym_array] = STATE(1167), - [sym_map] = STATE(1167), - [sym_object] = STATE(1167), - [sym_pair] = STATE(1167), - [aux_sym_member_expression_repeat1] = STATE(27), - [ts_builtin_sym_end] = ACTIONS(304), - [sym_identifier] = ACTIONS(326), - [anon_sym_POUND] = ACTIONS(304), - [anon_sym_package] = ACTIONS(306), - [anon_sym_import] = ACTIONS(306), - [anon_sym_using] = ACTIONS(306), - [anon_sym_throw] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_RPAREN] = ACTIONS(304), - [anon_sym_switch] = ACTIONS(306), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_RBRACE] = ACTIONS(304), - [anon_sym_case] = ACTIONS(306), - [anon_sym_default] = ACTIONS(306), - [anon_sym_cast] = ACTIONS(306), - [anon_sym_COMMA] = ACTIONS(304), - [anon_sym_DOLLARtype] = ACTIONS(304), - [anon_sym_in] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(328), - [anon_sym_DASH_GT] = ACTIONS(304), - [anon_sym_AT] = ACTIONS(306), - [anon_sym_AT_COLON] = ACTIONS(304), - [anon_sym_if] = ACTIONS(306), - [anon_sym_else] = ACTIONS(306), - [anon_sym_new] = ACTIONS(306), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_BANG] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_PLUS_PLUS] = ACTIONS(304), - [anon_sym_DASH_DASH] = ACTIONS(304), - [anon_sym_PERCENT] = ACTIONS(304), - [anon_sym_STAR] = ACTIONS(304), - [anon_sym_SLASH] = ACTIONS(306), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_LT_LT] = ACTIONS(304), - [anon_sym_GT_GT] = ACTIONS(306), - [anon_sym_GT_GT_GT] = ACTIONS(304), - [anon_sym_AMP] = ACTIONS(306), - [anon_sym_PIPE] = ACTIONS(306), - [anon_sym_CARET] = ACTIONS(304), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_PIPE_PIPE] = ACTIONS(304), - [anon_sym_EQ_EQ] = ACTIONS(304), - [anon_sym_BANG_EQ] = ACTIONS(304), - [anon_sym_LT] = ACTIONS(306), - [anon_sym_LT_EQ] = ACTIONS(304), - [anon_sym_GT] = ACTIONS(306), - [anon_sym_GT_EQ] = ACTIONS(304), - [anon_sym_EQ_GT] = ACTIONS(304), - [anon_sym_QMARK_QMARK] = ACTIONS(304), - [anon_sym_EQ] = ACTIONS(306), - [sym__rangeOperator] = ACTIONS(304), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(306), - [anon_sym_final] = ACTIONS(306), - [anon_sym_abstract] = ACTIONS(306), - [anon_sym_class] = ACTIONS(306), - [anon_sym_extends] = ACTIONS(306), - [anon_sym_implements] = ACTIONS(306), - [anon_sym_interface] = ACTIONS(306), - [anon_sym_typedef] = ACTIONS(306), - [anon_sym_function] = ACTIONS(306), - [anon_sym_var] = ACTIONS(306), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(306), - [anon_sym_catch] = ACTIONS(306), - [anon_sym_continue] = ACTIONS(306), - [anon_sym_do] = ACTIONS(306), - [anon_sym_enum] = ACTIONS(306), - [anon_sym_extern] = ACTIONS(306), - [anon_sym_for] = ACTIONS(306), - [anon_sym_inline] = ACTIONS(306), - [anon_sym_macro] = ACTIONS(306), - [anon_sym_operator] = ACTIONS(306), - [anon_sym_overload] = ACTIONS(306), - [anon_sym_override] = ACTIONS(306), - [anon_sym_private] = ACTIONS(306), - [anon_sym_public] = ACTIONS(306), - [anon_sym_return] = ACTIONS(306), - [anon_sym_static] = ACTIONS(306), - [anon_sym_try] = ACTIONS(306), - [anon_sym_untyped] = ACTIONS(306), - [anon_sym_while] = ACTIONS(306), - [sym__semicolon] = ACTIONS(304), + [ts_builtin_sym_end] = ACTIONS(294), + [sym_identifier] = ACTIONS(296), + [anon_sym_POUND] = ACTIONS(294), + [anon_sym_package] = ACTIONS(296), + [anon_sym_import] = ACTIONS(296), + [anon_sym_using] = ACTIONS(296), + [anon_sym_throw] = ACTIONS(296), + [anon_sym_LPAREN] = ACTIONS(294), + [anon_sym_RPAREN] = ACTIONS(294), + [anon_sym_switch] = ACTIONS(296), + [anon_sym_LBRACE] = ACTIONS(294), + [anon_sym_RBRACE] = ACTIONS(294), + [anon_sym_case] = ACTIONS(296), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_default] = ACTIONS(296), + [anon_sym_cast] = ACTIONS(296), + [anon_sym_COMMA] = ACTIONS(294), + [anon_sym_DOLLARtype] = ACTIONS(294), + [anon_sym_in] = ACTIONS(296), + [anon_sym_LBRACK] = ACTIONS(294), + [anon_sym_this] = ACTIONS(296), + [aux_sym_member_expression_token1] = ACTIONS(300), + [anon_sym_QMARK] = ACTIONS(296), + [anon_sym_DASH_GT] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [anon_sym_AT_COLON] = ACTIONS(294), + [anon_sym_if] = ACTIONS(296), + [anon_sym_else] = ACTIONS(296), + [anon_sym_new] = ACTIONS(296), + [sym__prefixUnaryOperator] = ACTIONS(296), + [sym__eitherUnaryOperator] = ACTIONS(294), + [sym__arithmetic_operator] = ACTIONS(296), + [sym__bitwise_operator] = ACTIONS(296), + [sym__logical_operator] = ACTIONS(294), + [sym__comparison_operator] = ACTIONS(296), + [sym__map_operator] = ACTIONS(294), + [sym__null_colalese_operator] = ACTIONS(294), + [anon_sym_EQ] = ACTIONS(296), + [sym__range_operator] = ACTIONS(294), + [anon_sym_null] = ACTIONS(296), + [anon_sym_dynamic] = ACTIONS(296), + [anon_sym_LT] = ACTIONS(296), + [anon_sym_final] = ACTIONS(296), + [anon_sym_abstract] = ACTIONS(296), + [anon_sym_class] = ACTIONS(296), + [anon_sym_extends] = ACTIONS(296), + [anon_sym_implements] = ACTIONS(296), + [anon_sym_interface] = ACTIONS(296), + [anon_sym_typedef] = ACTIONS(296), + [anon_sym_function] = ACTIONS(296), + [anon_sym_var] = ACTIONS(296), + [aux_sym_integer_token1] = ACTIONS(296), + [aux_sym_integer_token2] = ACTIONS(294), + [aux_sym_float_token1] = ACTIONS(296), + [aux_sym_float_token2] = ACTIONS(294), + [anon_sym_true] = ACTIONS(296), + [anon_sym_false] = ACTIONS(296), + [aux_sym_string_token1] = ACTIONS(294), + [aux_sym_string_token3] = ACTIONS(294), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(296), + [anon_sym_catch] = ACTIONS(296), + [anon_sym_continue] = ACTIONS(296), + [anon_sym_do] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(296), + [anon_sym_extern] = ACTIONS(296), + [anon_sym_for] = ACTIONS(296), + [anon_sym_inline] = ACTIONS(296), + [anon_sym_macro] = ACTIONS(296), + [anon_sym_operator] = ACTIONS(296), + [anon_sym_overload] = ACTIONS(296), + [anon_sym_override] = ACTIONS(296), + [anon_sym_private] = ACTIONS(296), + [anon_sym_public] = ACTIONS(296), + [anon_sym_return] = ACTIONS(296), + [anon_sym_static] = ACTIONS(296), + [anon_sym_try] = ACTIONS(296), + [anon_sym_untyped] = ACTIONS(296), + [anon_sym_while] = ACTIONS(296), + [sym__semicolon] = ACTIONS(294), }, [27] = { - [sym_member_expression] = STATE(101), - [sym__lhs_expression] = STATE(102), - [sym__literal] = STATE(1167), - [sym_integer] = STATE(1167), - [sym_float] = STATE(1167), - [sym_bool] = STATE(1167), - [sym_string] = STATE(975), - [sym_null] = STATE(1167), - [sym_array] = STATE(1167), - [sym_map] = STATE(1167), - [sym_object] = STATE(1167), - [sym_pair] = STATE(1167), - [aux_sym_member_expression_repeat1] = STATE(27), - [ts_builtin_sym_end] = ACTIONS(264), - [sym_identifier] = ACTIONS(330), - [anon_sym_POUND] = ACTIONS(264), - [anon_sym_package] = ACTIONS(269), - [anon_sym_import] = ACTIONS(269), - [anon_sym_using] = ACTIONS(269), - [anon_sym_throw] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(264), - [anon_sym_RPAREN] = ACTIONS(264), - [anon_sym_switch] = ACTIONS(269), - [anon_sym_LBRACE] = ACTIONS(271), - [anon_sym_RBRACE] = ACTIONS(264), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(269), - [anon_sym_cast] = ACTIONS(269), - [anon_sym_COMMA] = ACTIONS(264), - [anon_sym_DOLLARtype] = ACTIONS(264), - [anon_sym_in] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_this] = ACTIONS(333), - [anon_sym_DASH_GT] = ACTIONS(264), - [anon_sym_AT] = ACTIONS(269), - [anon_sym_AT_COLON] = ACTIONS(264), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(269), - [anon_sym_new] = ACTIONS(269), - [anon_sym_TILDE] = ACTIONS(264), - [anon_sym_BANG] = ACTIONS(269), - [anon_sym_DASH] = ACTIONS(269), - [anon_sym_PLUS_PLUS] = ACTIONS(264), - [anon_sym_DASH_DASH] = ACTIONS(264), - [anon_sym_PERCENT] = ACTIONS(264), - [anon_sym_STAR] = ACTIONS(264), - [anon_sym_SLASH] = ACTIONS(269), - [anon_sym_PLUS] = ACTIONS(269), - [anon_sym_LT_LT] = ACTIONS(264), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_GT_GT_GT] = ACTIONS(264), - [anon_sym_AMP] = ACTIONS(269), - [anon_sym_PIPE] = ACTIONS(269), - [anon_sym_CARET] = ACTIONS(264), - [anon_sym_AMP_AMP] = ACTIONS(264), - [anon_sym_PIPE_PIPE] = ACTIONS(264), - [anon_sym_EQ_EQ] = ACTIONS(264), - [anon_sym_BANG_EQ] = ACTIONS(264), - [anon_sym_LT] = ACTIONS(269), - [anon_sym_LT_EQ] = ACTIONS(264), - [anon_sym_GT] = ACTIONS(269), - [anon_sym_GT_EQ] = ACTIONS(264), - [anon_sym_EQ_GT] = ACTIONS(264), - [anon_sym_QMARK_QMARK] = ACTIONS(264), - [anon_sym_EQ] = ACTIONS(269), - [sym__rangeOperator] = ACTIONS(264), - [anon_sym_null] = ACTIONS(280), - [anon_sym_dynamic] = ACTIONS(269), - [anon_sym_final] = ACTIONS(269), - [anon_sym_abstract] = ACTIONS(269), - [anon_sym_class] = ACTIONS(269), - [anon_sym_extends] = ACTIONS(269), - [anon_sym_implements] = ACTIONS(269), - [anon_sym_interface] = ACTIONS(269), - [anon_sym_typedef] = ACTIONS(269), - [anon_sym_function] = ACTIONS(269), - [anon_sym_var] = ACTIONS(269), - [aux_sym_integer_token1] = ACTIONS(283), - [aux_sym_integer_token2] = ACTIONS(286), - [aux_sym_float_token1] = ACTIONS(289), - [aux_sym_float_token2] = ACTIONS(292), - [anon_sym_true] = ACTIONS(295), - [anon_sym_false] = ACTIONS(295), - [aux_sym_string_token1] = ACTIONS(298), - [aux_sym_string_token3] = ACTIONS(301), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(269), - [anon_sym_catch] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(269), - [anon_sym_do] = ACTIONS(269), - [anon_sym_enum] = ACTIONS(269), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_for] = ACTIONS(269), - [anon_sym_inline] = ACTIONS(269), - [anon_sym_macro] = ACTIONS(269), - [anon_sym_operator] = ACTIONS(269), - [anon_sym_overload] = ACTIONS(269), - [anon_sym_override] = ACTIONS(269), - [anon_sym_private] = ACTIONS(269), - [anon_sym_public] = ACTIONS(269), - [anon_sym_return] = ACTIONS(269), - [anon_sym_static] = ACTIONS(269), - [anon_sym_try] = ACTIONS(269), - [anon_sym_untyped] = ACTIONS(269), - [anon_sym_while] = ACTIONS(269), - [sym__semicolon] = ACTIONS(264), + [ts_builtin_sym_end] = ACTIONS(294), + [sym_identifier] = ACTIONS(296), + [anon_sym_POUND] = ACTIONS(294), + [anon_sym_package] = ACTIONS(296), + [anon_sym_import] = ACTIONS(296), + [anon_sym_using] = ACTIONS(296), + [anon_sym_throw] = ACTIONS(296), + [anon_sym_LPAREN] = ACTIONS(294), + [anon_sym_RPAREN] = ACTIONS(294), + [anon_sym_switch] = ACTIONS(296), + [anon_sym_LBRACE] = ACTIONS(294), + [anon_sym_RBRACE] = ACTIONS(294), + [anon_sym_case] = ACTIONS(296), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_default] = ACTIONS(296), + [anon_sym_cast] = ACTIONS(296), + [anon_sym_COMMA] = ACTIONS(294), + [anon_sym_DOLLARtype] = ACTIONS(294), + [anon_sym_in] = ACTIONS(296), + [anon_sym_LBRACK] = ACTIONS(294), + [anon_sym_this] = ACTIONS(296), + [aux_sym_member_expression_token1] = ACTIONS(296), + [anon_sym_QMARK] = ACTIONS(296), + [anon_sym_DASH_GT] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [anon_sym_AT_COLON] = ACTIONS(294), + [anon_sym_if] = ACTIONS(296), + [anon_sym_else] = ACTIONS(296), + [anon_sym_new] = ACTIONS(296), + [sym__prefixUnaryOperator] = ACTIONS(296), + [sym__eitherUnaryOperator] = ACTIONS(294), + [sym__arithmetic_operator] = ACTIONS(296), + [sym__bitwise_operator] = ACTIONS(296), + [sym__logical_operator] = ACTIONS(294), + [sym__comparison_operator] = ACTIONS(296), + [sym__map_operator] = ACTIONS(294), + [sym__null_colalese_operator] = ACTIONS(294), + [anon_sym_EQ] = ACTIONS(296), + [sym__range_operator] = ACTIONS(294), + [anon_sym_null] = ACTIONS(296), + [anon_sym_dynamic] = ACTIONS(296), + [anon_sym_LT] = ACTIONS(296), + [anon_sym_final] = ACTIONS(296), + [anon_sym_abstract] = ACTIONS(296), + [anon_sym_class] = ACTIONS(296), + [anon_sym_extends] = ACTIONS(296), + [anon_sym_implements] = ACTIONS(296), + [anon_sym_interface] = ACTIONS(296), + [anon_sym_typedef] = ACTIONS(296), + [anon_sym_function] = ACTIONS(296), + [anon_sym_var] = ACTIONS(296), + [aux_sym_integer_token1] = ACTIONS(296), + [aux_sym_integer_token2] = ACTIONS(294), + [aux_sym_float_token1] = ACTIONS(296), + [aux_sym_float_token2] = ACTIONS(294), + [anon_sym_true] = ACTIONS(296), + [anon_sym_false] = ACTIONS(296), + [aux_sym_string_token1] = ACTIONS(294), + [aux_sym_string_token3] = ACTIONS(294), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(296), + [anon_sym_catch] = ACTIONS(296), + [anon_sym_continue] = ACTIONS(296), + [anon_sym_do] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(296), + [anon_sym_extern] = ACTIONS(296), + [anon_sym_for] = ACTIONS(296), + [anon_sym_inline] = ACTIONS(296), + [anon_sym_macro] = ACTIONS(296), + [anon_sym_operator] = ACTIONS(296), + [anon_sym_overload] = ACTIONS(296), + [anon_sym_override] = ACTIONS(296), + [anon_sym_private] = ACTIONS(296), + [anon_sym_public] = ACTIONS(296), + [anon_sym_return] = ACTIONS(296), + [anon_sym_static] = ACTIONS(296), + [anon_sym_try] = ACTIONS(296), + [anon_sym_untyped] = ACTIONS(296), + [anon_sym_while] = ACTIONS(296), + [sym__semicolon] = ACTIONS(294), }, [28] = { - [sym_member_expression] = STATE(101), - [sym__lhs_expression] = STATE(102), - [sym__literal] = STATE(1167), - [sym_integer] = STATE(1167), - [sym_float] = STATE(1167), - [sym_bool] = STATE(1167), - [sym_string] = STATE(975), - [sym_null] = STATE(1167), - [sym_array] = STATE(1167), - [sym_map] = STATE(1167), - [sym_object] = STATE(1167), - [sym_pair] = STATE(1167), - [aux_sym_member_expression_repeat1] = STATE(27), - [ts_builtin_sym_end] = ACTIONS(260), - [sym_identifier] = ACTIONS(326), - [anon_sym_POUND] = ACTIONS(260), - [anon_sym_package] = ACTIONS(262), - [anon_sym_import] = ACTIONS(262), - [anon_sym_using] = ACTIONS(262), - [anon_sym_throw] = ACTIONS(262), - [anon_sym_LPAREN] = ACTIONS(260), - [anon_sym_RPAREN] = ACTIONS(260), - [anon_sym_switch] = ACTIONS(262), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_RBRACE] = ACTIONS(260), - [anon_sym_case] = ACTIONS(262), - [anon_sym_default] = ACTIONS(262), - [anon_sym_cast] = ACTIONS(262), - [anon_sym_COMMA] = ACTIONS(260), - [anon_sym_DOLLARtype] = ACTIONS(260), - [anon_sym_in] = ACTIONS(262), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(328), - [anon_sym_DASH_GT] = ACTIONS(260), - [anon_sym_AT] = ACTIONS(262), - [anon_sym_AT_COLON] = ACTIONS(260), - [anon_sym_if] = ACTIONS(262), - [anon_sym_else] = ACTIONS(262), - [anon_sym_new] = ACTIONS(262), - [anon_sym_TILDE] = ACTIONS(260), - [anon_sym_BANG] = ACTIONS(262), - [anon_sym_DASH] = ACTIONS(262), - [anon_sym_PLUS_PLUS] = ACTIONS(260), - [anon_sym_DASH_DASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(260), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(262), - [anon_sym_PLUS] = ACTIONS(262), - [anon_sym_LT_LT] = ACTIONS(260), - [anon_sym_GT_GT] = ACTIONS(262), - [anon_sym_GT_GT_GT] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(262), - [anon_sym_CARET] = ACTIONS(260), - [anon_sym_AMP_AMP] = ACTIONS(260), - [anon_sym_PIPE_PIPE] = ACTIONS(260), - [anon_sym_EQ_EQ] = ACTIONS(260), - [anon_sym_BANG_EQ] = ACTIONS(260), - [anon_sym_LT] = ACTIONS(262), - [anon_sym_LT_EQ] = ACTIONS(260), - [anon_sym_GT] = ACTIONS(262), - [anon_sym_GT_EQ] = ACTIONS(260), - [anon_sym_EQ_GT] = ACTIONS(260), - [anon_sym_QMARK_QMARK] = ACTIONS(260), - [anon_sym_EQ] = ACTIONS(262), - [sym__rangeOperator] = ACTIONS(260), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(262), - [anon_sym_final] = ACTIONS(262), - [anon_sym_abstract] = ACTIONS(262), - [anon_sym_class] = ACTIONS(262), - [anon_sym_extends] = ACTIONS(262), - [anon_sym_implements] = ACTIONS(262), - [anon_sym_interface] = ACTIONS(262), - [anon_sym_typedef] = ACTIONS(262), - [anon_sym_function] = ACTIONS(262), - [anon_sym_var] = ACTIONS(262), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(262), - [anon_sym_catch] = ACTIONS(262), - [anon_sym_continue] = ACTIONS(262), - [anon_sym_do] = ACTIONS(262), - [anon_sym_enum] = ACTIONS(262), - [anon_sym_extern] = ACTIONS(262), - [anon_sym_for] = ACTIONS(262), - [anon_sym_inline] = ACTIONS(262), - [anon_sym_macro] = ACTIONS(262), - [anon_sym_operator] = ACTIONS(262), - [anon_sym_overload] = ACTIONS(262), - [anon_sym_override] = ACTIONS(262), - [anon_sym_private] = ACTIONS(262), - [anon_sym_public] = ACTIONS(262), - [anon_sym_return] = ACTIONS(262), - [anon_sym_static] = ACTIONS(262), - [anon_sym_try] = ACTIONS(262), - [anon_sym_untyped] = ACTIONS(262), - [anon_sym_while] = ACTIONS(262), - [sym__semicolon] = ACTIONS(260), + [ts_builtin_sym_end] = ACTIONS(294), + [sym_identifier] = ACTIONS(296), + [anon_sym_POUND] = ACTIONS(294), + [anon_sym_package] = ACTIONS(296), + [anon_sym_import] = ACTIONS(296), + [anon_sym_using] = ACTIONS(296), + [anon_sym_throw] = ACTIONS(296), + [anon_sym_LPAREN] = ACTIONS(294), + [anon_sym_RPAREN] = ACTIONS(294), + [anon_sym_switch] = ACTIONS(296), + [anon_sym_LBRACE] = ACTIONS(294), + [anon_sym_RBRACE] = ACTIONS(294), + [anon_sym_case] = ACTIONS(296), + [anon_sym_COLON] = ACTIONS(294), + [anon_sym_default] = ACTIONS(296), + [anon_sym_cast] = ACTIONS(296), + [anon_sym_COMMA] = ACTIONS(294), + [anon_sym_DOLLARtype] = ACTIONS(294), + [anon_sym_in] = ACTIONS(296), + [anon_sym_LBRACK] = ACTIONS(294), + [anon_sym_this] = ACTIONS(296), + [aux_sym_member_expression_token1] = ACTIONS(296), + [anon_sym_QMARK] = ACTIONS(296), + [anon_sym_DASH_GT] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [anon_sym_AT_COLON] = ACTIONS(294), + [anon_sym_if] = ACTIONS(296), + [anon_sym_else] = ACTIONS(296), + [anon_sym_new] = ACTIONS(296), + [sym__prefixUnaryOperator] = ACTIONS(296), + [sym__eitherUnaryOperator] = ACTIONS(294), + [sym__arithmetic_operator] = ACTIONS(296), + [sym__bitwise_operator] = ACTIONS(296), + [sym__logical_operator] = ACTIONS(294), + [sym__comparison_operator] = ACTIONS(296), + [sym__map_operator] = ACTIONS(294), + [sym__null_colalese_operator] = ACTIONS(294), + [anon_sym_EQ] = ACTIONS(296), + [sym__range_operator] = ACTIONS(294), + [anon_sym_null] = ACTIONS(296), + [anon_sym_dynamic] = ACTIONS(296), + [anon_sym_LT] = ACTIONS(296), + [anon_sym_final] = ACTIONS(296), + [anon_sym_abstract] = ACTIONS(296), + [anon_sym_class] = ACTIONS(296), + [anon_sym_extends] = ACTIONS(296), + [anon_sym_implements] = ACTIONS(296), + [anon_sym_interface] = ACTIONS(296), + [anon_sym_typedef] = ACTIONS(296), + [anon_sym_function] = ACTIONS(296), + [anon_sym_var] = ACTIONS(296), + [aux_sym_integer_token1] = ACTIONS(296), + [aux_sym_integer_token2] = ACTIONS(294), + [aux_sym_float_token1] = ACTIONS(296), + [aux_sym_float_token2] = ACTIONS(294), + [anon_sym_true] = ACTIONS(296), + [anon_sym_false] = ACTIONS(296), + [aux_sym_string_token1] = ACTIONS(294), + [aux_sym_string_token3] = ACTIONS(294), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(296), + [anon_sym_catch] = ACTIONS(296), + [anon_sym_continue] = ACTIONS(296), + [anon_sym_do] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(296), + [anon_sym_extern] = ACTIONS(296), + [anon_sym_for] = ACTIONS(296), + [anon_sym_inline] = ACTIONS(296), + [anon_sym_macro] = ACTIONS(296), + [anon_sym_operator] = ACTIONS(296), + [anon_sym_overload] = ACTIONS(296), + [anon_sym_override] = ACTIONS(296), + [anon_sym_private] = ACTIONS(296), + [anon_sym_public] = ACTIONS(296), + [anon_sym_return] = ACTIONS(296), + [anon_sym_static] = ACTIONS(296), + [anon_sym_try] = ACTIONS(296), + [anon_sym_untyped] = ACTIONS(296), + [anon_sym_while] = ACTIONS(296), + [sym__semicolon] = ACTIONS(294), }, [29] = { - [sym_member_expression] = STATE(101), - [sym__lhs_expression] = STATE(102), - [sym__literal] = STATE(1167), - [sym_integer] = STATE(1167), - [sym_float] = STATE(1167), - [sym_bool] = STATE(1167), - [sym_string] = STATE(975), - [sym_null] = STATE(1167), - [sym_array] = STATE(1167), - [sym_map] = STATE(1167), - [sym_object] = STATE(1167), - [sym_pair] = STATE(1167), - [aux_sym_member_expression_repeat1] = STATE(27), - [ts_builtin_sym_end] = ACTIONS(244), - [sym_identifier] = ACTIONS(326), - [anon_sym_POUND] = ACTIONS(244), - [anon_sym_package] = ACTIONS(248), - [anon_sym_import] = ACTIONS(248), - [anon_sym_using] = ACTIONS(248), - [anon_sym_throw] = ACTIONS(248), - [anon_sym_LPAREN] = ACTIONS(244), - [anon_sym_RPAREN] = ACTIONS(244), - [anon_sym_switch] = ACTIONS(248), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_RBRACE] = ACTIONS(244), - [anon_sym_case] = ACTIONS(248), - [anon_sym_default] = ACTIONS(248), - [anon_sym_cast] = ACTIONS(248), - [anon_sym_COMMA] = ACTIONS(244), - [anon_sym_DOLLARtype] = ACTIONS(244), - [anon_sym_in] = ACTIONS(248), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(328), - [anon_sym_DASH_GT] = ACTIONS(244), - [anon_sym_AT] = ACTIONS(248), - [anon_sym_AT_COLON] = ACTIONS(244), - [anon_sym_if] = ACTIONS(248), - [anon_sym_else] = ACTIONS(248), - [anon_sym_new] = ACTIONS(248), - [anon_sym_TILDE] = ACTIONS(244), - [anon_sym_BANG] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_PLUS_PLUS] = ACTIONS(244), - [anon_sym_DASH_DASH] = ACTIONS(244), - [anon_sym_PERCENT] = ACTIONS(244), - [anon_sym_STAR] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(248), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_LT_LT] = ACTIONS(244), - [anon_sym_GT_GT] = ACTIONS(248), - [anon_sym_GT_GT_GT] = ACTIONS(244), - [anon_sym_AMP] = ACTIONS(248), - [anon_sym_PIPE] = ACTIONS(248), - [anon_sym_CARET] = ACTIONS(244), - [anon_sym_AMP_AMP] = ACTIONS(244), - [anon_sym_PIPE_PIPE] = ACTIONS(244), - [anon_sym_EQ_EQ] = ACTIONS(244), - [anon_sym_BANG_EQ] = ACTIONS(244), - [anon_sym_LT] = ACTIONS(248), - [anon_sym_LT_EQ] = ACTIONS(244), - [anon_sym_GT] = ACTIONS(248), - [anon_sym_GT_EQ] = ACTIONS(244), - [anon_sym_EQ_GT] = ACTIONS(244), - [anon_sym_QMARK_QMARK] = ACTIONS(244), - [anon_sym_EQ] = ACTIONS(248), - [sym__rangeOperator] = ACTIONS(244), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(248), - [anon_sym_final] = ACTIONS(248), - [anon_sym_abstract] = ACTIONS(248), - [anon_sym_class] = ACTIONS(248), - [anon_sym_extends] = ACTIONS(248), - [anon_sym_implements] = ACTIONS(248), - [anon_sym_interface] = ACTIONS(248), - [anon_sym_typedef] = ACTIONS(248), - [anon_sym_function] = ACTIONS(248), - [anon_sym_var] = ACTIONS(248), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(248), - [anon_sym_catch] = ACTIONS(248), - [anon_sym_continue] = ACTIONS(248), - [anon_sym_do] = ACTIONS(248), - [anon_sym_enum] = ACTIONS(248), - [anon_sym_extern] = ACTIONS(248), - [anon_sym_for] = ACTIONS(248), - [anon_sym_inline] = ACTIONS(248), - [anon_sym_macro] = ACTIONS(248), - [anon_sym_operator] = ACTIONS(248), - [anon_sym_overload] = ACTIONS(248), - [anon_sym_override] = ACTIONS(248), - [anon_sym_private] = ACTIONS(248), - [anon_sym_public] = ACTIONS(248), - [anon_sym_return] = ACTIONS(248), - [anon_sym_static] = ACTIONS(248), - [anon_sym_try] = ACTIONS(248), - [anon_sym_untyped] = ACTIONS(248), - [anon_sym_while] = ACTIONS(248), - [sym__semicolon] = ACTIONS(244), + [ts_builtin_sym_end] = ACTIONS(302), + [sym_identifier] = ACTIONS(304), + [anon_sym_POUND] = ACTIONS(302), + [anon_sym_package] = ACTIONS(304), + [anon_sym_import] = ACTIONS(304), + [anon_sym_using] = ACTIONS(304), + [anon_sym_throw] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_RPAREN] = ACTIONS(302), + [anon_sym_switch] = ACTIONS(304), + [anon_sym_LBRACE] = ACTIONS(302), + [anon_sym_RBRACE] = ACTIONS(302), + [anon_sym_case] = ACTIONS(304), + [anon_sym_COLON] = ACTIONS(302), + [anon_sym_default] = ACTIONS(304), + [anon_sym_cast] = ACTIONS(304), + [anon_sym_COMMA] = ACTIONS(302), + [anon_sym_DOLLARtype] = ACTIONS(302), + [anon_sym_in] = ACTIONS(304), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_this] = ACTIONS(304), + [aux_sym_member_expression_token1] = ACTIONS(304), + [anon_sym_QMARK] = ACTIONS(304), + [anon_sym_DASH_GT] = ACTIONS(302), + [anon_sym_AT] = ACTIONS(304), + [anon_sym_AT_COLON] = ACTIONS(302), + [anon_sym_if] = ACTIONS(304), + [anon_sym_else] = ACTIONS(304), + [anon_sym_new] = ACTIONS(304), + [sym__prefixUnaryOperator] = ACTIONS(304), + [sym__eitherUnaryOperator] = ACTIONS(302), + [sym__arithmetic_operator] = ACTIONS(304), + [sym__bitwise_operator] = ACTIONS(304), + [sym__logical_operator] = ACTIONS(302), + [sym__comparison_operator] = ACTIONS(304), + [sym__map_operator] = ACTIONS(302), + [sym__null_colalese_operator] = ACTIONS(302), + [anon_sym_EQ] = ACTIONS(304), + [sym__range_operator] = ACTIONS(302), + [anon_sym_null] = ACTIONS(304), + [anon_sym_dynamic] = ACTIONS(304), + [anon_sym_LT] = ACTIONS(304), + [anon_sym_final] = ACTIONS(304), + [anon_sym_abstract] = ACTIONS(304), + [anon_sym_class] = ACTIONS(304), + [anon_sym_extends] = ACTIONS(304), + [anon_sym_implements] = ACTIONS(304), + [anon_sym_interface] = ACTIONS(304), + [anon_sym_typedef] = ACTIONS(304), + [anon_sym_function] = ACTIONS(304), + [anon_sym_var] = ACTIONS(304), + [aux_sym_integer_token1] = ACTIONS(304), + [aux_sym_integer_token2] = ACTIONS(302), + [aux_sym_float_token1] = ACTIONS(304), + [aux_sym_float_token2] = ACTIONS(302), + [anon_sym_true] = ACTIONS(304), + [anon_sym_false] = ACTIONS(304), + [aux_sym_string_token1] = ACTIONS(302), + [aux_sym_string_token3] = ACTIONS(302), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(304), + [anon_sym_catch] = ACTIONS(304), + [anon_sym_continue] = ACTIONS(304), + [anon_sym_do] = ACTIONS(304), + [anon_sym_enum] = ACTIONS(304), + [anon_sym_extern] = ACTIONS(304), + [anon_sym_for] = ACTIONS(304), + [anon_sym_inline] = ACTIONS(304), + [anon_sym_macro] = ACTIONS(304), + [anon_sym_operator] = ACTIONS(304), + [anon_sym_overload] = ACTIONS(304), + [anon_sym_override] = ACTIONS(304), + [anon_sym_private] = ACTIONS(304), + [anon_sym_public] = ACTIONS(304), + [anon_sym_return] = ACTIONS(304), + [anon_sym_static] = ACTIONS(304), + [anon_sym_try] = ACTIONS(304), + [anon_sym_untyped] = ACTIONS(304), + [anon_sym_while] = ACTIONS(304), + [sym__semicolon] = ACTIONS(302), }, [30] = { - [sym_member_expression] = STATE(101), - [sym__lhs_expression] = STATE(102), - [sym__literal] = STATE(1167), - [sym_integer] = STATE(1167), - [sym_float] = STATE(1167), - [sym_bool] = STATE(1167), - [sym_string] = STATE(975), - [sym_null] = STATE(1167), - [sym_array] = STATE(1167), - [sym_map] = STATE(1167), - [sym_object] = STATE(1167), - [sym_pair] = STATE(1167), - [aux_sym_member_expression_repeat1] = STATE(27), - [ts_builtin_sym_end] = ACTIONS(256), - [sym_identifier] = ACTIONS(326), - [anon_sym_POUND] = ACTIONS(256), - [anon_sym_package] = ACTIONS(258), - [anon_sym_import] = ACTIONS(258), - [anon_sym_using] = ACTIONS(258), - [anon_sym_throw] = ACTIONS(258), - [anon_sym_LPAREN] = ACTIONS(256), - [anon_sym_RPAREN] = ACTIONS(256), - [anon_sym_switch] = ACTIONS(258), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_RBRACE] = ACTIONS(256), - [anon_sym_case] = ACTIONS(258), - [anon_sym_default] = ACTIONS(258), - [anon_sym_cast] = ACTIONS(258), - [anon_sym_COMMA] = ACTIONS(256), - [anon_sym_DOLLARtype] = ACTIONS(256), - [anon_sym_in] = ACTIONS(258), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(328), - [anon_sym_DASH_GT] = ACTIONS(256), - [anon_sym_AT] = ACTIONS(258), - [anon_sym_AT_COLON] = ACTIONS(256), - [anon_sym_if] = ACTIONS(258), - [anon_sym_else] = ACTIONS(258), - [anon_sym_new] = ACTIONS(258), - [anon_sym_TILDE] = ACTIONS(256), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_DASH] = ACTIONS(258), - [anon_sym_PLUS_PLUS] = ACTIONS(256), - [anon_sym_DASH_DASH] = ACTIONS(256), - [anon_sym_PERCENT] = ACTIONS(256), - [anon_sym_STAR] = ACTIONS(256), - [anon_sym_SLASH] = ACTIONS(258), - [anon_sym_PLUS] = ACTIONS(258), - [anon_sym_LT_LT] = ACTIONS(256), - [anon_sym_GT_GT] = ACTIONS(258), - [anon_sym_GT_GT_GT] = ACTIONS(256), - [anon_sym_AMP] = ACTIONS(258), - [anon_sym_PIPE] = ACTIONS(258), - [anon_sym_CARET] = ACTIONS(256), - [anon_sym_AMP_AMP] = ACTIONS(256), - [anon_sym_PIPE_PIPE] = ACTIONS(256), - [anon_sym_EQ_EQ] = ACTIONS(256), - [anon_sym_BANG_EQ] = ACTIONS(256), - [anon_sym_LT] = ACTIONS(258), - [anon_sym_LT_EQ] = ACTIONS(256), - [anon_sym_GT] = ACTIONS(258), - [anon_sym_GT_EQ] = ACTIONS(256), - [anon_sym_EQ_GT] = ACTIONS(256), - [anon_sym_QMARK_QMARK] = ACTIONS(256), - [anon_sym_EQ] = ACTIONS(258), - [sym__rangeOperator] = ACTIONS(256), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(258), - [anon_sym_final] = ACTIONS(258), - [anon_sym_abstract] = ACTIONS(258), - [anon_sym_class] = ACTIONS(258), - [anon_sym_extends] = ACTIONS(258), - [anon_sym_implements] = ACTIONS(258), - [anon_sym_interface] = ACTIONS(258), - [anon_sym_typedef] = ACTIONS(258), - [anon_sym_function] = ACTIONS(258), - [anon_sym_var] = ACTIONS(258), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(258), - [anon_sym_catch] = ACTIONS(258), - [anon_sym_continue] = ACTIONS(258), - [anon_sym_do] = ACTIONS(258), - [anon_sym_enum] = ACTIONS(258), - [anon_sym_extern] = ACTIONS(258), - [anon_sym_for] = ACTIONS(258), - [anon_sym_inline] = ACTIONS(258), - [anon_sym_macro] = ACTIONS(258), - [anon_sym_operator] = ACTIONS(258), - [anon_sym_overload] = ACTIONS(258), - [anon_sym_override] = ACTIONS(258), - [anon_sym_private] = ACTIONS(258), - [anon_sym_public] = ACTIONS(258), - [anon_sym_return] = ACTIONS(258), - [anon_sym_static] = ACTIONS(258), - [anon_sym_try] = ACTIONS(258), - [anon_sym_untyped] = ACTIONS(258), - [anon_sym_while] = ACTIONS(258), - [sym__semicolon] = ACTIONS(256), + [ts_builtin_sym_end] = ACTIONS(306), + [sym_identifier] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(306), + [anon_sym_package] = ACTIONS(308), + [anon_sym_import] = ACTIONS(308), + [anon_sym_using] = ACTIONS(308), + [anon_sym_throw] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(294), + [anon_sym_RPAREN] = ACTIONS(306), + [anon_sym_switch] = ACTIONS(308), + [anon_sym_LBRACE] = ACTIONS(306), + [anon_sym_RBRACE] = ACTIONS(306), + [anon_sym_case] = ACTIONS(308), + [anon_sym_COLON] = ACTIONS(306), + [anon_sym_default] = ACTIONS(308), + [anon_sym_cast] = ACTIONS(308), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_DOLLARtype] = ACTIONS(306), + [anon_sym_in] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(306), + [anon_sym_this] = ACTIONS(308), + [aux_sym_member_expression_token1] = ACTIONS(308), + [anon_sym_QMARK] = ACTIONS(308), + [anon_sym_AT] = ACTIONS(308), + [anon_sym_AT_COLON] = ACTIONS(306), + [anon_sym_if] = ACTIONS(308), + [anon_sym_else] = ACTIONS(308), + [anon_sym_new] = ACTIONS(308), + [sym__prefixUnaryOperator] = ACTIONS(308), + [sym__eitherUnaryOperator] = ACTIONS(306), + [sym__arithmetic_operator] = ACTIONS(308), + [sym__bitwise_operator] = ACTIONS(308), + [sym__logical_operator] = ACTIONS(306), + [sym__comparison_operator] = ACTIONS(308), + [sym__map_operator] = ACTIONS(306), + [sym__null_colalese_operator] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(308), + [sym__range_operator] = ACTIONS(306), + [anon_sym_null] = ACTIONS(308), + [anon_sym_dynamic] = ACTIONS(308), + [anon_sym_LT] = ACTIONS(296), + [anon_sym_final] = ACTIONS(308), + [anon_sym_abstract] = ACTIONS(308), + [anon_sym_class] = ACTIONS(308), + [anon_sym_extends] = ACTIONS(308), + [anon_sym_implements] = ACTIONS(308), + [anon_sym_interface] = ACTIONS(308), + [anon_sym_typedef] = ACTIONS(308), + [anon_sym_function] = ACTIONS(308), + [anon_sym_var] = ACTIONS(308), + [aux_sym_integer_token1] = ACTIONS(308), + [aux_sym_integer_token2] = ACTIONS(306), + [aux_sym_float_token1] = ACTIONS(308), + [aux_sym_float_token2] = ACTIONS(306), + [anon_sym_true] = ACTIONS(308), + [anon_sym_false] = ACTIONS(308), + [aux_sym_string_token1] = ACTIONS(306), + [aux_sym_string_token3] = ACTIONS(306), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(308), + [anon_sym_catch] = ACTIONS(308), + [anon_sym_continue] = ACTIONS(308), + [anon_sym_do] = ACTIONS(308), + [anon_sym_enum] = ACTIONS(308), + [anon_sym_extern] = ACTIONS(308), + [anon_sym_for] = ACTIONS(308), + [anon_sym_inline] = ACTIONS(308), + [anon_sym_macro] = ACTIONS(308), + [anon_sym_operator] = ACTIONS(308), + [anon_sym_overload] = ACTIONS(308), + [anon_sym_override] = ACTIONS(308), + [anon_sym_private] = ACTIONS(308), + [anon_sym_public] = ACTIONS(308), + [anon_sym_return] = ACTIONS(308), + [anon_sym_static] = ACTIONS(308), + [anon_sym_try] = ACTIONS(308), + [anon_sym_untyped] = ACTIONS(308), + [anon_sym_while] = ACTIONS(308), + [sym__semicolon] = ACTIONS(306), }, [31] = { - [sym_operator] = STATE(784), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [aux_sym_expression_repeat1] = STATE(36), - [ts_builtin_sym_end] = ACTIONS(336), - [sym_identifier] = ACTIONS(338), - [anon_sym_POUND] = ACTIONS(336), - [anon_sym_package] = ACTIONS(338), - [anon_sym_import] = ACTIONS(338), - [anon_sym_using] = ACTIONS(338), - [anon_sym_throw] = ACTIONS(338), - [anon_sym_LPAREN] = ACTIONS(336), - [anon_sym_switch] = ACTIONS(338), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_RBRACE] = ACTIONS(336), - [anon_sym_case] = ACTIONS(338), - [anon_sym_default] = ACTIONS(338), - [anon_sym_cast] = ACTIONS(338), - [anon_sym_COMMA] = ACTIONS(336), - [anon_sym_DOLLARtype] = ACTIONS(336), - [anon_sym_in] = ACTIONS(338), - [anon_sym_LBRACK] = ACTIONS(336), - [anon_sym_this] = ACTIONS(338), - [anon_sym_DOT] = ACTIONS(338), - [anon_sym_QMARK] = ACTIONS(338), - [anon_sym_AT] = ACTIONS(338), - [anon_sym_AT_COLON] = ACTIONS(336), - [anon_sym_if] = ACTIONS(338), - [anon_sym_else] = ACTIONS(338), - [anon_sym_new] = ACTIONS(338), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(338), - [anon_sym_dynamic] = ACTIONS(338), - [anon_sym_final] = ACTIONS(338), - [anon_sym_abstract] = ACTIONS(338), - [anon_sym_class] = ACTIONS(338), - [anon_sym_extends] = ACTIONS(338), - [anon_sym_implements] = ACTIONS(338), - [anon_sym_interface] = ACTIONS(338), - [anon_sym_typedef] = ACTIONS(338), - [anon_sym_function] = ACTIONS(338), - [anon_sym_var] = ACTIONS(338), - [aux_sym_integer_token1] = ACTIONS(338), - [aux_sym_integer_token2] = ACTIONS(336), - [aux_sym_float_token1] = ACTIONS(338), - [aux_sym_float_token2] = ACTIONS(336), - [anon_sym_true] = ACTIONS(338), - [anon_sym_false] = ACTIONS(338), - [aux_sym_string_token1] = ACTIONS(336), - [aux_sym_string_token3] = ACTIONS(336), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(338), - [anon_sym_catch] = ACTIONS(338), - [anon_sym_continue] = ACTIONS(338), - [anon_sym_do] = ACTIONS(338), - [anon_sym_enum] = ACTIONS(338), - [anon_sym_extern] = ACTIONS(338), - [anon_sym_for] = ACTIONS(338), - [anon_sym_inline] = ACTIONS(338), - [anon_sym_macro] = ACTIONS(338), - [anon_sym_operator] = ACTIONS(338), - [anon_sym_overload] = ACTIONS(338), - [anon_sym_override] = ACTIONS(338), - [anon_sym_private] = ACTIONS(338), - [anon_sym_public] = ACTIONS(338), - [anon_sym_return] = ACTIONS(338), - [anon_sym_static] = ACTIONS(338), - [anon_sym_try] = ACTIONS(338), - [anon_sym_untyped] = ACTIONS(338), - [anon_sym_while] = ACTIONS(338), - [sym__semicolon] = ACTIONS(336), + [sym__binaryOperator] = STATE(362), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(310), + [sym_identifier] = ACTIONS(312), + [anon_sym_POUND] = ACTIONS(310), + [anon_sym_package] = ACTIONS(312), + [anon_sym_import] = ACTIONS(312), + [anon_sym_using] = ACTIONS(312), + [anon_sym_throw] = ACTIONS(312), + [anon_sym_LPAREN] = ACTIONS(310), + [anon_sym_switch] = ACTIONS(312), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_RBRACE] = ACTIONS(310), + [anon_sym_case] = ACTIONS(312), + [anon_sym_default] = ACTIONS(312), + [anon_sym_cast] = ACTIONS(312), + [anon_sym_COMMA] = ACTIONS(310), + [anon_sym_DOLLARtype] = ACTIONS(310), + [anon_sym_in] = ACTIONS(312), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_this] = ACTIONS(312), + [aux_sym_member_expression_token1] = ACTIONS(312), + [anon_sym_QMARK] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(312), + [anon_sym_AT_COLON] = ACTIONS(310), + [anon_sym_if] = ACTIONS(312), + [anon_sym_else] = ACTIONS(312), + [anon_sym_new] = ACTIONS(312), + [sym__prefixUnaryOperator] = ACTIONS(312), + [sym__eitherUnaryOperator] = ACTIONS(310), + [sym__arithmetic_operator] = ACTIONS(312), + [sym__bitwise_operator] = ACTIONS(312), + [sym__logical_operator] = ACTIONS(310), + [sym__comparison_operator] = ACTIONS(312), + [sym__map_operator] = ACTIONS(310), + [sym__null_colalese_operator] = ACTIONS(310), + [anon_sym_EQ] = ACTIONS(312), + [sym__range_operator] = ACTIONS(310), + [anon_sym_null] = ACTIONS(312), + [anon_sym_dynamic] = ACTIONS(312), + [anon_sym_final] = ACTIONS(312), + [anon_sym_abstract] = ACTIONS(312), + [anon_sym_class] = ACTIONS(312), + [anon_sym_extends] = ACTIONS(312), + [anon_sym_implements] = ACTIONS(312), + [anon_sym_interface] = ACTIONS(312), + [anon_sym_typedef] = ACTIONS(312), + [anon_sym_function] = ACTIONS(312), + [anon_sym_var] = ACTIONS(312), + [aux_sym_integer_token1] = ACTIONS(312), + [aux_sym_integer_token2] = ACTIONS(310), + [aux_sym_float_token1] = ACTIONS(312), + [aux_sym_float_token2] = ACTIONS(310), + [anon_sym_true] = ACTIONS(312), + [anon_sym_false] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [aux_sym_string_token3] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(312), + [anon_sym_catch] = ACTIONS(312), + [anon_sym_continue] = ACTIONS(312), + [anon_sym_do] = ACTIONS(312), + [anon_sym_enum] = ACTIONS(312), + [anon_sym_extern] = ACTIONS(312), + [anon_sym_for] = ACTIONS(312), + [anon_sym_inline] = ACTIONS(312), + [anon_sym_macro] = ACTIONS(312), + [anon_sym_operator] = ACTIONS(312), + [anon_sym_overload] = ACTIONS(312), + [anon_sym_override] = ACTIONS(312), + [anon_sym_private] = ACTIONS(312), + [anon_sym_public] = ACTIONS(312), + [anon_sym_return] = ACTIONS(312), + [anon_sym_static] = ACTIONS(312), + [anon_sym_try] = ACTIONS(312), + [anon_sym_untyped] = ACTIONS(312), + [anon_sym_while] = ACTIONS(312), + [sym__semicolon] = ACTIONS(310), }, [32] = { - [sym_member_expression] = STATE(60), - [sym__lhs_expression] = STATE(72), - [sym__literal] = STATE(1124), - [sym_integer] = STATE(1124), - [sym_float] = STATE(1124), - [sym_bool] = STATE(1124), - [sym_string] = STATE(975), - [sym_null] = STATE(1124), - [sym_array] = STATE(1124), - [sym_map] = STATE(1124), - [sym_object] = STATE(1124), - [sym_pair] = STATE(1124), - [aux_sym_member_expression_repeat1] = STATE(23), - [ts_builtin_sym_end] = ACTIONS(244), - [sym_identifier] = ACTIONS(318), - [anon_sym_POUND] = ACTIONS(244), - [anon_sym_package] = ACTIONS(248), - [anon_sym_import] = ACTIONS(248), - [anon_sym_using] = ACTIONS(248), - [anon_sym_throw] = ACTIONS(248), - [anon_sym_LPAREN] = ACTIONS(244), - [anon_sym_RPAREN] = ACTIONS(244), - [anon_sym_switch] = ACTIONS(248), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_RBRACE] = ACTIONS(244), - [anon_sym_case] = ACTIONS(248), - [anon_sym_default] = ACTIONS(248), - [anon_sym_cast] = ACTIONS(248), - [anon_sym_COMMA] = ACTIONS(244), - [anon_sym_DOLLARtype] = ACTIONS(244), - [anon_sym_in] = ACTIONS(248), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_RBRACK] = ACTIONS(244), - [anon_sym_this] = ACTIONS(236), - [anon_sym_AT] = ACTIONS(248), - [anon_sym_AT_COLON] = ACTIONS(244), - [anon_sym_if] = ACTIONS(248), - [anon_sym_else] = ACTIONS(248), - [anon_sym_new] = ACTIONS(248), - [anon_sym_TILDE] = ACTIONS(244), - [anon_sym_BANG] = ACTIONS(248), - [anon_sym_DASH] = ACTIONS(248), - [anon_sym_PLUS_PLUS] = ACTIONS(244), - [anon_sym_DASH_DASH] = ACTIONS(244), - [anon_sym_PERCENT] = ACTIONS(244), - [anon_sym_STAR] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(248), - [anon_sym_PLUS] = ACTIONS(248), - [anon_sym_LT_LT] = ACTIONS(244), - [anon_sym_GT_GT] = ACTIONS(248), - [anon_sym_GT_GT_GT] = ACTIONS(244), - [anon_sym_AMP] = ACTIONS(248), - [anon_sym_PIPE] = ACTIONS(248), - [anon_sym_CARET] = ACTIONS(244), - [anon_sym_AMP_AMP] = ACTIONS(244), - [anon_sym_PIPE_PIPE] = ACTIONS(244), - [anon_sym_EQ_EQ] = ACTIONS(244), - [anon_sym_BANG_EQ] = ACTIONS(244), - [anon_sym_LT] = ACTIONS(248), - [anon_sym_LT_EQ] = ACTIONS(244), - [anon_sym_GT] = ACTIONS(248), - [anon_sym_GT_EQ] = ACTIONS(244), - [anon_sym_EQ_GT] = ACTIONS(244), - [anon_sym_QMARK_QMARK] = ACTIONS(244), - [anon_sym_EQ] = ACTIONS(248), - [sym__rangeOperator] = ACTIONS(244), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(248), - [anon_sym_final] = ACTIONS(248), - [anon_sym_abstract] = ACTIONS(248), - [anon_sym_class] = ACTIONS(248), - [anon_sym_extends] = ACTIONS(248), - [anon_sym_implements] = ACTIONS(248), - [anon_sym_interface] = ACTIONS(248), - [anon_sym_typedef] = ACTIONS(248), - [anon_sym_function] = ACTIONS(248), - [anon_sym_var] = ACTIONS(248), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(248), - [anon_sym_catch] = ACTIONS(248), - [anon_sym_continue] = ACTIONS(248), - [anon_sym_do] = ACTIONS(248), - [anon_sym_enum] = ACTIONS(248), - [anon_sym_extern] = ACTIONS(248), - [anon_sym_for] = ACTIONS(248), - [anon_sym_inline] = ACTIONS(248), - [anon_sym_macro] = ACTIONS(248), - [anon_sym_operator] = ACTIONS(248), - [anon_sym_overload] = ACTIONS(248), - [anon_sym_override] = ACTIONS(248), - [anon_sym_private] = ACTIONS(248), - [anon_sym_public] = ACTIONS(248), - [anon_sym_return] = ACTIONS(248), - [anon_sym_static] = ACTIONS(248), - [anon_sym_try] = ACTIONS(248), - [anon_sym_untyped] = ACTIONS(248), - [anon_sym_while] = ACTIONS(248), - [sym__semicolon] = ACTIONS(244), + [sym__binaryOperator] = STATE(362), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(310), + [sym_identifier] = ACTIONS(312), + [anon_sym_POUND] = ACTIONS(310), + [anon_sym_package] = ACTIONS(312), + [anon_sym_import] = ACTIONS(312), + [anon_sym_using] = ACTIONS(312), + [anon_sym_throw] = ACTIONS(312), + [anon_sym_LPAREN] = ACTIONS(310), + [anon_sym_switch] = ACTIONS(312), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_RBRACE] = ACTIONS(310), + [anon_sym_case] = ACTIONS(312), + [anon_sym_default] = ACTIONS(312), + [anon_sym_cast] = ACTIONS(312), + [anon_sym_COMMA] = ACTIONS(310), + [anon_sym_DOLLARtype] = ACTIONS(310), + [anon_sym_in] = ACTIONS(312), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_this] = ACTIONS(312), + [aux_sym_member_expression_token1] = ACTIONS(312), + [anon_sym_QMARK] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(312), + [anon_sym_AT_COLON] = ACTIONS(310), + [anon_sym_if] = ACTIONS(312), + [anon_sym_else] = ACTIONS(312), + [anon_sym_new] = ACTIONS(312), + [sym__prefixUnaryOperator] = ACTIONS(312), + [sym__eitherUnaryOperator] = ACTIONS(310), + [sym__arithmetic_operator] = ACTIONS(312), + [sym__bitwise_operator] = ACTIONS(312), + [sym__logical_operator] = ACTIONS(310), + [sym__comparison_operator] = ACTIONS(312), + [sym__map_operator] = ACTIONS(310), + [sym__null_colalese_operator] = ACTIONS(310), + [anon_sym_EQ] = ACTIONS(312), + [sym__range_operator] = ACTIONS(310), + [anon_sym_null] = ACTIONS(312), + [anon_sym_dynamic] = ACTIONS(312), + [anon_sym_final] = ACTIONS(312), + [anon_sym_abstract] = ACTIONS(312), + [anon_sym_class] = ACTIONS(312), + [anon_sym_extends] = ACTIONS(312), + [anon_sym_implements] = ACTIONS(312), + [anon_sym_interface] = ACTIONS(312), + [anon_sym_typedef] = ACTIONS(312), + [anon_sym_function] = ACTIONS(312), + [anon_sym_var] = ACTIONS(312), + [aux_sym_integer_token1] = ACTIONS(312), + [aux_sym_integer_token2] = ACTIONS(310), + [aux_sym_float_token1] = ACTIONS(312), + [aux_sym_float_token2] = ACTIONS(310), + [anon_sym_true] = ACTIONS(312), + [anon_sym_false] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [aux_sym_string_token3] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(312), + [anon_sym_catch] = ACTIONS(312), + [anon_sym_continue] = ACTIONS(312), + [anon_sym_do] = ACTIONS(312), + [anon_sym_enum] = ACTIONS(312), + [anon_sym_extern] = ACTIONS(312), + [anon_sym_for] = ACTIONS(312), + [anon_sym_inline] = ACTIONS(312), + [anon_sym_macro] = ACTIONS(312), + [anon_sym_operator] = ACTIONS(312), + [anon_sym_overload] = ACTIONS(312), + [anon_sym_override] = ACTIONS(312), + [anon_sym_private] = ACTIONS(312), + [anon_sym_public] = ACTIONS(312), + [anon_sym_return] = ACTIONS(312), + [anon_sym_static] = ACTIONS(312), + [anon_sym_try] = ACTIONS(312), + [anon_sym_untyped] = ACTIONS(312), + [anon_sym_while] = ACTIONS(312), + [sym__semicolon] = ACTIONS(310), }, [33] = { - [sym_member_expression] = STATE(60), - [sym__lhs_expression] = STATE(72), - [sym__literal] = STATE(1124), - [sym_integer] = STATE(1124), - [sym_float] = STATE(1124), - [sym_bool] = STATE(1124), - [sym_string] = STATE(975), - [sym_null] = STATE(1124), - [sym_array] = STATE(1124), - [sym_map] = STATE(1124), - [sym_object] = STATE(1124), - [sym_pair] = STATE(1124), - [aux_sym_member_expression_repeat1] = STATE(23), - [ts_builtin_sym_end] = ACTIONS(252), - [sym_identifier] = ACTIONS(318), - [anon_sym_POUND] = ACTIONS(252), - [anon_sym_package] = ACTIONS(254), - [anon_sym_import] = ACTIONS(254), - [anon_sym_using] = ACTIONS(254), - [anon_sym_throw] = ACTIONS(254), - [anon_sym_LPAREN] = ACTIONS(252), - [anon_sym_RPAREN] = ACTIONS(252), - [anon_sym_switch] = ACTIONS(254), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_RBRACE] = ACTIONS(252), - [anon_sym_case] = ACTIONS(254), - [anon_sym_default] = ACTIONS(254), - [anon_sym_cast] = ACTIONS(254), - [anon_sym_COMMA] = ACTIONS(252), - [anon_sym_DOLLARtype] = ACTIONS(252), - [anon_sym_in] = ACTIONS(254), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_RBRACK] = ACTIONS(252), - [anon_sym_this] = ACTIONS(236), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_AT_COLON] = ACTIONS(252), - [anon_sym_if] = ACTIONS(254), - [anon_sym_else] = ACTIONS(254), - [anon_sym_new] = ACTIONS(254), - [anon_sym_TILDE] = ACTIONS(252), - [anon_sym_BANG] = ACTIONS(254), - [anon_sym_DASH] = ACTIONS(254), - [anon_sym_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(252), - [anon_sym_PERCENT] = ACTIONS(252), - [anon_sym_STAR] = ACTIONS(252), - [anon_sym_SLASH] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(254), - [anon_sym_LT_LT] = ACTIONS(252), - [anon_sym_GT_GT] = ACTIONS(254), - [anon_sym_GT_GT_GT] = ACTIONS(252), - [anon_sym_AMP] = ACTIONS(254), - [anon_sym_PIPE] = ACTIONS(254), - [anon_sym_CARET] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ] = ACTIONS(252), - [anon_sym_LT] = ACTIONS(254), - [anon_sym_LT_EQ] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(254), - [anon_sym_GT_EQ] = ACTIONS(252), - [anon_sym_EQ_GT] = ACTIONS(252), - [anon_sym_QMARK_QMARK] = ACTIONS(252), - [anon_sym_EQ] = ACTIONS(254), - [sym__rangeOperator] = ACTIONS(252), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(254), - [anon_sym_final] = ACTIONS(254), - [anon_sym_abstract] = ACTIONS(254), - [anon_sym_class] = ACTIONS(254), - [anon_sym_extends] = ACTIONS(254), - [anon_sym_implements] = ACTIONS(254), - [anon_sym_interface] = ACTIONS(254), - [anon_sym_typedef] = ACTIONS(254), - [anon_sym_function] = ACTIONS(254), - [anon_sym_var] = ACTIONS(254), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(254), - [anon_sym_catch] = ACTIONS(254), - [anon_sym_continue] = ACTIONS(254), - [anon_sym_do] = ACTIONS(254), - [anon_sym_enum] = ACTIONS(254), - [anon_sym_extern] = ACTIONS(254), - [anon_sym_for] = ACTIONS(254), - [anon_sym_inline] = ACTIONS(254), - [anon_sym_macro] = ACTIONS(254), - [anon_sym_operator] = ACTIONS(254), - [anon_sym_overload] = ACTIONS(254), - [anon_sym_override] = ACTIONS(254), - [anon_sym_private] = ACTIONS(254), - [anon_sym_public] = ACTIONS(254), - [anon_sym_return] = ACTIONS(254), - [anon_sym_static] = ACTIONS(254), - [anon_sym_try] = ACTIONS(254), - [anon_sym_untyped] = ACTIONS(254), - [anon_sym_while] = ACTIONS(254), - [sym__semicolon] = ACTIONS(252), + [sym__binaryOperator] = STATE(362), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(314), + [sym_identifier] = ACTIONS(316), + [anon_sym_POUND] = ACTIONS(314), + [anon_sym_package] = ACTIONS(316), + [anon_sym_import] = ACTIONS(316), + [anon_sym_using] = ACTIONS(316), + [anon_sym_throw] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_switch] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(314), + [anon_sym_RBRACE] = ACTIONS(314), + [anon_sym_case] = ACTIONS(316), + [anon_sym_default] = ACTIONS(316), + [anon_sym_cast] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(314), + [anon_sym_DOLLARtype] = ACTIONS(314), + [anon_sym_in] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_this] = ACTIONS(316), + [aux_sym_member_expression_token1] = ACTIONS(316), + [anon_sym_QMARK] = ACTIONS(318), + [anon_sym_AT] = ACTIONS(316), + [anon_sym_AT_COLON] = ACTIONS(314), + [anon_sym_if] = ACTIONS(316), + [anon_sym_else] = ACTIONS(316), + [anon_sym_new] = ACTIONS(316), + [sym__prefixUnaryOperator] = ACTIONS(316), + [sym__eitherUnaryOperator] = ACTIONS(314), + [sym__arithmetic_operator] = ACTIONS(320), + [sym__bitwise_operator] = ACTIONS(320), + [sym__logical_operator] = ACTIONS(322), + [sym__comparison_operator] = ACTIONS(324), + [sym__map_operator] = ACTIONS(322), + [sym__null_colalese_operator] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(324), + [sym__range_operator] = ACTIONS(322), + [anon_sym_null] = ACTIONS(316), + [anon_sym_dynamic] = ACTIONS(316), + [anon_sym_final] = ACTIONS(316), + [anon_sym_abstract] = ACTIONS(316), + [anon_sym_class] = ACTIONS(316), + [anon_sym_extends] = ACTIONS(316), + [anon_sym_implements] = ACTIONS(316), + [anon_sym_interface] = ACTIONS(316), + [anon_sym_typedef] = ACTIONS(316), + [anon_sym_function] = ACTIONS(316), + [anon_sym_var] = ACTIONS(316), + [aux_sym_integer_token1] = ACTIONS(316), + [aux_sym_integer_token2] = ACTIONS(314), + [aux_sym_float_token1] = ACTIONS(316), + [aux_sym_float_token2] = ACTIONS(314), + [anon_sym_true] = ACTIONS(316), + [anon_sym_false] = ACTIONS(316), + [aux_sym_string_token1] = ACTIONS(314), + [aux_sym_string_token3] = ACTIONS(314), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(316), + [anon_sym_catch] = ACTIONS(316), + [anon_sym_continue] = ACTIONS(316), + [anon_sym_do] = ACTIONS(316), + [anon_sym_enum] = ACTIONS(316), + [anon_sym_extern] = ACTIONS(316), + [anon_sym_for] = ACTIONS(316), + [anon_sym_inline] = ACTIONS(316), + [anon_sym_macro] = ACTIONS(316), + [anon_sym_operator] = ACTIONS(316), + [anon_sym_overload] = ACTIONS(316), + [anon_sym_override] = ACTIONS(316), + [anon_sym_private] = ACTIONS(316), + [anon_sym_public] = ACTIONS(316), + [anon_sym_return] = ACTIONS(316), + [anon_sym_static] = ACTIONS(316), + [anon_sym_try] = ACTIONS(316), + [anon_sym_untyped] = ACTIONS(316), + [anon_sym_while] = ACTIONS(316), + [sym__semicolon] = ACTIONS(314), }, [34] = { - [sym_member_expression] = STATE(101), - [sym__lhs_expression] = STATE(102), - [sym__literal] = STATE(1167), - [sym_integer] = STATE(1167), - [sym_float] = STATE(1167), - [sym_bool] = STATE(1167), - [sym_string] = STATE(975), - [sym_null] = STATE(1167), - [sym_array] = STATE(1167), - [sym_map] = STATE(1167), - [sym_object] = STATE(1167), - [sym_pair] = STATE(1167), - [aux_sym_member_expression_repeat1] = STATE(27), - [ts_builtin_sym_end] = ACTIONS(252), - [sym_identifier] = ACTIONS(326), - [anon_sym_POUND] = ACTIONS(252), - [anon_sym_package] = ACTIONS(254), - [anon_sym_import] = ACTIONS(254), - [anon_sym_using] = ACTIONS(254), - [anon_sym_throw] = ACTIONS(254), - [anon_sym_LPAREN] = ACTIONS(252), - [anon_sym_RPAREN] = ACTIONS(252), - [anon_sym_switch] = ACTIONS(254), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_RBRACE] = ACTIONS(252), - [anon_sym_case] = ACTIONS(254), - [anon_sym_default] = ACTIONS(254), - [anon_sym_cast] = ACTIONS(254), - [anon_sym_COMMA] = ACTIONS(252), - [anon_sym_DOLLARtype] = ACTIONS(252), - [anon_sym_in] = ACTIONS(254), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(328), - [anon_sym_DASH_GT] = ACTIONS(252), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_AT_COLON] = ACTIONS(252), - [anon_sym_if] = ACTIONS(254), - [anon_sym_else] = ACTIONS(254), - [anon_sym_new] = ACTIONS(254), - [anon_sym_TILDE] = ACTIONS(252), - [anon_sym_BANG] = ACTIONS(254), - [anon_sym_DASH] = ACTIONS(254), - [anon_sym_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(252), - [anon_sym_PERCENT] = ACTIONS(252), - [anon_sym_STAR] = ACTIONS(252), - [anon_sym_SLASH] = ACTIONS(254), - [anon_sym_PLUS] = ACTIONS(254), - [anon_sym_LT_LT] = ACTIONS(252), - [anon_sym_GT_GT] = ACTIONS(254), - [anon_sym_GT_GT_GT] = ACTIONS(252), - [anon_sym_AMP] = ACTIONS(254), - [anon_sym_PIPE] = ACTIONS(254), - [anon_sym_CARET] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ] = ACTIONS(252), - [anon_sym_LT] = ACTIONS(254), - [anon_sym_LT_EQ] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(254), - [anon_sym_GT_EQ] = ACTIONS(252), - [anon_sym_EQ_GT] = ACTIONS(252), - [anon_sym_QMARK_QMARK] = ACTIONS(252), - [anon_sym_EQ] = ACTIONS(254), - [sym__rangeOperator] = ACTIONS(252), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(254), - [anon_sym_final] = ACTIONS(254), - [anon_sym_abstract] = ACTIONS(254), - [anon_sym_class] = ACTIONS(254), - [anon_sym_extends] = ACTIONS(254), - [anon_sym_implements] = ACTIONS(254), - [anon_sym_interface] = ACTIONS(254), - [anon_sym_typedef] = ACTIONS(254), - [anon_sym_function] = ACTIONS(254), - [anon_sym_var] = ACTIONS(254), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(254), - [anon_sym_catch] = ACTIONS(254), - [anon_sym_continue] = ACTIONS(254), - [anon_sym_do] = ACTIONS(254), - [anon_sym_enum] = ACTIONS(254), - [anon_sym_extern] = ACTIONS(254), - [anon_sym_for] = ACTIONS(254), - [anon_sym_inline] = ACTIONS(254), - [anon_sym_macro] = ACTIONS(254), - [anon_sym_operator] = ACTIONS(254), - [anon_sym_overload] = ACTIONS(254), - [anon_sym_override] = ACTIONS(254), - [anon_sym_private] = ACTIONS(254), - [anon_sym_public] = ACTIONS(254), - [anon_sym_return] = ACTIONS(254), - [anon_sym_static] = ACTIONS(254), - [anon_sym_try] = ACTIONS(254), - [anon_sym_untyped] = ACTIONS(254), - [anon_sym_while] = ACTIONS(254), - [sym__semicolon] = ACTIONS(252), + [sym__binaryOperator] = STATE(362), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(314), + [sym_identifier] = ACTIONS(316), + [anon_sym_POUND] = ACTIONS(314), + [anon_sym_package] = ACTIONS(316), + [anon_sym_import] = ACTIONS(316), + [anon_sym_using] = ACTIONS(316), + [anon_sym_throw] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_switch] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(314), + [anon_sym_RBRACE] = ACTIONS(314), + [anon_sym_case] = ACTIONS(316), + [anon_sym_default] = ACTIONS(316), + [anon_sym_cast] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(314), + [anon_sym_DOLLARtype] = ACTIONS(314), + [anon_sym_in] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_this] = ACTIONS(316), + [aux_sym_member_expression_token1] = ACTIONS(316), + [anon_sym_QMARK] = ACTIONS(318), + [anon_sym_AT] = ACTIONS(316), + [anon_sym_AT_COLON] = ACTIONS(314), + [anon_sym_if] = ACTIONS(316), + [anon_sym_else] = ACTIONS(316), + [anon_sym_new] = ACTIONS(316), + [sym__prefixUnaryOperator] = ACTIONS(316), + [sym__eitherUnaryOperator] = ACTIONS(314), + [sym__arithmetic_operator] = ACTIONS(320), + [sym__bitwise_operator] = ACTIONS(320), + [sym__logical_operator] = ACTIONS(322), + [sym__comparison_operator] = ACTIONS(324), + [sym__map_operator] = ACTIONS(322), + [sym__null_colalese_operator] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(324), + [sym__range_operator] = ACTIONS(322), + [anon_sym_null] = ACTIONS(316), + [anon_sym_dynamic] = ACTIONS(316), + [anon_sym_final] = ACTIONS(316), + [anon_sym_abstract] = ACTIONS(316), + [anon_sym_class] = ACTIONS(316), + [anon_sym_extends] = ACTIONS(316), + [anon_sym_implements] = ACTIONS(316), + [anon_sym_interface] = ACTIONS(316), + [anon_sym_typedef] = ACTIONS(316), + [anon_sym_function] = ACTIONS(316), + [anon_sym_var] = ACTIONS(316), + [aux_sym_integer_token1] = ACTIONS(316), + [aux_sym_integer_token2] = ACTIONS(314), + [aux_sym_float_token1] = ACTIONS(316), + [aux_sym_float_token2] = ACTIONS(314), + [anon_sym_true] = ACTIONS(316), + [anon_sym_false] = ACTIONS(316), + [aux_sym_string_token1] = ACTIONS(314), + [aux_sym_string_token3] = ACTIONS(314), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(316), + [anon_sym_catch] = ACTIONS(316), + [anon_sym_continue] = ACTIONS(316), + [anon_sym_do] = ACTIONS(316), + [anon_sym_enum] = ACTIONS(316), + [anon_sym_extern] = ACTIONS(316), + [anon_sym_for] = ACTIONS(316), + [anon_sym_inline] = ACTIONS(316), + [anon_sym_macro] = ACTIONS(316), + [anon_sym_operator] = ACTIONS(316), + [anon_sym_overload] = ACTIONS(316), + [anon_sym_override] = ACTIONS(316), + [anon_sym_private] = ACTIONS(316), + [anon_sym_public] = ACTIONS(316), + [anon_sym_return] = ACTIONS(316), + [anon_sym_static] = ACTIONS(316), + [anon_sym_try] = ACTIONS(316), + [anon_sym_untyped] = ACTIONS(316), + [anon_sym_while] = ACTIONS(316), + [sym__semicolon] = ACTIONS(314), }, [35] = { - [sym_member_expression] = STATE(60), - [sym__lhs_expression] = STATE(72), - [sym__literal] = STATE(1124), - [sym_integer] = STATE(1124), - [sym_float] = STATE(1124), - [sym_bool] = STATE(1124), - [sym_string] = STATE(975), - [sym_null] = STATE(1124), - [sym_array] = STATE(1124), - [sym_map] = STATE(1124), - [sym_object] = STATE(1124), - [sym_pair] = STATE(1124), - [aux_sym_member_expression_repeat1] = STATE(23), - [ts_builtin_sym_end] = ACTIONS(304), - [sym_identifier] = ACTIONS(318), - [anon_sym_POUND] = ACTIONS(304), - [anon_sym_package] = ACTIONS(306), - [anon_sym_import] = ACTIONS(306), - [anon_sym_using] = ACTIONS(306), - [anon_sym_throw] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_RPAREN] = ACTIONS(304), - [anon_sym_switch] = ACTIONS(306), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_RBRACE] = ACTIONS(304), - [anon_sym_case] = ACTIONS(306), - [anon_sym_default] = ACTIONS(306), - [anon_sym_cast] = ACTIONS(306), - [anon_sym_COMMA] = ACTIONS(304), - [anon_sym_DOLLARtype] = ACTIONS(304), - [anon_sym_in] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_RBRACK] = ACTIONS(304), - [anon_sym_this] = ACTIONS(236), - [anon_sym_AT] = ACTIONS(306), - [anon_sym_AT_COLON] = ACTIONS(304), - [anon_sym_if] = ACTIONS(306), - [anon_sym_else] = ACTIONS(306), - [anon_sym_new] = ACTIONS(306), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_BANG] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_PLUS_PLUS] = ACTIONS(304), - [anon_sym_DASH_DASH] = ACTIONS(304), - [anon_sym_PERCENT] = ACTIONS(304), - [anon_sym_STAR] = ACTIONS(304), - [anon_sym_SLASH] = ACTIONS(306), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_LT_LT] = ACTIONS(304), - [anon_sym_GT_GT] = ACTIONS(306), - [anon_sym_GT_GT_GT] = ACTIONS(304), - [anon_sym_AMP] = ACTIONS(306), - [anon_sym_PIPE] = ACTIONS(306), - [anon_sym_CARET] = ACTIONS(304), - [anon_sym_AMP_AMP] = ACTIONS(304), - [anon_sym_PIPE_PIPE] = ACTIONS(304), - [anon_sym_EQ_EQ] = ACTIONS(304), - [anon_sym_BANG_EQ] = ACTIONS(304), - [anon_sym_LT] = ACTIONS(306), - [anon_sym_LT_EQ] = ACTIONS(304), - [anon_sym_GT] = ACTIONS(306), - [anon_sym_GT_EQ] = ACTIONS(304), - [anon_sym_EQ_GT] = ACTIONS(304), - [anon_sym_QMARK_QMARK] = ACTIONS(304), - [anon_sym_EQ] = ACTIONS(306), - [sym__rangeOperator] = ACTIONS(304), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(306), - [anon_sym_final] = ACTIONS(306), - [anon_sym_abstract] = ACTIONS(306), - [anon_sym_class] = ACTIONS(306), - [anon_sym_extends] = ACTIONS(306), - [anon_sym_implements] = ACTIONS(306), - [anon_sym_interface] = ACTIONS(306), - [anon_sym_typedef] = ACTIONS(306), - [anon_sym_function] = ACTIONS(306), - [anon_sym_var] = ACTIONS(306), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(306), - [anon_sym_catch] = ACTIONS(306), - [anon_sym_continue] = ACTIONS(306), - [anon_sym_do] = ACTIONS(306), - [anon_sym_enum] = ACTIONS(306), - [anon_sym_extern] = ACTIONS(306), - [anon_sym_for] = ACTIONS(306), - [anon_sym_inline] = ACTIONS(306), - [anon_sym_macro] = ACTIONS(306), - [anon_sym_operator] = ACTIONS(306), - [anon_sym_overload] = ACTIONS(306), - [anon_sym_override] = ACTIONS(306), - [anon_sym_private] = ACTIONS(306), - [anon_sym_public] = ACTIONS(306), - [anon_sym_return] = ACTIONS(306), - [anon_sym_static] = ACTIONS(306), - [anon_sym_try] = ACTIONS(306), - [anon_sym_untyped] = ACTIONS(306), - [anon_sym_while] = ACTIONS(306), - [sym__semicolon] = ACTIONS(304), + [sym__binaryOperator] = STATE(362), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(314), + [sym_identifier] = ACTIONS(316), + [anon_sym_POUND] = ACTIONS(314), + [anon_sym_package] = ACTIONS(316), + [anon_sym_import] = ACTIONS(316), + [anon_sym_using] = ACTIONS(316), + [anon_sym_throw] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_switch] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(314), + [anon_sym_RBRACE] = ACTIONS(314), + [anon_sym_case] = ACTIONS(316), + [anon_sym_default] = ACTIONS(316), + [anon_sym_cast] = ACTIONS(316), + [anon_sym_COMMA] = ACTIONS(314), + [anon_sym_DOLLARtype] = ACTIONS(314), + [anon_sym_in] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_this] = ACTIONS(316), + [aux_sym_member_expression_token1] = ACTIONS(316), + [anon_sym_QMARK] = ACTIONS(318), + [anon_sym_AT] = ACTIONS(316), + [anon_sym_AT_COLON] = ACTIONS(314), + [anon_sym_if] = ACTIONS(316), + [anon_sym_else] = ACTIONS(316), + [anon_sym_new] = ACTIONS(316), + [sym__prefixUnaryOperator] = ACTIONS(316), + [sym__eitherUnaryOperator] = ACTIONS(314), + [sym__arithmetic_operator] = ACTIONS(320), + [sym__bitwise_operator] = ACTIONS(320), + [sym__logical_operator] = ACTIONS(322), + [sym__comparison_operator] = ACTIONS(324), + [sym__map_operator] = ACTIONS(322), + [sym__null_colalese_operator] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(324), + [sym__range_operator] = ACTIONS(322), + [anon_sym_null] = ACTIONS(316), + [anon_sym_dynamic] = ACTIONS(316), + [anon_sym_final] = ACTIONS(316), + [anon_sym_abstract] = ACTIONS(316), + [anon_sym_class] = ACTIONS(316), + [anon_sym_extends] = ACTIONS(316), + [anon_sym_implements] = ACTIONS(316), + [anon_sym_interface] = ACTIONS(316), + [anon_sym_typedef] = ACTIONS(316), + [anon_sym_function] = ACTIONS(316), + [anon_sym_var] = ACTIONS(316), + [aux_sym_integer_token1] = ACTIONS(316), + [aux_sym_integer_token2] = ACTIONS(314), + [aux_sym_float_token1] = ACTIONS(316), + [aux_sym_float_token2] = ACTIONS(314), + [anon_sym_true] = ACTIONS(316), + [anon_sym_false] = ACTIONS(316), + [aux_sym_string_token1] = ACTIONS(314), + [aux_sym_string_token3] = ACTIONS(314), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(316), + [anon_sym_catch] = ACTIONS(316), + [anon_sym_continue] = ACTIONS(316), + [anon_sym_do] = ACTIONS(316), + [anon_sym_enum] = ACTIONS(316), + [anon_sym_extern] = ACTIONS(316), + [anon_sym_for] = ACTIONS(316), + [anon_sym_inline] = ACTIONS(316), + [anon_sym_macro] = ACTIONS(316), + [anon_sym_operator] = ACTIONS(316), + [anon_sym_overload] = ACTIONS(316), + [anon_sym_override] = ACTIONS(316), + [anon_sym_private] = ACTIONS(316), + [anon_sym_public] = ACTIONS(316), + [anon_sym_return] = ACTIONS(316), + [anon_sym_static] = ACTIONS(316), + [anon_sym_try] = ACTIONS(316), + [anon_sym_untyped] = ACTIONS(316), + [anon_sym_while] = ACTIONS(316), + [sym__semicolon] = ACTIONS(314), }, [36] = { - [sym_operator] = STATE(784), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [aux_sym_expression_repeat1] = STATE(36), - [ts_builtin_sym_end] = ACTIONS(340), - [sym_identifier] = ACTIONS(342), - [anon_sym_POUND] = ACTIONS(340), - [anon_sym_package] = ACTIONS(342), - [anon_sym_import] = ACTIONS(342), - [anon_sym_using] = ACTIONS(342), - [anon_sym_throw] = ACTIONS(342), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_switch] = ACTIONS(342), - [anon_sym_LBRACE] = ACTIONS(340), - [anon_sym_RBRACE] = ACTIONS(340), - [anon_sym_case] = ACTIONS(342), - [anon_sym_default] = ACTIONS(342), - [anon_sym_cast] = ACTIONS(342), - [anon_sym_COMMA] = ACTIONS(340), - [anon_sym_DOLLARtype] = ACTIONS(340), - [anon_sym_in] = ACTIONS(342), - [anon_sym_LBRACK] = ACTIONS(340), - [anon_sym_this] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(342), - [anon_sym_QMARK] = ACTIONS(342), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_AT_COLON] = ACTIONS(340), - [anon_sym_if] = ACTIONS(342), - [anon_sym_else] = ACTIONS(342), - [anon_sym_new] = ACTIONS(342), - [anon_sym_TILDE] = ACTIONS(344), - [anon_sym_BANG] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(350), - [anon_sym_PLUS_PLUS] = ACTIONS(353), - [anon_sym_DASH_DASH] = ACTIONS(353), - [anon_sym_PERCENT] = ACTIONS(356), - [anon_sym_STAR] = ACTIONS(356), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_LT_LT] = ACTIONS(356), - [anon_sym_GT_GT] = ACTIONS(359), - [anon_sym_GT_GT_GT] = ACTIONS(356), - [anon_sym_AMP] = ACTIONS(359), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_CARET] = ACTIONS(356), - [anon_sym_AMP_AMP] = ACTIONS(344), - [anon_sym_PIPE_PIPE] = ACTIONS(344), - [anon_sym_EQ_EQ] = ACTIONS(344), - [anon_sym_BANG_EQ] = ACTIONS(344), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_LT_EQ] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_GT_EQ] = ACTIONS(344), - [anon_sym_EQ_GT] = ACTIONS(344), - [anon_sym_QMARK_QMARK] = ACTIONS(344), - [anon_sym_EQ] = ACTIONS(347), - [sym__rangeOperator] = ACTIONS(344), - [anon_sym_null] = ACTIONS(342), - [anon_sym_dynamic] = ACTIONS(342), - [anon_sym_final] = ACTIONS(342), - [anon_sym_abstract] = ACTIONS(342), - [anon_sym_class] = ACTIONS(342), - [anon_sym_extends] = ACTIONS(342), - [anon_sym_implements] = ACTIONS(342), - [anon_sym_interface] = ACTIONS(342), - [anon_sym_typedef] = ACTIONS(342), - [anon_sym_function] = ACTIONS(342), - [anon_sym_var] = ACTIONS(342), - [aux_sym_integer_token1] = ACTIONS(342), - [aux_sym_integer_token2] = ACTIONS(340), - [aux_sym_float_token1] = ACTIONS(342), - [aux_sym_float_token2] = ACTIONS(340), - [anon_sym_true] = ACTIONS(342), - [anon_sym_false] = ACTIONS(342), - [aux_sym_string_token1] = ACTIONS(340), - [aux_sym_string_token3] = ACTIONS(340), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(342), - [anon_sym_catch] = ACTIONS(342), - [anon_sym_continue] = ACTIONS(342), - [anon_sym_do] = ACTIONS(342), - [anon_sym_enum] = ACTIONS(342), - [anon_sym_extern] = ACTIONS(342), - [anon_sym_for] = ACTIONS(342), - [anon_sym_inline] = ACTIONS(342), - [anon_sym_macro] = ACTIONS(342), - [anon_sym_operator] = ACTIONS(342), - [anon_sym_overload] = ACTIONS(342), - [anon_sym_override] = ACTIONS(342), - [anon_sym_private] = ACTIONS(342), - [anon_sym_public] = ACTIONS(342), - [anon_sym_return] = ACTIONS(342), - [anon_sym_static] = ACTIONS(342), - [anon_sym_try] = ACTIONS(342), - [anon_sym_untyped] = ACTIONS(342), - [anon_sym_while] = ACTIONS(342), - [sym__semicolon] = ACTIONS(340), + [sym__binaryOperator] = STATE(362), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(326), + [sym_identifier] = ACTIONS(328), + [anon_sym_POUND] = ACTIONS(326), + [anon_sym_package] = ACTIONS(328), + [anon_sym_import] = ACTIONS(328), + [anon_sym_using] = ACTIONS(328), + [anon_sym_throw] = ACTIONS(328), + [anon_sym_LPAREN] = ACTIONS(326), + [anon_sym_switch] = ACTIONS(328), + [anon_sym_LBRACE] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(326), + [anon_sym_case] = ACTIONS(328), + [anon_sym_default] = ACTIONS(328), + [anon_sym_cast] = ACTIONS(328), + [anon_sym_COMMA] = ACTIONS(326), + [anon_sym_DOLLARtype] = ACTIONS(326), + [anon_sym_in] = ACTIONS(328), + [anon_sym_LBRACK] = ACTIONS(326), + [anon_sym_this] = ACTIONS(328), + [aux_sym_member_expression_token1] = ACTIONS(328), + [anon_sym_QMARK] = ACTIONS(318), + [anon_sym_AT] = ACTIONS(328), + [anon_sym_AT_COLON] = ACTIONS(326), + [anon_sym_if] = ACTIONS(328), + [anon_sym_else] = ACTIONS(328), + [anon_sym_new] = ACTIONS(328), + [sym__prefixUnaryOperator] = ACTIONS(328), + [sym__eitherUnaryOperator] = ACTIONS(326), + [sym__arithmetic_operator] = ACTIONS(320), + [sym__bitwise_operator] = ACTIONS(320), + [sym__logical_operator] = ACTIONS(322), + [sym__comparison_operator] = ACTIONS(324), + [sym__map_operator] = ACTIONS(322), + [sym__null_colalese_operator] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(324), + [sym__range_operator] = ACTIONS(322), + [anon_sym_null] = ACTIONS(328), + [anon_sym_dynamic] = ACTIONS(328), + [anon_sym_final] = ACTIONS(328), + [anon_sym_abstract] = ACTIONS(328), + [anon_sym_class] = ACTIONS(328), + [anon_sym_extends] = ACTIONS(328), + [anon_sym_implements] = ACTIONS(328), + [anon_sym_interface] = ACTIONS(328), + [anon_sym_typedef] = ACTIONS(328), + [anon_sym_function] = ACTIONS(328), + [anon_sym_var] = ACTIONS(328), + [aux_sym_integer_token1] = ACTIONS(328), + [aux_sym_integer_token2] = ACTIONS(326), + [aux_sym_float_token1] = ACTIONS(328), + [aux_sym_float_token2] = ACTIONS(326), + [anon_sym_true] = ACTIONS(328), + [anon_sym_false] = ACTIONS(328), + [aux_sym_string_token1] = ACTIONS(326), + [aux_sym_string_token3] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(328), + [anon_sym_catch] = ACTIONS(328), + [anon_sym_continue] = ACTIONS(328), + [anon_sym_do] = ACTIONS(328), + [anon_sym_enum] = ACTIONS(328), + [anon_sym_extern] = ACTIONS(328), + [anon_sym_for] = ACTIONS(328), + [anon_sym_inline] = ACTIONS(328), + [anon_sym_macro] = ACTIONS(328), + [anon_sym_operator] = ACTIONS(328), + [anon_sym_overload] = ACTIONS(328), + [anon_sym_override] = ACTIONS(328), + [anon_sym_private] = ACTIONS(328), + [anon_sym_public] = ACTIONS(328), + [anon_sym_return] = ACTIONS(328), + [anon_sym_static] = ACTIONS(328), + [anon_sym_try] = ACTIONS(328), + [anon_sym_untyped] = ACTIONS(328), + [anon_sym_while] = ACTIONS(328), + [sym__semicolon] = ACTIONS(326), }, [37] = { - [sym_member_expression] = STATE(60), - [sym__lhs_expression] = STATE(72), - [sym__literal] = STATE(1124), - [sym_integer] = STATE(1124), - [sym_float] = STATE(1124), - [sym_bool] = STATE(1124), - [sym_string] = STATE(975), - [sym_null] = STATE(1124), - [sym_array] = STATE(1124), - [sym_map] = STATE(1124), - [sym_object] = STATE(1124), - [sym_pair] = STATE(1124), - [aux_sym_member_expression_repeat1] = STATE(23), - [ts_builtin_sym_end] = ACTIONS(260), - [sym_identifier] = ACTIONS(318), - [anon_sym_POUND] = ACTIONS(260), - [anon_sym_package] = ACTIONS(262), - [anon_sym_import] = ACTIONS(262), - [anon_sym_using] = ACTIONS(262), - [anon_sym_throw] = ACTIONS(262), - [anon_sym_LPAREN] = ACTIONS(260), - [anon_sym_RPAREN] = ACTIONS(260), - [anon_sym_switch] = ACTIONS(262), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_RBRACE] = ACTIONS(260), - [anon_sym_case] = ACTIONS(262), - [anon_sym_default] = ACTIONS(262), - [anon_sym_cast] = ACTIONS(262), - [anon_sym_COMMA] = ACTIONS(260), - [anon_sym_DOLLARtype] = ACTIONS(260), - [anon_sym_in] = ACTIONS(262), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_RBRACK] = ACTIONS(260), - [anon_sym_this] = ACTIONS(236), - [anon_sym_AT] = ACTIONS(262), - [anon_sym_AT_COLON] = ACTIONS(260), - [anon_sym_if] = ACTIONS(262), - [anon_sym_else] = ACTIONS(262), - [anon_sym_new] = ACTIONS(262), - [anon_sym_TILDE] = ACTIONS(260), - [anon_sym_BANG] = ACTIONS(262), - [anon_sym_DASH] = ACTIONS(262), - [anon_sym_PLUS_PLUS] = ACTIONS(260), - [anon_sym_DASH_DASH] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(260), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(262), - [anon_sym_PLUS] = ACTIONS(262), - [anon_sym_LT_LT] = ACTIONS(260), - [anon_sym_GT_GT] = ACTIONS(262), - [anon_sym_GT_GT_GT] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(262), - [anon_sym_CARET] = ACTIONS(260), - [anon_sym_AMP_AMP] = ACTIONS(260), - [anon_sym_PIPE_PIPE] = ACTIONS(260), - [anon_sym_EQ_EQ] = ACTIONS(260), - [anon_sym_BANG_EQ] = ACTIONS(260), - [anon_sym_LT] = ACTIONS(262), - [anon_sym_LT_EQ] = ACTIONS(260), - [anon_sym_GT] = ACTIONS(262), - [anon_sym_GT_EQ] = ACTIONS(260), - [anon_sym_EQ_GT] = ACTIONS(260), - [anon_sym_QMARK_QMARK] = ACTIONS(260), - [anon_sym_EQ] = ACTIONS(262), - [sym__rangeOperator] = ACTIONS(260), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(262), - [anon_sym_final] = ACTIONS(262), - [anon_sym_abstract] = ACTIONS(262), - [anon_sym_class] = ACTIONS(262), - [anon_sym_extends] = ACTIONS(262), - [anon_sym_implements] = ACTIONS(262), - [anon_sym_interface] = ACTIONS(262), - [anon_sym_typedef] = ACTIONS(262), - [anon_sym_function] = ACTIONS(262), - [anon_sym_var] = ACTIONS(262), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(262), - [anon_sym_catch] = ACTIONS(262), - [anon_sym_continue] = ACTIONS(262), - [anon_sym_do] = ACTIONS(262), - [anon_sym_enum] = ACTIONS(262), - [anon_sym_extern] = ACTIONS(262), - [anon_sym_for] = ACTIONS(262), - [anon_sym_inline] = ACTIONS(262), - [anon_sym_macro] = ACTIONS(262), - [anon_sym_operator] = ACTIONS(262), - [anon_sym_overload] = ACTIONS(262), - [anon_sym_override] = ACTIONS(262), - [anon_sym_private] = ACTIONS(262), - [anon_sym_public] = ACTIONS(262), - [anon_sym_return] = ACTIONS(262), - [anon_sym_static] = ACTIONS(262), - [anon_sym_try] = ACTIONS(262), - [anon_sym_untyped] = ACTIONS(262), - [anon_sym_while] = ACTIONS(262), - [sym__semicolon] = ACTIONS(260), + [sym__binaryOperator] = STATE(362), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(326), + [sym_identifier] = ACTIONS(328), + [anon_sym_POUND] = ACTIONS(326), + [anon_sym_package] = ACTIONS(328), + [anon_sym_import] = ACTIONS(328), + [anon_sym_using] = ACTIONS(328), + [anon_sym_throw] = ACTIONS(328), + [anon_sym_LPAREN] = ACTIONS(326), + [anon_sym_switch] = ACTIONS(328), + [anon_sym_LBRACE] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(326), + [anon_sym_case] = ACTIONS(328), + [anon_sym_default] = ACTIONS(328), + [anon_sym_cast] = ACTIONS(328), + [anon_sym_COMMA] = ACTIONS(326), + [anon_sym_DOLLARtype] = ACTIONS(326), + [anon_sym_in] = ACTIONS(328), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_this] = ACTIONS(328), + [aux_sym_member_expression_token1] = ACTIONS(328), + [anon_sym_QMARK] = ACTIONS(318), + [anon_sym_AT] = ACTIONS(328), + [anon_sym_AT_COLON] = ACTIONS(326), + [anon_sym_if] = ACTIONS(328), + [anon_sym_else] = ACTIONS(328), + [anon_sym_new] = ACTIONS(328), + [sym__prefixUnaryOperator] = ACTIONS(328), + [sym__eitherUnaryOperator] = ACTIONS(326), + [sym__arithmetic_operator] = ACTIONS(320), + [sym__bitwise_operator] = ACTIONS(320), + [sym__logical_operator] = ACTIONS(322), + [sym__comparison_operator] = ACTIONS(324), + [sym__map_operator] = ACTIONS(322), + [sym__null_colalese_operator] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(324), + [sym__range_operator] = ACTIONS(322), + [anon_sym_null] = ACTIONS(328), + [anon_sym_dynamic] = ACTIONS(328), + [anon_sym_final] = ACTIONS(328), + [anon_sym_abstract] = ACTIONS(328), + [anon_sym_class] = ACTIONS(328), + [anon_sym_extends] = ACTIONS(328), + [anon_sym_implements] = ACTIONS(328), + [anon_sym_interface] = ACTIONS(328), + [anon_sym_typedef] = ACTIONS(328), + [anon_sym_function] = ACTIONS(328), + [anon_sym_var] = ACTIONS(328), + [aux_sym_integer_token1] = ACTIONS(328), + [aux_sym_integer_token2] = ACTIONS(326), + [aux_sym_float_token1] = ACTIONS(328), + [aux_sym_float_token2] = ACTIONS(326), + [anon_sym_true] = ACTIONS(328), + [anon_sym_false] = ACTIONS(328), + [aux_sym_string_token1] = ACTIONS(326), + [aux_sym_string_token3] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(328), + [anon_sym_catch] = ACTIONS(328), + [anon_sym_continue] = ACTIONS(328), + [anon_sym_do] = ACTIONS(328), + [anon_sym_enum] = ACTIONS(328), + [anon_sym_extern] = ACTIONS(328), + [anon_sym_for] = ACTIONS(328), + [anon_sym_inline] = ACTIONS(328), + [anon_sym_macro] = ACTIONS(328), + [anon_sym_operator] = ACTIONS(328), + [anon_sym_overload] = ACTIONS(328), + [anon_sym_override] = ACTIONS(328), + [anon_sym_private] = ACTIONS(328), + [anon_sym_public] = ACTIONS(328), + [anon_sym_return] = ACTIONS(328), + [anon_sym_static] = ACTIONS(328), + [anon_sym_try] = ACTIONS(328), + [anon_sym_untyped] = ACTIONS(328), + [anon_sym_while] = ACTIONS(328), + [sym__semicolon] = ACTIONS(326), }, [38] = { - [sym_member_expression] = STATE(101), - [sym__lhs_expression] = STATE(102), - [sym__literal] = STATE(1167), - [sym_integer] = STATE(1167), - [sym_float] = STATE(1167), - [sym_bool] = STATE(1167), - [sym_string] = STATE(975), - [sym_null] = STATE(1167), - [sym_array] = STATE(1167), - [sym_map] = STATE(1167), - [sym_object] = STATE(1167), - [sym_pair] = STATE(1167), - [aux_sym_member_expression_repeat1] = STATE(27), - [ts_builtin_sym_end] = ACTIONS(308), - [sym_identifier] = ACTIONS(326), - [anon_sym_POUND] = ACTIONS(308), - [anon_sym_package] = ACTIONS(310), - [anon_sym_import] = ACTIONS(310), - [anon_sym_using] = ACTIONS(310), - [anon_sym_throw] = ACTIONS(310), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_RPAREN] = ACTIONS(308), - [anon_sym_switch] = ACTIONS(310), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_RBRACE] = ACTIONS(308), - [anon_sym_case] = ACTIONS(310), - [anon_sym_default] = ACTIONS(310), - [anon_sym_cast] = ACTIONS(310), - [anon_sym_COMMA] = ACTIONS(308), - [anon_sym_DOLLARtype] = ACTIONS(308), - [anon_sym_in] = ACTIONS(310), - [anon_sym_LBRACK] = ACTIONS(35), + [sym__binaryOperator] = STATE(362), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(326), + [sym_identifier] = ACTIONS(328), + [anon_sym_POUND] = ACTIONS(326), + [anon_sym_package] = ACTIONS(328), + [anon_sym_import] = ACTIONS(328), + [anon_sym_using] = ACTIONS(328), + [anon_sym_throw] = ACTIONS(328), + [anon_sym_LPAREN] = ACTIONS(326), + [anon_sym_switch] = ACTIONS(328), + [anon_sym_LBRACE] = ACTIONS(326), + [anon_sym_RBRACE] = ACTIONS(326), + [anon_sym_case] = ACTIONS(328), + [anon_sym_default] = ACTIONS(328), + [anon_sym_cast] = ACTIONS(328), + [anon_sym_COMMA] = ACTIONS(326), + [anon_sym_DOLLARtype] = ACTIONS(326), + [anon_sym_in] = ACTIONS(328), + [anon_sym_LBRACK] = ACTIONS(326), [anon_sym_this] = ACTIONS(328), - [anon_sym_DASH_GT] = ACTIONS(308), - [anon_sym_AT] = ACTIONS(310), - [anon_sym_AT_COLON] = ACTIONS(308), - [anon_sym_if] = ACTIONS(310), - [anon_sym_else] = ACTIONS(310), - [anon_sym_new] = ACTIONS(310), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_BANG] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(310), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_PERCENT] = ACTIONS(308), - [anon_sym_STAR] = ACTIONS(308), - [anon_sym_SLASH] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(308), - [anon_sym_GT_GT] = ACTIONS(310), - [anon_sym_GT_GT_GT] = ACTIONS(308), - [anon_sym_AMP] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(310), - [anon_sym_CARET] = ACTIONS(308), - [anon_sym_AMP_AMP] = ACTIONS(308), - [anon_sym_PIPE_PIPE] = ACTIONS(308), - [anon_sym_EQ_EQ] = ACTIONS(308), - [anon_sym_BANG_EQ] = ACTIONS(308), - [anon_sym_LT] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(308), - [anon_sym_GT] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(308), - [anon_sym_EQ_GT] = ACTIONS(308), - [anon_sym_QMARK_QMARK] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(310), - [sym__rangeOperator] = ACTIONS(308), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(310), - [anon_sym_final] = ACTIONS(310), - [anon_sym_abstract] = ACTIONS(310), - [anon_sym_class] = ACTIONS(310), - [anon_sym_extends] = ACTIONS(310), - [anon_sym_implements] = ACTIONS(310), - [anon_sym_interface] = ACTIONS(310), - [anon_sym_typedef] = ACTIONS(310), - [anon_sym_function] = ACTIONS(310), - [anon_sym_var] = ACTIONS(310), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(310), - [anon_sym_catch] = ACTIONS(310), - [anon_sym_continue] = ACTIONS(310), - [anon_sym_do] = ACTIONS(310), - [anon_sym_enum] = ACTIONS(310), - [anon_sym_extern] = ACTIONS(310), - [anon_sym_for] = ACTIONS(310), - [anon_sym_inline] = ACTIONS(310), - [anon_sym_macro] = ACTIONS(310), - [anon_sym_operator] = ACTIONS(310), - [anon_sym_overload] = ACTIONS(310), - [anon_sym_override] = ACTIONS(310), - [anon_sym_private] = ACTIONS(310), - [anon_sym_public] = ACTIONS(310), - [anon_sym_return] = ACTIONS(310), - [anon_sym_static] = ACTIONS(310), - [anon_sym_try] = ACTIONS(310), - [anon_sym_untyped] = ACTIONS(310), - [anon_sym_while] = ACTIONS(310), - [sym__semicolon] = ACTIONS(308), + [aux_sym_member_expression_token1] = ACTIONS(328), + [anon_sym_QMARK] = ACTIONS(318), + [anon_sym_AT] = ACTIONS(328), + [anon_sym_AT_COLON] = ACTIONS(326), + [anon_sym_if] = ACTIONS(328), + [anon_sym_else] = ACTIONS(328), + [anon_sym_new] = ACTIONS(328), + [sym__prefixUnaryOperator] = ACTIONS(328), + [sym__eitherUnaryOperator] = ACTIONS(332), + [sym__arithmetic_operator] = ACTIONS(320), + [sym__bitwise_operator] = ACTIONS(320), + [sym__logical_operator] = ACTIONS(322), + [sym__comparison_operator] = ACTIONS(324), + [sym__map_operator] = ACTIONS(322), + [sym__null_colalese_operator] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(324), + [sym__range_operator] = ACTIONS(322), + [anon_sym_null] = ACTIONS(328), + [anon_sym_dynamic] = ACTIONS(328), + [anon_sym_final] = ACTIONS(328), + [anon_sym_abstract] = ACTIONS(328), + [anon_sym_class] = ACTIONS(328), + [anon_sym_extends] = ACTIONS(328), + [anon_sym_implements] = ACTIONS(328), + [anon_sym_interface] = ACTIONS(328), + [anon_sym_typedef] = ACTIONS(328), + [anon_sym_function] = ACTIONS(328), + [anon_sym_var] = ACTIONS(328), + [aux_sym_integer_token1] = ACTIONS(328), + [aux_sym_integer_token2] = ACTIONS(326), + [aux_sym_float_token1] = ACTIONS(328), + [aux_sym_float_token2] = ACTIONS(326), + [anon_sym_true] = ACTIONS(328), + [anon_sym_false] = ACTIONS(328), + [aux_sym_string_token1] = ACTIONS(326), + [aux_sym_string_token3] = ACTIONS(326), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(328), + [anon_sym_catch] = ACTIONS(328), + [anon_sym_continue] = ACTIONS(328), + [anon_sym_do] = ACTIONS(328), + [anon_sym_enum] = ACTIONS(328), + [anon_sym_extern] = ACTIONS(328), + [anon_sym_for] = ACTIONS(328), + [anon_sym_inline] = ACTIONS(328), + [anon_sym_macro] = ACTIONS(328), + [anon_sym_operator] = ACTIONS(328), + [anon_sym_overload] = ACTIONS(328), + [anon_sym_override] = ACTIONS(328), + [anon_sym_private] = ACTIONS(328), + [anon_sym_public] = ACTIONS(328), + [anon_sym_return] = ACTIONS(328), + [anon_sym_static] = ACTIONS(328), + [anon_sym_try] = ACTIONS(328), + [anon_sym_untyped] = ACTIONS(328), + [anon_sym_while] = ACTIONS(328), + [sym__semicolon] = ACTIONS(326), }, [39] = { - [sym_member_expression] = STATE(60), - [sym__lhs_expression] = STATE(72), - [sym__literal] = STATE(1124), - [sym_integer] = STATE(1124), - [sym_float] = STATE(1124), - [sym_bool] = STATE(1124), - [sym_string] = STATE(975), - [sym_null] = STATE(1124), - [sym_array] = STATE(1124), - [sym_map] = STATE(1124), - [sym_object] = STATE(1124), - [sym_pair] = STATE(1124), - [aux_sym_member_expression_repeat1] = STATE(23), - [ts_builtin_sym_end] = ACTIONS(256), - [sym_identifier] = ACTIONS(318), - [anon_sym_POUND] = ACTIONS(256), - [anon_sym_package] = ACTIONS(258), - [anon_sym_import] = ACTIONS(258), - [anon_sym_using] = ACTIONS(258), - [anon_sym_throw] = ACTIONS(258), - [anon_sym_LPAREN] = ACTIONS(256), - [anon_sym_RPAREN] = ACTIONS(256), - [anon_sym_switch] = ACTIONS(258), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_RBRACE] = ACTIONS(256), - [anon_sym_case] = ACTIONS(258), - [anon_sym_default] = ACTIONS(258), - [anon_sym_cast] = ACTIONS(258), - [anon_sym_COMMA] = ACTIONS(256), - [anon_sym_DOLLARtype] = ACTIONS(256), - [anon_sym_in] = ACTIONS(258), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_RBRACK] = ACTIONS(256), - [anon_sym_this] = ACTIONS(236), - [anon_sym_AT] = ACTIONS(258), - [anon_sym_AT_COLON] = ACTIONS(256), - [anon_sym_if] = ACTIONS(258), - [anon_sym_else] = ACTIONS(258), - [anon_sym_new] = ACTIONS(258), - [anon_sym_TILDE] = ACTIONS(256), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_DASH] = ACTIONS(258), - [anon_sym_PLUS_PLUS] = ACTIONS(256), - [anon_sym_DASH_DASH] = ACTIONS(256), - [anon_sym_PERCENT] = ACTIONS(256), - [anon_sym_STAR] = ACTIONS(256), - [anon_sym_SLASH] = ACTIONS(258), - [anon_sym_PLUS] = ACTIONS(258), - [anon_sym_LT_LT] = ACTIONS(256), - [anon_sym_GT_GT] = ACTIONS(258), - [anon_sym_GT_GT_GT] = ACTIONS(256), - [anon_sym_AMP] = ACTIONS(258), - [anon_sym_PIPE] = ACTIONS(258), - [anon_sym_CARET] = ACTIONS(256), - [anon_sym_AMP_AMP] = ACTIONS(256), - [anon_sym_PIPE_PIPE] = ACTIONS(256), - [anon_sym_EQ_EQ] = ACTIONS(256), - [anon_sym_BANG_EQ] = ACTIONS(256), - [anon_sym_LT] = ACTIONS(258), - [anon_sym_LT_EQ] = ACTIONS(256), - [anon_sym_GT] = ACTIONS(258), - [anon_sym_GT_EQ] = ACTIONS(256), - [anon_sym_EQ_GT] = ACTIONS(256), - [anon_sym_QMARK_QMARK] = ACTIONS(256), - [anon_sym_EQ] = ACTIONS(258), - [sym__rangeOperator] = ACTIONS(256), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(258), - [anon_sym_final] = ACTIONS(258), - [anon_sym_abstract] = ACTIONS(258), - [anon_sym_class] = ACTIONS(258), - [anon_sym_extends] = ACTIONS(258), - [anon_sym_implements] = ACTIONS(258), - [anon_sym_interface] = ACTIONS(258), - [anon_sym_typedef] = ACTIONS(258), - [anon_sym_function] = ACTIONS(258), - [anon_sym_var] = ACTIONS(258), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(258), - [anon_sym_catch] = ACTIONS(258), - [anon_sym_continue] = ACTIONS(258), - [anon_sym_do] = ACTIONS(258), - [anon_sym_enum] = ACTIONS(258), - [anon_sym_extern] = ACTIONS(258), - [anon_sym_for] = ACTIONS(258), - [anon_sym_inline] = ACTIONS(258), - [anon_sym_macro] = ACTIONS(258), - [anon_sym_operator] = ACTIONS(258), - [anon_sym_overload] = ACTIONS(258), - [anon_sym_override] = ACTIONS(258), - [anon_sym_private] = ACTIONS(258), - [anon_sym_public] = ACTIONS(258), - [anon_sym_return] = ACTIONS(258), - [anon_sym_static] = ACTIONS(258), - [anon_sym_try] = ACTIONS(258), - [anon_sym_untyped] = ACTIONS(258), - [anon_sym_while] = ACTIONS(258), - [sym__semicolon] = ACTIONS(256), + [sym__binaryOperator] = STATE(362), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(310), + [sym_identifier] = ACTIONS(312), + [anon_sym_POUND] = ACTIONS(310), + [anon_sym_package] = ACTIONS(312), + [anon_sym_import] = ACTIONS(312), + [anon_sym_using] = ACTIONS(312), + [anon_sym_throw] = ACTIONS(312), + [anon_sym_LPAREN] = ACTIONS(310), + [anon_sym_switch] = ACTIONS(312), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_RBRACE] = ACTIONS(310), + [anon_sym_case] = ACTIONS(312), + [anon_sym_default] = ACTIONS(312), + [anon_sym_cast] = ACTIONS(312), + [anon_sym_COMMA] = ACTIONS(310), + [anon_sym_DOLLARtype] = ACTIONS(310), + [anon_sym_in] = ACTIONS(312), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_this] = ACTIONS(312), + [aux_sym_member_expression_token1] = ACTIONS(312), + [anon_sym_QMARK] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(312), + [anon_sym_AT_COLON] = ACTIONS(310), + [anon_sym_if] = ACTIONS(312), + [anon_sym_else] = ACTIONS(312), + [anon_sym_new] = ACTIONS(312), + [sym__prefixUnaryOperator] = ACTIONS(312), + [sym__eitherUnaryOperator] = ACTIONS(310), + [sym__arithmetic_operator] = ACTIONS(312), + [sym__bitwise_operator] = ACTIONS(312), + [sym__logical_operator] = ACTIONS(310), + [sym__comparison_operator] = ACTIONS(312), + [sym__map_operator] = ACTIONS(310), + [sym__null_colalese_operator] = ACTIONS(310), + [anon_sym_EQ] = ACTIONS(312), + [sym__range_operator] = ACTIONS(310), + [anon_sym_null] = ACTIONS(312), + [anon_sym_dynamic] = ACTIONS(312), + [anon_sym_final] = ACTIONS(312), + [anon_sym_abstract] = ACTIONS(312), + [anon_sym_class] = ACTIONS(312), + [anon_sym_extends] = ACTIONS(312), + [anon_sym_implements] = ACTIONS(312), + [anon_sym_interface] = ACTIONS(312), + [anon_sym_typedef] = ACTIONS(312), + [anon_sym_function] = ACTIONS(312), + [anon_sym_var] = ACTIONS(312), + [aux_sym_integer_token1] = ACTIONS(312), + [aux_sym_integer_token2] = ACTIONS(310), + [aux_sym_float_token1] = ACTIONS(312), + [aux_sym_float_token2] = ACTIONS(310), + [anon_sym_true] = ACTIONS(312), + [anon_sym_false] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [aux_sym_string_token3] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(312), + [anon_sym_catch] = ACTIONS(312), + [anon_sym_continue] = ACTIONS(312), + [anon_sym_do] = ACTIONS(312), + [anon_sym_enum] = ACTIONS(312), + [anon_sym_extern] = ACTIONS(312), + [anon_sym_for] = ACTIONS(312), + [anon_sym_inline] = ACTIONS(312), + [anon_sym_macro] = ACTIONS(312), + [anon_sym_operator] = ACTIONS(312), + [anon_sym_overload] = ACTIONS(312), + [anon_sym_override] = ACTIONS(312), + [anon_sym_private] = ACTIONS(312), + [anon_sym_public] = ACTIONS(312), + [anon_sym_return] = ACTIONS(312), + [anon_sym_static] = ACTIONS(312), + [anon_sym_try] = ACTIONS(312), + [anon_sym_untyped] = ACTIONS(312), + [anon_sym_while] = ACTIONS(312), + [sym__semicolon] = ACTIONS(310), }, [40] = { - [sym_operator] = STATE(812), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [aux_sym_expression_repeat1] = STATE(49), + [ts_builtin_sym_end] = ACTIONS(334), + [sym_identifier] = ACTIONS(336), + [anon_sym_POUND] = ACTIONS(334), + [anon_sym_package] = ACTIONS(336), + [anon_sym_import] = ACTIONS(336), + [anon_sym_using] = ACTIONS(336), + [anon_sym_throw] = ACTIONS(336), + [anon_sym_LPAREN] = ACTIONS(334), + [anon_sym_RPAREN] = ACTIONS(334), + [anon_sym_switch] = ACTIONS(336), + [anon_sym_LBRACE] = ACTIONS(334), + [anon_sym_RBRACE] = ACTIONS(334), + [anon_sym_case] = ACTIONS(336), + [anon_sym_COLON] = ACTIONS(334), + [anon_sym_default] = ACTIONS(336), + [anon_sym_cast] = ACTIONS(336), + [anon_sym_COMMA] = ACTIONS(334), + [anon_sym_DOLLARtype] = ACTIONS(334), + [anon_sym_in] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(334), + [anon_sym_this] = ACTIONS(336), + [aux_sym_member_expression_token1] = ACTIONS(336), + [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_AT] = ACTIONS(336), + [anon_sym_AT_COLON] = ACTIONS(334), + [anon_sym_if] = ACTIONS(336), + [anon_sym_else] = ACTIONS(336), + [anon_sym_new] = ACTIONS(336), + [sym__prefixUnaryOperator] = ACTIONS(336), + [sym__eitherUnaryOperator] = ACTIONS(334), + [sym__arithmetic_operator] = ACTIONS(336), + [sym__bitwise_operator] = ACTIONS(336), + [sym__logical_operator] = ACTIONS(334), + [sym__comparison_operator] = ACTIONS(336), + [sym__map_operator] = ACTIONS(334), + [sym__null_colalese_operator] = ACTIONS(334), + [anon_sym_EQ] = ACTIONS(336), + [sym__range_operator] = ACTIONS(334), + [anon_sym_null] = ACTIONS(336), + [anon_sym_dynamic] = ACTIONS(336), + [anon_sym_final] = ACTIONS(336), + [anon_sym_abstract] = ACTIONS(336), + [anon_sym_class] = ACTIONS(336), + [anon_sym_extends] = ACTIONS(336), + [anon_sym_implements] = ACTIONS(336), + [anon_sym_interface] = ACTIONS(336), + [anon_sym_typedef] = ACTIONS(336), + [anon_sym_function] = ACTIONS(336), + [anon_sym_var] = ACTIONS(336), + [aux_sym_integer_token1] = ACTIONS(336), + [aux_sym_integer_token2] = ACTIONS(334), + [aux_sym_float_token1] = ACTIONS(336), + [aux_sym_float_token2] = ACTIONS(334), + [anon_sym_true] = ACTIONS(336), + [anon_sym_false] = ACTIONS(336), + [aux_sym_string_token1] = ACTIONS(334), + [aux_sym_string_token3] = ACTIONS(334), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(336), + [anon_sym_catch] = ACTIONS(336), + [anon_sym_continue] = ACTIONS(336), + [anon_sym_do] = ACTIONS(336), + [anon_sym_enum] = ACTIONS(336), + [anon_sym_extern] = ACTIONS(336), + [anon_sym_for] = ACTIONS(336), + [anon_sym_inline] = ACTIONS(336), + [anon_sym_macro] = ACTIONS(336), + [anon_sym_operator] = ACTIONS(336), + [anon_sym_overload] = ACTIONS(336), + [anon_sym_override] = ACTIONS(336), + [anon_sym_private] = ACTIONS(336), + [anon_sym_public] = ACTIONS(336), + [anon_sym_return] = ACTIONS(336), + [anon_sym_static] = ACTIONS(336), + [anon_sym_try] = ACTIONS(336), + [anon_sym_untyped] = ACTIONS(336), + [anon_sym_while] = ACTIONS(336), + [sym__semicolon] = ACTIONS(334), + }, + [41] = { + [ts_builtin_sym_end] = ACTIONS(338), + [sym_identifier] = ACTIONS(340), + [anon_sym_POUND] = ACTIONS(338), + [anon_sym_package] = ACTIONS(340), + [anon_sym_import] = ACTIONS(340), + [anon_sym_using] = ACTIONS(340), + [anon_sym_throw] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(338), + [anon_sym_switch] = ACTIONS(340), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_RBRACE] = ACTIONS(338), + [anon_sym_case] = ACTIONS(340), + [anon_sym_COLON] = ACTIONS(338), + [anon_sym_default] = ACTIONS(340), + [anon_sym_cast] = ACTIONS(340), + [anon_sym_COMMA] = ACTIONS(338), + [anon_sym_DOLLARtype] = ACTIONS(338), + [anon_sym_in] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_this] = ACTIONS(340), + [aux_sym_member_expression_token1] = ACTIONS(340), + [anon_sym_QMARK] = ACTIONS(340), + [anon_sym_AT] = ACTIONS(340), + [anon_sym_AT_COLON] = ACTIONS(338), + [anon_sym_if] = ACTIONS(340), + [anon_sym_else] = ACTIONS(340), + [anon_sym_new] = ACTIONS(340), + [sym__prefixUnaryOperator] = ACTIONS(340), + [sym__eitherUnaryOperator] = ACTIONS(338), + [sym__arithmetic_operator] = ACTIONS(340), + [sym__bitwise_operator] = ACTIONS(340), + [sym__logical_operator] = ACTIONS(338), + [sym__comparison_operator] = ACTIONS(340), + [sym__map_operator] = ACTIONS(338), + [sym__null_colalese_operator] = ACTIONS(338), + [anon_sym_EQ] = ACTIONS(340), + [sym__range_operator] = ACTIONS(338), + [anon_sym_null] = ACTIONS(340), + [anon_sym_dynamic] = ACTIONS(340), + [anon_sym_final] = ACTIONS(340), + [anon_sym_abstract] = ACTIONS(340), + [anon_sym_class] = ACTIONS(340), + [anon_sym_extends] = ACTIONS(340), + [anon_sym_implements] = ACTIONS(340), + [anon_sym_interface] = ACTIONS(340), + [anon_sym_typedef] = ACTIONS(340), + [anon_sym_function] = ACTIONS(340), + [anon_sym_var] = ACTIONS(340), + [aux_sym_integer_token1] = ACTIONS(340), + [aux_sym_integer_token2] = ACTIONS(338), + [aux_sym_float_token1] = ACTIONS(340), + [aux_sym_float_token2] = ACTIONS(338), + [anon_sym_true] = ACTIONS(340), + [anon_sym_false] = ACTIONS(340), + [aux_sym_string_token1] = ACTIONS(338), + [aux_sym_string_token3] = ACTIONS(338), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(340), + [anon_sym_catch] = ACTIONS(340), + [anon_sym_continue] = ACTIONS(340), + [anon_sym_do] = ACTIONS(340), + [anon_sym_enum] = ACTIONS(340), + [anon_sym_extern] = ACTIONS(340), + [anon_sym_for] = ACTIONS(340), + [anon_sym_inline] = ACTIONS(340), + [anon_sym_macro] = ACTIONS(340), + [anon_sym_operator] = ACTIONS(340), + [anon_sym_overload] = ACTIONS(340), + [anon_sym_override] = ACTIONS(340), + [anon_sym_private] = ACTIONS(340), + [anon_sym_public] = ACTIONS(340), + [anon_sym_return] = ACTIONS(340), + [anon_sym_static] = ACTIONS(340), + [anon_sym_try] = ACTIONS(340), + [anon_sym_untyped] = ACTIONS(340), + [anon_sym_while] = ACTIONS(340), + [sym__semicolon] = ACTIONS(338), + }, + [42] = { + [ts_builtin_sym_end] = ACTIONS(342), + [sym_identifier] = ACTIONS(344), + [anon_sym_POUND] = ACTIONS(342), + [anon_sym_package] = ACTIONS(344), + [anon_sym_import] = ACTIONS(344), + [anon_sym_using] = ACTIONS(344), + [anon_sym_throw] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(342), + [anon_sym_RPAREN] = ACTIONS(342), + [anon_sym_switch] = ACTIONS(344), + [anon_sym_LBRACE] = ACTIONS(342), + [anon_sym_RBRACE] = ACTIONS(342), + [anon_sym_case] = ACTIONS(344), + [anon_sym_COLON] = ACTIONS(342), + [anon_sym_default] = ACTIONS(344), + [anon_sym_cast] = ACTIONS(344), + [anon_sym_COMMA] = ACTIONS(342), + [anon_sym_DOLLARtype] = ACTIONS(342), + [anon_sym_in] = ACTIONS(344), + [anon_sym_LBRACK] = ACTIONS(342), + [anon_sym_this] = ACTIONS(344), + [aux_sym_member_expression_token1] = ACTIONS(344), + [anon_sym_QMARK] = ACTIONS(344), + [anon_sym_AT] = ACTIONS(344), + [anon_sym_AT_COLON] = ACTIONS(342), + [anon_sym_if] = ACTIONS(344), + [anon_sym_else] = ACTIONS(344), + [anon_sym_new] = ACTIONS(344), + [sym__prefixUnaryOperator] = ACTIONS(344), + [sym__eitherUnaryOperator] = ACTIONS(342), + [sym__arithmetic_operator] = ACTIONS(344), + [sym__bitwise_operator] = ACTIONS(344), + [sym__logical_operator] = ACTIONS(342), + [sym__comparison_operator] = ACTIONS(344), + [sym__map_operator] = ACTIONS(342), + [sym__null_colalese_operator] = ACTIONS(342), + [anon_sym_EQ] = ACTIONS(344), + [sym__range_operator] = ACTIONS(342), + [anon_sym_null] = ACTIONS(344), + [anon_sym_dynamic] = ACTIONS(344), + [anon_sym_final] = ACTIONS(344), + [anon_sym_abstract] = ACTIONS(344), + [anon_sym_class] = ACTIONS(344), + [anon_sym_extends] = ACTIONS(344), + [anon_sym_implements] = ACTIONS(344), + [anon_sym_interface] = ACTIONS(344), + [anon_sym_typedef] = ACTIONS(344), + [anon_sym_function] = ACTIONS(344), + [anon_sym_var] = ACTIONS(344), + [aux_sym_integer_token1] = ACTIONS(344), + [aux_sym_integer_token2] = ACTIONS(342), + [aux_sym_float_token1] = ACTIONS(344), + [aux_sym_float_token2] = ACTIONS(342), + [anon_sym_true] = ACTIONS(344), + [anon_sym_false] = ACTIONS(344), + [aux_sym_string_token1] = ACTIONS(342), + [aux_sym_string_token3] = ACTIONS(342), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(344), + [anon_sym_catch] = ACTIONS(344), + [anon_sym_continue] = ACTIONS(344), + [anon_sym_do] = ACTIONS(344), + [anon_sym_enum] = ACTIONS(344), + [anon_sym_extern] = ACTIONS(344), + [anon_sym_for] = ACTIONS(344), + [anon_sym_inline] = ACTIONS(344), + [anon_sym_macro] = ACTIONS(344), + [anon_sym_operator] = ACTIONS(344), + [anon_sym_overload] = ACTIONS(344), + [anon_sym_override] = ACTIONS(344), + [anon_sym_private] = ACTIONS(344), + [anon_sym_public] = ACTIONS(344), + [anon_sym_return] = ACTIONS(344), + [anon_sym_static] = ACTIONS(344), + [anon_sym_try] = ACTIONS(344), + [anon_sym_untyped] = ACTIONS(344), + [anon_sym_while] = ACTIONS(344), + [sym__semicolon] = ACTIONS(342), + }, + [43] = { + [ts_builtin_sym_end] = ACTIONS(346), + [sym_identifier] = ACTIONS(348), + [anon_sym_POUND] = ACTIONS(346), + [anon_sym_package] = ACTIONS(348), + [anon_sym_import] = ACTIONS(348), + [anon_sym_using] = ACTIONS(348), + [anon_sym_throw] = ACTIONS(348), + [anon_sym_LPAREN] = ACTIONS(346), + [anon_sym_RPAREN] = ACTIONS(346), + [anon_sym_switch] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_RBRACE] = ACTIONS(346), + [anon_sym_case] = ACTIONS(348), + [anon_sym_COLON] = ACTIONS(346), + [anon_sym_default] = ACTIONS(348), + [anon_sym_cast] = ACTIONS(348), + [anon_sym_COMMA] = ACTIONS(346), + [anon_sym_DOLLARtype] = ACTIONS(346), + [anon_sym_in] = ACTIONS(348), + [anon_sym_LBRACK] = ACTIONS(346), + [anon_sym_this] = ACTIONS(348), + [aux_sym_member_expression_token1] = ACTIONS(348), + [anon_sym_QMARK] = ACTIONS(348), + [anon_sym_AT] = ACTIONS(348), + [anon_sym_AT_COLON] = ACTIONS(346), + [anon_sym_if] = ACTIONS(348), + [anon_sym_else] = ACTIONS(348), + [anon_sym_new] = ACTIONS(348), + [sym__prefixUnaryOperator] = ACTIONS(348), + [sym__eitherUnaryOperator] = ACTIONS(346), + [sym__arithmetic_operator] = ACTIONS(348), + [sym__bitwise_operator] = ACTIONS(348), + [sym__logical_operator] = ACTIONS(346), + [sym__comparison_operator] = ACTIONS(348), + [sym__map_operator] = ACTIONS(346), + [sym__null_colalese_operator] = ACTIONS(346), + [anon_sym_EQ] = ACTIONS(348), + [sym__range_operator] = ACTIONS(346), + [anon_sym_null] = ACTIONS(348), + [anon_sym_dynamic] = ACTIONS(348), + [anon_sym_final] = ACTIONS(348), + [anon_sym_abstract] = ACTIONS(348), + [anon_sym_class] = ACTIONS(348), + [anon_sym_extends] = ACTIONS(348), + [anon_sym_implements] = ACTIONS(348), + [anon_sym_interface] = ACTIONS(348), + [anon_sym_typedef] = ACTIONS(348), + [anon_sym_function] = ACTIONS(348), + [anon_sym_var] = ACTIONS(348), + [aux_sym_integer_token1] = ACTIONS(348), + [aux_sym_integer_token2] = ACTIONS(346), + [aux_sym_float_token1] = ACTIONS(348), + [aux_sym_float_token2] = ACTIONS(346), + [anon_sym_true] = ACTIONS(348), + [anon_sym_false] = ACTIONS(348), + [aux_sym_string_token1] = ACTIONS(346), + [aux_sym_string_token3] = ACTIONS(346), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(348), + [anon_sym_catch] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(348), + [anon_sym_do] = ACTIONS(348), + [anon_sym_enum] = ACTIONS(348), + [anon_sym_extern] = ACTIONS(348), + [anon_sym_for] = ACTIONS(348), + [anon_sym_inline] = ACTIONS(348), + [anon_sym_macro] = ACTIONS(348), + [anon_sym_operator] = ACTIONS(348), + [anon_sym_overload] = ACTIONS(348), + [anon_sym_override] = ACTIONS(348), + [anon_sym_private] = ACTIONS(348), + [anon_sym_public] = ACTIONS(348), + [anon_sym_return] = ACTIONS(348), + [anon_sym_static] = ACTIONS(348), + [anon_sym_try] = ACTIONS(348), + [anon_sym_untyped] = ACTIONS(348), + [anon_sym_while] = ACTIONS(348), + [sym__semicolon] = ACTIONS(346), + }, + [44] = { + [ts_builtin_sym_end] = ACTIONS(350), + [sym_identifier] = ACTIONS(352), + [anon_sym_POUND] = ACTIONS(350), + [anon_sym_package] = ACTIONS(352), + [anon_sym_import] = ACTIONS(352), + [anon_sym_using] = ACTIONS(352), + [anon_sym_throw] = ACTIONS(352), + [anon_sym_LPAREN] = ACTIONS(350), + [anon_sym_RPAREN] = ACTIONS(350), + [anon_sym_switch] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(350), + [anon_sym_RBRACE] = ACTIONS(350), + [anon_sym_case] = ACTIONS(352), + [anon_sym_COLON] = ACTIONS(350), + [anon_sym_default] = ACTIONS(352), + [anon_sym_cast] = ACTIONS(352), + [anon_sym_COMMA] = ACTIONS(350), + [anon_sym_DOLLARtype] = ACTIONS(350), + [anon_sym_in] = ACTIONS(352), + [anon_sym_LBRACK] = ACTIONS(350), + [anon_sym_this] = ACTIONS(352), + [aux_sym_member_expression_token1] = ACTIONS(352), + [anon_sym_QMARK] = ACTIONS(352), + [anon_sym_AT] = ACTIONS(352), + [anon_sym_AT_COLON] = ACTIONS(350), + [anon_sym_if] = ACTIONS(352), + [anon_sym_else] = ACTIONS(352), + [anon_sym_new] = ACTIONS(352), + [sym__prefixUnaryOperator] = ACTIONS(352), + [sym__eitherUnaryOperator] = ACTIONS(350), + [sym__arithmetic_operator] = ACTIONS(352), + [sym__bitwise_operator] = ACTIONS(352), + [sym__logical_operator] = ACTIONS(350), + [sym__comparison_operator] = ACTIONS(352), + [sym__map_operator] = ACTIONS(350), + [sym__null_colalese_operator] = ACTIONS(350), + [anon_sym_EQ] = ACTIONS(352), + [sym__range_operator] = ACTIONS(350), + [anon_sym_null] = ACTIONS(352), + [anon_sym_dynamic] = ACTIONS(352), + [anon_sym_final] = ACTIONS(352), + [anon_sym_abstract] = ACTIONS(352), + [anon_sym_class] = ACTIONS(352), + [anon_sym_extends] = ACTIONS(352), + [anon_sym_implements] = ACTIONS(352), + [anon_sym_interface] = ACTIONS(352), + [anon_sym_typedef] = ACTIONS(352), + [anon_sym_function] = ACTIONS(352), + [anon_sym_var] = ACTIONS(352), + [aux_sym_integer_token1] = ACTIONS(352), + [aux_sym_integer_token2] = ACTIONS(350), + [aux_sym_float_token1] = ACTIONS(352), + [aux_sym_float_token2] = ACTIONS(350), + [anon_sym_true] = ACTIONS(352), + [anon_sym_false] = ACTIONS(352), + [aux_sym_string_token1] = ACTIONS(350), + [aux_sym_string_token3] = ACTIONS(350), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(352), + [anon_sym_catch] = ACTIONS(352), + [anon_sym_continue] = ACTIONS(352), + [anon_sym_do] = ACTIONS(352), + [anon_sym_enum] = ACTIONS(352), + [anon_sym_extern] = ACTIONS(352), + [anon_sym_for] = ACTIONS(352), + [anon_sym_inline] = ACTIONS(352), + [anon_sym_macro] = ACTIONS(352), + [anon_sym_operator] = ACTIONS(352), + [anon_sym_overload] = ACTIONS(352), + [anon_sym_override] = ACTIONS(352), + [anon_sym_private] = ACTIONS(352), + [anon_sym_public] = ACTIONS(352), + [anon_sym_return] = ACTIONS(352), + [anon_sym_static] = ACTIONS(352), + [anon_sym_try] = ACTIONS(352), + [anon_sym_untyped] = ACTIONS(352), + [anon_sym_while] = ACTIONS(352), + [sym__semicolon] = ACTIONS(350), + }, + [45] = { + [ts_builtin_sym_end] = ACTIONS(354), + [sym_identifier] = ACTIONS(356), + [anon_sym_POUND] = ACTIONS(354), + [anon_sym_package] = ACTIONS(356), + [anon_sym_import] = ACTIONS(356), + [anon_sym_using] = ACTIONS(356), + [anon_sym_throw] = ACTIONS(356), + [anon_sym_LPAREN] = ACTIONS(354), + [anon_sym_RPAREN] = ACTIONS(354), + [anon_sym_switch] = ACTIONS(356), + [anon_sym_LBRACE] = ACTIONS(354), + [anon_sym_RBRACE] = ACTIONS(354), + [anon_sym_case] = ACTIONS(356), + [anon_sym_COLON] = ACTIONS(354), + [anon_sym_default] = ACTIONS(356), + [anon_sym_cast] = ACTIONS(356), + [anon_sym_COMMA] = ACTIONS(354), + [anon_sym_DOLLARtype] = ACTIONS(354), + [anon_sym_in] = ACTIONS(356), + [anon_sym_LBRACK] = ACTIONS(354), + [anon_sym_this] = ACTIONS(356), + [aux_sym_member_expression_token1] = ACTIONS(356), + [anon_sym_QMARK] = ACTIONS(356), + [anon_sym_AT] = ACTIONS(356), + [anon_sym_AT_COLON] = ACTIONS(354), + [anon_sym_if] = ACTIONS(356), + [anon_sym_else] = ACTIONS(356), + [anon_sym_new] = ACTIONS(356), + [sym__prefixUnaryOperator] = ACTIONS(356), + [sym__eitherUnaryOperator] = ACTIONS(354), + [sym__arithmetic_operator] = ACTIONS(356), + [sym__bitwise_operator] = ACTIONS(356), + [sym__logical_operator] = ACTIONS(354), + [sym__comparison_operator] = ACTIONS(356), + [sym__map_operator] = ACTIONS(354), + [sym__null_colalese_operator] = ACTIONS(354), + [anon_sym_EQ] = ACTIONS(356), + [sym__range_operator] = ACTIONS(354), + [anon_sym_null] = ACTIONS(356), + [anon_sym_dynamic] = ACTIONS(356), + [anon_sym_final] = ACTIONS(356), + [anon_sym_abstract] = ACTIONS(356), + [anon_sym_class] = ACTIONS(356), + [anon_sym_extends] = ACTIONS(356), + [anon_sym_implements] = ACTIONS(356), + [anon_sym_interface] = ACTIONS(356), + [anon_sym_typedef] = ACTIONS(356), + [anon_sym_function] = ACTIONS(356), + [anon_sym_var] = ACTIONS(356), + [aux_sym_integer_token1] = ACTIONS(356), + [aux_sym_integer_token2] = ACTIONS(354), + [aux_sym_float_token1] = ACTIONS(356), + [aux_sym_float_token2] = ACTIONS(354), + [anon_sym_true] = ACTIONS(356), + [anon_sym_false] = ACTIONS(356), + [aux_sym_string_token1] = ACTIONS(354), + [aux_sym_string_token3] = ACTIONS(354), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(356), + [anon_sym_catch] = ACTIONS(356), + [anon_sym_continue] = ACTIONS(356), + [anon_sym_do] = ACTIONS(356), + [anon_sym_enum] = ACTIONS(356), + [anon_sym_extern] = ACTIONS(356), + [anon_sym_for] = ACTIONS(356), + [anon_sym_inline] = ACTIONS(356), + [anon_sym_macro] = ACTIONS(356), + [anon_sym_operator] = ACTIONS(356), + [anon_sym_overload] = ACTIONS(356), + [anon_sym_override] = ACTIONS(356), + [anon_sym_private] = ACTIONS(356), + [anon_sym_public] = ACTIONS(356), + [anon_sym_return] = ACTIONS(356), + [anon_sym_static] = ACTIONS(356), + [anon_sym_try] = ACTIONS(356), + [anon_sym_untyped] = ACTIONS(356), + [anon_sym_while] = ACTIONS(356), + [sym__semicolon] = ACTIONS(354), + }, + [46] = { + [ts_builtin_sym_end] = ACTIONS(358), + [sym_identifier] = ACTIONS(360), + [anon_sym_POUND] = ACTIONS(358), + [anon_sym_package] = ACTIONS(360), + [anon_sym_import] = ACTIONS(360), + [anon_sym_using] = ACTIONS(360), + [anon_sym_throw] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(358), + [anon_sym_RPAREN] = ACTIONS(358), + [anon_sym_switch] = ACTIONS(360), + [anon_sym_LBRACE] = ACTIONS(358), + [anon_sym_RBRACE] = ACTIONS(358), + [anon_sym_case] = ACTIONS(360), + [anon_sym_COLON] = ACTIONS(358), + [anon_sym_default] = ACTIONS(360), + [anon_sym_cast] = ACTIONS(360), + [anon_sym_COMMA] = ACTIONS(358), + [anon_sym_DOLLARtype] = ACTIONS(358), + [anon_sym_in] = ACTIONS(360), + [anon_sym_LBRACK] = ACTIONS(358), + [anon_sym_this] = ACTIONS(360), + [aux_sym_member_expression_token1] = ACTIONS(360), + [anon_sym_QMARK] = ACTIONS(360), + [anon_sym_AT] = ACTIONS(360), + [anon_sym_AT_COLON] = ACTIONS(358), + [anon_sym_if] = ACTIONS(360), + [anon_sym_else] = ACTIONS(360), + [anon_sym_new] = ACTIONS(360), + [sym__prefixUnaryOperator] = ACTIONS(360), + [sym__eitherUnaryOperator] = ACTIONS(358), + [sym__arithmetic_operator] = ACTIONS(360), + [sym__bitwise_operator] = ACTIONS(360), + [sym__logical_operator] = ACTIONS(358), + [sym__comparison_operator] = ACTIONS(360), + [sym__map_operator] = ACTIONS(358), + [sym__null_colalese_operator] = ACTIONS(358), + [anon_sym_EQ] = ACTIONS(360), + [sym__range_operator] = ACTIONS(358), + [anon_sym_null] = ACTIONS(360), + [anon_sym_dynamic] = ACTIONS(360), + [anon_sym_final] = ACTIONS(360), + [anon_sym_abstract] = ACTIONS(360), + [anon_sym_class] = ACTIONS(360), + [anon_sym_extends] = ACTIONS(360), + [anon_sym_implements] = ACTIONS(360), + [anon_sym_interface] = ACTIONS(360), + [anon_sym_typedef] = ACTIONS(360), + [anon_sym_function] = ACTIONS(360), + [anon_sym_var] = ACTIONS(360), + [aux_sym_integer_token1] = ACTIONS(360), + [aux_sym_integer_token2] = ACTIONS(358), + [aux_sym_float_token1] = ACTIONS(360), + [aux_sym_float_token2] = ACTIONS(358), + [anon_sym_true] = ACTIONS(360), + [anon_sym_false] = ACTIONS(360), + [aux_sym_string_token1] = ACTIONS(358), + [aux_sym_string_token3] = ACTIONS(358), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(360), + [anon_sym_catch] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(360), + [anon_sym_do] = ACTIONS(360), + [anon_sym_enum] = ACTIONS(360), + [anon_sym_extern] = ACTIONS(360), + [anon_sym_for] = ACTIONS(360), + [anon_sym_inline] = ACTIONS(360), + [anon_sym_macro] = ACTIONS(360), + [anon_sym_operator] = ACTIONS(360), + [anon_sym_overload] = ACTIONS(360), + [anon_sym_override] = ACTIONS(360), + [anon_sym_private] = ACTIONS(360), + [anon_sym_public] = ACTIONS(360), + [anon_sym_return] = ACTIONS(360), + [anon_sym_static] = ACTIONS(360), + [anon_sym_try] = ACTIONS(360), + [anon_sym_untyped] = ACTIONS(360), + [anon_sym_while] = ACTIONS(360), + [sym__semicolon] = ACTIONS(358), + }, + [47] = { [ts_builtin_sym_end] = ACTIONS(362), [sym_identifier] = ACTIONS(364), [anon_sym_POUND] = ACTIONS(362), @@ -11848,48 +10996,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(364), [anon_sym_throw] = ACTIONS(364), [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_RPAREN] = ACTIONS(362), [anon_sym_switch] = ACTIONS(364), [anon_sym_LBRACE] = ACTIONS(362), [anon_sym_RBRACE] = ACTIONS(362), [anon_sym_case] = ACTIONS(364), + [anon_sym_COLON] = ACTIONS(362), [anon_sym_default] = ACTIONS(364), [anon_sym_cast] = ACTIONS(364), + [anon_sym_COMMA] = ACTIONS(362), [anon_sym_DOLLARtype] = ACTIONS(362), [anon_sym_in] = ACTIONS(364), [anon_sym_LBRACK] = ACTIONS(362), [anon_sym_this] = ACTIONS(364), + [aux_sym_member_expression_token1] = ACTIONS(364), + [anon_sym_QMARK] = ACTIONS(364), [anon_sym_AT] = ACTIONS(364), [anon_sym_AT_COLON] = ACTIONS(362), [anon_sym_if] = ACTIONS(364), [anon_sym_else] = ACTIONS(364), [anon_sym_new] = ACTIONS(364), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), + [sym__prefixUnaryOperator] = ACTIONS(364), + [sym__eitherUnaryOperator] = ACTIONS(362), + [sym__arithmetic_operator] = ACTIONS(364), + [sym__bitwise_operator] = ACTIONS(364), + [sym__logical_operator] = ACTIONS(362), + [sym__comparison_operator] = ACTIONS(364), + [sym__map_operator] = ACTIONS(362), + [sym__null_colalese_operator] = ACTIONS(362), + [anon_sym_EQ] = ACTIONS(364), + [sym__range_operator] = ACTIONS(362), [anon_sym_null] = ACTIONS(364), [anon_sym_dynamic] = ACTIONS(364), [anon_sym_final] = ACTIONS(364), @@ -11931,20 +11067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(364), [sym__semicolon] = ACTIONS(362), }, - [41] = { - [sym_operator] = STATE(22), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(88), - [sym__bitwiseOperator] = STATE(88), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [aux_sym_expression_repeat1] = STATE(46), + [48] = { [ts_builtin_sym_end] = ACTIONS(366), [sym_identifier] = ACTIONS(368), [anon_sym_POUND] = ACTIONS(366), @@ -11953,48 +11076,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(368), [anon_sym_throw] = ACTIONS(368), [anon_sym_LPAREN] = ACTIONS(366), + [anon_sym_RPAREN] = ACTIONS(366), [anon_sym_switch] = ACTIONS(368), [anon_sym_LBRACE] = ACTIONS(366), [anon_sym_RBRACE] = ACTIONS(366), [anon_sym_case] = ACTIONS(368), + [anon_sym_COLON] = ACTIONS(366), [anon_sym_default] = ACTIONS(368), [anon_sym_cast] = ACTIONS(368), + [anon_sym_COMMA] = ACTIONS(366), [anon_sym_DOLLARtype] = ACTIONS(366), [anon_sym_in] = ACTIONS(368), [anon_sym_LBRACK] = ACTIONS(366), [anon_sym_this] = ACTIONS(368), + [aux_sym_member_expression_token1] = ACTIONS(368), + [anon_sym_QMARK] = ACTIONS(368), [anon_sym_AT] = ACTIONS(368), [anon_sym_AT_COLON] = ACTIONS(366), [anon_sym_if] = ACTIONS(368), [anon_sym_else] = ACTIONS(368), [anon_sym_new] = ACTIONS(368), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(324), - [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), + [sym__prefixUnaryOperator] = ACTIONS(368), + [sym__eitherUnaryOperator] = ACTIONS(366), + [sym__arithmetic_operator] = ACTIONS(368), + [sym__bitwise_operator] = ACTIONS(368), + [sym__logical_operator] = ACTIONS(366), + [sym__comparison_operator] = ACTIONS(368), + [sym__map_operator] = ACTIONS(366), + [sym__null_colalese_operator] = ACTIONS(366), + [anon_sym_EQ] = ACTIONS(368), + [sym__range_operator] = ACTIONS(366), [anon_sym_null] = ACTIONS(368), [anon_sym_dynamic] = ACTIONS(368), [anon_sym_final] = ACTIONS(368), @@ -12036,20 +11147,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(368), [sym__semicolon] = ACTIONS(366), }, - [42] = { - [sym_operator] = STATE(22), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(88), - [sym__bitwiseOperator] = STATE(88), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [aux_sym_expression_repeat1] = STATE(43), + [49] = { [ts_builtin_sym_end] = ACTIONS(370), [sym_identifier] = ACTIONS(372), [anon_sym_POUND] = ACTIONS(370), @@ -12058,48 +11156,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(372), [anon_sym_throw] = ACTIONS(372), [anon_sym_LPAREN] = ACTIONS(370), + [anon_sym_RPAREN] = ACTIONS(370), [anon_sym_switch] = ACTIONS(372), [anon_sym_LBRACE] = ACTIONS(370), [anon_sym_RBRACE] = ACTIONS(370), [anon_sym_case] = ACTIONS(372), + [anon_sym_COLON] = ACTIONS(370), [anon_sym_default] = ACTIONS(372), [anon_sym_cast] = ACTIONS(372), + [anon_sym_COMMA] = ACTIONS(370), [anon_sym_DOLLARtype] = ACTIONS(370), [anon_sym_in] = ACTIONS(372), [anon_sym_LBRACK] = ACTIONS(370), [anon_sym_this] = ACTIONS(372), + [aux_sym_member_expression_token1] = ACTIONS(372), + [anon_sym_QMARK] = ACTIONS(372), [anon_sym_AT] = ACTIONS(372), [anon_sym_AT_COLON] = ACTIONS(370), [anon_sym_if] = ACTIONS(372), [anon_sym_else] = ACTIONS(372), [anon_sym_new] = ACTIONS(372), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(324), - [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), + [sym__prefixUnaryOperator] = ACTIONS(372), + [sym__eitherUnaryOperator] = ACTIONS(370), + [sym__arithmetic_operator] = ACTIONS(372), + [sym__bitwise_operator] = ACTIONS(372), + [sym__logical_operator] = ACTIONS(370), + [sym__comparison_operator] = ACTIONS(372), + [sym__map_operator] = ACTIONS(370), + [sym__null_colalese_operator] = ACTIONS(370), + [anon_sym_EQ] = ACTIONS(372), + [sym__range_operator] = ACTIONS(370), [anon_sym_null] = ACTIONS(372), [anon_sym_dynamic] = ACTIONS(372), [anon_sym_final] = ACTIONS(372), @@ -12139,72 +11225,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(372), [anon_sym_untyped] = ACTIONS(372), [anon_sym_while] = ACTIONS(372), - [sym__semicolon] = ACTIONS(374), + [sym__semicolon] = ACTIONS(370), }, - [43] = { - [sym_operator] = STATE(812), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [aux_sym_expression_repeat1] = STATE(49), - [ts_builtin_sym_end] = ACTIONS(89), + [50] = { + [ts_builtin_sym_end] = ACTIONS(374), [sym_identifier] = ACTIONS(376), - [anon_sym_POUND] = ACTIONS(89), + [anon_sym_POUND] = ACTIONS(374), [anon_sym_package] = ACTIONS(376), [anon_sym_import] = ACTIONS(376), [anon_sym_using] = ACTIONS(376), [anon_sym_throw] = ACTIONS(376), - [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(374), + [anon_sym_RPAREN] = ACTIONS(374), [anon_sym_switch] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(89), - [anon_sym_RBRACE] = ACTIONS(89), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_RBRACE] = ACTIONS(374), [anon_sym_case] = ACTIONS(376), + [anon_sym_COLON] = ACTIONS(374), [anon_sym_default] = ACTIONS(376), [anon_sym_cast] = ACTIONS(376), - [anon_sym_DOLLARtype] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(374), + [anon_sym_DOLLARtype] = ACTIONS(374), [anon_sym_in] = ACTIONS(376), - [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(374), [anon_sym_this] = ACTIONS(376), + [aux_sym_member_expression_token1] = ACTIONS(376), + [anon_sym_QMARK] = ACTIONS(376), [anon_sym_AT] = ACTIONS(376), - [anon_sym_AT_COLON] = ACTIONS(89), + [anon_sym_AT_COLON] = ACTIONS(374), [anon_sym_if] = ACTIONS(376), [anon_sym_else] = ACTIONS(376), [anon_sym_new] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(89), - [anon_sym_SLASH] = ACTIONS(376), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_LT_LT] = ACTIONS(89), - [anon_sym_GT_GT] = ACTIONS(376), - [anon_sym_GT_GT_GT] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(376), - [anon_sym_PIPE] = ACTIONS(376), - [anon_sym_CARET] = ACTIONS(89), - [anon_sym_AMP_AMP] = ACTIONS(89), - [anon_sym_PIPE_PIPE] = ACTIONS(89), - [anon_sym_EQ_EQ] = ACTIONS(89), - [anon_sym_BANG_EQ] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(376), - [anon_sym_LT_EQ] = ACTIONS(89), - [anon_sym_GT] = ACTIONS(376), - [anon_sym_GT_EQ] = ACTIONS(89), - [anon_sym_EQ_GT] = ACTIONS(89), - [anon_sym_QMARK_QMARK] = ACTIONS(89), + [sym__prefixUnaryOperator] = ACTIONS(376), + [sym__eitherUnaryOperator] = ACTIONS(374), + [sym__arithmetic_operator] = ACTIONS(376), + [sym__bitwise_operator] = ACTIONS(376), + [sym__logical_operator] = ACTIONS(374), + [sym__comparison_operator] = ACTIONS(376), + [sym__map_operator] = ACTIONS(374), + [sym__null_colalese_operator] = ACTIONS(374), [anon_sym_EQ] = ACTIONS(376), - [sym__rangeOperator] = ACTIONS(89), + [sym__range_operator] = ACTIONS(374), [anon_sym_null] = ACTIONS(376), [anon_sym_dynamic] = ACTIONS(376), [anon_sym_final] = ACTIONS(376), @@ -12217,13 +11278,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(376), [anon_sym_var] = ACTIONS(376), [aux_sym_integer_token1] = ACTIONS(376), - [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_integer_token2] = ACTIONS(374), [aux_sym_float_token1] = ACTIONS(376), - [aux_sym_float_token2] = ACTIONS(89), + [aux_sym_float_token2] = ACTIONS(374), [anon_sym_true] = ACTIONS(376), [anon_sym_false] = ACTIONS(376), - [aux_sym_string_token1] = ACTIONS(89), - [aux_sym_string_token3] = ACTIONS(89), + [aux_sym_string_token1] = ACTIONS(374), + [aux_sym_string_token3] = ACTIONS(374), [sym_comment] = ACTIONS(3), [anon_sym_break] = ACTIONS(376), [anon_sym_catch] = ACTIONS(376), @@ -12244,127 +11305,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(376), [anon_sym_untyped] = ACTIONS(376), [anon_sym_while] = ACTIONS(376), - [sym__semicolon] = ACTIONS(378), + [sym__semicolon] = ACTIONS(374), }, - [44] = { - [sym_operator] = STATE(22), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(88), - [sym__bitwiseOperator] = STATE(88), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [aux_sym_expression_repeat1] = STATE(45), - [ts_builtin_sym_end] = ACTIONS(380), - [sym_identifier] = ACTIONS(382), - [anon_sym_POUND] = ACTIONS(380), - [anon_sym_package] = ACTIONS(382), - [anon_sym_import] = ACTIONS(382), - [anon_sym_using] = ACTIONS(382), - [anon_sym_throw] = ACTIONS(382), - [anon_sym_LPAREN] = ACTIONS(380), - [anon_sym_switch] = ACTIONS(382), - [anon_sym_LBRACE] = ACTIONS(380), - [anon_sym_RBRACE] = ACTIONS(380), - [anon_sym_case] = ACTIONS(382), - [anon_sym_default] = ACTIONS(382), - [anon_sym_cast] = ACTIONS(382), - [anon_sym_DOLLARtype] = ACTIONS(380), - [anon_sym_in] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(380), - [anon_sym_this] = ACTIONS(382), - [anon_sym_AT] = ACTIONS(382), - [anon_sym_AT_COLON] = ACTIONS(380), - [anon_sym_if] = ACTIONS(382), - [anon_sym_else] = ACTIONS(382), - [anon_sym_new] = ACTIONS(382), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(324), - [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(382), - [anon_sym_dynamic] = ACTIONS(382), - [anon_sym_final] = ACTIONS(382), - [anon_sym_abstract] = ACTIONS(382), - [anon_sym_class] = ACTIONS(382), - [anon_sym_extends] = ACTIONS(382), - [anon_sym_implements] = ACTIONS(382), - [anon_sym_interface] = ACTIONS(382), - [anon_sym_typedef] = ACTIONS(382), - [anon_sym_function] = ACTIONS(382), - [anon_sym_var] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(382), - [aux_sym_integer_token2] = ACTIONS(380), - [aux_sym_float_token1] = ACTIONS(382), - [aux_sym_float_token2] = ACTIONS(380), - [anon_sym_true] = ACTIONS(382), - [anon_sym_false] = ACTIONS(382), - [aux_sym_string_token1] = ACTIONS(380), - [aux_sym_string_token3] = ACTIONS(380), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(382), - [anon_sym_catch] = ACTIONS(382), - [anon_sym_continue] = ACTIONS(382), - [anon_sym_do] = ACTIONS(382), - [anon_sym_enum] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(382), - [anon_sym_for] = ACTIONS(382), - [anon_sym_inline] = ACTIONS(382), - [anon_sym_macro] = ACTIONS(382), - [anon_sym_operator] = ACTIONS(382), - [anon_sym_overload] = ACTIONS(382), - [anon_sym_override] = ACTIONS(382), - [anon_sym_private] = ACTIONS(382), - [anon_sym_public] = ACTIONS(382), - [anon_sym_return] = ACTIONS(382), - [anon_sym_static] = ACTIONS(382), - [anon_sym_try] = ACTIONS(382), - [anon_sym_untyped] = ACTIONS(382), - [anon_sym_while] = ACTIONS(382), - [sym__semicolon] = ACTIONS(380), + [51] = { + [ts_builtin_sym_end] = ACTIONS(306), + [sym_identifier] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(306), + [anon_sym_package] = ACTIONS(308), + [anon_sym_import] = ACTIONS(308), + [anon_sym_using] = ACTIONS(308), + [anon_sym_throw] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(294), + [anon_sym_switch] = ACTIONS(308), + [anon_sym_LBRACE] = ACTIONS(306), + [anon_sym_RBRACE] = ACTIONS(306), + [anon_sym_case] = ACTIONS(308), + [anon_sym_COLON] = ACTIONS(378), + [anon_sym_default] = ACTIONS(308), + [anon_sym_cast] = ACTIONS(308), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_DOLLARtype] = ACTIONS(306), + [anon_sym_in] = ACTIONS(380), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_this] = ACTIONS(308), + [aux_sym_member_expression_token1] = ACTIONS(382), + [anon_sym_QMARK] = ACTIONS(308), + [anon_sym_AT] = ACTIONS(308), + [anon_sym_AT_COLON] = ACTIONS(306), + [anon_sym_if] = ACTIONS(308), + [anon_sym_else] = ACTIONS(308), + [anon_sym_new] = ACTIONS(308), + [sym__prefixUnaryOperator] = ACTIONS(308), + [sym__eitherUnaryOperator] = ACTIONS(306), + [sym__arithmetic_operator] = ACTIONS(308), + [sym__bitwise_operator] = ACTIONS(308), + [sym__logical_operator] = ACTIONS(306), + [sym__comparison_operator] = ACTIONS(308), + [sym__map_operator] = ACTIONS(378), + [sym__null_colalese_operator] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(308), + [sym__range_operator] = ACTIONS(306), + [anon_sym_null] = ACTIONS(308), + [anon_sym_dynamic] = ACTIONS(308), + [anon_sym_LT] = ACTIONS(296), + [anon_sym_final] = ACTIONS(308), + [anon_sym_abstract] = ACTIONS(308), + [anon_sym_class] = ACTIONS(308), + [anon_sym_extends] = ACTIONS(308), + [anon_sym_implements] = ACTIONS(308), + [anon_sym_interface] = ACTIONS(308), + [anon_sym_typedef] = ACTIONS(308), + [anon_sym_function] = ACTIONS(308), + [anon_sym_var] = ACTIONS(308), + [aux_sym_integer_token1] = ACTIONS(308), + [aux_sym_integer_token2] = ACTIONS(306), + [aux_sym_float_token1] = ACTIONS(308), + [aux_sym_float_token2] = ACTIONS(306), + [anon_sym_true] = ACTIONS(308), + [anon_sym_false] = ACTIONS(308), + [aux_sym_string_token1] = ACTIONS(306), + [aux_sym_string_token3] = ACTIONS(306), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(308), + [anon_sym_catch] = ACTIONS(308), + [anon_sym_continue] = ACTIONS(308), + [anon_sym_do] = ACTIONS(308), + [anon_sym_enum] = ACTIONS(308), + [anon_sym_extern] = ACTIONS(308), + [anon_sym_for] = ACTIONS(308), + [anon_sym_inline] = ACTIONS(308), + [anon_sym_macro] = ACTIONS(308), + [anon_sym_operator] = ACTIONS(308), + [anon_sym_overload] = ACTIONS(308), + [anon_sym_override] = ACTIONS(308), + [anon_sym_private] = ACTIONS(308), + [anon_sym_public] = ACTIONS(308), + [anon_sym_return] = ACTIONS(308), + [anon_sym_static] = ACTIONS(308), + [anon_sym_try] = ACTIONS(308), + [anon_sym_untyped] = ACTIONS(308), + [anon_sym_while] = ACTIONS(308), + [sym__semicolon] = ACTIONS(306), }, - [45] = { - [sym_operator] = STATE(812), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [aux_sym_expression_repeat1] = STATE(49), + [52] = { [ts_builtin_sym_end] = ACTIONS(384), [sym_identifier] = ACTIONS(386), [anon_sym_POUND] = ACTIONS(384), @@ -12373,48 +11396,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(386), [anon_sym_throw] = ACTIONS(386), [anon_sym_LPAREN] = ACTIONS(384), + [anon_sym_RPAREN] = ACTIONS(384), [anon_sym_switch] = ACTIONS(386), [anon_sym_LBRACE] = ACTIONS(384), [anon_sym_RBRACE] = ACTIONS(384), [anon_sym_case] = ACTIONS(386), + [anon_sym_COLON] = ACTIONS(384), [anon_sym_default] = ACTIONS(386), [anon_sym_cast] = ACTIONS(386), + [anon_sym_COMMA] = ACTIONS(384), [anon_sym_DOLLARtype] = ACTIONS(384), [anon_sym_in] = ACTIONS(386), [anon_sym_LBRACK] = ACTIONS(384), [anon_sym_this] = ACTIONS(386), + [aux_sym_member_expression_token1] = ACTIONS(386), + [anon_sym_QMARK] = ACTIONS(386), [anon_sym_AT] = ACTIONS(386), [anon_sym_AT_COLON] = ACTIONS(384), [anon_sym_if] = ACTIONS(386), [anon_sym_else] = ACTIONS(386), [anon_sym_new] = ACTIONS(386), - [anon_sym_TILDE] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(386), - [anon_sym_DASH] = ACTIONS(386), - [anon_sym_PLUS_PLUS] = ACTIONS(384), - [anon_sym_DASH_DASH] = ACTIONS(384), - [anon_sym_PERCENT] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_SLASH] = ACTIONS(386), - [anon_sym_PLUS] = ACTIONS(386), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(386), - [anon_sym_GT_GT_GT] = ACTIONS(384), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_CARET] = ACTIONS(384), - [anon_sym_AMP_AMP] = ACTIONS(384), - [anon_sym_PIPE_PIPE] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(384), - [anon_sym_BANG_EQ] = ACTIONS(384), - [anon_sym_LT] = ACTIONS(386), - [anon_sym_LT_EQ] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(386), - [anon_sym_GT_EQ] = ACTIONS(384), - [anon_sym_EQ_GT] = ACTIONS(384), - [anon_sym_QMARK_QMARK] = ACTIONS(384), + [sym__prefixUnaryOperator] = ACTIONS(386), + [sym__eitherUnaryOperator] = ACTIONS(384), + [sym__arithmetic_operator] = ACTIONS(386), + [sym__bitwise_operator] = ACTIONS(386), + [sym__logical_operator] = ACTIONS(384), + [sym__comparison_operator] = ACTIONS(386), + [sym__map_operator] = ACTIONS(384), + [sym__null_colalese_operator] = ACTIONS(384), [anon_sym_EQ] = ACTIONS(386), - [sym__rangeOperator] = ACTIONS(384), + [sym__range_operator] = ACTIONS(384), [anon_sym_null] = ACTIONS(386), [anon_sym_dynamic] = ACTIONS(386), [anon_sym_final] = ACTIONS(386), @@ -12456,20 +11467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(386), [sym__semicolon] = ACTIONS(384), }, - [46] = { - [sym_operator] = STATE(812), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [aux_sym_expression_repeat1] = STATE(49), + [53] = { [ts_builtin_sym_end] = ACTIONS(388), [sym_identifier] = ACTIONS(390), [anon_sym_POUND] = ACTIONS(388), @@ -12478,48 +11476,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(390), [anon_sym_throw] = ACTIONS(390), [anon_sym_LPAREN] = ACTIONS(388), + [anon_sym_RPAREN] = ACTIONS(388), [anon_sym_switch] = ACTIONS(390), [anon_sym_LBRACE] = ACTIONS(388), [anon_sym_RBRACE] = ACTIONS(388), [anon_sym_case] = ACTIONS(390), + [anon_sym_COLON] = ACTIONS(388), [anon_sym_default] = ACTIONS(390), [anon_sym_cast] = ACTIONS(390), + [anon_sym_COMMA] = ACTIONS(388), [anon_sym_DOLLARtype] = ACTIONS(388), [anon_sym_in] = ACTIONS(390), [anon_sym_LBRACK] = ACTIONS(388), [anon_sym_this] = ACTIONS(390), + [aux_sym_member_expression_token1] = ACTIONS(390), + [anon_sym_QMARK] = ACTIONS(390), [anon_sym_AT] = ACTIONS(390), [anon_sym_AT_COLON] = ACTIONS(388), [anon_sym_if] = ACTIONS(390), [anon_sym_else] = ACTIONS(390), [anon_sym_new] = ACTIONS(390), - [anon_sym_TILDE] = ACTIONS(388), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_PERCENT] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(388), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_LT_LT] = ACTIONS(388), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_GT_GT_GT] = ACTIONS(388), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(390), - [anon_sym_CARET] = ACTIONS(388), - [anon_sym_AMP_AMP] = ACTIONS(388), - [anon_sym_PIPE_PIPE] = ACTIONS(388), - [anon_sym_EQ_EQ] = ACTIONS(388), - [anon_sym_BANG_EQ] = ACTIONS(388), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_LT_EQ] = ACTIONS(388), - [anon_sym_GT] = ACTIONS(390), - [anon_sym_GT_EQ] = ACTIONS(388), - [anon_sym_EQ_GT] = ACTIONS(388), - [anon_sym_QMARK_QMARK] = ACTIONS(388), + [sym__prefixUnaryOperator] = ACTIONS(390), + [sym__eitherUnaryOperator] = ACTIONS(388), + [sym__arithmetic_operator] = ACTIONS(390), + [sym__bitwise_operator] = ACTIONS(390), + [sym__logical_operator] = ACTIONS(388), + [sym__comparison_operator] = ACTIONS(390), + [sym__map_operator] = ACTIONS(388), + [sym__null_colalese_operator] = ACTIONS(388), [anon_sym_EQ] = ACTIONS(390), - [sym__rangeOperator] = ACTIONS(388), + [sym__range_operator] = ACTIONS(388), [anon_sym_null] = ACTIONS(390), [anon_sym_dynamic] = ACTIONS(390), [anon_sym_final] = ACTIONS(390), @@ -12561,125 +11547,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(390), [sym__semicolon] = ACTIONS(388), }, - [47] = { - [sym_operator] = STATE(22), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(88), - [sym__bitwiseOperator] = STATE(88), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [aux_sym_expression_repeat1] = STATE(48), - [ts_builtin_sym_end] = ACTIONS(388), - [sym_identifier] = ACTIONS(390), - [anon_sym_POUND] = ACTIONS(388), - [anon_sym_package] = ACTIONS(390), - [anon_sym_import] = ACTIONS(390), - [anon_sym_using] = ACTIONS(390), - [anon_sym_throw] = ACTIONS(390), - [anon_sym_LPAREN] = ACTIONS(388), - [anon_sym_switch] = ACTIONS(390), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_RBRACE] = ACTIONS(388), - [anon_sym_case] = ACTIONS(390), - [anon_sym_default] = ACTIONS(390), - [anon_sym_cast] = ACTIONS(390), - [anon_sym_DOLLARtype] = ACTIONS(388), - [anon_sym_in] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_this] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(390), - [anon_sym_AT_COLON] = ACTIONS(388), - [anon_sym_if] = ACTIONS(390), - [anon_sym_else] = ACTIONS(390), - [anon_sym_new] = ACTIONS(390), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(324), - [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(390), - [anon_sym_dynamic] = ACTIONS(390), - [anon_sym_final] = ACTIONS(390), - [anon_sym_abstract] = ACTIONS(390), - [anon_sym_class] = ACTIONS(390), - [anon_sym_extends] = ACTIONS(390), - [anon_sym_implements] = ACTIONS(390), - [anon_sym_interface] = ACTIONS(390), - [anon_sym_typedef] = ACTIONS(390), - [anon_sym_function] = ACTIONS(390), - [anon_sym_var] = ACTIONS(390), - [aux_sym_integer_token1] = ACTIONS(390), - [aux_sym_integer_token2] = ACTIONS(388), - [aux_sym_float_token1] = ACTIONS(390), - [aux_sym_float_token2] = ACTIONS(388), - [anon_sym_true] = ACTIONS(390), - [anon_sym_false] = ACTIONS(390), - [aux_sym_string_token1] = ACTIONS(388), - [aux_sym_string_token3] = ACTIONS(388), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(390), - [anon_sym_catch] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(390), - [anon_sym_do] = ACTIONS(390), - [anon_sym_enum] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(390), - [anon_sym_for] = ACTIONS(390), - [anon_sym_inline] = ACTIONS(390), - [anon_sym_macro] = ACTIONS(390), - [anon_sym_operator] = ACTIONS(390), - [anon_sym_overload] = ACTIONS(390), - [anon_sym_override] = ACTIONS(390), - [anon_sym_private] = ACTIONS(390), - [anon_sym_public] = ACTIONS(390), - [anon_sym_return] = ACTIONS(390), - [anon_sym_static] = ACTIONS(390), - [anon_sym_try] = ACTIONS(390), - [anon_sym_untyped] = ACTIONS(390), - [anon_sym_while] = ACTIONS(390), - [sym__semicolon] = ACTIONS(388), + [54] = { + [ts_builtin_sym_end] = ACTIONS(306), + [sym_identifier] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(306), + [anon_sym_package] = ACTIONS(308), + [anon_sym_import] = ACTIONS(308), + [anon_sym_using] = ACTIONS(308), + [anon_sym_throw] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(294), + [anon_sym_RPAREN] = ACTIONS(306), + [anon_sym_switch] = ACTIONS(308), + [anon_sym_LBRACE] = ACTIONS(306), + [anon_sym_RBRACE] = ACTIONS(306), + [anon_sym_case] = ACTIONS(308), + [anon_sym_default] = ACTIONS(308), + [anon_sym_cast] = ACTIONS(308), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_DOLLARtype] = ACTIONS(306), + [anon_sym_in] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_this] = ACTIONS(308), + [aux_sym_member_expression_token1] = ACTIONS(308), + [anon_sym_QMARK] = ACTIONS(308), + [anon_sym_AT] = ACTIONS(308), + [anon_sym_AT_COLON] = ACTIONS(306), + [anon_sym_if] = ACTIONS(308), + [anon_sym_else] = ACTIONS(308), + [anon_sym_new] = ACTIONS(308), + [sym__prefixUnaryOperator] = ACTIONS(308), + [sym__eitherUnaryOperator] = ACTIONS(306), + [sym__arithmetic_operator] = ACTIONS(308), + [sym__bitwise_operator] = ACTIONS(308), + [sym__logical_operator] = ACTIONS(306), + [sym__comparison_operator] = ACTIONS(308), + [sym__map_operator] = ACTIONS(306), + [sym__null_colalese_operator] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(308), + [sym__range_operator] = ACTIONS(306), + [anon_sym_null] = ACTIONS(308), + [anon_sym_dynamic] = ACTIONS(308), + [anon_sym_LT] = ACTIONS(296), + [anon_sym_final] = ACTIONS(308), + [anon_sym_abstract] = ACTIONS(308), + [anon_sym_class] = ACTIONS(308), + [anon_sym_extends] = ACTIONS(308), + [anon_sym_implements] = ACTIONS(308), + [anon_sym_interface] = ACTIONS(308), + [anon_sym_typedef] = ACTIONS(308), + [anon_sym_function] = ACTIONS(308), + [anon_sym_var] = ACTIONS(308), + [aux_sym_integer_token1] = ACTIONS(308), + [aux_sym_integer_token2] = ACTIONS(306), + [aux_sym_float_token1] = ACTIONS(308), + [aux_sym_float_token2] = ACTIONS(306), + [anon_sym_true] = ACTIONS(308), + [anon_sym_false] = ACTIONS(308), + [aux_sym_string_token1] = ACTIONS(306), + [aux_sym_string_token3] = ACTIONS(306), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(308), + [anon_sym_catch] = ACTIONS(308), + [anon_sym_continue] = ACTIONS(308), + [anon_sym_do] = ACTIONS(308), + [anon_sym_enum] = ACTIONS(308), + [anon_sym_extern] = ACTIONS(308), + [anon_sym_for] = ACTIONS(308), + [anon_sym_inline] = ACTIONS(308), + [anon_sym_macro] = ACTIONS(308), + [anon_sym_operator] = ACTIONS(308), + [anon_sym_overload] = ACTIONS(308), + [anon_sym_override] = ACTIONS(308), + [anon_sym_private] = ACTIONS(308), + [anon_sym_public] = ACTIONS(308), + [anon_sym_return] = ACTIONS(308), + [anon_sym_static] = ACTIONS(308), + [anon_sym_try] = ACTIONS(308), + [anon_sym_untyped] = ACTIONS(308), + [anon_sym_while] = ACTIONS(308), + [sym__semicolon] = ACTIONS(306), }, - [48] = { - [sym_operator] = STATE(812), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [aux_sym_expression_repeat1] = STATE(49), + [55] = { [ts_builtin_sym_end] = ACTIONS(392), [sym_identifier] = ACTIONS(394), [anon_sym_POUND] = ACTIONS(392), @@ -12688,48 +11636,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(394), [anon_sym_throw] = ACTIONS(394), [anon_sym_LPAREN] = ACTIONS(392), + [anon_sym_RPAREN] = ACTIONS(392), [anon_sym_switch] = ACTIONS(394), [anon_sym_LBRACE] = ACTIONS(392), [anon_sym_RBRACE] = ACTIONS(392), [anon_sym_case] = ACTIONS(394), + [anon_sym_COLON] = ACTIONS(392), [anon_sym_default] = ACTIONS(394), [anon_sym_cast] = ACTIONS(394), + [anon_sym_COMMA] = ACTIONS(392), [anon_sym_DOLLARtype] = ACTIONS(392), [anon_sym_in] = ACTIONS(394), [anon_sym_LBRACK] = ACTIONS(392), [anon_sym_this] = ACTIONS(394), + [aux_sym_member_expression_token1] = ACTIONS(394), + [anon_sym_QMARK] = ACTIONS(394), [anon_sym_AT] = ACTIONS(394), [anon_sym_AT_COLON] = ACTIONS(392), [anon_sym_if] = ACTIONS(394), [anon_sym_else] = ACTIONS(394), [anon_sym_new] = ACTIONS(394), - [anon_sym_TILDE] = ACTIONS(392), - [anon_sym_BANG] = ACTIONS(394), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_PLUS_PLUS] = ACTIONS(392), - [anon_sym_DASH_DASH] = ACTIONS(392), - [anon_sym_PERCENT] = ACTIONS(392), - [anon_sym_STAR] = ACTIONS(392), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_LT_LT] = ACTIONS(392), - [anon_sym_GT_GT] = ACTIONS(394), - [anon_sym_GT_GT_GT] = ACTIONS(392), - [anon_sym_AMP] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(392), - [anon_sym_AMP_AMP] = ACTIONS(392), - [anon_sym_PIPE_PIPE] = ACTIONS(392), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_LT] = ACTIONS(394), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(394), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_EQ_GT] = ACTIONS(392), - [anon_sym_QMARK_QMARK] = ACTIONS(392), + [sym__prefixUnaryOperator] = ACTIONS(394), + [sym__eitherUnaryOperator] = ACTIONS(392), + [sym__arithmetic_operator] = ACTIONS(394), + [sym__bitwise_operator] = ACTIONS(394), + [sym__logical_operator] = ACTIONS(392), + [sym__comparison_operator] = ACTIONS(394), + [sym__map_operator] = ACTIONS(392), + [sym__null_colalese_operator] = ACTIONS(392), [anon_sym_EQ] = ACTIONS(394), - [sym__rangeOperator] = ACTIONS(392), + [sym__range_operator] = ACTIONS(392), [anon_sym_null] = ACTIONS(394), [anon_sym_dynamic] = ACTIONS(394), [anon_sym_final] = ACTIONS(394), @@ -12771,125 +11707,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(394), [sym__semicolon] = ACTIONS(392), }, - [49] = { - [sym_operator] = STATE(812), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [aux_sym_expression_repeat1] = STATE(49), - [ts_builtin_sym_end] = ACTIONS(340), - [sym_identifier] = ACTIONS(342), - [anon_sym_POUND] = ACTIONS(340), - [anon_sym_package] = ACTIONS(342), - [anon_sym_import] = ACTIONS(342), - [anon_sym_using] = ACTIONS(342), - [anon_sym_throw] = ACTIONS(342), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_switch] = ACTIONS(342), - [anon_sym_LBRACE] = ACTIONS(340), - [anon_sym_RBRACE] = ACTIONS(340), - [anon_sym_case] = ACTIONS(342), - [anon_sym_default] = ACTIONS(342), - [anon_sym_cast] = ACTIONS(342), - [anon_sym_DOLLARtype] = ACTIONS(340), - [anon_sym_in] = ACTIONS(342), - [anon_sym_LBRACK] = ACTIONS(340), - [anon_sym_this] = ACTIONS(342), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_AT_COLON] = ACTIONS(340), - [anon_sym_if] = ACTIONS(342), - [anon_sym_else] = ACTIONS(342), - [anon_sym_new] = ACTIONS(342), - [anon_sym_TILDE] = ACTIONS(344), - [anon_sym_BANG] = ACTIONS(347), - [anon_sym_DASH] = ACTIONS(350), - [anon_sym_PLUS_PLUS] = ACTIONS(353), - [anon_sym_DASH_DASH] = ACTIONS(353), - [anon_sym_PERCENT] = ACTIONS(356), - [anon_sym_STAR] = ACTIONS(356), - [anon_sym_SLASH] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(359), - [anon_sym_LT_LT] = ACTIONS(356), - [anon_sym_GT_GT] = ACTIONS(359), - [anon_sym_GT_GT_GT] = ACTIONS(356), - [anon_sym_AMP] = ACTIONS(359), - [anon_sym_PIPE] = ACTIONS(359), - [anon_sym_CARET] = ACTIONS(356), - [anon_sym_AMP_AMP] = ACTIONS(344), - [anon_sym_PIPE_PIPE] = ACTIONS(344), - [anon_sym_EQ_EQ] = ACTIONS(344), - [anon_sym_BANG_EQ] = ACTIONS(344), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_LT_EQ] = ACTIONS(344), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_GT_EQ] = ACTIONS(344), - [anon_sym_EQ_GT] = ACTIONS(344), - [anon_sym_QMARK_QMARK] = ACTIONS(344), - [anon_sym_EQ] = ACTIONS(347), - [sym__rangeOperator] = ACTIONS(344), - [anon_sym_null] = ACTIONS(342), - [anon_sym_dynamic] = ACTIONS(342), - [anon_sym_final] = ACTIONS(342), - [anon_sym_abstract] = ACTIONS(342), - [anon_sym_class] = ACTIONS(342), - [anon_sym_extends] = ACTIONS(342), - [anon_sym_implements] = ACTIONS(342), - [anon_sym_interface] = ACTIONS(342), - [anon_sym_typedef] = ACTIONS(342), - [anon_sym_function] = ACTIONS(342), - [anon_sym_var] = ACTIONS(342), - [aux_sym_integer_token1] = ACTIONS(342), - [aux_sym_integer_token2] = ACTIONS(340), - [aux_sym_float_token1] = ACTIONS(342), - [aux_sym_float_token2] = ACTIONS(340), - [anon_sym_true] = ACTIONS(342), - [anon_sym_false] = ACTIONS(342), - [aux_sym_string_token1] = ACTIONS(340), - [aux_sym_string_token3] = ACTIONS(340), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(342), - [anon_sym_catch] = ACTIONS(342), - [anon_sym_continue] = ACTIONS(342), - [anon_sym_do] = ACTIONS(342), - [anon_sym_enum] = ACTIONS(342), - [anon_sym_extern] = ACTIONS(342), - [anon_sym_for] = ACTIONS(342), - [anon_sym_inline] = ACTIONS(342), - [anon_sym_macro] = ACTIONS(342), - [anon_sym_operator] = ACTIONS(342), - [anon_sym_overload] = ACTIONS(342), - [anon_sym_override] = ACTIONS(342), - [anon_sym_private] = ACTIONS(342), - [anon_sym_public] = ACTIONS(342), - [anon_sym_return] = ACTIONS(342), - [anon_sym_static] = ACTIONS(342), - [anon_sym_try] = ACTIONS(342), - [anon_sym_untyped] = ACTIONS(342), - [anon_sym_while] = ACTIONS(342), - [sym__semicolon] = ACTIONS(340), - }, - [50] = { - [sym_operator] = STATE(22), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(88), - [sym__bitwiseOperator] = STATE(88), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [aux_sym_expression_repeat1] = STATE(40), + [56] = { [ts_builtin_sym_end] = ACTIONS(396), [sym_identifier] = ACTIONS(398), [anon_sym_POUND] = ACTIONS(396), @@ -12898,48 +11716,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(398), [anon_sym_throw] = ACTIONS(398), [anon_sym_LPAREN] = ACTIONS(396), + [anon_sym_RPAREN] = ACTIONS(396), [anon_sym_switch] = ACTIONS(398), [anon_sym_LBRACE] = ACTIONS(396), [anon_sym_RBRACE] = ACTIONS(396), [anon_sym_case] = ACTIONS(398), + [anon_sym_COLON] = ACTIONS(396), [anon_sym_default] = ACTIONS(398), [anon_sym_cast] = ACTIONS(398), + [anon_sym_COMMA] = ACTIONS(396), [anon_sym_DOLLARtype] = ACTIONS(396), [anon_sym_in] = ACTIONS(398), [anon_sym_LBRACK] = ACTIONS(396), [anon_sym_this] = ACTIONS(398), + [aux_sym_member_expression_token1] = ACTIONS(398), + [anon_sym_QMARK] = ACTIONS(398), [anon_sym_AT] = ACTIONS(398), [anon_sym_AT_COLON] = ACTIONS(396), [anon_sym_if] = ACTIONS(398), [anon_sym_else] = ACTIONS(398), [anon_sym_new] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(324), - [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), + [sym__prefixUnaryOperator] = ACTIONS(398), + [sym__eitherUnaryOperator] = ACTIONS(396), + [sym__arithmetic_operator] = ACTIONS(398), + [sym__bitwise_operator] = ACTIONS(398), + [sym__logical_operator] = ACTIONS(396), + [sym__comparison_operator] = ACTIONS(398), + [sym__map_operator] = ACTIONS(396), + [sym__null_colalese_operator] = ACTIONS(396), + [anon_sym_EQ] = ACTIONS(398), + [sym__range_operator] = ACTIONS(396), [anon_sym_null] = ACTIONS(398), [anon_sym_dynamic] = ACTIONS(398), [anon_sym_final] = ACTIONS(398), @@ -12981,893 +11787,486 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(398), [sym__semicolon] = ACTIONS(396), }, - [51] = { + [57] = { [ts_builtin_sym_end] = ACTIONS(400), - [sym_identifier] = ACTIONS(402), + [sym_identifier] = ACTIONS(403), [anon_sym_POUND] = ACTIONS(400), - [anon_sym_package] = ACTIONS(402), - [anon_sym_import] = ACTIONS(402), - [anon_sym_using] = ACTIONS(402), - [anon_sym_throw] = ACTIONS(402), + [anon_sym_package] = ACTIONS(403), + [anon_sym_import] = ACTIONS(403), + [anon_sym_using] = ACTIONS(403), + [anon_sym_throw] = ACTIONS(403), [anon_sym_LPAREN] = ACTIONS(400), [anon_sym_RPAREN] = ACTIONS(400), - [anon_sym_switch] = ACTIONS(402), + [anon_sym_switch] = ACTIONS(403), [anon_sym_LBRACE] = ACTIONS(400), [anon_sym_RBRACE] = ACTIONS(400), - [anon_sym_case] = ACTIONS(402), + [anon_sym_case] = ACTIONS(403), [anon_sym_COLON] = ACTIONS(400), - [anon_sym_default] = ACTIONS(402), - [anon_sym_cast] = ACTIONS(402), + [anon_sym_default] = ACTIONS(403), + [anon_sym_cast] = ACTIONS(403), [anon_sym_COMMA] = ACTIONS(400), [anon_sym_DOLLARtype] = ACTIONS(400), - [anon_sym_in] = ACTIONS(402), + [anon_sym_in] = ACTIONS(403), [anon_sym_LBRACK] = ACTIONS(400), - [anon_sym_RBRACK] = ACTIONS(400), - [anon_sym_this] = ACTIONS(402), - [anon_sym_DOT] = ACTIONS(402), - [anon_sym_QMARK] = ACTIONS(402), - [anon_sym_AT] = ACTIONS(402), + [anon_sym_this] = ACTIONS(403), + [aux_sym_member_expression_token1] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(403), [anon_sym_AT_COLON] = ACTIONS(400), - [anon_sym_if] = ACTIONS(402), - [anon_sym_else] = ACTIONS(402), - [anon_sym_elseif] = ACTIONS(400), - [anon_sym_new] = ACTIONS(402), - [anon_sym_TILDE] = ACTIONS(400), - [anon_sym_BANG] = ACTIONS(402), - [anon_sym_DASH] = ACTIONS(402), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), - [anon_sym_PERCENT] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(400), - [anon_sym_SLASH] = ACTIONS(402), - [anon_sym_PLUS] = ACTIONS(402), - [anon_sym_LT_LT] = ACTIONS(400), - [anon_sym_GT_GT] = ACTIONS(402), - [anon_sym_GT_GT_GT] = ACTIONS(400), - [anon_sym_AMP] = ACTIONS(402), - [anon_sym_PIPE] = ACTIONS(402), - [anon_sym_CARET] = ACTIONS(400), - [anon_sym_AMP_AMP] = ACTIONS(400), - [anon_sym_PIPE_PIPE] = ACTIONS(400), - [anon_sym_EQ_EQ] = ACTIONS(400), - [anon_sym_BANG_EQ] = ACTIONS(400), - [anon_sym_LT] = ACTIONS(402), - [anon_sym_LT_EQ] = ACTIONS(400), - [anon_sym_GT] = ACTIONS(402), - [anon_sym_GT_EQ] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(400), - [anon_sym_QMARK_QMARK] = ACTIONS(400), - [anon_sym_EQ] = ACTIONS(402), - [sym__rangeOperator] = ACTIONS(400), - [anon_sym_null] = ACTIONS(402), - [anon_sym_dynamic] = ACTIONS(402), - [anon_sym_final] = ACTIONS(402), - [anon_sym_abstract] = ACTIONS(402), - [anon_sym_class] = ACTIONS(402), - [anon_sym_extends] = ACTIONS(402), - [anon_sym_implements] = ACTIONS(402), - [anon_sym_interface] = ACTIONS(402), - [anon_sym_typedef] = ACTIONS(402), - [anon_sym_function] = ACTIONS(402), - [anon_sym_var] = ACTIONS(402), - [aux_sym_integer_token1] = ACTIONS(402), + [anon_sym_if] = ACTIONS(403), + [anon_sym_else] = ACTIONS(403), + [anon_sym_new] = ACTIONS(403), + [sym__prefixUnaryOperator] = ACTIONS(403), + [sym__eitherUnaryOperator] = ACTIONS(400), + [sym__arithmetic_operator] = ACTIONS(403), + [sym__bitwise_operator] = ACTIONS(403), + [sym__logical_operator] = ACTIONS(400), + [sym__comparison_operator] = ACTIONS(403), + [sym__map_operator] = ACTIONS(400), + [sym__null_colalese_operator] = ACTIONS(400), + [anon_sym_EQ] = ACTIONS(403), + [sym__range_operator] = ACTIONS(400), + [anon_sym_null] = ACTIONS(403), + [anon_sym_dynamic] = ACTIONS(403), + [anon_sym_final] = ACTIONS(403), + [anon_sym_abstract] = ACTIONS(403), + [anon_sym_class] = ACTIONS(403), + [anon_sym_extends] = ACTIONS(403), + [anon_sym_implements] = ACTIONS(403), + [anon_sym_interface] = ACTIONS(403), + [anon_sym_typedef] = ACTIONS(403), + [anon_sym_function] = ACTIONS(403), + [anon_sym_var] = ACTIONS(403), + [aux_sym_integer_token1] = ACTIONS(403), [aux_sym_integer_token2] = ACTIONS(400), - [aux_sym_float_token1] = ACTIONS(402), + [aux_sym_float_token1] = ACTIONS(403), [aux_sym_float_token2] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), + [anon_sym_true] = ACTIONS(403), + [anon_sym_false] = ACTIONS(403), [aux_sym_string_token1] = ACTIONS(400), [aux_sym_string_token3] = ACTIONS(400), [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(402), - [anon_sym_catch] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(402), - [anon_sym_do] = ACTIONS(402), - [anon_sym_enum] = ACTIONS(402), - [anon_sym_extern] = ACTIONS(402), - [anon_sym_for] = ACTIONS(402), - [anon_sym_inline] = ACTIONS(402), - [anon_sym_macro] = ACTIONS(402), - [anon_sym_operator] = ACTIONS(402), - [anon_sym_overload] = ACTIONS(402), - [anon_sym_override] = ACTIONS(402), - [anon_sym_private] = ACTIONS(402), - [anon_sym_public] = ACTIONS(402), - [anon_sym_return] = ACTIONS(402), - [anon_sym_static] = ACTIONS(402), - [anon_sym_try] = ACTIONS(402), - [anon_sym_untyped] = ACTIONS(402), - [anon_sym_while] = ACTIONS(402), + [anon_sym_break] = ACTIONS(403), + [anon_sym_catch] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(403), + [anon_sym_do] = ACTIONS(403), + [anon_sym_enum] = ACTIONS(403), + [anon_sym_extern] = ACTIONS(403), + [anon_sym_for] = ACTIONS(403), + [anon_sym_inline] = ACTIONS(403), + [anon_sym_macro] = ACTIONS(403), + [anon_sym_operator] = ACTIONS(403), + [anon_sym_overload] = ACTIONS(403), + [anon_sym_override] = ACTIONS(403), + [anon_sym_private] = ACTIONS(403), + [anon_sym_public] = ACTIONS(403), + [anon_sym_return] = ACTIONS(403), + [anon_sym_static] = ACTIONS(403), + [anon_sym_try] = ACTIONS(403), + [anon_sym_untyped] = ACTIONS(403), + [anon_sym_while] = ACTIONS(403), [sym__semicolon] = ACTIONS(400), }, - [52] = { - [ts_builtin_sym_end] = ACTIONS(404), - [sym_identifier] = ACTIONS(406), - [anon_sym_POUND] = ACTIONS(404), - [anon_sym_package] = ACTIONS(406), - [anon_sym_import] = ACTIONS(406), - [anon_sym_using] = ACTIONS(406), - [anon_sym_throw] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_switch] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(404), - [anon_sym_case] = ACTIONS(406), - [anon_sym_COLON] = ACTIONS(404), - [anon_sym_default] = ACTIONS(406), - [anon_sym_cast] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_DOLLARtype] = ACTIONS(404), - [anon_sym_in] = ACTIONS(406), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_RBRACK] = ACTIONS(404), - [anon_sym_this] = ACTIONS(406), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_QMARK] = ACTIONS(406), - [anon_sym_AT] = ACTIONS(406), - [anon_sym_AT_COLON] = ACTIONS(404), - [anon_sym_if] = ACTIONS(406), - [anon_sym_else] = ACTIONS(406), - [anon_sym_elseif] = ACTIONS(404), - [anon_sym_new] = ACTIONS(406), - [anon_sym_TILDE] = ACTIONS(404), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), - [anon_sym_PERCENT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(404), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(404), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(404), - [anon_sym_AMP_AMP] = ACTIONS(404), - [anon_sym_PIPE_PIPE] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(404), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(406), - [sym__rangeOperator] = ACTIONS(404), - [anon_sym_null] = ACTIONS(406), - [anon_sym_dynamic] = ACTIONS(406), - [anon_sym_final] = ACTIONS(406), - [anon_sym_abstract] = ACTIONS(406), - [anon_sym_class] = ACTIONS(406), - [anon_sym_extends] = ACTIONS(406), - [anon_sym_implements] = ACTIONS(406), - [anon_sym_interface] = ACTIONS(406), - [anon_sym_typedef] = ACTIONS(406), - [anon_sym_function] = ACTIONS(406), - [anon_sym_var] = ACTIONS(406), - [aux_sym_integer_token1] = ACTIONS(406), - [aux_sym_integer_token2] = ACTIONS(404), - [aux_sym_float_token1] = ACTIONS(406), - [aux_sym_float_token2] = ACTIONS(404), - [anon_sym_true] = ACTIONS(406), - [anon_sym_false] = ACTIONS(406), - [aux_sym_string_token1] = ACTIONS(404), - [aux_sym_string_token3] = ACTIONS(404), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(406), - [anon_sym_catch] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(406), - [anon_sym_do] = ACTIONS(406), - [anon_sym_enum] = ACTIONS(406), - [anon_sym_extern] = ACTIONS(406), - [anon_sym_for] = ACTIONS(406), - [anon_sym_inline] = ACTIONS(406), - [anon_sym_macro] = ACTIONS(406), - [anon_sym_operator] = ACTIONS(406), - [anon_sym_overload] = ACTIONS(406), - [anon_sym_override] = ACTIONS(406), - [anon_sym_private] = ACTIONS(406), - [anon_sym_public] = ACTIONS(406), - [anon_sym_return] = ACTIONS(406), - [anon_sym_static] = ACTIONS(406), - [anon_sym_try] = ACTIONS(406), - [anon_sym_untyped] = ACTIONS(406), - [anon_sym_while] = ACTIONS(406), - [sym__semicolon] = ACTIONS(404), + [58] = { + [ts_builtin_sym_end] = ACTIONS(406), + [sym_identifier] = ACTIONS(408), + [anon_sym_POUND] = ACTIONS(406), + [anon_sym_package] = ACTIONS(408), + [anon_sym_import] = ACTIONS(408), + [anon_sym_using] = ACTIONS(408), + [anon_sym_throw] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(406), + [anon_sym_RPAREN] = ACTIONS(406), + [anon_sym_switch] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_RBRACE] = ACTIONS(406), + [anon_sym_case] = ACTIONS(408), + [anon_sym_COLON] = ACTIONS(406), + [anon_sym_default] = ACTIONS(408), + [anon_sym_cast] = ACTIONS(408), + [anon_sym_COMMA] = ACTIONS(406), + [anon_sym_DOLLARtype] = ACTIONS(406), + [anon_sym_in] = ACTIONS(408), + [anon_sym_LBRACK] = ACTIONS(406), + [anon_sym_this] = ACTIONS(408), + [aux_sym_member_expression_token1] = ACTIONS(408), + [anon_sym_QMARK] = ACTIONS(408), + [anon_sym_AT] = ACTIONS(408), + [anon_sym_AT_COLON] = ACTIONS(406), + [anon_sym_if] = ACTIONS(408), + [anon_sym_else] = ACTIONS(408), + [anon_sym_new] = ACTIONS(408), + [sym__prefixUnaryOperator] = ACTIONS(408), + [sym__eitherUnaryOperator] = ACTIONS(406), + [sym__arithmetic_operator] = ACTIONS(408), + [sym__bitwise_operator] = ACTIONS(408), + [sym__logical_operator] = ACTIONS(406), + [sym__comparison_operator] = ACTIONS(408), + [sym__map_operator] = ACTIONS(406), + [sym__null_colalese_operator] = ACTIONS(406), + [anon_sym_EQ] = ACTIONS(408), + [sym__range_operator] = ACTIONS(406), + [anon_sym_null] = ACTIONS(408), + [anon_sym_dynamic] = ACTIONS(408), + [anon_sym_final] = ACTIONS(408), + [anon_sym_abstract] = ACTIONS(408), + [anon_sym_class] = ACTIONS(408), + [anon_sym_extends] = ACTIONS(408), + [anon_sym_implements] = ACTIONS(408), + [anon_sym_interface] = ACTIONS(408), + [anon_sym_typedef] = ACTIONS(408), + [anon_sym_function] = ACTIONS(408), + [anon_sym_var] = ACTIONS(408), + [aux_sym_integer_token1] = ACTIONS(408), + [aux_sym_integer_token2] = ACTIONS(406), + [aux_sym_float_token1] = ACTIONS(408), + [aux_sym_float_token2] = ACTIONS(406), + [anon_sym_true] = ACTIONS(408), + [anon_sym_false] = ACTIONS(408), + [aux_sym_string_token1] = ACTIONS(406), + [aux_sym_string_token3] = ACTIONS(406), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(408), + [anon_sym_catch] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(408), + [anon_sym_do] = ACTIONS(408), + [anon_sym_enum] = ACTIONS(408), + [anon_sym_extern] = ACTIONS(408), + [anon_sym_for] = ACTIONS(408), + [anon_sym_inline] = ACTIONS(408), + [anon_sym_macro] = ACTIONS(408), + [anon_sym_operator] = ACTIONS(408), + [anon_sym_overload] = ACTIONS(408), + [anon_sym_override] = ACTIONS(408), + [anon_sym_private] = ACTIONS(408), + [anon_sym_public] = ACTIONS(408), + [anon_sym_return] = ACTIONS(408), + [anon_sym_static] = ACTIONS(408), + [anon_sym_try] = ACTIONS(408), + [anon_sym_untyped] = ACTIONS(408), + [anon_sym_while] = ACTIONS(408), + [sym__semicolon] = ACTIONS(406), }, - [53] = { - [ts_builtin_sym_end] = ACTIONS(408), - [sym_identifier] = ACTIONS(410), - [anon_sym_POUND] = ACTIONS(408), - [anon_sym_package] = ACTIONS(410), - [anon_sym_import] = ACTIONS(410), - [anon_sym_using] = ACTIONS(410), - [anon_sym_throw] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(408), - [anon_sym_switch] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_RBRACE] = ACTIONS(408), - [anon_sym_case] = ACTIONS(410), - [anon_sym_COLON] = ACTIONS(408), - [anon_sym_default] = ACTIONS(410), - [anon_sym_cast] = ACTIONS(410), - [anon_sym_COMMA] = ACTIONS(408), - [anon_sym_DOLLARtype] = ACTIONS(408), - [anon_sym_in] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(408), - [anon_sym_RBRACK] = ACTIONS(408), - [anon_sym_this] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(410), - [anon_sym_QMARK] = ACTIONS(410), - [anon_sym_AT] = ACTIONS(410), - [anon_sym_AT_COLON] = ACTIONS(408), - [anon_sym_if] = ACTIONS(410), - [anon_sym_else] = ACTIONS(410), - [anon_sym_elseif] = ACTIONS(408), - [anon_sym_new] = ACTIONS(410), - [anon_sym_TILDE] = ACTIONS(408), - [anon_sym_BANG] = ACTIONS(410), - [anon_sym_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(408), - [anon_sym_DASH_DASH] = ACTIONS(408), - [anon_sym_PERCENT] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(410), - [anon_sym_PLUS] = ACTIONS(410), - [anon_sym_LT_LT] = ACTIONS(408), - [anon_sym_GT_GT] = ACTIONS(410), - [anon_sym_GT_GT_GT] = ACTIONS(408), - [anon_sym_AMP] = ACTIONS(410), - [anon_sym_PIPE] = ACTIONS(410), - [anon_sym_CARET] = ACTIONS(408), - [anon_sym_AMP_AMP] = ACTIONS(408), - [anon_sym_PIPE_PIPE] = ACTIONS(408), - [anon_sym_EQ_EQ] = ACTIONS(408), - [anon_sym_BANG_EQ] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_LT_EQ] = ACTIONS(408), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_GT_EQ] = ACTIONS(408), - [anon_sym_EQ_GT] = ACTIONS(408), - [anon_sym_QMARK_QMARK] = ACTIONS(408), - [anon_sym_EQ] = ACTIONS(410), - [sym__rangeOperator] = ACTIONS(408), - [anon_sym_null] = ACTIONS(410), - [anon_sym_dynamic] = ACTIONS(410), - [anon_sym_final] = ACTIONS(410), - [anon_sym_abstract] = ACTIONS(410), - [anon_sym_class] = ACTIONS(410), - [anon_sym_extends] = ACTIONS(410), - [anon_sym_implements] = ACTIONS(410), - [anon_sym_interface] = ACTIONS(410), - [anon_sym_typedef] = ACTIONS(410), - [anon_sym_function] = ACTIONS(410), - [anon_sym_var] = ACTIONS(410), - [aux_sym_integer_token1] = ACTIONS(410), - [aux_sym_integer_token2] = ACTIONS(408), - [aux_sym_float_token1] = ACTIONS(410), - [aux_sym_float_token2] = ACTIONS(408), - [anon_sym_true] = ACTIONS(410), - [anon_sym_false] = ACTIONS(410), - [aux_sym_string_token1] = ACTIONS(408), - [aux_sym_string_token3] = ACTIONS(408), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(410), - [anon_sym_catch] = ACTIONS(410), - [anon_sym_continue] = ACTIONS(410), - [anon_sym_do] = ACTIONS(410), - [anon_sym_enum] = ACTIONS(410), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_for] = ACTIONS(410), - [anon_sym_inline] = ACTIONS(410), - [anon_sym_macro] = ACTIONS(410), - [anon_sym_operator] = ACTIONS(410), - [anon_sym_overload] = ACTIONS(410), - [anon_sym_override] = ACTIONS(410), - [anon_sym_private] = ACTIONS(410), - [anon_sym_public] = ACTIONS(410), - [anon_sym_return] = ACTIONS(410), - [anon_sym_static] = ACTIONS(410), - [anon_sym_try] = ACTIONS(410), - [anon_sym_untyped] = ACTIONS(410), - [anon_sym_while] = ACTIONS(410), - [sym__semicolon] = ACTIONS(408), + [59] = { + [ts_builtin_sym_end] = ACTIONS(410), + [sym_identifier] = ACTIONS(412), + [anon_sym_POUND] = ACTIONS(410), + [anon_sym_package] = ACTIONS(412), + [anon_sym_import] = ACTIONS(412), + [anon_sym_using] = ACTIONS(412), + [anon_sym_throw] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(410), + [anon_sym_RPAREN] = ACTIONS(410), + [anon_sym_switch] = ACTIONS(412), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_RBRACE] = ACTIONS(410), + [anon_sym_case] = ACTIONS(412), + [anon_sym_COLON] = ACTIONS(410), + [anon_sym_default] = ACTIONS(412), + [anon_sym_cast] = ACTIONS(412), + [anon_sym_COMMA] = ACTIONS(410), + [anon_sym_DOLLARtype] = ACTIONS(410), + [anon_sym_in] = ACTIONS(412), + [anon_sym_LBRACK] = ACTIONS(410), + [anon_sym_this] = ACTIONS(412), + [aux_sym_member_expression_token1] = ACTIONS(412), + [anon_sym_QMARK] = ACTIONS(412), + [anon_sym_AT] = ACTIONS(412), + [anon_sym_AT_COLON] = ACTIONS(410), + [anon_sym_if] = ACTIONS(412), + [anon_sym_else] = ACTIONS(412), + [anon_sym_new] = ACTIONS(412), + [sym__prefixUnaryOperator] = ACTIONS(412), + [sym__eitherUnaryOperator] = ACTIONS(410), + [sym__arithmetic_operator] = ACTIONS(412), + [sym__bitwise_operator] = ACTIONS(412), + [sym__logical_operator] = ACTIONS(410), + [sym__comparison_operator] = ACTIONS(412), + [sym__map_operator] = ACTIONS(410), + [sym__null_colalese_operator] = ACTIONS(410), + [anon_sym_EQ] = ACTIONS(412), + [sym__range_operator] = ACTIONS(410), + [anon_sym_null] = ACTIONS(412), + [anon_sym_dynamic] = ACTIONS(412), + [anon_sym_final] = ACTIONS(412), + [anon_sym_abstract] = ACTIONS(412), + [anon_sym_class] = ACTIONS(412), + [anon_sym_extends] = ACTIONS(412), + [anon_sym_implements] = ACTIONS(412), + [anon_sym_interface] = ACTIONS(412), + [anon_sym_typedef] = ACTIONS(412), + [anon_sym_function] = ACTIONS(412), + [anon_sym_var] = ACTIONS(412), + [aux_sym_integer_token1] = ACTIONS(412), + [aux_sym_integer_token2] = ACTIONS(410), + [aux_sym_float_token1] = ACTIONS(412), + [aux_sym_float_token2] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), + [aux_sym_string_token1] = ACTIONS(410), + [aux_sym_string_token3] = ACTIONS(410), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(412), + [anon_sym_catch] = ACTIONS(412), + [anon_sym_continue] = ACTIONS(412), + [anon_sym_do] = ACTIONS(412), + [anon_sym_enum] = ACTIONS(412), + [anon_sym_extern] = ACTIONS(412), + [anon_sym_for] = ACTIONS(412), + [anon_sym_inline] = ACTIONS(412), + [anon_sym_macro] = ACTIONS(412), + [anon_sym_operator] = ACTIONS(412), + [anon_sym_overload] = ACTIONS(412), + [anon_sym_override] = ACTIONS(412), + [anon_sym_private] = ACTIONS(412), + [anon_sym_public] = ACTIONS(412), + [anon_sym_return] = ACTIONS(412), + [anon_sym_static] = ACTIONS(412), + [anon_sym_try] = ACTIONS(412), + [anon_sym_untyped] = ACTIONS(412), + [anon_sym_while] = ACTIONS(412), + [sym__semicolon] = ACTIONS(410), }, - [54] = { - [ts_builtin_sym_end] = ACTIONS(412), - [sym_identifier] = ACTIONS(414), - [anon_sym_POUND] = ACTIONS(412), - [anon_sym_package] = ACTIONS(414), - [anon_sym_import] = ACTIONS(414), - [anon_sym_using] = ACTIONS(414), - [anon_sym_throw] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_RPAREN] = ACTIONS(412), - [anon_sym_switch] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_RBRACE] = ACTIONS(412), - [anon_sym_case] = ACTIONS(414), - [anon_sym_COLON] = ACTIONS(412), - [anon_sym_default] = ACTIONS(414), - [anon_sym_cast] = ACTIONS(414), - [anon_sym_COMMA] = ACTIONS(412), - [anon_sym_DOLLARtype] = ACTIONS(412), - [anon_sym_in] = ACTIONS(414), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_RBRACK] = ACTIONS(412), - [anon_sym_this] = ACTIONS(414), - [anon_sym_DOT] = ACTIONS(414), - [anon_sym_QMARK] = ACTIONS(414), - [anon_sym_AT] = ACTIONS(414), - [anon_sym_AT_COLON] = ACTIONS(412), - [anon_sym_if] = ACTIONS(414), - [anon_sym_else] = ACTIONS(414), - [anon_sym_elseif] = ACTIONS(412), - [anon_sym_new] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_DASH] = ACTIONS(414), - [anon_sym_PLUS_PLUS] = ACTIONS(412), - [anon_sym_DASH_DASH] = ACTIONS(412), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(414), - [anon_sym_PLUS] = ACTIONS(414), - [anon_sym_LT_LT] = ACTIONS(412), - [anon_sym_GT_GT] = ACTIONS(414), - [anon_sym_GT_GT_GT] = ACTIONS(412), - [anon_sym_AMP] = ACTIONS(414), - [anon_sym_PIPE] = ACTIONS(414), - [anon_sym_CARET] = ACTIONS(412), - [anon_sym_AMP_AMP] = ACTIONS(412), - [anon_sym_PIPE_PIPE] = ACTIONS(412), - [anon_sym_EQ_EQ] = ACTIONS(412), - [anon_sym_BANG_EQ] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(414), - [anon_sym_LT_EQ] = ACTIONS(412), - [anon_sym_GT] = ACTIONS(414), - [anon_sym_GT_EQ] = ACTIONS(412), - [anon_sym_EQ_GT] = ACTIONS(412), - [anon_sym_QMARK_QMARK] = ACTIONS(412), - [anon_sym_EQ] = ACTIONS(414), - [sym__rangeOperator] = ACTIONS(412), - [anon_sym_null] = ACTIONS(414), - [anon_sym_dynamic] = ACTIONS(414), - [anon_sym_final] = ACTIONS(414), - [anon_sym_abstract] = ACTIONS(414), - [anon_sym_class] = ACTIONS(414), - [anon_sym_extends] = ACTIONS(414), - [anon_sym_implements] = ACTIONS(414), - [anon_sym_interface] = ACTIONS(414), - [anon_sym_typedef] = ACTIONS(414), - [anon_sym_function] = ACTIONS(414), - [anon_sym_var] = ACTIONS(414), - [aux_sym_integer_token1] = ACTIONS(414), - [aux_sym_integer_token2] = ACTIONS(412), - [aux_sym_float_token1] = ACTIONS(414), - [aux_sym_float_token2] = ACTIONS(412), - [anon_sym_true] = ACTIONS(414), - [anon_sym_false] = ACTIONS(414), - [aux_sym_string_token1] = ACTIONS(412), - [aux_sym_string_token3] = ACTIONS(412), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(414), - [anon_sym_catch] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_do] = ACTIONS(414), - [anon_sym_enum] = ACTIONS(414), - [anon_sym_extern] = ACTIONS(414), - [anon_sym_for] = ACTIONS(414), - [anon_sym_inline] = ACTIONS(414), - [anon_sym_macro] = ACTIONS(414), - [anon_sym_operator] = ACTIONS(414), - [anon_sym_overload] = ACTIONS(414), - [anon_sym_override] = ACTIONS(414), - [anon_sym_private] = ACTIONS(414), - [anon_sym_public] = ACTIONS(414), - [anon_sym_return] = ACTIONS(414), - [anon_sym_static] = ACTIONS(414), - [anon_sym_try] = ACTIONS(414), - [anon_sym_untyped] = ACTIONS(414), - [anon_sym_while] = ACTIONS(414), - [sym__semicolon] = ACTIONS(412), + [60] = { + [ts_builtin_sym_end] = ACTIONS(306), + [sym_identifier] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(306), + [anon_sym_package] = ACTIONS(308), + [anon_sym_import] = ACTIONS(308), + [anon_sym_using] = ACTIONS(308), + [anon_sym_throw] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(294), + [anon_sym_switch] = ACTIONS(308), + [anon_sym_LBRACE] = ACTIONS(306), + [anon_sym_RBRACE] = ACTIONS(306), + [anon_sym_case] = ACTIONS(308), + [anon_sym_COLON] = ACTIONS(378), + [anon_sym_default] = ACTIONS(308), + [anon_sym_cast] = ACTIONS(308), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_DOLLARtype] = ACTIONS(306), + [anon_sym_in] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(306), + [anon_sym_this] = ACTIONS(308), + [aux_sym_member_expression_token1] = ACTIONS(382), + [anon_sym_QMARK] = ACTIONS(308), + [anon_sym_AT] = ACTIONS(308), + [anon_sym_AT_COLON] = ACTIONS(306), + [anon_sym_if] = ACTIONS(308), + [anon_sym_else] = ACTIONS(308), + [anon_sym_new] = ACTIONS(308), + [sym__prefixUnaryOperator] = ACTIONS(308), + [sym__eitherUnaryOperator] = ACTIONS(306), + [sym__arithmetic_operator] = ACTIONS(308), + [sym__bitwise_operator] = ACTIONS(308), + [sym__logical_operator] = ACTIONS(306), + [sym__comparison_operator] = ACTIONS(308), + [sym__map_operator] = ACTIONS(378), + [sym__null_colalese_operator] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(308), + [sym__range_operator] = ACTIONS(306), + [anon_sym_null] = ACTIONS(308), + [anon_sym_dynamic] = ACTIONS(308), + [anon_sym_LT] = ACTIONS(296), + [anon_sym_final] = ACTIONS(308), + [anon_sym_abstract] = ACTIONS(308), + [anon_sym_class] = ACTIONS(308), + [anon_sym_extends] = ACTIONS(308), + [anon_sym_implements] = ACTIONS(308), + [anon_sym_interface] = ACTIONS(308), + [anon_sym_typedef] = ACTIONS(308), + [anon_sym_function] = ACTIONS(308), + [anon_sym_var] = ACTIONS(308), + [aux_sym_integer_token1] = ACTIONS(308), + [aux_sym_integer_token2] = ACTIONS(306), + [aux_sym_float_token1] = ACTIONS(308), + [aux_sym_float_token2] = ACTIONS(306), + [anon_sym_true] = ACTIONS(308), + [anon_sym_false] = ACTIONS(308), + [aux_sym_string_token1] = ACTIONS(306), + [aux_sym_string_token3] = ACTIONS(306), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(308), + [anon_sym_catch] = ACTIONS(308), + [anon_sym_continue] = ACTIONS(308), + [anon_sym_do] = ACTIONS(308), + [anon_sym_enum] = ACTIONS(308), + [anon_sym_extern] = ACTIONS(308), + [anon_sym_for] = ACTIONS(308), + [anon_sym_inline] = ACTIONS(308), + [anon_sym_macro] = ACTIONS(308), + [anon_sym_operator] = ACTIONS(308), + [anon_sym_overload] = ACTIONS(308), + [anon_sym_override] = ACTIONS(308), + [anon_sym_private] = ACTIONS(308), + [anon_sym_public] = ACTIONS(308), + [anon_sym_return] = ACTIONS(308), + [anon_sym_static] = ACTIONS(308), + [anon_sym_try] = ACTIONS(308), + [anon_sym_untyped] = ACTIONS(308), + [anon_sym_while] = ACTIONS(308), + [sym__semicolon] = ACTIONS(306), }, - [55] = { - [ts_builtin_sym_end] = ACTIONS(416), - [sym_identifier] = ACTIONS(418), - [anon_sym_POUND] = ACTIONS(416), - [anon_sym_package] = ACTIONS(418), - [anon_sym_import] = ACTIONS(418), - [anon_sym_using] = ACTIONS(418), - [anon_sym_throw] = ACTIONS(418), - [anon_sym_LPAREN] = ACTIONS(416), - [anon_sym_RPAREN] = ACTIONS(416), - [anon_sym_switch] = ACTIONS(418), - [anon_sym_LBRACE] = ACTIONS(416), - [anon_sym_RBRACE] = ACTIONS(416), - [anon_sym_case] = ACTIONS(418), - [anon_sym_COLON] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_cast] = ACTIONS(418), - [anon_sym_COMMA] = ACTIONS(416), - [anon_sym_DOLLARtype] = ACTIONS(416), - [anon_sym_in] = ACTIONS(418), - [anon_sym_LBRACK] = ACTIONS(416), - [anon_sym_RBRACK] = ACTIONS(416), - [anon_sym_this] = ACTIONS(418), - [anon_sym_DOT] = ACTIONS(418), - [anon_sym_QMARK] = ACTIONS(418), - [anon_sym_AT] = ACTIONS(418), - [anon_sym_AT_COLON] = ACTIONS(416), - [anon_sym_if] = ACTIONS(418), - [anon_sym_else] = ACTIONS(418), - [anon_sym_new] = ACTIONS(418), - [anon_sym_TILDE] = ACTIONS(416), - [anon_sym_BANG] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_PLUS_PLUS] = ACTIONS(416), - [anon_sym_DASH_DASH] = ACTIONS(416), - [anon_sym_PERCENT] = ACTIONS(416), - [anon_sym_STAR] = ACTIONS(416), - [anon_sym_SLASH] = ACTIONS(418), - [anon_sym_PLUS] = ACTIONS(418), - [anon_sym_LT_LT] = ACTIONS(416), - [anon_sym_GT_GT] = ACTIONS(418), - [anon_sym_GT_GT_GT] = ACTIONS(416), - [anon_sym_AMP] = ACTIONS(418), - [anon_sym_PIPE] = ACTIONS(418), - [anon_sym_CARET] = ACTIONS(416), - [anon_sym_AMP_AMP] = ACTIONS(416), - [anon_sym_PIPE_PIPE] = ACTIONS(416), - [anon_sym_EQ_EQ] = ACTIONS(416), - [anon_sym_BANG_EQ] = ACTIONS(416), - [anon_sym_LT] = ACTIONS(418), - [anon_sym_LT_EQ] = ACTIONS(416), - [anon_sym_GT] = ACTIONS(418), - [anon_sym_GT_EQ] = ACTIONS(416), - [anon_sym_EQ_GT] = ACTIONS(416), - [anon_sym_QMARK_QMARK] = ACTIONS(416), - [anon_sym_EQ] = ACTIONS(418), - [sym__rangeOperator] = ACTIONS(416), - [anon_sym_null] = ACTIONS(418), - [anon_sym_dynamic] = ACTIONS(418), - [anon_sym_final] = ACTIONS(418), - [anon_sym_abstract] = ACTIONS(418), - [anon_sym_class] = ACTIONS(418), - [anon_sym_extends] = ACTIONS(418), - [anon_sym_implements] = ACTIONS(418), - [anon_sym_interface] = ACTIONS(418), - [anon_sym_typedef] = ACTIONS(418), - [anon_sym_function] = ACTIONS(418), - [anon_sym_var] = ACTIONS(418), - [aux_sym_integer_token1] = ACTIONS(418), - [aux_sym_integer_token2] = ACTIONS(416), - [aux_sym_float_token1] = ACTIONS(418), - [aux_sym_float_token2] = ACTIONS(416), - [anon_sym_true] = ACTIONS(418), - [anon_sym_false] = ACTIONS(418), - [aux_sym_string_token1] = ACTIONS(416), - [aux_sym_string_token3] = ACTIONS(416), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(418), - [anon_sym_catch] = ACTIONS(418), - [anon_sym_continue] = ACTIONS(418), - [anon_sym_do] = ACTIONS(418), - [anon_sym_enum] = ACTIONS(418), - [anon_sym_extern] = ACTIONS(418), - [anon_sym_for] = ACTIONS(418), - [anon_sym_inline] = ACTIONS(418), - [anon_sym_macro] = ACTIONS(418), - [anon_sym_operator] = ACTIONS(418), - [anon_sym_overload] = ACTIONS(418), - [anon_sym_override] = ACTIONS(418), - [anon_sym_private] = ACTIONS(418), - [anon_sym_public] = ACTIONS(418), - [anon_sym_return] = ACTIONS(418), - [anon_sym_static] = ACTIONS(418), - [anon_sym_try] = ACTIONS(418), - [anon_sym_untyped] = ACTIONS(418), - [anon_sym_while] = ACTIONS(418), - [sym__semicolon] = ACTIONS(416), + [61] = { + [ts_builtin_sym_end] = ACTIONS(414), + [sym_identifier] = ACTIONS(416), + [anon_sym_POUND] = ACTIONS(414), + [anon_sym_package] = ACTIONS(416), + [anon_sym_import] = ACTIONS(416), + [anon_sym_using] = ACTIONS(416), + [anon_sym_throw] = ACTIONS(416), + [anon_sym_LPAREN] = ACTIONS(414), + [anon_sym_RPAREN] = ACTIONS(414), + [anon_sym_switch] = ACTIONS(416), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE] = ACTIONS(414), + [anon_sym_case] = ACTIONS(416), + [anon_sym_COLON] = ACTIONS(414), + [anon_sym_default] = ACTIONS(416), + [anon_sym_cast] = ACTIONS(416), + [anon_sym_COMMA] = ACTIONS(414), + [anon_sym_DOLLARtype] = ACTIONS(414), + [anon_sym_in] = ACTIONS(416), + [anon_sym_LBRACK] = ACTIONS(414), + [anon_sym_this] = ACTIONS(416), + [aux_sym_member_expression_token1] = ACTIONS(416), + [anon_sym_QMARK] = ACTIONS(416), + [anon_sym_AT] = ACTIONS(416), + [anon_sym_AT_COLON] = ACTIONS(414), + [anon_sym_if] = ACTIONS(416), + [anon_sym_else] = ACTIONS(416), + [anon_sym_new] = ACTIONS(416), + [sym__prefixUnaryOperator] = ACTIONS(416), + [sym__eitherUnaryOperator] = ACTIONS(414), + [sym__arithmetic_operator] = ACTIONS(416), + [sym__bitwise_operator] = ACTIONS(416), + [sym__logical_operator] = ACTIONS(414), + [sym__comparison_operator] = ACTIONS(416), + [sym__map_operator] = ACTIONS(414), + [sym__null_colalese_operator] = ACTIONS(414), + [anon_sym_EQ] = ACTIONS(416), + [sym__range_operator] = ACTIONS(414), + [anon_sym_null] = ACTIONS(416), + [anon_sym_dynamic] = ACTIONS(416), + [anon_sym_final] = ACTIONS(416), + [anon_sym_abstract] = ACTIONS(416), + [anon_sym_class] = ACTIONS(416), + [anon_sym_extends] = ACTIONS(416), + [anon_sym_implements] = ACTIONS(416), + [anon_sym_interface] = ACTIONS(416), + [anon_sym_typedef] = ACTIONS(416), + [anon_sym_function] = ACTIONS(416), + [anon_sym_var] = ACTIONS(416), + [aux_sym_integer_token1] = ACTIONS(416), + [aux_sym_integer_token2] = ACTIONS(414), + [aux_sym_float_token1] = ACTIONS(416), + [aux_sym_float_token2] = ACTIONS(414), + [anon_sym_true] = ACTIONS(416), + [anon_sym_false] = ACTIONS(416), + [aux_sym_string_token1] = ACTIONS(414), + [aux_sym_string_token3] = ACTIONS(414), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(416), + [anon_sym_catch] = ACTIONS(416), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_do] = ACTIONS(416), + [anon_sym_enum] = ACTIONS(416), + [anon_sym_extern] = ACTIONS(416), + [anon_sym_for] = ACTIONS(416), + [anon_sym_inline] = ACTIONS(416), + [anon_sym_macro] = ACTIONS(416), + [anon_sym_operator] = ACTIONS(416), + [anon_sym_overload] = ACTIONS(416), + [anon_sym_override] = ACTIONS(416), + [anon_sym_private] = ACTIONS(416), + [anon_sym_public] = ACTIONS(416), + [anon_sym_return] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_try] = ACTIONS(416), + [anon_sym_untyped] = ACTIONS(416), + [anon_sym_while] = ACTIONS(416), + [sym__semicolon] = ACTIONS(414), }, - [56] = { - [ts_builtin_sym_end] = ACTIONS(420), - [sym_identifier] = ACTIONS(422), - [anon_sym_POUND] = ACTIONS(420), - [anon_sym_package] = ACTIONS(422), - [anon_sym_import] = ACTIONS(422), - [anon_sym_using] = ACTIONS(422), - [anon_sym_throw] = ACTIONS(422), - [anon_sym_LPAREN] = ACTIONS(420), - [anon_sym_RPAREN] = ACTIONS(420), - [anon_sym_switch] = ACTIONS(422), - [anon_sym_LBRACE] = ACTIONS(420), - [anon_sym_RBRACE] = ACTIONS(420), - [anon_sym_case] = ACTIONS(422), - [anon_sym_COLON] = ACTIONS(420), - [anon_sym_default] = ACTIONS(422), - [anon_sym_cast] = ACTIONS(422), - [anon_sym_COMMA] = ACTIONS(420), - [anon_sym_DOLLARtype] = ACTIONS(420), - [anon_sym_in] = ACTIONS(422), - [anon_sym_LBRACK] = ACTIONS(420), - [anon_sym_RBRACK] = ACTIONS(420), - [anon_sym_this] = ACTIONS(422), - [anon_sym_DOT] = ACTIONS(422), + [62] = { + [sym__binaryOperator] = STATE(341), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(418), + [sym_identifier] = ACTIONS(420), + [anon_sym_POUND] = ACTIONS(418), + [anon_sym_package] = ACTIONS(420), + [anon_sym_import] = ACTIONS(420), + [anon_sym_using] = ACTIONS(420), + [anon_sym_throw] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(418), + [anon_sym_switch] = ACTIONS(420), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_case] = ACTIONS(420), + [anon_sym_default] = ACTIONS(420), + [anon_sym_cast] = ACTIONS(420), + [anon_sym_DOLLARtype] = ACTIONS(418), + [anon_sym_in] = ACTIONS(420), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_this] = ACTIONS(420), [anon_sym_QMARK] = ACTIONS(422), - [anon_sym_AT] = ACTIONS(422), - [anon_sym_AT_COLON] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_else] = ACTIONS(422), - [anon_sym_new] = ACTIONS(422), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_BANG] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(422), - [anon_sym_PLUS_PLUS] = ACTIONS(420), - [anon_sym_DASH_DASH] = ACTIONS(420), - [anon_sym_PERCENT] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(420), - [anon_sym_SLASH] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(422), - [anon_sym_LT_LT] = ACTIONS(420), - [anon_sym_GT_GT] = ACTIONS(422), - [anon_sym_GT_GT_GT] = ACTIONS(420), - [anon_sym_AMP] = ACTIONS(422), - [anon_sym_PIPE] = ACTIONS(422), - [anon_sym_CARET] = ACTIONS(420), - [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(422), - [anon_sym_LT_EQ] = ACTIONS(420), - [anon_sym_GT] = ACTIONS(422), - [anon_sym_GT_EQ] = ACTIONS(420), - [anon_sym_EQ_GT] = ACTIONS(420), - [anon_sym_QMARK_QMARK] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(422), - [sym__rangeOperator] = ACTIONS(420), - [anon_sym_null] = ACTIONS(422), - [anon_sym_dynamic] = ACTIONS(422), - [anon_sym_final] = ACTIONS(422), - [anon_sym_abstract] = ACTIONS(422), - [anon_sym_class] = ACTIONS(422), - [anon_sym_extends] = ACTIONS(422), - [anon_sym_implements] = ACTIONS(422), - [anon_sym_interface] = ACTIONS(422), - [anon_sym_typedef] = ACTIONS(422), - [anon_sym_function] = ACTIONS(422), - [anon_sym_var] = ACTIONS(422), - [aux_sym_integer_token1] = ACTIONS(422), - [aux_sym_integer_token2] = ACTIONS(420), - [aux_sym_float_token1] = ACTIONS(422), - [aux_sym_float_token2] = ACTIONS(420), - [anon_sym_true] = ACTIONS(422), - [anon_sym_false] = ACTIONS(422), - [aux_sym_string_token1] = ACTIONS(420), - [aux_sym_string_token3] = ACTIONS(420), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(422), - [anon_sym_catch] = ACTIONS(422), - [anon_sym_continue] = ACTIONS(422), - [anon_sym_do] = ACTIONS(422), - [anon_sym_enum] = ACTIONS(422), - [anon_sym_extern] = ACTIONS(422), - [anon_sym_for] = ACTIONS(422), - [anon_sym_inline] = ACTIONS(422), - [anon_sym_macro] = ACTIONS(422), - [anon_sym_operator] = ACTIONS(422), - [anon_sym_overload] = ACTIONS(422), - [anon_sym_override] = ACTIONS(422), - [anon_sym_private] = ACTIONS(422), - [anon_sym_public] = ACTIONS(422), - [anon_sym_return] = ACTIONS(422), - [anon_sym_static] = ACTIONS(422), - [anon_sym_try] = ACTIONS(422), - [anon_sym_untyped] = ACTIONS(422), - [anon_sym_while] = ACTIONS(422), - [sym__semicolon] = ACTIONS(420), - }, - [57] = { - [ts_builtin_sym_end] = ACTIONS(424), - [sym_identifier] = ACTIONS(426), - [anon_sym_POUND] = ACTIONS(424), - [anon_sym_package] = ACTIONS(426), - [anon_sym_import] = ACTIONS(426), - [anon_sym_using] = ACTIONS(426), - [anon_sym_throw] = ACTIONS(426), - [anon_sym_LPAREN] = ACTIONS(424), - [anon_sym_RPAREN] = ACTIONS(424), - [anon_sym_switch] = ACTIONS(426), - [anon_sym_LBRACE] = ACTIONS(424), - [anon_sym_RBRACE] = ACTIONS(424), - [anon_sym_case] = ACTIONS(426), - [anon_sym_COLON] = ACTIONS(428), - [anon_sym_default] = ACTIONS(426), - [anon_sym_cast] = ACTIONS(426), - [anon_sym_COMMA] = ACTIONS(424), - [anon_sym_DOLLARtype] = ACTIONS(424), - [anon_sym_in] = ACTIONS(426), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_RBRACK] = ACTIONS(424), - [anon_sym_this] = ACTIONS(426), - [anon_sym_DOT] = ACTIONS(430), - [anon_sym_QMARK] = ACTIONS(432), - [anon_sym_AT] = ACTIONS(426), - [anon_sym_AT_COLON] = ACTIONS(424), - [anon_sym_if] = ACTIONS(426), - [anon_sym_else] = ACTIONS(426), - [anon_sym_new] = ACTIONS(426), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_BANG] = ACTIONS(426), - [anon_sym_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_PERCENT] = ACTIONS(424), - [anon_sym_STAR] = ACTIONS(424), - [anon_sym_SLASH] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(426), - [anon_sym_LT_LT] = ACTIONS(424), - [anon_sym_GT_GT] = ACTIONS(426), - [anon_sym_GT_GT_GT] = ACTIONS(424), - [anon_sym_AMP] = ACTIONS(426), - [anon_sym_PIPE] = ACTIONS(426), - [anon_sym_CARET] = ACTIONS(424), - [anon_sym_AMP_AMP] = ACTIONS(424), - [anon_sym_PIPE_PIPE] = ACTIONS(424), - [anon_sym_EQ_EQ] = ACTIONS(424), - [anon_sym_BANG_EQ] = ACTIONS(424), - [anon_sym_LT] = ACTIONS(426), - [anon_sym_LT_EQ] = ACTIONS(424), - [anon_sym_GT] = ACTIONS(426), - [anon_sym_GT_EQ] = ACTIONS(424), - [anon_sym_EQ_GT] = ACTIONS(424), - [anon_sym_QMARK_QMARK] = ACTIONS(424), - [anon_sym_EQ] = ACTIONS(426), - [sym__rangeOperator] = ACTIONS(424), - [anon_sym_null] = ACTIONS(426), - [anon_sym_dynamic] = ACTIONS(426), - [anon_sym_final] = ACTIONS(426), - [anon_sym_abstract] = ACTIONS(426), - [anon_sym_class] = ACTIONS(426), - [anon_sym_extends] = ACTIONS(426), - [anon_sym_implements] = ACTIONS(426), - [anon_sym_interface] = ACTIONS(426), - [anon_sym_typedef] = ACTIONS(426), - [anon_sym_function] = ACTIONS(426), - [anon_sym_var] = ACTIONS(426), - [aux_sym_integer_token1] = ACTIONS(426), - [aux_sym_integer_token2] = ACTIONS(424), - [aux_sym_float_token1] = ACTIONS(426), - [aux_sym_float_token2] = ACTIONS(424), - [anon_sym_true] = ACTIONS(426), - [anon_sym_false] = ACTIONS(426), - [aux_sym_string_token1] = ACTIONS(424), - [aux_sym_string_token3] = ACTIONS(424), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(426), - [anon_sym_catch] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(426), - [anon_sym_do] = ACTIONS(426), - [anon_sym_enum] = ACTIONS(426), - [anon_sym_extern] = ACTIONS(426), - [anon_sym_for] = ACTIONS(426), - [anon_sym_inline] = ACTIONS(426), - [anon_sym_macro] = ACTIONS(426), - [anon_sym_operator] = ACTIONS(426), - [anon_sym_overload] = ACTIONS(426), - [anon_sym_override] = ACTIONS(426), - [anon_sym_private] = ACTIONS(426), - [anon_sym_public] = ACTIONS(426), - [anon_sym_return] = ACTIONS(426), - [anon_sym_static] = ACTIONS(426), - [anon_sym_try] = ACTIONS(426), - [anon_sym_untyped] = ACTIONS(426), - [anon_sym_while] = ACTIONS(426), - [sym__semicolon] = ACTIONS(424), - }, - [58] = { - [ts_builtin_sym_end] = ACTIONS(434), - [sym_identifier] = ACTIONS(436), - [anon_sym_POUND] = ACTIONS(434), - [anon_sym_package] = ACTIONS(436), - [anon_sym_import] = ACTIONS(436), - [anon_sym_using] = ACTIONS(436), - [anon_sym_throw] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(434), - [anon_sym_RPAREN] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(436), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_RBRACE] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_COLON] = ACTIONS(434), - [anon_sym_default] = ACTIONS(436), - [anon_sym_cast] = ACTIONS(436), - [anon_sym_COMMA] = ACTIONS(434), - [anon_sym_DOLLARtype] = ACTIONS(434), - [anon_sym_in] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_RBRACK] = ACTIONS(434), - [anon_sym_this] = ACTIONS(436), - [anon_sym_DOT] = ACTIONS(436), - [anon_sym_QMARK] = ACTIONS(436), - [anon_sym_AT] = ACTIONS(436), - [anon_sym_AT_COLON] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_else] = ACTIONS(436), - [anon_sym_new] = ACTIONS(436), - [anon_sym_TILDE] = ACTIONS(434), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_PLUS_PLUS] = ACTIONS(434), - [anon_sym_DASH_DASH] = ACTIONS(434), - [anon_sym_PERCENT] = ACTIONS(434), - [anon_sym_STAR] = ACTIONS(434), - [anon_sym_SLASH] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(436), - [anon_sym_LT_LT] = ACTIONS(434), - [anon_sym_GT_GT] = ACTIONS(436), - [anon_sym_GT_GT_GT] = ACTIONS(434), - [anon_sym_AMP] = ACTIONS(436), - [anon_sym_PIPE] = ACTIONS(436), - [anon_sym_CARET] = ACTIONS(434), - [anon_sym_AMP_AMP] = ACTIONS(434), - [anon_sym_PIPE_PIPE] = ACTIONS(434), - [anon_sym_EQ_EQ] = ACTIONS(434), - [anon_sym_BANG_EQ] = ACTIONS(434), - [anon_sym_LT] = ACTIONS(436), - [anon_sym_LT_EQ] = ACTIONS(434), - [anon_sym_GT] = ACTIONS(436), - [anon_sym_GT_EQ] = ACTIONS(434), - [anon_sym_EQ_GT] = ACTIONS(434), - [anon_sym_QMARK_QMARK] = ACTIONS(434), - [anon_sym_EQ] = ACTIONS(436), - [sym__rangeOperator] = ACTIONS(434), - [anon_sym_null] = ACTIONS(436), - [anon_sym_dynamic] = ACTIONS(436), - [anon_sym_final] = ACTIONS(436), - [anon_sym_abstract] = ACTIONS(436), - [anon_sym_class] = ACTIONS(436), - [anon_sym_extends] = ACTIONS(436), - [anon_sym_implements] = ACTIONS(436), - [anon_sym_interface] = ACTIONS(436), - [anon_sym_typedef] = ACTIONS(436), - [anon_sym_function] = ACTIONS(436), - [anon_sym_var] = ACTIONS(436), - [aux_sym_integer_token1] = ACTIONS(436), - [aux_sym_integer_token2] = ACTIONS(434), - [aux_sym_float_token1] = ACTIONS(436), - [aux_sym_float_token2] = ACTIONS(434), - [anon_sym_true] = ACTIONS(436), - [anon_sym_false] = ACTIONS(436), - [aux_sym_string_token1] = ACTIONS(434), - [aux_sym_string_token3] = ACTIONS(434), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(436), - [anon_sym_catch] = ACTIONS(436), - [anon_sym_continue] = ACTIONS(436), - [anon_sym_do] = ACTIONS(436), - [anon_sym_enum] = ACTIONS(436), - [anon_sym_extern] = ACTIONS(436), - [anon_sym_for] = ACTIONS(436), - [anon_sym_inline] = ACTIONS(436), - [anon_sym_macro] = ACTIONS(436), - [anon_sym_operator] = ACTIONS(436), - [anon_sym_overload] = ACTIONS(436), - [anon_sym_override] = ACTIONS(436), - [anon_sym_private] = ACTIONS(436), - [anon_sym_public] = ACTIONS(436), - [anon_sym_return] = ACTIONS(436), - [anon_sym_static] = ACTIONS(436), - [anon_sym_try] = ACTIONS(436), - [anon_sym_untyped] = ACTIONS(436), - [anon_sym_while] = ACTIONS(436), - [sym__semicolon] = ACTIONS(434), + [anon_sym_AT] = ACTIONS(420), + [anon_sym_AT_COLON] = ACTIONS(418), + [anon_sym_if] = ACTIONS(420), + [anon_sym_else] = ACTIONS(420), + [anon_sym_new] = ACTIONS(420), + [sym__prefixUnaryOperator] = ACTIONS(420), + [sym__eitherUnaryOperator] = ACTIONS(418), + [sym__arithmetic_operator] = ACTIONS(320), + [sym__bitwise_operator] = ACTIONS(320), + [sym__logical_operator] = ACTIONS(322), + [sym__comparison_operator] = ACTIONS(324), + [sym__map_operator] = ACTIONS(322), + [sym__null_colalese_operator] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(324), + [sym__range_operator] = ACTIONS(322), + [anon_sym_null] = ACTIONS(420), + [anon_sym_dynamic] = ACTIONS(420), + [anon_sym_final] = ACTIONS(420), + [anon_sym_abstract] = ACTIONS(420), + [anon_sym_class] = ACTIONS(420), + [anon_sym_extends] = ACTIONS(420), + [anon_sym_implements] = ACTIONS(420), + [anon_sym_interface] = ACTIONS(420), + [anon_sym_typedef] = ACTIONS(420), + [anon_sym_function] = ACTIONS(420), + [anon_sym_var] = ACTIONS(420), + [aux_sym_integer_token1] = ACTIONS(420), + [aux_sym_integer_token2] = ACTIONS(418), + [aux_sym_float_token1] = ACTIONS(420), + [aux_sym_float_token2] = ACTIONS(418), + [anon_sym_true] = ACTIONS(420), + [anon_sym_false] = ACTIONS(420), + [aux_sym_string_token1] = ACTIONS(418), + [aux_sym_string_token3] = ACTIONS(418), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(420), + [anon_sym_catch] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(420), + [anon_sym_do] = ACTIONS(420), + [anon_sym_enum] = ACTIONS(420), + [anon_sym_extern] = ACTIONS(420), + [anon_sym_for] = ACTIONS(420), + [anon_sym_inline] = ACTIONS(420), + [anon_sym_macro] = ACTIONS(420), + [anon_sym_operator] = ACTIONS(420), + [anon_sym_overload] = ACTIONS(420), + [anon_sym_override] = ACTIONS(420), + [anon_sym_private] = ACTIONS(420), + [anon_sym_public] = ACTIONS(420), + [anon_sym_return] = ACTIONS(420), + [anon_sym_static] = ACTIONS(420), + [anon_sym_try] = ACTIONS(420), + [anon_sym_untyped] = ACTIONS(420), + [anon_sym_while] = ACTIONS(420), + [sym__semicolon] = ACTIONS(418), }, - [59] = { - [ts_builtin_sym_end] = ACTIONS(438), - [sym_identifier] = ACTIONS(440), - [anon_sym_POUND] = ACTIONS(438), - [anon_sym_package] = ACTIONS(440), - [anon_sym_import] = ACTIONS(440), - [anon_sym_using] = ACTIONS(440), - [anon_sym_throw] = ACTIONS(440), - [anon_sym_LPAREN] = ACTIONS(438), - [anon_sym_RPAREN] = ACTIONS(438), - [anon_sym_switch] = ACTIONS(440), - [anon_sym_LBRACE] = ACTIONS(438), - [anon_sym_RBRACE] = ACTIONS(438), - [anon_sym_case] = ACTIONS(440), - [anon_sym_COLON] = ACTIONS(438), - [anon_sym_default] = ACTIONS(440), - [anon_sym_cast] = ACTIONS(440), - [anon_sym_COMMA] = ACTIONS(438), - [anon_sym_DOLLARtype] = ACTIONS(438), - [anon_sym_in] = ACTIONS(440), - [anon_sym_LBRACK] = ACTIONS(438), - [anon_sym_RBRACK] = ACTIONS(438), - [anon_sym_this] = ACTIONS(440), - [anon_sym_DOT] = ACTIONS(440), - [anon_sym_QMARK] = ACTIONS(440), - [anon_sym_AT] = ACTIONS(440), - [anon_sym_AT_COLON] = ACTIONS(438), - [anon_sym_if] = ACTIONS(440), - [anon_sym_else] = ACTIONS(440), - [anon_sym_new] = ACTIONS(440), - [anon_sym_TILDE] = ACTIONS(438), - [anon_sym_BANG] = ACTIONS(440), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_PLUS_PLUS] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(438), - [anon_sym_PERCENT] = ACTIONS(438), - [anon_sym_STAR] = ACTIONS(438), - [anon_sym_SLASH] = ACTIONS(440), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_LT_LT] = ACTIONS(438), - [anon_sym_GT_GT] = ACTIONS(440), - [anon_sym_GT_GT_GT] = ACTIONS(438), - [anon_sym_AMP] = ACTIONS(440), - [anon_sym_PIPE] = ACTIONS(440), - [anon_sym_CARET] = ACTIONS(438), - [anon_sym_AMP_AMP] = ACTIONS(438), - [anon_sym_PIPE_PIPE] = ACTIONS(438), - [anon_sym_EQ_EQ] = ACTIONS(438), - [anon_sym_BANG_EQ] = ACTIONS(438), - [anon_sym_LT] = ACTIONS(440), - [anon_sym_LT_EQ] = ACTIONS(438), - [anon_sym_GT] = ACTIONS(440), - [anon_sym_GT_EQ] = ACTIONS(438), - [anon_sym_EQ_GT] = ACTIONS(438), - [anon_sym_QMARK_QMARK] = ACTIONS(438), - [anon_sym_EQ] = ACTIONS(440), - [sym__rangeOperator] = ACTIONS(438), - [anon_sym_null] = ACTIONS(440), - [anon_sym_dynamic] = ACTIONS(440), - [anon_sym_final] = ACTIONS(440), - [anon_sym_abstract] = ACTIONS(440), - [anon_sym_class] = ACTIONS(440), - [anon_sym_extends] = ACTIONS(440), - [anon_sym_implements] = ACTIONS(440), - [anon_sym_interface] = ACTIONS(440), - [anon_sym_typedef] = ACTIONS(440), - [anon_sym_function] = ACTIONS(440), - [anon_sym_var] = ACTIONS(440), - [aux_sym_integer_token1] = ACTIONS(440), - [aux_sym_integer_token2] = ACTIONS(438), - [aux_sym_float_token1] = ACTIONS(440), - [aux_sym_float_token2] = ACTIONS(438), - [anon_sym_true] = ACTIONS(440), - [anon_sym_false] = ACTIONS(440), - [aux_sym_string_token1] = ACTIONS(438), - [aux_sym_string_token3] = ACTIONS(438), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(440), - [anon_sym_catch] = ACTIONS(440), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_do] = ACTIONS(440), - [anon_sym_enum] = ACTIONS(440), - [anon_sym_extern] = ACTIONS(440), - [anon_sym_for] = ACTIONS(440), - [anon_sym_inline] = ACTIONS(440), - [anon_sym_macro] = ACTIONS(440), - [anon_sym_operator] = ACTIONS(440), - [anon_sym_overload] = ACTIONS(440), - [anon_sym_override] = ACTIONS(440), - [anon_sym_private] = ACTIONS(440), - [anon_sym_public] = ACTIONS(440), - [anon_sym_return] = ACTIONS(440), - [anon_sym_static] = ACTIONS(440), - [anon_sym_try] = ACTIONS(440), - [anon_sym_untyped] = ACTIONS(440), - [anon_sym_while] = ACTIONS(440), - [sym__semicolon] = ACTIONS(438), - }, - [60] = { + [63] = { [ts_builtin_sym_end] = ACTIONS(424), [sym_identifier] = ACTIONS(426), [anon_sym_POUND] = ACTIONS(424), @@ -13881,49 +12280,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(424), [anon_sym_RBRACE] = ACTIONS(424), [anon_sym_case] = ACTIONS(426), - [anon_sym_COLON] = ACTIONS(424), [anon_sym_default] = ACTIONS(426), [anon_sym_cast] = ACTIONS(426), [anon_sym_COMMA] = ACTIONS(424), [anon_sym_DOLLARtype] = ACTIONS(424), [anon_sym_in] = ACTIONS(426), [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_RBRACK] = ACTIONS(424), [anon_sym_this] = ACTIONS(426), - [anon_sym_DOT] = ACTIONS(426), + [aux_sym_member_expression_token1] = ACTIONS(426), [anon_sym_QMARK] = ACTIONS(426), [anon_sym_AT] = ACTIONS(426), [anon_sym_AT_COLON] = ACTIONS(424), [anon_sym_if] = ACTIONS(426), [anon_sym_else] = ACTIONS(426), [anon_sym_new] = ACTIONS(426), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_BANG] = ACTIONS(426), - [anon_sym_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_PERCENT] = ACTIONS(424), - [anon_sym_STAR] = ACTIONS(424), - [anon_sym_SLASH] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(426), - [anon_sym_LT_LT] = ACTIONS(424), - [anon_sym_GT_GT] = ACTIONS(426), - [anon_sym_GT_GT_GT] = ACTIONS(424), - [anon_sym_AMP] = ACTIONS(426), - [anon_sym_PIPE] = ACTIONS(426), - [anon_sym_CARET] = ACTIONS(424), - [anon_sym_AMP_AMP] = ACTIONS(424), - [anon_sym_PIPE_PIPE] = ACTIONS(424), - [anon_sym_EQ_EQ] = ACTIONS(424), - [anon_sym_BANG_EQ] = ACTIONS(424), - [anon_sym_LT] = ACTIONS(426), - [anon_sym_LT_EQ] = ACTIONS(424), - [anon_sym_GT] = ACTIONS(426), - [anon_sym_GT_EQ] = ACTIONS(424), - [anon_sym_EQ_GT] = ACTIONS(424), - [anon_sym_QMARK_QMARK] = ACTIONS(424), + [sym__prefixUnaryOperator] = ACTIONS(426), + [sym__eitherUnaryOperator] = ACTIONS(424), + [sym__arithmetic_operator] = ACTIONS(426), + [sym__bitwise_operator] = ACTIONS(426), + [sym__logical_operator] = ACTIONS(424), + [sym__comparison_operator] = ACTIONS(426), + [sym__map_operator] = ACTIONS(424), + [sym__null_colalese_operator] = ACTIONS(424), [anon_sym_EQ] = ACTIONS(426), - [sym__rangeOperator] = ACTIONS(424), + [sym__range_operator] = ACTIONS(424), [anon_sym_null] = ACTIONS(426), [anon_sym_dynamic] = ACTIONS(426), [anon_sym_final] = ACTIONS(426), @@ -13965,1379 +12345,2219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(426), [sym__semicolon] = ACTIONS(424), }, - [61] = { - [ts_builtin_sym_end] = ACTIONS(340), - [sym_identifier] = ACTIONS(342), - [anon_sym_POUND] = ACTIONS(340), - [anon_sym_package] = ACTIONS(342), - [anon_sym_import] = ACTIONS(342), - [anon_sym_using] = ACTIONS(342), - [anon_sym_throw] = ACTIONS(342), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_RPAREN] = ACTIONS(340), - [anon_sym_switch] = ACTIONS(342), - [anon_sym_LBRACE] = ACTIONS(340), - [anon_sym_RBRACE] = ACTIONS(340), - [anon_sym_case] = ACTIONS(342), - [anon_sym_COLON] = ACTIONS(340), - [anon_sym_default] = ACTIONS(342), - [anon_sym_cast] = ACTIONS(342), - [anon_sym_COMMA] = ACTIONS(340), - [anon_sym_DOLLARtype] = ACTIONS(340), - [anon_sym_in] = ACTIONS(342), - [anon_sym_LBRACK] = ACTIONS(340), - [anon_sym_RBRACK] = ACTIONS(340), - [anon_sym_this] = ACTIONS(342), - [anon_sym_DOT] = ACTIONS(342), - [anon_sym_QMARK] = ACTIONS(342), - [anon_sym_AT] = ACTIONS(342), - [anon_sym_AT_COLON] = ACTIONS(340), - [anon_sym_if] = ACTIONS(342), - [anon_sym_else] = ACTIONS(342), - [anon_sym_new] = ACTIONS(342), - [anon_sym_TILDE] = ACTIONS(340), - [anon_sym_BANG] = ACTIONS(342), - [anon_sym_DASH] = ACTIONS(342), - [anon_sym_PLUS_PLUS] = ACTIONS(340), - [anon_sym_DASH_DASH] = ACTIONS(340), - [anon_sym_PERCENT] = ACTIONS(340), - [anon_sym_STAR] = ACTIONS(340), - [anon_sym_SLASH] = ACTIONS(342), - [anon_sym_PLUS] = ACTIONS(342), - [anon_sym_LT_LT] = ACTIONS(340), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_GT_GT_GT] = ACTIONS(340), - [anon_sym_AMP] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(342), - [anon_sym_CARET] = ACTIONS(340), - [anon_sym_AMP_AMP] = ACTIONS(340), - [anon_sym_PIPE_PIPE] = ACTIONS(340), - [anon_sym_EQ_EQ] = ACTIONS(340), - [anon_sym_BANG_EQ] = ACTIONS(340), - [anon_sym_LT] = ACTIONS(342), - [anon_sym_LT_EQ] = ACTIONS(340), - [anon_sym_GT] = ACTIONS(342), - [anon_sym_GT_EQ] = ACTIONS(340), - [anon_sym_EQ_GT] = ACTIONS(340), - [anon_sym_QMARK_QMARK] = ACTIONS(340), - [anon_sym_EQ] = ACTIONS(342), - [sym__rangeOperator] = ACTIONS(340), - [anon_sym_null] = ACTIONS(342), - [anon_sym_dynamic] = ACTIONS(342), - [anon_sym_final] = ACTIONS(342), - [anon_sym_abstract] = ACTIONS(342), - [anon_sym_class] = ACTIONS(342), - [anon_sym_extends] = ACTIONS(342), - [anon_sym_implements] = ACTIONS(342), - [anon_sym_interface] = ACTIONS(342), - [anon_sym_typedef] = ACTIONS(342), - [anon_sym_function] = ACTIONS(342), - [anon_sym_var] = ACTIONS(342), - [aux_sym_integer_token1] = ACTIONS(342), - [aux_sym_integer_token2] = ACTIONS(340), - [aux_sym_float_token1] = ACTIONS(342), - [aux_sym_float_token2] = ACTIONS(340), - [anon_sym_true] = ACTIONS(342), - [anon_sym_false] = ACTIONS(342), - [aux_sym_string_token1] = ACTIONS(340), - [aux_sym_string_token3] = ACTIONS(340), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(342), - [anon_sym_catch] = ACTIONS(342), - [anon_sym_continue] = ACTIONS(342), - [anon_sym_do] = ACTIONS(342), - [anon_sym_enum] = ACTIONS(342), - [anon_sym_extern] = ACTIONS(342), - [anon_sym_for] = ACTIONS(342), - [anon_sym_inline] = ACTIONS(342), - [anon_sym_macro] = ACTIONS(342), - [anon_sym_operator] = ACTIONS(342), - [anon_sym_overload] = ACTIONS(342), - [anon_sym_override] = ACTIONS(342), - [anon_sym_private] = ACTIONS(342), - [anon_sym_public] = ACTIONS(342), - [anon_sym_return] = ACTIONS(342), - [anon_sym_static] = ACTIONS(342), - [anon_sym_try] = ACTIONS(342), - [anon_sym_untyped] = ACTIONS(342), - [anon_sym_while] = ACTIONS(342), - [sym__semicolon] = ACTIONS(340), - }, - [62] = { - [ts_builtin_sym_end] = ACTIONS(442), - [sym_identifier] = ACTIONS(444), - [anon_sym_POUND] = ACTIONS(442), - [anon_sym_package] = ACTIONS(444), - [anon_sym_import] = ACTIONS(444), - [anon_sym_using] = ACTIONS(444), - [anon_sym_throw] = ACTIONS(444), - [anon_sym_LPAREN] = ACTIONS(442), - [anon_sym_RPAREN] = ACTIONS(442), - [anon_sym_switch] = ACTIONS(444), - [anon_sym_LBRACE] = ACTIONS(442), - [anon_sym_RBRACE] = ACTIONS(442), - [anon_sym_case] = ACTIONS(444), - [anon_sym_COLON] = ACTIONS(442), - [anon_sym_default] = ACTIONS(444), - [anon_sym_cast] = ACTIONS(444), - [anon_sym_COMMA] = ACTIONS(442), - [anon_sym_DOLLARtype] = ACTIONS(442), - [anon_sym_in] = ACTIONS(444), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_RBRACK] = ACTIONS(442), - [anon_sym_this] = ACTIONS(444), - [anon_sym_DOT] = ACTIONS(444), - [anon_sym_QMARK] = ACTIONS(444), - [anon_sym_AT] = ACTIONS(444), - [anon_sym_AT_COLON] = ACTIONS(442), - [anon_sym_if] = ACTIONS(444), - [anon_sym_else] = ACTIONS(444), - [anon_sym_new] = ACTIONS(444), - [anon_sym_TILDE] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_PLUS_PLUS] = ACTIONS(442), - [anon_sym_DASH_DASH] = ACTIONS(442), - [anon_sym_PERCENT] = ACTIONS(442), - [anon_sym_STAR] = ACTIONS(442), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_LT_LT] = ACTIONS(442), - [anon_sym_GT_GT] = ACTIONS(444), - [anon_sym_GT_GT_GT] = ACTIONS(442), - [anon_sym_AMP] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(442), - [anon_sym_AMP_AMP] = ACTIONS(442), - [anon_sym_PIPE_PIPE] = ACTIONS(442), - [anon_sym_EQ_EQ] = ACTIONS(442), - [anon_sym_BANG_EQ] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(444), - [anon_sym_LT_EQ] = ACTIONS(442), - [anon_sym_GT] = ACTIONS(444), - [anon_sym_GT_EQ] = ACTIONS(442), - [anon_sym_EQ_GT] = ACTIONS(442), - [anon_sym_QMARK_QMARK] = ACTIONS(442), - [anon_sym_EQ] = ACTIONS(444), - [sym__rangeOperator] = ACTIONS(442), - [anon_sym_null] = ACTIONS(444), - [anon_sym_dynamic] = ACTIONS(444), - [anon_sym_final] = ACTIONS(444), - [anon_sym_abstract] = ACTIONS(444), - [anon_sym_class] = ACTIONS(444), - [anon_sym_extends] = ACTIONS(444), - [anon_sym_implements] = ACTIONS(444), - [anon_sym_interface] = ACTIONS(444), - [anon_sym_typedef] = ACTIONS(444), - [anon_sym_function] = ACTIONS(444), - [anon_sym_var] = ACTIONS(444), - [aux_sym_integer_token1] = ACTIONS(444), - [aux_sym_integer_token2] = ACTIONS(442), - [aux_sym_float_token1] = ACTIONS(444), - [aux_sym_float_token2] = ACTIONS(442), - [anon_sym_true] = ACTIONS(444), - [anon_sym_false] = ACTIONS(444), - [aux_sym_string_token1] = ACTIONS(442), - [aux_sym_string_token3] = ACTIONS(442), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(444), - [anon_sym_catch] = ACTIONS(444), - [anon_sym_continue] = ACTIONS(444), - [anon_sym_do] = ACTIONS(444), - [anon_sym_enum] = ACTIONS(444), - [anon_sym_extern] = ACTIONS(444), - [anon_sym_for] = ACTIONS(444), - [anon_sym_inline] = ACTIONS(444), - [anon_sym_macro] = ACTIONS(444), - [anon_sym_operator] = ACTIONS(444), - [anon_sym_overload] = ACTIONS(444), - [anon_sym_override] = ACTIONS(444), - [anon_sym_private] = ACTIONS(444), - [anon_sym_public] = ACTIONS(444), - [anon_sym_return] = ACTIONS(444), - [anon_sym_static] = ACTIONS(444), - [anon_sym_try] = ACTIONS(444), - [anon_sym_untyped] = ACTIONS(444), - [anon_sym_while] = ACTIONS(444), - [sym__semicolon] = ACTIONS(442), - }, - [63] = { - [ts_builtin_sym_end] = ACTIONS(446), - [sym_identifier] = ACTIONS(448), - [anon_sym_POUND] = ACTIONS(446), - [anon_sym_package] = ACTIONS(448), - [anon_sym_import] = ACTIONS(448), - [anon_sym_using] = ACTIONS(448), - [anon_sym_throw] = ACTIONS(448), - [anon_sym_LPAREN] = ACTIONS(446), - [anon_sym_RPAREN] = ACTIONS(446), - [anon_sym_switch] = ACTIONS(448), - [anon_sym_LBRACE] = ACTIONS(446), - [anon_sym_RBRACE] = ACTIONS(446), - [anon_sym_case] = ACTIONS(448), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_default] = ACTIONS(448), - [anon_sym_cast] = ACTIONS(448), - [anon_sym_COMMA] = ACTIONS(446), - [anon_sym_DOLLARtype] = ACTIONS(446), - [anon_sym_in] = ACTIONS(448), - [anon_sym_LBRACK] = ACTIONS(446), - [anon_sym_RBRACK] = ACTIONS(446), - [anon_sym_this] = ACTIONS(448), - [anon_sym_DOT] = ACTIONS(448), - [anon_sym_QMARK] = ACTIONS(448), - [anon_sym_AT] = ACTIONS(448), - [anon_sym_AT_COLON] = ACTIONS(446), - [anon_sym_if] = ACTIONS(448), - [anon_sym_else] = ACTIONS(448), - [anon_sym_new] = ACTIONS(448), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_BANG] = ACTIONS(448), - [anon_sym_DASH] = ACTIONS(448), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_DASH_DASH] = ACTIONS(446), - [anon_sym_PERCENT] = ACTIONS(446), - [anon_sym_STAR] = ACTIONS(446), - [anon_sym_SLASH] = ACTIONS(448), - [anon_sym_PLUS] = ACTIONS(448), - [anon_sym_LT_LT] = ACTIONS(446), - [anon_sym_GT_GT] = ACTIONS(448), - [anon_sym_GT_GT_GT] = ACTIONS(446), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_PIPE] = ACTIONS(448), - [anon_sym_CARET] = ACTIONS(446), - [anon_sym_AMP_AMP] = ACTIONS(446), - [anon_sym_PIPE_PIPE] = ACTIONS(446), - [anon_sym_EQ_EQ] = ACTIONS(446), - [anon_sym_BANG_EQ] = ACTIONS(446), - [anon_sym_LT] = ACTIONS(448), - [anon_sym_LT_EQ] = ACTIONS(446), - [anon_sym_GT] = ACTIONS(448), - [anon_sym_GT_EQ] = ACTIONS(446), - [anon_sym_EQ_GT] = ACTIONS(446), - [anon_sym_QMARK_QMARK] = ACTIONS(446), - [anon_sym_EQ] = ACTIONS(448), - [sym__rangeOperator] = ACTIONS(446), - [anon_sym_null] = ACTIONS(448), - [anon_sym_dynamic] = ACTIONS(448), - [anon_sym_final] = ACTIONS(448), - [anon_sym_abstract] = ACTIONS(448), - [anon_sym_class] = ACTIONS(448), - [anon_sym_extends] = ACTIONS(448), - [anon_sym_implements] = ACTIONS(448), - [anon_sym_interface] = ACTIONS(448), - [anon_sym_typedef] = ACTIONS(448), - [anon_sym_function] = ACTIONS(448), - [anon_sym_var] = ACTIONS(448), - [aux_sym_integer_token1] = ACTIONS(448), - [aux_sym_integer_token2] = ACTIONS(446), - [aux_sym_float_token1] = ACTIONS(448), - [aux_sym_float_token2] = ACTIONS(446), - [anon_sym_true] = ACTIONS(448), - [anon_sym_false] = ACTIONS(448), - [aux_sym_string_token1] = ACTIONS(446), - [aux_sym_string_token3] = ACTIONS(446), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(448), - [anon_sym_catch] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(448), - [anon_sym_do] = ACTIONS(448), - [anon_sym_enum] = ACTIONS(448), - [anon_sym_extern] = ACTIONS(448), - [anon_sym_for] = ACTIONS(448), - [anon_sym_inline] = ACTIONS(448), - [anon_sym_macro] = ACTIONS(448), - [anon_sym_operator] = ACTIONS(448), - [anon_sym_overload] = ACTIONS(448), - [anon_sym_override] = ACTIONS(448), - [anon_sym_private] = ACTIONS(448), - [anon_sym_public] = ACTIONS(448), - [anon_sym_return] = ACTIONS(448), - [anon_sym_static] = ACTIONS(448), - [anon_sym_try] = ACTIONS(448), - [anon_sym_untyped] = ACTIONS(448), - [anon_sym_while] = ACTIONS(448), - [sym__semicolon] = ACTIONS(446), - }, [64] = { - [ts_builtin_sym_end] = ACTIONS(450), - [sym_identifier] = ACTIONS(452), - [anon_sym_POUND] = ACTIONS(450), - [anon_sym_package] = ACTIONS(452), - [anon_sym_import] = ACTIONS(452), - [anon_sym_using] = ACTIONS(452), - [anon_sym_throw] = ACTIONS(452), - [anon_sym_LPAREN] = ACTIONS(450), - [anon_sym_RPAREN] = ACTIONS(450), - [anon_sym_switch] = ACTIONS(452), - [anon_sym_LBRACE] = ACTIONS(450), - [anon_sym_RBRACE] = ACTIONS(450), - [anon_sym_case] = ACTIONS(452), - [anon_sym_COLON] = ACTIONS(450), - [anon_sym_default] = ACTIONS(452), - [anon_sym_cast] = ACTIONS(452), - [anon_sym_COMMA] = ACTIONS(450), - [anon_sym_DOLLARtype] = ACTIONS(450), - [anon_sym_in] = ACTIONS(452), - [anon_sym_LBRACK] = ACTIONS(450), - [anon_sym_RBRACK] = ACTIONS(450), - [anon_sym_this] = ACTIONS(452), - [anon_sym_DOT] = ACTIONS(452), - [anon_sym_QMARK] = ACTIONS(452), - [anon_sym_AT] = ACTIONS(452), - [anon_sym_AT_COLON] = ACTIONS(450), - [anon_sym_if] = ACTIONS(452), - [anon_sym_else] = ACTIONS(452), - [anon_sym_new] = ACTIONS(452), - [anon_sym_TILDE] = ACTIONS(450), - [anon_sym_BANG] = ACTIONS(452), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_PLUS_PLUS] = ACTIONS(450), - [anon_sym_DASH_DASH] = ACTIONS(450), - [anon_sym_PERCENT] = ACTIONS(450), - [anon_sym_STAR] = ACTIONS(450), - [anon_sym_SLASH] = ACTIONS(452), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_LT_LT] = ACTIONS(450), - [anon_sym_GT_GT] = ACTIONS(452), - [anon_sym_GT_GT_GT] = ACTIONS(450), - [anon_sym_AMP] = ACTIONS(452), - [anon_sym_PIPE] = ACTIONS(452), - [anon_sym_CARET] = ACTIONS(450), - [anon_sym_AMP_AMP] = ACTIONS(450), - [anon_sym_PIPE_PIPE] = ACTIONS(450), - [anon_sym_EQ_EQ] = ACTIONS(450), - [anon_sym_BANG_EQ] = ACTIONS(450), - [anon_sym_LT] = ACTIONS(452), - [anon_sym_LT_EQ] = ACTIONS(450), - [anon_sym_GT] = ACTIONS(452), - [anon_sym_GT_EQ] = ACTIONS(450), - [anon_sym_EQ_GT] = ACTIONS(450), - [anon_sym_QMARK_QMARK] = ACTIONS(450), - [anon_sym_EQ] = ACTIONS(452), - [sym__rangeOperator] = ACTIONS(450), - [anon_sym_null] = ACTIONS(452), - [anon_sym_dynamic] = ACTIONS(452), - [anon_sym_final] = ACTIONS(452), - [anon_sym_abstract] = ACTIONS(452), - [anon_sym_class] = ACTIONS(452), - [anon_sym_extends] = ACTIONS(452), - [anon_sym_implements] = ACTIONS(452), - [anon_sym_interface] = ACTIONS(452), - [anon_sym_typedef] = ACTIONS(452), - [anon_sym_function] = ACTIONS(452), - [anon_sym_var] = ACTIONS(452), - [aux_sym_integer_token1] = ACTIONS(452), - [aux_sym_integer_token2] = ACTIONS(450), - [aux_sym_float_token1] = ACTIONS(452), - [aux_sym_float_token2] = ACTIONS(450), - [anon_sym_true] = ACTIONS(452), - [anon_sym_false] = ACTIONS(452), - [aux_sym_string_token1] = ACTIONS(450), - [aux_sym_string_token3] = ACTIONS(450), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(452), - [anon_sym_catch] = ACTIONS(452), - [anon_sym_continue] = ACTIONS(452), - [anon_sym_do] = ACTIONS(452), - [anon_sym_enum] = ACTIONS(452), - [anon_sym_extern] = ACTIONS(452), - [anon_sym_for] = ACTIONS(452), - [anon_sym_inline] = ACTIONS(452), - [anon_sym_macro] = ACTIONS(452), - [anon_sym_operator] = ACTIONS(452), - [anon_sym_overload] = ACTIONS(452), - [anon_sym_override] = ACTIONS(452), - [anon_sym_private] = ACTIONS(452), - [anon_sym_public] = ACTIONS(452), - [anon_sym_return] = ACTIONS(452), - [anon_sym_static] = ACTIONS(452), - [anon_sym_try] = ACTIONS(452), - [anon_sym_untyped] = ACTIONS(452), - [anon_sym_while] = ACTIONS(452), - [sym__semicolon] = ACTIONS(450), + [ts_builtin_sym_end] = ACTIONS(428), + [sym_identifier] = ACTIONS(430), + [anon_sym_POUND] = ACTIONS(428), + [anon_sym_package] = ACTIONS(430), + [anon_sym_import] = ACTIONS(430), + [anon_sym_using] = ACTIONS(430), + [anon_sym_throw] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_RPAREN] = ACTIONS(428), + [anon_sym_switch] = ACTIONS(430), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_RBRACE] = ACTIONS(428), + [anon_sym_case] = ACTIONS(430), + [anon_sym_default] = ACTIONS(430), + [anon_sym_cast] = ACTIONS(430), + [anon_sym_COMMA] = ACTIONS(428), + [anon_sym_DOLLARtype] = ACTIONS(428), + [anon_sym_in] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_this] = ACTIONS(430), + [aux_sym_member_expression_token1] = ACTIONS(430), + [anon_sym_QMARK] = ACTIONS(430), + [anon_sym_AT] = ACTIONS(430), + [anon_sym_AT_COLON] = ACTIONS(428), + [anon_sym_if] = ACTIONS(430), + [anon_sym_else] = ACTIONS(430), + [anon_sym_new] = ACTIONS(430), + [sym__prefixUnaryOperator] = ACTIONS(430), + [sym__eitherUnaryOperator] = ACTIONS(428), + [sym__arithmetic_operator] = ACTIONS(430), + [sym__bitwise_operator] = ACTIONS(430), + [sym__logical_operator] = ACTIONS(428), + [sym__comparison_operator] = ACTIONS(430), + [sym__map_operator] = ACTIONS(428), + [sym__null_colalese_operator] = ACTIONS(428), + [anon_sym_EQ] = ACTIONS(430), + [sym__range_operator] = ACTIONS(428), + [anon_sym_null] = ACTIONS(430), + [anon_sym_dynamic] = ACTIONS(430), + [anon_sym_final] = ACTIONS(430), + [anon_sym_abstract] = ACTIONS(430), + [anon_sym_class] = ACTIONS(430), + [anon_sym_extends] = ACTIONS(430), + [anon_sym_implements] = ACTIONS(430), + [anon_sym_interface] = ACTIONS(430), + [anon_sym_typedef] = ACTIONS(430), + [anon_sym_function] = ACTIONS(430), + [anon_sym_var] = ACTIONS(430), + [aux_sym_integer_token1] = ACTIONS(430), + [aux_sym_integer_token2] = ACTIONS(428), + [aux_sym_float_token1] = ACTIONS(430), + [aux_sym_float_token2] = ACTIONS(428), + [anon_sym_true] = ACTIONS(430), + [anon_sym_false] = ACTIONS(430), + [aux_sym_string_token1] = ACTIONS(428), + [aux_sym_string_token3] = ACTIONS(428), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(430), + [anon_sym_catch] = ACTIONS(430), + [anon_sym_continue] = ACTIONS(430), + [anon_sym_do] = ACTIONS(430), + [anon_sym_enum] = ACTIONS(430), + [anon_sym_extern] = ACTIONS(430), + [anon_sym_for] = ACTIONS(430), + [anon_sym_inline] = ACTIONS(430), + [anon_sym_macro] = ACTIONS(430), + [anon_sym_operator] = ACTIONS(430), + [anon_sym_overload] = ACTIONS(430), + [anon_sym_override] = ACTIONS(430), + [anon_sym_private] = ACTIONS(430), + [anon_sym_public] = ACTIONS(430), + [anon_sym_return] = ACTIONS(430), + [anon_sym_static] = ACTIONS(430), + [anon_sym_try] = ACTIONS(430), + [anon_sym_untyped] = ACTIONS(430), + [anon_sym_while] = ACTIONS(430), + [sym__semicolon] = ACTIONS(428), }, [65] = { - [ts_builtin_sym_end] = ACTIONS(320), - [sym_identifier] = ACTIONS(322), - [anon_sym_POUND] = ACTIONS(320), - [anon_sym_package] = ACTIONS(322), - [anon_sym_import] = ACTIONS(322), - [anon_sym_using] = ACTIONS(322), - [anon_sym_throw] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(320), - [anon_sym_RPAREN] = ACTIONS(320), - [anon_sym_switch] = ACTIONS(322), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_RBRACE] = ACTIONS(320), - [anon_sym_case] = ACTIONS(322), - [anon_sym_COLON] = ACTIONS(320), - [anon_sym_default] = ACTIONS(322), - [anon_sym_cast] = ACTIONS(322), - [anon_sym_COMMA] = ACTIONS(320), - [anon_sym_DOLLARtype] = ACTIONS(320), - [anon_sym_in] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(454), - [anon_sym_RBRACK] = ACTIONS(320), - [anon_sym_this] = ACTIONS(322), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_QMARK] = ACTIONS(322), - [anon_sym_AT] = ACTIONS(322), - [anon_sym_AT_COLON] = ACTIONS(320), - [anon_sym_if] = ACTIONS(322), - [anon_sym_else] = ACTIONS(322), - [anon_sym_new] = ACTIONS(322), - [anon_sym_TILDE] = ACTIONS(320), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(322), - [anon_sym_PLUS_PLUS] = ACTIONS(320), - [anon_sym_DASH_DASH] = ACTIONS(320), - [anon_sym_PERCENT] = ACTIONS(320), - [anon_sym_STAR] = ACTIONS(320), - [anon_sym_SLASH] = ACTIONS(322), - [anon_sym_PLUS] = ACTIONS(322), - [anon_sym_LT_LT] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(322), - [anon_sym_GT_GT_GT] = ACTIONS(320), - [anon_sym_AMP] = ACTIONS(322), - [anon_sym_PIPE] = ACTIONS(322), - [anon_sym_CARET] = ACTIONS(320), - [anon_sym_AMP_AMP] = ACTIONS(320), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_EQ_EQ] = ACTIONS(320), - [anon_sym_BANG_EQ] = ACTIONS(320), - [anon_sym_LT] = ACTIONS(322), - [anon_sym_LT_EQ] = ACTIONS(320), - [anon_sym_GT] = ACTIONS(322), - [anon_sym_GT_EQ] = ACTIONS(320), - [anon_sym_EQ_GT] = ACTIONS(320), - [anon_sym_QMARK_QMARK] = ACTIONS(320), - [anon_sym_EQ] = ACTIONS(322), - [sym__rangeOperator] = ACTIONS(320), - [anon_sym_null] = ACTIONS(322), - [anon_sym_dynamic] = ACTIONS(322), - [anon_sym_final] = ACTIONS(322), - [anon_sym_abstract] = ACTIONS(322), - [anon_sym_class] = ACTIONS(322), - [anon_sym_extends] = ACTIONS(322), - [anon_sym_implements] = ACTIONS(322), - [anon_sym_interface] = ACTIONS(322), - [anon_sym_typedef] = ACTIONS(322), - [anon_sym_function] = ACTIONS(322), - [anon_sym_var] = ACTIONS(322), - [aux_sym_integer_token1] = ACTIONS(322), - [aux_sym_integer_token2] = ACTIONS(320), - [aux_sym_float_token1] = ACTIONS(322), - [aux_sym_float_token2] = ACTIONS(320), - [anon_sym_true] = ACTIONS(322), - [anon_sym_false] = ACTIONS(322), - [aux_sym_string_token1] = ACTIONS(320), - [aux_sym_string_token3] = ACTIONS(320), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(322), - [anon_sym_catch] = ACTIONS(322), - [anon_sym_continue] = ACTIONS(322), - [anon_sym_do] = ACTIONS(322), - [anon_sym_enum] = ACTIONS(322), - [anon_sym_extern] = ACTIONS(322), - [anon_sym_for] = ACTIONS(322), - [anon_sym_inline] = ACTIONS(322), - [anon_sym_macro] = ACTIONS(322), - [anon_sym_operator] = ACTIONS(322), - [anon_sym_overload] = ACTIONS(322), - [anon_sym_override] = ACTIONS(322), - [anon_sym_private] = ACTIONS(322), - [anon_sym_public] = ACTIONS(322), - [anon_sym_return] = ACTIONS(322), - [anon_sym_static] = ACTIONS(322), - [anon_sym_try] = ACTIONS(322), - [anon_sym_untyped] = ACTIONS(322), - [anon_sym_while] = ACTIONS(322), - [sym__semicolon] = ACTIONS(320), + [ts_builtin_sym_end] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [anon_sym_POUND] = ACTIONS(432), + [anon_sym_package] = ACTIONS(434), + [anon_sym_import] = ACTIONS(434), + [anon_sym_using] = ACTIONS(434), + [anon_sym_throw] = ACTIONS(434), + [anon_sym_LPAREN] = ACTIONS(432), + [anon_sym_switch] = ACTIONS(434), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(432), + [anon_sym_case] = ACTIONS(434), + [anon_sym_COLON] = ACTIONS(378), + [anon_sym_default] = ACTIONS(434), + [anon_sym_cast] = ACTIONS(434), + [anon_sym_COMMA] = ACTIONS(432), + [anon_sym_DOLLARtype] = ACTIONS(432), + [anon_sym_in] = ACTIONS(434), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_this] = ACTIONS(434), + [aux_sym_member_expression_token1] = ACTIONS(434), + [anon_sym_QMARK] = ACTIONS(434), + [anon_sym_AT] = ACTIONS(434), + [anon_sym_AT_COLON] = ACTIONS(432), + [anon_sym_if] = ACTIONS(434), + [anon_sym_else] = ACTIONS(434), + [anon_sym_new] = ACTIONS(434), + [sym__prefixUnaryOperator] = ACTIONS(434), + [sym__eitherUnaryOperator] = ACTIONS(432), + [sym__arithmetic_operator] = ACTIONS(434), + [sym__bitwise_operator] = ACTIONS(434), + [sym__logical_operator] = ACTIONS(432), + [sym__comparison_operator] = ACTIONS(434), + [sym__map_operator] = ACTIONS(432), + [sym__null_colalese_operator] = ACTIONS(432), + [anon_sym_EQ] = ACTIONS(434), + [sym__range_operator] = ACTIONS(432), + [anon_sym_null] = ACTIONS(434), + [anon_sym_dynamic] = ACTIONS(434), + [anon_sym_final] = ACTIONS(434), + [anon_sym_abstract] = ACTIONS(434), + [anon_sym_class] = ACTIONS(434), + [anon_sym_extends] = ACTIONS(434), + [anon_sym_implements] = ACTIONS(434), + [anon_sym_interface] = ACTIONS(434), + [anon_sym_typedef] = ACTIONS(434), + [anon_sym_function] = ACTIONS(434), + [anon_sym_var] = ACTIONS(434), + [aux_sym_integer_token1] = ACTIONS(434), + [aux_sym_integer_token2] = ACTIONS(432), + [aux_sym_float_token1] = ACTIONS(434), + [aux_sym_float_token2] = ACTIONS(432), + [anon_sym_true] = ACTIONS(434), + [anon_sym_false] = ACTIONS(434), + [aux_sym_string_token1] = ACTIONS(432), + [aux_sym_string_token3] = ACTIONS(432), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(434), + [anon_sym_catch] = ACTIONS(434), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_do] = ACTIONS(434), + [anon_sym_enum] = ACTIONS(434), + [anon_sym_extern] = ACTIONS(434), + [anon_sym_for] = ACTIONS(434), + [anon_sym_inline] = ACTIONS(434), + [anon_sym_macro] = ACTIONS(434), + [anon_sym_operator] = ACTIONS(434), + [anon_sym_overload] = ACTIONS(434), + [anon_sym_override] = ACTIONS(434), + [anon_sym_private] = ACTIONS(434), + [anon_sym_public] = ACTIONS(434), + [anon_sym_return] = ACTIONS(434), + [anon_sym_static] = ACTIONS(434), + [anon_sym_try] = ACTIONS(434), + [anon_sym_untyped] = ACTIONS(434), + [anon_sym_while] = ACTIONS(434), + [sym__semicolon] = ACTIONS(432), }, [66] = { - [ts_builtin_sym_end] = ACTIONS(320), - [sym_identifier] = ACTIONS(322), - [anon_sym_POUND] = ACTIONS(320), - [anon_sym_package] = ACTIONS(322), - [anon_sym_import] = ACTIONS(322), - [anon_sym_using] = ACTIONS(322), - [anon_sym_throw] = ACTIONS(322), - [anon_sym_LPAREN] = ACTIONS(320), - [anon_sym_RPAREN] = ACTIONS(320), - [anon_sym_switch] = ACTIONS(322), - [anon_sym_LBRACE] = ACTIONS(320), - [anon_sym_RBRACE] = ACTIONS(320), - [anon_sym_case] = ACTIONS(322), - [anon_sym_COLON] = ACTIONS(320), - [anon_sym_default] = ACTIONS(322), - [anon_sym_cast] = ACTIONS(322), - [anon_sym_COMMA] = ACTIONS(320), - [anon_sym_DOLLARtype] = ACTIONS(320), - [anon_sym_in] = ACTIONS(322), - [anon_sym_LBRACK] = ACTIONS(320), - [anon_sym_RBRACK] = ACTIONS(320), - [anon_sym_this] = ACTIONS(322), - [anon_sym_DOT] = ACTIONS(322), - [anon_sym_QMARK] = ACTIONS(322), - [anon_sym_AT] = ACTIONS(322), - [anon_sym_AT_COLON] = ACTIONS(320), - [anon_sym_if] = ACTIONS(322), - [anon_sym_else] = ACTIONS(322), - [anon_sym_new] = ACTIONS(322), - [anon_sym_TILDE] = ACTIONS(320), - [anon_sym_BANG] = ACTIONS(322), - [anon_sym_DASH] = ACTIONS(322), - [anon_sym_PLUS_PLUS] = ACTIONS(320), - [anon_sym_DASH_DASH] = ACTIONS(320), - [anon_sym_PERCENT] = ACTIONS(320), - [anon_sym_STAR] = ACTIONS(320), - [anon_sym_SLASH] = ACTIONS(322), - [anon_sym_PLUS] = ACTIONS(322), - [anon_sym_LT_LT] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(322), - [anon_sym_GT_GT_GT] = ACTIONS(320), - [anon_sym_AMP] = ACTIONS(322), - [anon_sym_PIPE] = ACTIONS(322), - [anon_sym_CARET] = ACTIONS(320), - [anon_sym_AMP_AMP] = ACTIONS(320), - [anon_sym_PIPE_PIPE] = ACTIONS(320), - [anon_sym_EQ_EQ] = ACTIONS(320), - [anon_sym_BANG_EQ] = ACTIONS(320), - [anon_sym_LT] = ACTIONS(322), - [anon_sym_LT_EQ] = ACTIONS(320), - [anon_sym_GT] = ACTIONS(322), - [anon_sym_GT_EQ] = ACTIONS(320), - [anon_sym_EQ_GT] = ACTIONS(320), - [anon_sym_QMARK_QMARK] = ACTIONS(320), - [anon_sym_EQ] = ACTIONS(322), - [sym__rangeOperator] = ACTIONS(320), - [anon_sym_null] = ACTIONS(322), - [anon_sym_dynamic] = ACTIONS(322), - [anon_sym_final] = ACTIONS(322), - [anon_sym_abstract] = ACTIONS(322), - [anon_sym_class] = ACTIONS(322), - [anon_sym_extends] = ACTIONS(322), - [anon_sym_implements] = ACTIONS(322), - [anon_sym_interface] = ACTIONS(322), - [anon_sym_typedef] = ACTIONS(322), - [anon_sym_function] = ACTIONS(322), - [anon_sym_var] = ACTIONS(322), - [aux_sym_integer_token1] = ACTIONS(322), - [aux_sym_integer_token2] = ACTIONS(320), - [aux_sym_float_token1] = ACTIONS(322), - [aux_sym_float_token2] = ACTIONS(320), - [anon_sym_true] = ACTIONS(322), - [anon_sym_false] = ACTIONS(322), - [aux_sym_string_token1] = ACTIONS(320), - [aux_sym_string_token3] = ACTIONS(320), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(322), - [anon_sym_catch] = ACTIONS(322), - [anon_sym_continue] = ACTIONS(322), - [anon_sym_do] = ACTIONS(322), - [anon_sym_enum] = ACTIONS(322), - [anon_sym_extern] = ACTIONS(322), - [anon_sym_for] = ACTIONS(322), - [anon_sym_inline] = ACTIONS(322), - [anon_sym_macro] = ACTIONS(322), - [anon_sym_operator] = ACTIONS(322), - [anon_sym_overload] = ACTIONS(322), - [anon_sym_override] = ACTIONS(322), - [anon_sym_private] = ACTIONS(322), - [anon_sym_public] = ACTIONS(322), - [anon_sym_return] = ACTIONS(322), - [anon_sym_static] = ACTIONS(322), - [anon_sym_try] = ACTIONS(322), - [anon_sym_untyped] = ACTIONS(322), - [anon_sym_while] = ACTIONS(322), - [sym__semicolon] = ACTIONS(320), + [ts_builtin_sym_end] = ACTIONS(436), + [sym_identifier] = ACTIONS(438), + [anon_sym_POUND] = ACTIONS(436), + [anon_sym_package] = ACTIONS(438), + [anon_sym_import] = ACTIONS(438), + [anon_sym_using] = ACTIONS(438), + [anon_sym_throw] = ACTIONS(438), + [anon_sym_LPAREN] = ACTIONS(436), + [anon_sym_RPAREN] = ACTIONS(436), + [anon_sym_switch] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_RBRACE] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_default] = ACTIONS(438), + [anon_sym_cast] = ACTIONS(438), + [anon_sym_COMMA] = ACTIONS(436), + [anon_sym_DOLLARtype] = ACTIONS(436), + [anon_sym_in] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(436), + [anon_sym_this] = ACTIONS(438), + [aux_sym_member_expression_token1] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(438), + [anon_sym_AT] = ACTIONS(438), + [anon_sym_AT_COLON] = ACTIONS(436), + [anon_sym_if] = ACTIONS(438), + [anon_sym_else] = ACTIONS(438), + [anon_sym_new] = ACTIONS(438), + [sym__prefixUnaryOperator] = ACTIONS(438), + [sym__eitherUnaryOperator] = ACTIONS(436), + [sym__arithmetic_operator] = ACTIONS(438), + [sym__bitwise_operator] = ACTIONS(438), + [sym__logical_operator] = ACTIONS(436), + [sym__comparison_operator] = ACTIONS(438), + [sym__map_operator] = ACTIONS(436), + [sym__null_colalese_operator] = ACTIONS(436), + [anon_sym_EQ] = ACTIONS(438), + [sym__range_operator] = ACTIONS(436), + [anon_sym_null] = ACTIONS(438), + [anon_sym_dynamic] = ACTIONS(438), + [anon_sym_final] = ACTIONS(438), + [anon_sym_abstract] = ACTIONS(438), + [anon_sym_class] = ACTIONS(438), + [anon_sym_extends] = ACTIONS(438), + [anon_sym_implements] = ACTIONS(438), + [anon_sym_interface] = ACTIONS(438), + [anon_sym_typedef] = ACTIONS(438), + [anon_sym_function] = ACTIONS(438), + [anon_sym_var] = ACTIONS(438), + [aux_sym_integer_token1] = ACTIONS(438), + [aux_sym_integer_token2] = ACTIONS(436), + [aux_sym_float_token1] = ACTIONS(438), + [aux_sym_float_token2] = ACTIONS(436), + [anon_sym_true] = ACTIONS(438), + [anon_sym_false] = ACTIONS(438), + [aux_sym_string_token1] = ACTIONS(436), + [aux_sym_string_token3] = ACTIONS(436), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(438), + [anon_sym_catch] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_do] = ACTIONS(438), + [anon_sym_enum] = ACTIONS(438), + [anon_sym_extern] = ACTIONS(438), + [anon_sym_for] = ACTIONS(438), + [anon_sym_inline] = ACTIONS(438), + [anon_sym_macro] = ACTIONS(438), + [anon_sym_operator] = ACTIONS(438), + [anon_sym_overload] = ACTIONS(438), + [anon_sym_override] = ACTIONS(438), + [anon_sym_private] = ACTIONS(438), + [anon_sym_public] = ACTIONS(438), + [anon_sym_return] = ACTIONS(438), + [anon_sym_static] = ACTIONS(438), + [anon_sym_try] = ACTIONS(438), + [anon_sym_untyped] = ACTIONS(438), + [anon_sym_while] = ACTIONS(438), + [sym__semicolon] = ACTIONS(436), }, [67] = { - [ts_builtin_sym_end] = ACTIONS(456), - [sym_identifier] = ACTIONS(458), - [anon_sym_POUND] = ACTIONS(456), - [anon_sym_package] = ACTIONS(458), - [anon_sym_import] = ACTIONS(458), - [anon_sym_using] = ACTIONS(458), - [anon_sym_throw] = ACTIONS(458), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_RPAREN] = ACTIONS(456), - [anon_sym_switch] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(456), - [anon_sym_RBRACE] = ACTIONS(456), - [anon_sym_case] = ACTIONS(458), - [anon_sym_COLON] = ACTIONS(456), - [anon_sym_default] = ACTIONS(458), - [anon_sym_cast] = ACTIONS(458), - [anon_sym_COMMA] = ACTIONS(456), - [anon_sym_DOLLARtype] = ACTIONS(456), - [anon_sym_in] = ACTIONS(458), - [anon_sym_LBRACK] = ACTIONS(456), - [anon_sym_RBRACK] = ACTIONS(456), - [anon_sym_this] = ACTIONS(458), - [anon_sym_DOT] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(458), - [anon_sym_AT] = ACTIONS(458), - [anon_sym_AT_COLON] = ACTIONS(456), - [anon_sym_if] = ACTIONS(458), - [anon_sym_else] = ACTIONS(458), - [anon_sym_new] = ACTIONS(458), - [anon_sym_TILDE] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(456), - [anon_sym_DASH_DASH] = ACTIONS(456), - [anon_sym_PERCENT] = ACTIONS(456), - [anon_sym_STAR] = ACTIONS(456), - [anon_sym_SLASH] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_LT_LT] = ACTIONS(456), - [anon_sym_GT_GT] = ACTIONS(458), - [anon_sym_GT_GT_GT] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(458), - [anon_sym_PIPE] = ACTIONS(458), - [anon_sym_CARET] = ACTIONS(456), - [anon_sym_AMP_AMP] = ACTIONS(456), - [anon_sym_PIPE_PIPE] = ACTIONS(456), - [anon_sym_EQ_EQ] = ACTIONS(456), - [anon_sym_BANG_EQ] = ACTIONS(456), - [anon_sym_LT] = ACTIONS(458), - [anon_sym_LT_EQ] = ACTIONS(456), - [anon_sym_GT] = ACTIONS(458), - [anon_sym_GT_EQ] = ACTIONS(456), - [anon_sym_EQ_GT] = ACTIONS(456), - [anon_sym_QMARK_QMARK] = ACTIONS(456), - [anon_sym_EQ] = ACTIONS(458), - [sym__rangeOperator] = ACTIONS(456), - [anon_sym_null] = ACTIONS(458), - [anon_sym_dynamic] = ACTIONS(458), - [anon_sym_final] = ACTIONS(458), - [anon_sym_abstract] = ACTIONS(458), - [anon_sym_class] = ACTIONS(458), - [anon_sym_extends] = ACTIONS(458), - [anon_sym_implements] = ACTIONS(458), - [anon_sym_interface] = ACTIONS(458), - [anon_sym_typedef] = ACTIONS(458), - [anon_sym_function] = ACTIONS(458), - [anon_sym_var] = ACTIONS(458), - [aux_sym_integer_token1] = ACTIONS(458), - [aux_sym_integer_token2] = ACTIONS(456), - [aux_sym_float_token1] = ACTIONS(458), - [aux_sym_float_token2] = ACTIONS(456), - [anon_sym_true] = ACTIONS(458), - [anon_sym_false] = ACTIONS(458), - [aux_sym_string_token1] = ACTIONS(456), - [aux_sym_string_token3] = ACTIONS(456), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(458), - [anon_sym_catch] = ACTIONS(458), - [anon_sym_continue] = ACTIONS(458), - [anon_sym_do] = ACTIONS(458), - [anon_sym_enum] = ACTIONS(458), - [anon_sym_extern] = ACTIONS(458), - [anon_sym_for] = ACTIONS(458), - [anon_sym_inline] = ACTIONS(458), - [anon_sym_macro] = ACTIONS(458), - [anon_sym_operator] = ACTIONS(458), - [anon_sym_overload] = ACTIONS(458), - [anon_sym_override] = ACTIONS(458), - [anon_sym_private] = ACTIONS(458), - [anon_sym_public] = ACTIONS(458), - [anon_sym_return] = ACTIONS(458), - [anon_sym_static] = ACTIONS(458), - [anon_sym_try] = ACTIONS(458), - [anon_sym_untyped] = ACTIONS(458), - [anon_sym_while] = ACTIONS(458), - [sym__semicolon] = ACTIONS(456), + [ts_builtin_sym_end] = ACTIONS(440), + [sym_identifier] = ACTIONS(442), + [anon_sym_POUND] = ACTIONS(440), + [anon_sym_package] = ACTIONS(442), + [anon_sym_import] = ACTIONS(442), + [anon_sym_using] = ACTIONS(442), + [anon_sym_throw] = ACTIONS(442), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_RPAREN] = ACTIONS(440), + [anon_sym_switch] = ACTIONS(442), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_case] = ACTIONS(442), + [anon_sym_default] = ACTIONS(442), + [anon_sym_cast] = ACTIONS(442), + [anon_sym_COMMA] = ACTIONS(440), + [anon_sym_DOLLARtype] = ACTIONS(440), + [anon_sym_in] = ACTIONS(442), + [anon_sym_LBRACK] = ACTIONS(440), + [anon_sym_this] = ACTIONS(442), + [aux_sym_member_expression_token1] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(442), + [anon_sym_AT] = ACTIONS(442), + [anon_sym_AT_COLON] = ACTIONS(440), + [anon_sym_if] = ACTIONS(442), + [anon_sym_else] = ACTIONS(442), + [anon_sym_new] = ACTIONS(442), + [sym__prefixUnaryOperator] = ACTIONS(442), + [sym__eitherUnaryOperator] = ACTIONS(440), + [sym__arithmetic_operator] = ACTIONS(442), + [sym__bitwise_operator] = ACTIONS(442), + [sym__logical_operator] = ACTIONS(440), + [sym__comparison_operator] = ACTIONS(442), + [sym__map_operator] = ACTIONS(440), + [sym__null_colalese_operator] = ACTIONS(440), + [anon_sym_EQ] = ACTIONS(442), + [sym__range_operator] = ACTIONS(440), + [anon_sym_null] = ACTIONS(442), + [anon_sym_dynamic] = ACTIONS(442), + [anon_sym_final] = ACTIONS(442), + [anon_sym_abstract] = ACTIONS(442), + [anon_sym_class] = ACTIONS(442), + [anon_sym_extends] = ACTIONS(442), + [anon_sym_implements] = ACTIONS(442), + [anon_sym_interface] = ACTIONS(442), + [anon_sym_typedef] = ACTIONS(442), + [anon_sym_function] = ACTIONS(442), + [anon_sym_var] = ACTIONS(442), + [aux_sym_integer_token1] = ACTIONS(442), + [aux_sym_integer_token2] = ACTIONS(440), + [aux_sym_float_token1] = ACTIONS(442), + [aux_sym_float_token2] = ACTIONS(440), + [anon_sym_true] = ACTIONS(442), + [anon_sym_false] = ACTIONS(442), + [aux_sym_string_token1] = ACTIONS(440), + [aux_sym_string_token3] = ACTIONS(440), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(442), + [anon_sym_catch] = ACTIONS(442), + [anon_sym_continue] = ACTIONS(442), + [anon_sym_do] = ACTIONS(442), + [anon_sym_enum] = ACTIONS(442), + [anon_sym_extern] = ACTIONS(442), + [anon_sym_for] = ACTIONS(442), + [anon_sym_inline] = ACTIONS(442), + [anon_sym_macro] = ACTIONS(442), + [anon_sym_operator] = ACTIONS(442), + [anon_sym_overload] = ACTIONS(442), + [anon_sym_override] = ACTIONS(442), + [anon_sym_private] = ACTIONS(442), + [anon_sym_public] = ACTIONS(442), + [anon_sym_return] = ACTIONS(442), + [anon_sym_static] = ACTIONS(442), + [anon_sym_try] = ACTIONS(442), + [anon_sym_untyped] = ACTIONS(442), + [anon_sym_while] = ACTIONS(442), + [sym__semicolon] = ACTIONS(440), }, [68] = { - [ts_builtin_sym_end] = ACTIONS(460), - [sym_identifier] = ACTIONS(462), - [anon_sym_POUND] = ACTIONS(460), - [anon_sym_package] = ACTIONS(462), - [anon_sym_import] = ACTIONS(462), - [anon_sym_using] = ACTIONS(462), - [anon_sym_throw] = ACTIONS(462), - [anon_sym_LPAREN] = ACTIONS(460), - [anon_sym_RPAREN] = ACTIONS(460), - [anon_sym_switch] = ACTIONS(462), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(460), - [anon_sym_case] = ACTIONS(462), - [anon_sym_COLON] = ACTIONS(460), - [anon_sym_default] = ACTIONS(462), - [anon_sym_cast] = ACTIONS(462), - [anon_sym_COMMA] = ACTIONS(460), - [anon_sym_DOLLARtype] = ACTIONS(460), - [anon_sym_in] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(460), - [anon_sym_RBRACK] = ACTIONS(460), - [anon_sym_this] = ACTIONS(462), - [anon_sym_DOT] = ACTIONS(462), - [anon_sym_QMARK] = ACTIONS(462), - [anon_sym_AT] = ACTIONS(462), - [anon_sym_AT_COLON] = ACTIONS(460), - [anon_sym_if] = ACTIONS(462), - [anon_sym_else] = ACTIONS(462), - [anon_sym_new] = ACTIONS(462), - [anon_sym_TILDE] = ACTIONS(460), - [anon_sym_BANG] = ACTIONS(462), - [anon_sym_DASH] = ACTIONS(462), - [anon_sym_PLUS_PLUS] = ACTIONS(460), - [anon_sym_DASH_DASH] = ACTIONS(460), - [anon_sym_PERCENT] = ACTIONS(460), - [anon_sym_STAR] = ACTIONS(460), - [anon_sym_SLASH] = ACTIONS(462), - [anon_sym_PLUS] = ACTIONS(462), - [anon_sym_LT_LT] = ACTIONS(460), - [anon_sym_GT_GT] = ACTIONS(462), - [anon_sym_GT_GT_GT] = ACTIONS(460), - [anon_sym_AMP] = ACTIONS(462), - [anon_sym_PIPE] = ACTIONS(462), - [anon_sym_CARET] = ACTIONS(460), - [anon_sym_AMP_AMP] = ACTIONS(460), - [anon_sym_PIPE_PIPE] = ACTIONS(460), - [anon_sym_EQ_EQ] = ACTIONS(460), - [anon_sym_BANG_EQ] = ACTIONS(460), - [anon_sym_LT] = ACTIONS(462), - [anon_sym_LT_EQ] = ACTIONS(460), - [anon_sym_GT] = ACTIONS(462), - [anon_sym_GT_EQ] = ACTIONS(460), - [anon_sym_EQ_GT] = ACTIONS(460), - [anon_sym_QMARK_QMARK] = ACTIONS(460), - [anon_sym_EQ] = ACTIONS(462), - [sym__rangeOperator] = ACTIONS(460), - [anon_sym_null] = ACTIONS(462), - [anon_sym_dynamic] = ACTIONS(462), - [anon_sym_final] = ACTIONS(462), - [anon_sym_abstract] = ACTIONS(462), - [anon_sym_class] = ACTIONS(462), - [anon_sym_extends] = ACTIONS(462), - [anon_sym_implements] = ACTIONS(462), - [anon_sym_interface] = ACTIONS(462), - [anon_sym_typedef] = ACTIONS(462), - [anon_sym_function] = ACTIONS(462), - [anon_sym_var] = ACTIONS(462), - [aux_sym_integer_token1] = ACTIONS(462), - [aux_sym_integer_token2] = ACTIONS(460), - [aux_sym_float_token1] = ACTIONS(462), - [aux_sym_float_token2] = ACTIONS(460), - [anon_sym_true] = ACTIONS(462), - [anon_sym_false] = ACTIONS(462), - [aux_sym_string_token1] = ACTIONS(460), - [aux_sym_string_token3] = ACTIONS(460), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(462), - [anon_sym_catch] = ACTIONS(462), - [anon_sym_continue] = ACTIONS(462), - [anon_sym_do] = ACTIONS(462), - [anon_sym_enum] = ACTIONS(462), - [anon_sym_extern] = ACTIONS(462), - [anon_sym_for] = ACTIONS(462), - [anon_sym_inline] = ACTIONS(462), - [anon_sym_macro] = ACTIONS(462), - [anon_sym_operator] = ACTIONS(462), - [anon_sym_overload] = ACTIONS(462), - [anon_sym_override] = ACTIONS(462), - [anon_sym_private] = ACTIONS(462), - [anon_sym_public] = ACTIONS(462), - [anon_sym_return] = ACTIONS(462), - [anon_sym_static] = ACTIONS(462), - [anon_sym_try] = ACTIONS(462), - [anon_sym_untyped] = ACTIONS(462), - [anon_sym_while] = ACTIONS(462), - [sym__semicolon] = ACTIONS(460), + [sym__binaryOperator] = STATE(341), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [anon_sym_POUND] = ACTIONS(444), + [anon_sym_package] = ACTIONS(446), + [anon_sym_import] = ACTIONS(446), + [anon_sym_using] = ACTIONS(446), + [anon_sym_throw] = ACTIONS(446), + [anon_sym_LPAREN] = ACTIONS(444), + [anon_sym_switch] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(444), + [anon_sym_RBRACE] = ACTIONS(444), + [anon_sym_case] = ACTIONS(446), + [anon_sym_default] = ACTIONS(446), + [anon_sym_cast] = ACTIONS(446), + [anon_sym_DOLLARtype] = ACTIONS(444), + [anon_sym_in] = ACTIONS(446), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_QMARK] = ACTIONS(422), + [anon_sym_AT] = ACTIONS(446), + [anon_sym_AT_COLON] = ACTIONS(444), + [anon_sym_if] = ACTIONS(446), + [anon_sym_else] = ACTIONS(446), + [anon_sym_new] = ACTIONS(446), + [sym__prefixUnaryOperator] = ACTIONS(446), + [sym__eitherUnaryOperator] = ACTIONS(332), + [sym__arithmetic_operator] = ACTIONS(320), + [sym__bitwise_operator] = ACTIONS(320), + [sym__logical_operator] = ACTIONS(322), + [sym__comparison_operator] = ACTIONS(324), + [sym__map_operator] = ACTIONS(322), + [sym__null_colalese_operator] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(324), + [sym__range_operator] = ACTIONS(322), + [anon_sym_null] = ACTIONS(446), + [anon_sym_dynamic] = ACTIONS(446), + [anon_sym_final] = ACTIONS(446), + [anon_sym_abstract] = ACTIONS(446), + [anon_sym_class] = ACTIONS(446), + [anon_sym_extends] = ACTIONS(446), + [anon_sym_implements] = ACTIONS(446), + [anon_sym_interface] = ACTIONS(446), + [anon_sym_typedef] = ACTIONS(446), + [anon_sym_function] = ACTIONS(446), + [anon_sym_var] = ACTIONS(446), + [aux_sym_integer_token1] = ACTIONS(446), + [aux_sym_integer_token2] = ACTIONS(444), + [aux_sym_float_token1] = ACTIONS(446), + [aux_sym_float_token2] = ACTIONS(444), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [aux_sym_string_token1] = ACTIONS(444), + [aux_sym_string_token3] = ACTIONS(444), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(446), + [anon_sym_catch] = ACTIONS(446), + [anon_sym_continue] = ACTIONS(446), + [anon_sym_do] = ACTIONS(446), + [anon_sym_enum] = ACTIONS(446), + [anon_sym_extern] = ACTIONS(446), + [anon_sym_for] = ACTIONS(446), + [anon_sym_inline] = ACTIONS(446), + [anon_sym_macro] = ACTIONS(446), + [anon_sym_operator] = ACTIONS(446), + [anon_sym_overload] = ACTIONS(446), + [anon_sym_override] = ACTIONS(446), + [anon_sym_private] = ACTIONS(446), + [anon_sym_public] = ACTIONS(446), + [anon_sym_return] = ACTIONS(446), + [anon_sym_static] = ACTIONS(446), + [anon_sym_try] = ACTIONS(446), + [anon_sym_untyped] = ACTIONS(446), + [anon_sym_while] = ACTIONS(446), + [sym__semicolon] = ACTIONS(444), }, [69] = { - [ts_builtin_sym_end] = ACTIONS(424), - [sym_identifier] = ACTIONS(426), - [anon_sym_POUND] = ACTIONS(424), - [anon_sym_package] = ACTIONS(426), - [anon_sym_import] = ACTIONS(426), - [anon_sym_using] = ACTIONS(426), - [anon_sym_throw] = ACTIONS(426), - [anon_sym_LPAREN] = ACTIONS(424), - [anon_sym_RPAREN] = ACTIONS(424), - [anon_sym_switch] = ACTIONS(426), - [anon_sym_LBRACE] = ACTIONS(424), - [anon_sym_RBRACE] = ACTIONS(424), - [anon_sym_case] = ACTIONS(426), - [anon_sym_COLON] = ACTIONS(428), - [anon_sym_default] = ACTIONS(426), - [anon_sym_cast] = ACTIONS(426), - [anon_sym_COMMA] = ACTIONS(424), - [anon_sym_DOLLARtype] = ACTIONS(424), - [anon_sym_in] = ACTIONS(426), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_this] = ACTIONS(426), - [anon_sym_DOT] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(466), - [anon_sym_DASH_GT] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(426), - [anon_sym_AT_COLON] = ACTIONS(424), - [anon_sym_if] = ACTIONS(426), - [anon_sym_else] = ACTIONS(426), - [anon_sym_new] = ACTIONS(426), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_BANG] = ACTIONS(426), - [anon_sym_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_PERCENT] = ACTIONS(424), - [anon_sym_STAR] = ACTIONS(424), - [anon_sym_SLASH] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(426), - [anon_sym_LT_LT] = ACTIONS(424), - [anon_sym_GT_GT] = ACTIONS(426), - [anon_sym_GT_GT_GT] = ACTIONS(424), - [anon_sym_AMP] = ACTIONS(426), - [anon_sym_PIPE] = ACTIONS(426), - [anon_sym_CARET] = ACTIONS(424), - [anon_sym_AMP_AMP] = ACTIONS(424), - [anon_sym_PIPE_PIPE] = ACTIONS(424), - [anon_sym_EQ_EQ] = ACTIONS(424), - [anon_sym_BANG_EQ] = ACTIONS(424), - [anon_sym_LT] = ACTIONS(426), - [anon_sym_LT_EQ] = ACTIONS(424), - [anon_sym_GT] = ACTIONS(426), - [anon_sym_GT_EQ] = ACTIONS(424), - [anon_sym_EQ_GT] = ACTIONS(424), - [anon_sym_QMARK_QMARK] = ACTIONS(424), - [anon_sym_EQ] = ACTIONS(426), - [sym__rangeOperator] = ACTIONS(424), - [anon_sym_null] = ACTIONS(426), - [anon_sym_dynamic] = ACTIONS(426), - [anon_sym_final] = ACTIONS(426), - [anon_sym_abstract] = ACTIONS(426), - [anon_sym_class] = ACTIONS(426), - [anon_sym_extends] = ACTIONS(426), - [anon_sym_implements] = ACTIONS(426), - [anon_sym_interface] = ACTIONS(426), - [anon_sym_typedef] = ACTIONS(426), - [anon_sym_function] = ACTIONS(426), - [anon_sym_var] = ACTIONS(426), - [aux_sym_integer_token1] = ACTIONS(426), - [aux_sym_integer_token2] = ACTIONS(424), - [aux_sym_float_token1] = ACTIONS(426), - [aux_sym_float_token2] = ACTIONS(424), - [anon_sym_true] = ACTIONS(426), - [anon_sym_false] = ACTIONS(426), - [aux_sym_string_token1] = ACTIONS(424), - [aux_sym_string_token3] = ACTIONS(424), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(426), - [anon_sym_catch] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(426), - [anon_sym_do] = ACTIONS(426), - [anon_sym_enum] = ACTIONS(426), - [anon_sym_extern] = ACTIONS(426), - [anon_sym_for] = ACTIONS(426), - [anon_sym_inline] = ACTIONS(426), - [anon_sym_macro] = ACTIONS(426), - [anon_sym_operator] = ACTIONS(426), - [anon_sym_overload] = ACTIONS(426), - [anon_sym_override] = ACTIONS(426), - [anon_sym_private] = ACTIONS(426), - [anon_sym_public] = ACTIONS(426), - [anon_sym_return] = ACTIONS(426), - [anon_sym_static] = ACTIONS(426), - [anon_sym_try] = ACTIONS(426), - [anon_sym_untyped] = ACTIONS(426), - [anon_sym_while] = ACTIONS(426), - [sym__semicolon] = ACTIONS(424), + [sym__binaryOperator] = STATE(341), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [anon_sym_POUND] = ACTIONS(444), + [anon_sym_package] = ACTIONS(446), + [anon_sym_import] = ACTIONS(446), + [anon_sym_using] = ACTIONS(446), + [anon_sym_throw] = ACTIONS(446), + [anon_sym_LPAREN] = ACTIONS(444), + [anon_sym_switch] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(444), + [anon_sym_RBRACE] = ACTIONS(444), + [anon_sym_case] = ACTIONS(446), + [anon_sym_default] = ACTIONS(446), + [anon_sym_cast] = ACTIONS(446), + [anon_sym_DOLLARtype] = ACTIONS(444), + [anon_sym_in] = ACTIONS(446), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_this] = ACTIONS(446), + [anon_sym_QMARK] = ACTIONS(422), + [anon_sym_AT] = ACTIONS(446), + [anon_sym_AT_COLON] = ACTIONS(444), + [anon_sym_if] = ACTIONS(446), + [anon_sym_else] = ACTIONS(446), + [anon_sym_new] = ACTIONS(446), + [sym__prefixUnaryOperator] = ACTIONS(446), + [sym__eitherUnaryOperator] = ACTIONS(444), + [sym__arithmetic_operator] = ACTIONS(320), + [sym__bitwise_operator] = ACTIONS(320), + [sym__logical_operator] = ACTIONS(322), + [sym__comparison_operator] = ACTIONS(324), + [sym__map_operator] = ACTIONS(322), + [sym__null_colalese_operator] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(324), + [sym__range_operator] = ACTIONS(322), + [anon_sym_null] = ACTIONS(446), + [anon_sym_dynamic] = ACTIONS(446), + [anon_sym_final] = ACTIONS(446), + [anon_sym_abstract] = ACTIONS(446), + [anon_sym_class] = ACTIONS(446), + [anon_sym_extends] = ACTIONS(446), + [anon_sym_implements] = ACTIONS(446), + [anon_sym_interface] = ACTIONS(446), + [anon_sym_typedef] = ACTIONS(446), + [anon_sym_function] = ACTIONS(446), + [anon_sym_var] = ACTIONS(446), + [aux_sym_integer_token1] = ACTIONS(446), + [aux_sym_integer_token2] = ACTIONS(444), + [aux_sym_float_token1] = ACTIONS(446), + [aux_sym_float_token2] = ACTIONS(444), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [aux_sym_string_token1] = ACTIONS(444), + [aux_sym_string_token3] = ACTIONS(444), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(446), + [anon_sym_catch] = ACTIONS(446), + [anon_sym_continue] = ACTIONS(446), + [anon_sym_do] = ACTIONS(446), + [anon_sym_enum] = ACTIONS(446), + [anon_sym_extern] = ACTIONS(446), + [anon_sym_for] = ACTIONS(446), + [anon_sym_inline] = ACTIONS(446), + [anon_sym_macro] = ACTIONS(446), + [anon_sym_operator] = ACTIONS(446), + [anon_sym_overload] = ACTIONS(446), + [anon_sym_override] = ACTIONS(446), + [anon_sym_private] = ACTIONS(446), + [anon_sym_public] = ACTIONS(446), + [anon_sym_return] = ACTIONS(446), + [anon_sym_static] = ACTIONS(446), + [anon_sym_try] = ACTIONS(446), + [anon_sym_untyped] = ACTIONS(446), + [anon_sym_while] = ACTIONS(446), + [sym__semicolon] = ACTIONS(444), }, [70] = { - [ts_builtin_sym_end] = ACTIONS(424), - [sym_identifier] = ACTIONS(426), - [anon_sym_POUND] = ACTIONS(424), - [anon_sym_package] = ACTIONS(426), - [anon_sym_import] = ACTIONS(426), - [anon_sym_using] = ACTIONS(426), - [anon_sym_throw] = ACTIONS(426), - [anon_sym_LPAREN] = ACTIONS(424), - [anon_sym_RPAREN] = ACTIONS(424), - [anon_sym_switch] = ACTIONS(426), - [anon_sym_LBRACE] = ACTIONS(424), - [anon_sym_RBRACE] = ACTIONS(424), - [anon_sym_case] = ACTIONS(426), - [anon_sym_COLON] = ACTIONS(428), - [anon_sym_default] = ACTIONS(426), - [anon_sym_cast] = ACTIONS(426), - [anon_sym_COMMA] = ACTIONS(424), - [anon_sym_DOLLARtype] = ACTIONS(424), - [anon_sym_in] = ACTIONS(426), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_RBRACK] = ACTIONS(424), - [anon_sym_this] = ACTIONS(426), - [anon_sym_DOT] = ACTIONS(426), - [anon_sym_QMARK] = ACTIONS(426), - [anon_sym_AT] = ACTIONS(426), - [anon_sym_AT_COLON] = ACTIONS(424), - [anon_sym_if] = ACTIONS(426), - [anon_sym_else] = ACTIONS(426), - [anon_sym_new] = ACTIONS(426), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_BANG] = ACTIONS(426), - [anon_sym_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_PERCENT] = ACTIONS(424), - [anon_sym_STAR] = ACTIONS(424), - [anon_sym_SLASH] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(426), - [anon_sym_LT_LT] = ACTIONS(424), - [anon_sym_GT_GT] = ACTIONS(426), - [anon_sym_GT_GT_GT] = ACTIONS(424), - [anon_sym_AMP] = ACTIONS(426), - [anon_sym_PIPE] = ACTIONS(426), - [anon_sym_CARET] = ACTIONS(424), - [anon_sym_AMP_AMP] = ACTIONS(424), - [anon_sym_PIPE_PIPE] = ACTIONS(424), - [anon_sym_EQ_EQ] = ACTIONS(424), - [anon_sym_BANG_EQ] = ACTIONS(424), - [anon_sym_LT] = ACTIONS(426), - [anon_sym_LT_EQ] = ACTIONS(424), - [anon_sym_GT] = ACTIONS(426), - [anon_sym_GT_EQ] = ACTIONS(424), - [anon_sym_EQ_GT] = ACTIONS(424), - [anon_sym_QMARK_QMARK] = ACTIONS(424), - [anon_sym_EQ] = ACTIONS(426), - [sym__rangeOperator] = ACTIONS(424), - [anon_sym_null] = ACTIONS(426), - [anon_sym_dynamic] = ACTIONS(426), - [anon_sym_final] = ACTIONS(426), - [anon_sym_abstract] = ACTIONS(426), - [anon_sym_class] = ACTIONS(426), - [anon_sym_extends] = ACTIONS(426), - [anon_sym_implements] = ACTIONS(426), - [anon_sym_interface] = ACTIONS(426), - [anon_sym_typedef] = ACTIONS(426), - [anon_sym_function] = ACTIONS(426), - [anon_sym_var] = ACTIONS(426), - [aux_sym_integer_token1] = ACTIONS(426), - [aux_sym_integer_token2] = ACTIONS(424), - [aux_sym_float_token1] = ACTIONS(426), - [aux_sym_float_token2] = ACTIONS(424), - [anon_sym_true] = ACTIONS(426), - [anon_sym_false] = ACTIONS(426), - [aux_sym_string_token1] = ACTIONS(424), - [aux_sym_string_token3] = ACTIONS(424), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(426), - [anon_sym_catch] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(426), - [anon_sym_do] = ACTIONS(426), - [anon_sym_enum] = ACTIONS(426), - [anon_sym_extern] = ACTIONS(426), - [anon_sym_for] = ACTIONS(426), - [anon_sym_inline] = ACTIONS(426), - [anon_sym_macro] = ACTIONS(426), - [anon_sym_operator] = ACTIONS(426), - [anon_sym_overload] = ACTIONS(426), - [anon_sym_override] = ACTIONS(426), - [anon_sym_private] = ACTIONS(426), - [anon_sym_public] = ACTIONS(426), - [anon_sym_return] = ACTIONS(426), - [anon_sym_static] = ACTIONS(426), - [anon_sym_try] = ACTIONS(426), - [anon_sym_untyped] = ACTIONS(426), - [anon_sym_while] = ACTIONS(426), - [sym__semicolon] = ACTIONS(424), + [sym__binaryOperator] = STATE(341), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [anon_sym_POUND] = ACTIONS(444), + [anon_sym_package] = ACTIONS(446), + [anon_sym_import] = ACTIONS(446), + [anon_sym_using] = ACTIONS(446), + [anon_sym_throw] = ACTIONS(446), + [anon_sym_LPAREN] = ACTIONS(444), + [anon_sym_switch] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(444), + [anon_sym_RBRACE] = ACTIONS(444), + [anon_sym_case] = ACTIONS(446), + [anon_sym_default] = ACTIONS(446), + [anon_sym_cast] = ACTIONS(446), + [anon_sym_DOLLARtype] = ACTIONS(444), + [anon_sym_in] = ACTIONS(446), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_QMARK] = ACTIONS(422), + [anon_sym_AT] = ACTIONS(446), + [anon_sym_AT_COLON] = ACTIONS(444), + [anon_sym_if] = ACTIONS(446), + [anon_sym_else] = ACTIONS(446), + [anon_sym_new] = ACTIONS(446), + [sym__prefixUnaryOperator] = ACTIONS(446), + [sym__eitherUnaryOperator] = ACTIONS(444), + [sym__arithmetic_operator] = ACTIONS(320), + [sym__bitwise_operator] = ACTIONS(320), + [sym__logical_operator] = ACTIONS(322), + [sym__comparison_operator] = ACTIONS(324), + [sym__map_operator] = ACTIONS(322), + [sym__null_colalese_operator] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(324), + [sym__range_operator] = ACTIONS(322), + [anon_sym_null] = ACTIONS(446), + [anon_sym_dynamic] = ACTIONS(446), + [anon_sym_final] = ACTIONS(446), + [anon_sym_abstract] = ACTIONS(446), + [anon_sym_class] = ACTIONS(446), + [anon_sym_extends] = ACTIONS(446), + [anon_sym_implements] = ACTIONS(446), + [anon_sym_interface] = ACTIONS(446), + [anon_sym_typedef] = ACTIONS(446), + [anon_sym_function] = ACTIONS(446), + [anon_sym_var] = ACTIONS(446), + [aux_sym_integer_token1] = ACTIONS(446), + [aux_sym_integer_token2] = ACTIONS(444), + [aux_sym_float_token1] = ACTIONS(446), + [aux_sym_float_token2] = ACTIONS(444), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [aux_sym_string_token1] = ACTIONS(444), + [aux_sym_string_token3] = ACTIONS(444), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(446), + [anon_sym_catch] = ACTIONS(446), + [anon_sym_continue] = ACTIONS(446), + [anon_sym_do] = ACTIONS(446), + [anon_sym_enum] = ACTIONS(446), + [anon_sym_extern] = ACTIONS(446), + [anon_sym_for] = ACTIONS(446), + [anon_sym_inline] = ACTIONS(446), + [anon_sym_macro] = ACTIONS(446), + [anon_sym_operator] = ACTIONS(446), + [anon_sym_overload] = ACTIONS(446), + [anon_sym_override] = ACTIONS(446), + [anon_sym_private] = ACTIONS(446), + [anon_sym_public] = ACTIONS(446), + [anon_sym_return] = ACTIONS(446), + [anon_sym_static] = ACTIONS(446), + [anon_sym_try] = ACTIONS(446), + [anon_sym_untyped] = ACTIONS(446), + [anon_sym_while] = ACTIONS(446), + [sym__semicolon] = ACTIONS(444), }, [71] = { - [ts_builtin_sym_end] = ACTIONS(468), - [sym_identifier] = ACTIONS(470), - [anon_sym_POUND] = ACTIONS(468), - [anon_sym_package] = ACTIONS(470), - [anon_sym_import] = ACTIONS(470), - [anon_sym_using] = ACTIONS(470), - [anon_sym_throw] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(468), - [anon_sym_RPAREN] = ACTIONS(468), - [anon_sym_switch] = ACTIONS(470), - [anon_sym_LBRACE] = ACTIONS(468), - [anon_sym_RBRACE] = ACTIONS(468), - [anon_sym_case] = ACTIONS(470), - [anon_sym_COLON] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_cast] = ACTIONS(470), - [anon_sym_COMMA] = ACTIONS(468), - [anon_sym_DOLLARtype] = ACTIONS(468), - [anon_sym_in] = ACTIONS(470), - [anon_sym_LBRACK] = ACTIONS(468), - [anon_sym_RBRACK] = ACTIONS(468), - [anon_sym_this] = ACTIONS(470), - [anon_sym_DOT] = ACTIONS(470), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_AT] = ACTIONS(470), - [anon_sym_AT_COLON] = ACTIONS(468), - [anon_sym_if] = ACTIONS(470), - [anon_sym_else] = ACTIONS(470), - [anon_sym_new] = ACTIONS(470), - [anon_sym_TILDE] = ACTIONS(468), - [anon_sym_BANG] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_PLUS_PLUS] = ACTIONS(468), - [anon_sym_DASH_DASH] = ACTIONS(468), - [anon_sym_PERCENT] = ACTIONS(468), - [anon_sym_STAR] = ACTIONS(468), - [anon_sym_SLASH] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_LT_LT] = ACTIONS(468), - [anon_sym_GT_GT] = ACTIONS(470), - [anon_sym_GT_GT_GT] = ACTIONS(468), - [anon_sym_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(470), - [anon_sym_CARET] = ACTIONS(468), - [anon_sym_AMP_AMP] = ACTIONS(468), - [anon_sym_PIPE_PIPE] = ACTIONS(468), - [anon_sym_EQ_EQ] = ACTIONS(468), - [anon_sym_BANG_EQ] = ACTIONS(468), - [anon_sym_LT] = ACTIONS(470), - [anon_sym_LT_EQ] = ACTIONS(468), - [anon_sym_GT] = ACTIONS(470), - [anon_sym_GT_EQ] = ACTIONS(468), - [anon_sym_EQ_GT] = ACTIONS(468), - [anon_sym_QMARK_QMARK] = ACTIONS(468), - [anon_sym_EQ] = ACTIONS(470), - [sym__rangeOperator] = ACTIONS(468), - [anon_sym_null] = ACTIONS(470), - [anon_sym_dynamic] = ACTIONS(470), - [anon_sym_final] = ACTIONS(470), - [anon_sym_abstract] = ACTIONS(470), - [anon_sym_class] = ACTIONS(470), - [anon_sym_extends] = ACTIONS(470), - [anon_sym_implements] = 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(470), - [aux_sym_integer_token2] = ACTIONS(468), - [aux_sym_float_token1] = ACTIONS(470), - [aux_sym_float_token2] = ACTIONS(468), - [anon_sym_true] = ACTIONS(470), - [anon_sym_false] = ACTIONS(470), - [aux_sym_string_token1] = ACTIONS(468), - [aux_sym_string_token3] = ACTIONS(468), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(470), - [anon_sym_catch] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(470), - [anon_sym_do] = ACTIONS(470), - [anon_sym_enum] = ACTIONS(470), - [anon_sym_extern] = ACTIONS(470), - [anon_sym_for] = ACTIONS(470), - [anon_sym_inline] = ACTIONS(470), - [anon_sym_macro] = ACTIONS(470), - [anon_sym_operator] = ACTIONS(470), - [anon_sym_overload] = ACTIONS(470), - [anon_sym_override] = ACTIONS(470), - [anon_sym_private] = ACTIONS(470), - [anon_sym_public] = ACTIONS(470), - [anon_sym_return] = ACTIONS(470), - [anon_sym_static] = ACTIONS(470), - [anon_sym_try] = ACTIONS(470), - [anon_sym_untyped] = ACTIONS(470), - [anon_sym_while] = ACTIONS(470), - [sym__semicolon] = ACTIONS(468), + [ts_builtin_sym_end] = ACTIONS(448), + [sym_identifier] = ACTIONS(450), + [anon_sym_POUND] = ACTIONS(448), + [anon_sym_package] = ACTIONS(450), + [anon_sym_import] = ACTIONS(450), + [anon_sym_using] = ACTIONS(450), + [anon_sym_throw] = ACTIONS(450), + [anon_sym_LPAREN] = ACTIONS(448), + [anon_sym_RPAREN] = ACTIONS(448), + [anon_sym_switch] = ACTIONS(450), + [anon_sym_LBRACE] = ACTIONS(448), + [anon_sym_RBRACE] = ACTIONS(448), + [anon_sym_case] = ACTIONS(450), + [anon_sym_default] = ACTIONS(450), + [anon_sym_cast] = ACTIONS(450), + [anon_sym_COMMA] = ACTIONS(448), + [anon_sym_DOLLARtype] = ACTIONS(448), + [anon_sym_in] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_this] = ACTIONS(450), + [aux_sym_member_expression_token1] = ACTIONS(450), + [anon_sym_QMARK] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(450), + [anon_sym_AT_COLON] = ACTIONS(448), + [anon_sym_if] = ACTIONS(450), + [anon_sym_else] = ACTIONS(450), + [anon_sym_new] = ACTIONS(450), + [sym__prefixUnaryOperator] = ACTIONS(450), + [sym__eitherUnaryOperator] = ACTIONS(448), + [sym__arithmetic_operator] = ACTIONS(450), + [sym__bitwise_operator] = ACTIONS(450), + [sym__logical_operator] = ACTIONS(448), + [sym__comparison_operator] = ACTIONS(450), + [sym__map_operator] = ACTIONS(448), + [sym__null_colalese_operator] = ACTIONS(448), + [anon_sym_EQ] = ACTIONS(450), + [sym__range_operator] = ACTIONS(448), + [anon_sym_null] = ACTIONS(450), + [anon_sym_dynamic] = ACTIONS(450), + [anon_sym_final] = ACTIONS(450), + [anon_sym_abstract] = ACTIONS(450), + [anon_sym_class] = ACTIONS(450), + [anon_sym_extends] = ACTIONS(450), + [anon_sym_implements] = ACTIONS(450), + [anon_sym_interface] = ACTIONS(450), + [anon_sym_typedef] = ACTIONS(450), + [anon_sym_function] = ACTIONS(450), + [anon_sym_var] = ACTIONS(450), + [aux_sym_integer_token1] = ACTIONS(450), + [aux_sym_integer_token2] = ACTIONS(448), + [aux_sym_float_token1] = ACTIONS(450), + [aux_sym_float_token2] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(450), + [aux_sym_string_token1] = ACTIONS(448), + [aux_sym_string_token3] = ACTIONS(448), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(450), + [anon_sym_catch] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_do] = ACTIONS(450), + [anon_sym_enum] = ACTIONS(450), + [anon_sym_extern] = ACTIONS(450), + [anon_sym_for] = ACTIONS(450), + [anon_sym_inline] = ACTIONS(450), + [anon_sym_macro] = ACTIONS(450), + [anon_sym_operator] = ACTIONS(450), + [anon_sym_overload] = ACTIONS(450), + [anon_sym_override] = ACTIONS(450), + [anon_sym_private] = ACTIONS(450), + [anon_sym_public] = ACTIONS(450), + [anon_sym_return] = ACTIONS(450), + [anon_sym_static] = ACTIONS(450), + [anon_sym_try] = ACTIONS(450), + [anon_sym_untyped] = ACTIONS(450), + [anon_sym_while] = ACTIONS(450), + [sym__semicolon] = ACTIONS(448), }, [72] = { - [ts_builtin_sym_end] = ACTIONS(472), - [sym_identifier] = ACTIONS(474), - [anon_sym_POUND] = ACTIONS(472), - [anon_sym_package] = ACTIONS(474), - [anon_sym_import] = ACTIONS(474), - [anon_sym_using] = ACTIONS(474), - [anon_sym_throw] = ACTIONS(474), - [anon_sym_LPAREN] = ACTIONS(472), - [anon_sym_RPAREN] = ACTIONS(472), - [anon_sym_switch] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(472), - [anon_sym_RBRACE] = ACTIONS(472), - [anon_sym_case] = ACTIONS(474), - [anon_sym_COLON] = ACTIONS(472), - [anon_sym_default] = ACTIONS(474), - [anon_sym_cast] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(472), - [anon_sym_DOLLARtype] = ACTIONS(472), - [anon_sym_in] = ACTIONS(474), - [anon_sym_LBRACK] = ACTIONS(472), - [anon_sym_RBRACK] = ACTIONS(472), - [anon_sym_this] = ACTIONS(474), - [anon_sym_DOT] = ACTIONS(474), - [anon_sym_QMARK] = ACTIONS(474), - [anon_sym_AT] = ACTIONS(474), - [anon_sym_AT_COLON] = ACTIONS(472), - [anon_sym_if] = ACTIONS(474), - [anon_sym_else] = ACTIONS(474), - [anon_sym_new] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_PLUS_PLUS] = ACTIONS(472), - [anon_sym_DASH_DASH] = ACTIONS(472), - [anon_sym_PERCENT] = ACTIONS(472), - [anon_sym_STAR] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(474), - [anon_sym_LT_LT] = ACTIONS(472), - [anon_sym_GT_GT] = ACTIONS(474), - [anon_sym_GT_GT_GT] = ACTIONS(472), - [anon_sym_AMP] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_AMP_AMP] = ACTIONS(472), - [anon_sym_PIPE_PIPE] = ACTIONS(472), - [anon_sym_EQ_EQ] = ACTIONS(472), - [anon_sym_BANG_EQ] = ACTIONS(472), - [anon_sym_LT] = ACTIONS(474), - [anon_sym_LT_EQ] = ACTIONS(472), - [anon_sym_GT] = ACTIONS(474), - [anon_sym_GT_EQ] = ACTIONS(472), - [anon_sym_EQ_GT] = ACTIONS(472), - [anon_sym_QMARK_QMARK] = ACTIONS(472), - [anon_sym_EQ] = ACTIONS(474), - [sym__rangeOperator] = ACTIONS(472), - [anon_sym_null] = ACTIONS(474), - [anon_sym_dynamic] = ACTIONS(474), - [anon_sym_final] = ACTIONS(474), - [anon_sym_abstract] = ACTIONS(474), - [anon_sym_class] = ACTIONS(474), - [anon_sym_extends] = ACTIONS(474), - [anon_sym_implements] = ACTIONS(474), - [anon_sym_interface] = ACTIONS(474), - [anon_sym_typedef] = ACTIONS(474), - [anon_sym_function] = ACTIONS(474), - [anon_sym_var] = ACTIONS(474), - [aux_sym_integer_token1] = ACTIONS(474), - [aux_sym_integer_token2] = ACTIONS(472), - [aux_sym_float_token1] = ACTIONS(474), - [aux_sym_float_token2] = ACTIONS(472), - [anon_sym_true] = ACTIONS(474), - [anon_sym_false] = ACTIONS(474), - [aux_sym_string_token1] = ACTIONS(472), - [aux_sym_string_token3] = ACTIONS(472), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(474), - [anon_sym_catch] = ACTIONS(474), - [anon_sym_continue] = ACTIONS(474), - [anon_sym_do] = ACTIONS(474), - [anon_sym_enum] = ACTIONS(474), - [anon_sym_extern] = ACTIONS(474), - [anon_sym_for] = ACTIONS(474), - [anon_sym_inline] = ACTIONS(474), - [anon_sym_macro] = ACTIONS(474), - [anon_sym_operator] = ACTIONS(474), - [anon_sym_overload] = ACTIONS(474), - [anon_sym_override] = ACTIONS(474), - [anon_sym_private] = ACTIONS(474), - [anon_sym_public] = ACTIONS(474), - [anon_sym_return] = ACTIONS(474), - [anon_sym_static] = ACTIONS(474), - [anon_sym_try] = ACTIONS(474), - [anon_sym_untyped] = ACTIONS(474), - [anon_sym_while] = ACTIONS(474), - [sym__semicolon] = ACTIONS(472), + [sym__binaryOperator] = STATE(341), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(452), + [sym_identifier] = ACTIONS(454), + [anon_sym_POUND] = ACTIONS(452), + [anon_sym_package] = ACTIONS(454), + [anon_sym_import] = ACTIONS(454), + [anon_sym_using] = ACTIONS(454), + [anon_sym_throw] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(452), + [anon_sym_switch] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(452), + [anon_sym_RBRACE] = ACTIONS(452), + [anon_sym_case] = ACTIONS(454), + [anon_sym_default] = ACTIONS(454), + [anon_sym_cast] = ACTIONS(454), + [anon_sym_DOLLARtype] = ACTIONS(452), + [anon_sym_in] = ACTIONS(454), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_this] = ACTIONS(454), + [anon_sym_QMARK] = ACTIONS(422), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_AT_COLON] = ACTIONS(452), + [anon_sym_if] = ACTIONS(454), + [anon_sym_else] = ACTIONS(454), + [anon_sym_new] = ACTIONS(454), + [sym__prefixUnaryOperator] = ACTIONS(454), + [sym__eitherUnaryOperator] = ACTIONS(452), + [sym__arithmetic_operator] = ACTIONS(320), + [sym__bitwise_operator] = ACTIONS(320), + [sym__logical_operator] = ACTIONS(322), + [sym__comparison_operator] = ACTIONS(324), + [sym__map_operator] = ACTIONS(322), + [sym__null_colalese_operator] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(324), + [sym__range_operator] = ACTIONS(322), + [anon_sym_null] = ACTIONS(454), + [anon_sym_dynamic] = ACTIONS(454), + [anon_sym_final] = ACTIONS(454), + [anon_sym_abstract] = ACTIONS(454), + [anon_sym_class] = ACTIONS(454), + [anon_sym_extends] = ACTIONS(454), + [anon_sym_implements] = ACTIONS(454), + [anon_sym_interface] = ACTIONS(454), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_function] = ACTIONS(454), + [anon_sym_var] = ACTIONS(454), + [aux_sym_integer_token1] = ACTIONS(454), + [aux_sym_integer_token2] = ACTIONS(452), + [aux_sym_float_token1] = ACTIONS(454), + [aux_sym_float_token2] = ACTIONS(452), + [anon_sym_true] = ACTIONS(454), + [anon_sym_false] = ACTIONS(454), + [aux_sym_string_token1] = ACTIONS(452), + [aux_sym_string_token3] = ACTIONS(452), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(454), + [anon_sym_catch] = ACTIONS(454), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_do] = ACTIONS(454), + [anon_sym_enum] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(454), + [anon_sym_for] = ACTIONS(454), + [anon_sym_inline] = ACTIONS(454), + [anon_sym_macro] = ACTIONS(454), + [anon_sym_operator] = ACTIONS(454), + [anon_sym_overload] = ACTIONS(454), + [anon_sym_override] = ACTIONS(454), + [anon_sym_private] = ACTIONS(454), + [anon_sym_public] = ACTIONS(454), + [anon_sym_return] = ACTIONS(454), + [anon_sym_static] = ACTIONS(454), + [anon_sym_try] = ACTIONS(454), + [anon_sym_untyped] = ACTIONS(454), + [anon_sym_while] = ACTIONS(454), + [sym__semicolon] = ACTIONS(456), }, [73] = { - [ts_builtin_sym_end] = ACTIONS(476), - [sym_identifier] = ACTIONS(478), - [anon_sym_POUND] = ACTIONS(476), - [anon_sym_package] = ACTIONS(478), - [anon_sym_import] = ACTIONS(478), - [anon_sym_using] = ACTIONS(478), - [anon_sym_throw] = ACTIONS(478), - [anon_sym_LPAREN] = ACTIONS(476), - [anon_sym_RPAREN] = ACTIONS(476), - [anon_sym_switch] = ACTIONS(478), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(476), - [anon_sym_case] = ACTIONS(478), - [anon_sym_COLON] = ACTIONS(476), - [anon_sym_default] = ACTIONS(478), - [anon_sym_cast] = ACTIONS(478), - [anon_sym_COMMA] = ACTIONS(476), - [anon_sym_DOLLARtype] = ACTIONS(476), - [anon_sym_in] = ACTIONS(478), - [anon_sym_LBRACK] = ACTIONS(476), - [anon_sym_RBRACK] = ACTIONS(476), - [anon_sym_this] = ACTIONS(478), - [anon_sym_DOT] = ACTIONS(478), - [anon_sym_QMARK] = ACTIONS(478), - [anon_sym_AT] = ACTIONS(478), - [anon_sym_AT_COLON] = ACTIONS(476), - [anon_sym_if] = ACTIONS(478), - [anon_sym_else] = ACTIONS(478), - [anon_sym_new] = ACTIONS(478), - [anon_sym_TILDE] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_PLUS_PLUS] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(476), - [anon_sym_PERCENT] = ACTIONS(476), - [anon_sym_STAR] = ACTIONS(476), - [anon_sym_SLASH] = ACTIONS(478), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_LT_LT] = ACTIONS(476), - [anon_sym_GT_GT] = ACTIONS(478), - [anon_sym_GT_GT_GT] = ACTIONS(476), - [anon_sym_AMP] = ACTIONS(478), - [anon_sym_PIPE] = ACTIONS(478), - [anon_sym_CARET] = ACTIONS(476), - [anon_sym_AMP_AMP] = ACTIONS(476), - [anon_sym_PIPE_PIPE] = ACTIONS(476), - [anon_sym_EQ_EQ] = ACTIONS(476), - [anon_sym_BANG_EQ] = ACTIONS(476), - [anon_sym_LT] = ACTIONS(478), - [anon_sym_LT_EQ] = ACTIONS(476), - [anon_sym_GT] = ACTIONS(478), - [anon_sym_GT_EQ] = ACTIONS(476), - [anon_sym_EQ_GT] = ACTIONS(476), - [anon_sym_QMARK_QMARK] = ACTIONS(476), - [anon_sym_EQ] = ACTIONS(478), - [sym__rangeOperator] = ACTIONS(476), - [anon_sym_null] = ACTIONS(478), - [anon_sym_dynamic] = ACTIONS(478), - [anon_sym_final] = ACTIONS(478), - [anon_sym_abstract] = ACTIONS(478), - [anon_sym_class] = ACTIONS(478), - [anon_sym_extends] = ACTIONS(478), - [anon_sym_implements] = ACTIONS(478), - [anon_sym_interface] = ACTIONS(478), - [anon_sym_typedef] = ACTIONS(478), - [anon_sym_function] = ACTIONS(478), - [anon_sym_var] = ACTIONS(478), - [aux_sym_integer_token1] = ACTIONS(478), - [aux_sym_integer_token2] = ACTIONS(476), - [aux_sym_float_token1] = ACTIONS(478), - [aux_sym_float_token2] = ACTIONS(476), - [anon_sym_true] = ACTIONS(478), - [anon_sym_false] = ACTIONS(478), - [aux_sym_string_token1] = ACTIONS(476), - [aux_sym_string_token3] = ACTIONS(476), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(478), - [anon_sym_catch] = ACTIONS(478), - [anon_sym_continue] = ACTIONS(478), - [anon_sym_do] = ACTIONS(478), - [anon_sym_enum] = ACTIONS(478), - [anon_sym_extern] = ACTIONS(478), - [anon_sym_for] = ACTIONS(478), - [anon_sym_inline] = ACTIONS(478), - [anon_sym_macro] = ACTIONS(478), - [anon_sym_operator] = ACTIONS(478), - [anon_sym_overload] = ACTIONS(478), - [anon_sym_override] = ACTIONS(478), - [anon_sym_private] = ACTIONS(478), - [anon_sym_public] = ACTIONS(478), - [anon_sym_return] = ACTIONS(478), - [anon_sym_static] = ACTIONS(478), - [anon_sym_try] = ACTIONS(478), - [anon_sym_untyped] = ACTIONS(478), - [anon_sym_while] = ACTIONS(478), - [sym__semicolon] = ACTIONS(476), + [sym__binaryOperator] = STATE(341), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(452), + [sym_identifier] = ACTIONS(454), + [anon_sym_POUND] = ACTIONS(452), + [anon_sym_package] = ACTIONS(454), + [anon_sym_import] = ACTIONS(454), + [anon_sym_using] = ACTIONS(454), + [anon_sym_throw] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(452), + [anon_sym_switch] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(452), + [anon_sym_RBRACE] = ACTIONS(452), + [anon_sym_case] = ACTIONS(454), + [anon_sym_default] = ACTIONS(454), + [anon_sym_cast] = ACTIONS(454), + [anon_sym_DOLLARtype] = ACTIONS(452), + [anon_sym_in] = ACTIONS(454), + [anon_sym_LBRACK] = ACTIONS(452), + [anon_sym_this] = ACTIONS(454), + [anon_sym_QMARK] = ACTIONS(422), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_AT_COLON] = ACTIONS(452), + [anon_sym_if] = ACTIONS(454), + [anon_sym_else] = ACTIONS(454), + [anon_sym_new] = ACTIONS(454), + [sym__prefixUnaryOperator] = ACTIONS(454), + [sym__eitherUnaryOperator] = ACTIONS(452), + [sym__arithmetic_operator] = ACTIONS(320), + [sym__bitwise_operator] = ACTIONS(320), + [sym__logical_operator] = ACTIONS(322), + [sym__comparison_operator] = ACTIONS(324), + [sym__map_operator] = ACTIONS(322), + [sym__null_colalese_operator] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(324), + [sym__range_operator] = ACTIONS(322), + [anon_sym_null] = ACTIONS(454), + [anon_sym_dynamic] = ACTIONS(454), + [anon_sym_final] = ACTIONS(454), + [anon_sym_abstract] = ACTIONS(454), + [anon_sym_class] = ACTIONS(454), + [anon_sym_extends] = ACTIONS(454), + [anon_sym_implements] = ACTIONS(454), + [anon_sym_interface] = ACTIONS(454), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_function] = ACTIONS(454), + [anon_sym_var] = ACTIONS(454), + [aux_sym_integer_token1] = ACTIONS(454), + [aux_sym_integer_token2] = ACTIONS(452), + [aux_sym_float_token1] = ACTIONS(454), + [aux_sym_float_token2] = ACTIONS(452), + [anon_sym_true] = ACTIONS(454), + [anon_sym_false] = ACTIONS(454), + [aux_sym_string_token1] = ACTIONS(452), + [aux_sym_string_token3] = ACTIONS(452), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(454), + [anon_sym_catch] = ACTIONS(454), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_do] = ACTIONS(454), + [anon_sym_enum] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(454), + [anon_sym_for] = ACTIONS(454), + [anon_sym_inline] = ACTIONS(454), + [anon_sym_macro] = ACTIONS(454), + [anon_sym_operator] = ACTIONS(454), + [anon_sym_overload] = ACTIONS(454), + [anon_sym_override] = ACTIONS(454), + [anon_sym_private] = ACTIONS(454), + [anon_sym_public] = ACTIONS(454), + [anon_sym_return] = ACTIONS(454), + [anon_sym_static] = ACTIONS(454), + [anon_sym_try] = ACTIONS(454), + [anon_sym_untyped] = ACTIONS(454), + [anon_sym_while] = ACTIONS(454), + [sym__semicolon] = ACTIONS(456), }, [74] = { - [ts_builtin_sym_end] = ACTIONS(480), - [sym_identifier] = ACTIONS(483), - [anon_sym_POUND] = ACTIONS(480), - [anon_sym_package] = ACTIONS(483), - [anon_sym_import] = ACTIONS(483), - [anon_sym_using] = ACTIONS(483), - [anon_sym_throw] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(480), - [anon_sym_switch] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(480), - [anon_sym_RBRACE] = ACTIONS(480), - [anon_sym_case] = ACTIONS(483), - [anon_sym_COLON] = ACTIONS(480), - [anon_sym_default] = ACTIONS(483), - [anon_sym_cast] = ACTIONS(483), - [anon_sym_COMMA] = ACTIONS(480), - [anon_sym_DOLLARtype] = ACTIONS(480), - [anon_sym_in] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(480), - [anon_sym_RBRACK] = ACTIONS(480), - [anon_sym_this] = ACTIONS(483), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_QMARK] = ACTIONS(483), - [anon_sym_AT] = ACTIONS(483), - [anon_sym_AT_COLON] = ACTIONS(480), - [anon_sym_if] = ACTIONS(483), - [anon_sym_else] = ACTIONS(483), - [anon_sym_new] = ACTIONS(483), - [anon_sym_TILDE] = ACTIONS(480), - [anon_sym_BANG] = ACTIONS(483), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_PERCENT] = ACTIONS(480), - [anon_sym_STAR] = ACTIONS(480), - [anon_sym_SLASH] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(483), - [anon_sym_LT_LT] = ACTIONS(480), - [anon_sym_GT_GT] = ACTIONS(483), - [anon_sym_GT_GT_GT] = ACTIONS(480), - [anon_sym_AMP] = ACTIONS(483), - [anon_sym_PIPE] = ACTIONS(483), - [anon_sym_CARET] = ACTIONS(480), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), - [anon_sym_EQ_EQ] = ACTIONS(480), - [anon_sym_BANG_EQ] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_LT_EQ] = ACTIONS(480), - [anon_sym_GT] = ACTIONS(483), - [anon_sym_GT_EQ] = ACTIONS(480), - [anon_sym_EQ_GT] = ACTIONS(480), - [anon_sym_QMARK_QMARK] = ACTIONS(480), - [anon_sym_EQ] = ACTIONS(483), - [sym__rangeOperator] = ACTIONS(480), - [anon_sym_null] = ACTIONS(483), - [anon_sym_dynamic] = ACTIONS(483), - [anon_sym_final] = ACTIONS(483), - [anon_sym_abstract] = ACTIONS(483), - [anon_sym_class] = ACTIONS(483), - [anon_sym_extends] = ACTIONS(483), - [anon_sym_implements] = 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(483), - [aux_sym_integer_token2] = ACTIONS(480), - [aux_sym_float_token1] = ACTIONS(483), - [aux_sym_float_token2] = ACTIONS(480), - [anon_sym_true] = ACTIONS(483), - [anon_sym_false] = ACTIONS(483), - [aux_sym_string_token1] = ACTIONS(480), - [aux_sym_string_token3] = ACTIONS(480), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(483), - [anon_sym_catch] = ACTIONS(483), - [anon_sym_continue] = ACTIONS(483), - [anon_sym_do] = ACTIONS(483), - [anon_sym_enum] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(483), - [anon_sym_for] = ACTIONS(483), - [anon_sym_inline] = ACTIONS(483), - [anon_sym_macro] = ACTIONS(483), - [anon_sym_operator] = ACTIONS(483), - [anon_sym_overload] = ACTIONS(483), - [anon_sym_override] = ACTIONS(483), - [anon_sym_private] = ACTIONS(483), - [anon_sym_public] = ACTIONS(483), - [anon_sym_return] = ACTIONS(483), - [anon_sym_static] = ACTIONS(483), - [anon_sym_try] = ACTIONS(483), - [anon_sym_untyped] = ACTIONS(483), - [anon_sym_while] = ACTIONS(483), - [sym__semicolon] = ACTIONS(480), + [sym__binaryOperator] = STATE(341), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(314), + [sym_identifier] = ACTIONS(316), + [anon_sym_POUND] = ACTIONS(314), + [anon_sym_package] = ACTIONS(316), + [anon_sym_import] = ACTIONS(316), + [anon_sym_using] = ACTIONS(316), + [anon_sym_throw] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_switch] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(314), + [anon_sym_RBRACE] = ACTIONS(314), + [anon_sym_case] = ACTIONS(316), + [anon_sym_default] = ACTIONS(316), + [anon_sym_cast] = ACTIONS(316), + [anon_sym_DOLLARtype] = ACTIONS(314), + [anon_sym_in] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_this] = ACTIONS(316), + [anon_sym_QMARK] = ACTIONS(422), + [anon_sym_AT] = ACTIONS(316), + [anon_sym_AT_COLON] = ACTIONS(314), + [anon_sym_if] = ACTIONS(316), + [anon_sym_else] = ACTIONS(316), + [anon_sym_new] = ACTIONS(316), + [sym__prefixUnaryOperator] = ACTIONS(316), + [sym__eitherUnaryOperator] = ACTIONS(314), + [sym__arithmetic_operator] = ACTIONS(320), + [sym__bitwise_operator] = ACTIONS(320), + [sym__logical_operator] = ACTIONS(322), + [sym__comparison_operator] = ACTIONS(324), + [sym__map_operator] = ACTIONS(322), + [sym__null_colalese_operator] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(324), + [sym__range_operator] = ACTIONS(322), + [anon_sym_null] = ACTIONS(316), + [anon_sym_dynamic] = ACTIONS(316), + [anon_sym_final] = ACTIONS(316), + [anon_sym_abstract] = ACTIONS(316), + [anon_sym_class] = ACTIONS(316), + [anon_sym_extends] = ACTIONS(316), + [anon_sym_implements] = ACTIONS(316), + [anon_sym_interface] = ACTIONS(316), + [anon_sym_typedef] = ACTIONS(316), + [anon_sym_function] = ACTIONS(316), + [anon_sym_var] = ACTIONS(316), + [aux_sym_integer_token1] = ACTIONS(316), + [aux_sym_integer_token2] = ACTIONS(314), + [aux_sym_float_token1] = ACTIONS(316), + [aux_sym_float_token2] = ACTIONS(314), + [anon_sym_true] = ACTIONS(316), + [anon_sym_false] = ACTIONS(316), + [aux_sym_string_token1] = ACTIONS(314), + [aux_sym_string_token3] = ACTIONS(314), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(316), + [anon_sym_catch] = ACTIONS(316), + [anon_sym_continue] = ACTIONS(316), + [anon_sym_do] = ACTIONS(316), + [anon_sym_enum] = ACTIONS(316), + [anon_sym_extern] = ACTIONS(316), + [anon_sym_for] = ACTIONS(316), + [anon_sym_inline] = ACTIONS(316), + [anon_sym_macro] = ACTIONS(316), + [anon_sym_operator] = ACTIONS(316), + [anon_sym_overload] = ACTIONS(316), + [anon_sym_override] = ACTIONS(316), + [anon_sym_private] = ACTIONS(316), + [anon_sym_public] = ACTIONS(316), + [anon_sym_return] = ACTIONS(316), + [anon_sym_static] = ACTIONS(316), + [anon_sym_try] = ACTIONS(316), + [anon_sym_untyped] = ACTIONS(316), + [anon_sym_while] = ACTIONS(316), + [sym__semicolon] = ACTIONS(314), }, [75] = { + [sym__binaryOperator] = STATE(341), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(314), + [sym_identifier] = ACTIONS(316), + [anon_sym_POUND] = ACTIONS(314), + [anon_sym_package] = ACTIONS(316), + [anon_sym_import] = ACTIONS(316), + [anon_sym_using] = ACTIONS(316), + [anon_sym_throw] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_switch] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(314), + [anon_sym_RBRACE] = ACTIONS(314), + [anon_sym_case] = ACTIONS(316), + [anon_sym_default] = ACTIONS(316), + [anon_sym_cast] = ACTIONS(316), + [anon_sym_DOLLARtype] = ACTIONS(314), + [anon_sym_in] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_this] = ACTIONS(316), + [anon_sym_QMARK] = ACTIONS(422), + [anon_sym_AT] = ACTIONS(316), + [anon_sym_AT_COLON] = ACTIONS(314), + [anon_sym_if] = ACTIONS(316), + [anon_sym_else] = ACTIONS(316), + [anon_sym_new] = ACTIONS(316), + [sym__prefixUnaryOperator] = ACTIONS(316), + [sym__eitherUnaryOperator] = ACTIONS(314), + [sym__arithmetic_operator] = ACTIONS(320), + [sym__bitwise_operator] = ACTIONS(320), + [sym__logical_operator] = ACTIONS(322), + [sym__comparison_operator] = ACTIONS(324), + [sym__map_operator] = ACTIONS(322), + [sym__null_colalese_operator] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(324), + [sym__range_operator] = ACTIONS(322), + [anon_sym_null] = ACTIONS(316), + [anon_sym_dynamic] = ACTIONS(316), + [anon_sym_final] = ACTIONS(316), + [anon_sym_abstract] = ACTIONS(316), + [anon_sym_class] = ACTIONS(316), + [anon_sym_extends] = ACTIONS(316), + [anon_sym_implements] = ACTIONS(316), + [anon_sym_interface] = ACTIONS(316), + [anon_sym_typedef] = ACTIONS(316), + [anon_sym_function] = ACTIONS(316), + [anon_sym_var] = ACTIONS(316), + [aux_sym_integer_token1] = ACTIONS(316), + [aux_sym_integer_token2] = ACTIONS(314), + [aux_sym_float_token1] = ACTIONS(316), + [aux_sym_float_token2] = ACTIONS(314), + [anon_sym_true] = ACTIONS(316), + [anon_sym_false] = ACTIONS(316), + [aux_sym_string_token1] = ACTIONS(314), + [aux_sym_string_token3] = ACTIONS(314), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(316), + [anon_sym_catch] = ACTIONS(316), + [anon_sym_continue] = ACTIONS(316), + [anon_sym_do] = ACTIONS(316), + [anon_sym_enum] = ACTIONS(316), + [anon_sym_extern] = ACTIONS(316), + [anon_sym_for] = ACTIONS(316), + [anon_sym_inline] = ACTIONS(316), + [anon_sym_macro] = ACTIONS(316), + [anon_sym_operator] = ACTIONS(316), + [anon_sym_overload] = ACTIONS(316), + [anon_sym_override] = ACTIONS(316), + [anon_sym_private] = ACTIONS(316), + [anon_sym_public] = ACTIONS(316), + [anon_sym_return] = ACTIONS(316), + [anon_sym_static] = ACTIONS(316), + [anon_sym_try] = ACTIONS(316), + [anon_sym_untyped] = ACTIONS(316), + [anon_sym_while] = ACTIONS(316), + [sym__semicolon] = ACTIONS(314), + }, + [76] = { + [sym__binaryOperator] = STATE(341), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(314), + [sym_identifier] = ACTIONS(316), + [anon_sym_POUND] = ACTIONS(314), + [anon_sym_package] = ACTIONS(316), + [anon_sym_import] = ACTIONS(316), + [anon_sym_using] = ACTIONS(316), + [anon_sym_throw] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(314), + [anon_sym_switch] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(314), + [anon_sym_RBRACE] = ACTIONS(314), + [anon_sym_case] = ACTIONS(316), + [anon_sym_default] = ACTIONS(316), + [anon_sym_cast] = ACTIONS(316), + [anon_sym_DOLLARtype] = ACTIONS(314), + [anon_sym_in] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(314), + [anon_sym_this] = ACTIONS(316), + [anon_sym_QMARK] = ACTIONS(422), + [anon_sym_AT] = ACTIONS(316), + [anon_sym_AT_COLON] = ACTIONS(314), + [anon_sym_if] = ACTIONS(316), + [anon_sym_else] = ACTIONS(316), + [anon_sym_new] = ACTIONS(316), + [sym__prefixUnaryOperator] = ACTIONS(316), + [sym__eitherUnaryOperator] = ACTIONS(314), + [sym__arithmetic_operator] = ACTIONS(320), + [sym__bitwise_operator] = ACTIONS(320), + [sym__logical_operator] = ACTIONS(322), + [sym__comparison_operator] = ACTIONS(324), + [sym__map_operator] = ACTIONS(322), + [sym__null_colalese_operator] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(324), + [sym__range_operator] = ACTIONS(322), + [anon_sym_null] = ACTIONS(316), + [anon_sym_dynamic] = ACTIONS(316), + [anon_sym_final] = ACTIONS(316), + [anon_sym_abstract] = ACTIONS(316), + [anon_sym_class] = ACTIONS(316), + [anon_sym_extends] = ACTIONS(316), + [anon_sym_implements] = ACTIONS(316), + [anon_sym_interface] = ACTIONS(316), + [anon_sym_typedef] = ACTIONS(316), + [anon_sym_function] = ACTIONS(316), + [anon_sym_var] = ACTIONS(316), + [aux_sym_integer_token1] = ACTIONS(316), + [aux_sym_integer_token2] = ACTIONS(314), + [aux_sym_float_token1] = ACTIONS(316), + [aux_sym_float_token2] = ACTIONS(314), + [anon_sym_true] = ACTIONS(316), + [anon_sym_false] = ACTIONS(316), + [aux_sym_string_token1] = ACTIONS(314), + [aux_sym_string_token3] = ACTIONS(314), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(316), + [anon_sym_catch] = ACTIONS(316), + [anon_sym_continue] = ACTIONS(316), + [anon_sym_do] = ACTIONS(316), + [anon_sym_enum] = ACTIONS(316), + [anon_sym_extern] = ACTIONS(316), + [anon_sym_for] = ACTIONS(316), + [anon_sym_inline] = ACTIONS(316), + [anon_sym_macro] = ACTIONS(316), + [anon_sym_operator] = ACTIONS(316), + [anon_sym_overload] = ACTIONS(316), + [anon_sym_override] = ACTIONS(316), + [anon_sym_private] = ACTIONS(316), + [anon_sym_public] = ACTIONS(316), + [anon_sym_return] = ACTIONS(316), + [anon_sym_static] = ACTIONS(316), + [anon_sym_try] = ACTIONS(316), + [anon_sym_untyped] = ACTIONS(316), + [anon_sym_while] = ACTIONS(316), + [sym__semicolon] = ACTIONS(314), + }, + [77] = { + [sym__binaryOperator] = STATE(341), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(458), + [sym_identifier] = ACTIONS(460), + [anon_sym_POUND] = ACTIONS(458), + [anon_sym_package] = ACTIONS(460), + [anon_sym_import] = ACTIONS(460), + [anon_sym_using] = ACTIONS(460), + [anon_sym_throw] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(458), + [anon_sym_switch] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(458), + [anon_sym_case] = ACTIONS(460), + [anon_sym_default] = ACTIONS(460), + [anon_sym_cast] = ACTIONS(460), + [anon_sym_DOLLARtype] = ACTIONS(458), + [anon_sym_in] = ACTIONS(460), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_this] = ACTIONS(460), + [anon_sym_QMARK] = ACTIONS(422), + [anon_sym_AT] = ACTIONS(460), + [anon_sym_AT_COLON] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_else] = ACTIONS(460), + [anon_sym_new] = ACTIONS(460), + [sym__prefixUnaryOperator] = ACTIONS(460), + [sym__eitherUnaryOperator] = ACTIONS(458), + [sym__arithmetic_operator] = ACTIONS(320), + [sym__bitwise_operator] = ACTIONS(320), + [sym__logical_operator] = ACTIONS(322), + [sym__comparison_operator] = ACTIONS(324), + [sym__map_operator] = ACTIONS(322), + [sym__null_colalese_operator] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(324), + [sym__range_operator] = ACTIONS(322), + [anon_sym_null] = ACTIONS(460), + [anon_sym_dynamic] = ACTIONS(460), + [anon_sym_final] = ACTIONS(460), + [anon_sym_abstract] = ACTIONS(460), + [anon_sym_class] = ACTIONS(460), + [anon_sym_extends] = ACTIONS(460), + [anon_sym_implements] = ACTIONS(460), + [anon_sym_interface] = ACTIONS(460), + [anon_sym_typedef] = ACTIONS(460), + [anon_sym_function] = ACTIONS(460), + [anon_sym_var] = ACTIONS(460), + [aux_sym_integer_token1] = ACTIONS(460), + [aux_sym_integer_token2] = ACTIONS(458), + [aux_sym_float_token1] = ACTIONS(460), + [aux_sym_float_token2] = ACTIONS(458), + [anon_sym_true] = ACTIONS(460), + [anon_sym_false] = ACTIONS(460), + [aux_sym_string_token1] = ACTIONS(458), + [aux_sym_string_token3] = ACTIONS(458), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(460), + [anon_sym_catch] = ACTIONS(460), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_do] = ACTIONS(460), + [anon_sym_enum] = ACTIONS(460), + [anon_sym_extern] = ACTIONS(460), + [anon_sym_for] = ACTIONS(460), + [anon_sym_inline] = ACTIONS(460), + [anon_sym_macro] = ACTIONS(460), + [anon_sym_operator] = ACTIONS(460), + [anon_sym_overload] = ACTIONS(460), + [anon_sym_override] = ACTIONS(460), + [anon_sym_private] = ACTIONS(460), + [anon_sym_public] = ACTIONS(460), + [anon_sym_return] = ACTIONS(460), + [anon_sym_static] = ACTIONS(460), + [anon_sym_try] = ACTIONS(460), + [anon_sym_untyped] = ACTIONS(460), + [anon_sym_while] = ACTIONS(460), + [sym__semicolon] = ACTIONS(458), + }, + [78] = { + [sym__binaryOperator] = STATE(341), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(458), + [sym_identifier] = ACTIONS(460), + [anon_sym_POUND] = ACTIONS(458), + [anon_sym_package] = ACTIONS(460), + [anon_sym_import] = ACTIONS(460), + [anon_sym_using] = ACTIONS(460), + [anon_sym_throw] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(458), + [anon_sym_switch] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(458), + [anon_sym_case] = ACTIONS(460), + [anon_sym_default] = ACTIONS(460), + [anon_sym_cast] = ACTIONS(460), + [anon_sym_DOLLARtype] = ACTIONS(458), + [anon_sym_in] = ACTIONS(460), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_this] = ACTIONS(460), + [anon_sym_QMARK] = ACTIONS(422), + [anon_sym_AT] = ACTIONS(460), + [anon_sym_AT_COLON] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_else] = ACTIONS(460), + [anon_sym_new] = ACTIONS(460), + [sym__prefixUnaryOperator] = ACTIONS(460), + [sym__eitherUnaryOperator] = ACTIONS(458), + [sym__arithmetic_operator] = ACTIONS(320), + [sym__bitwise_operator] = ACTIONS(320), + [sym__logical_operator] = ACTIONS(322), + [sym__comparison_operator] = ACTIONS(324), + [sym__map_operator] = ACTIONS(322), + [sym__null_colalese_operator] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(324), + [sym__range_operator] = ACTIONS(322), + [anon_sym_null] = ACTIONS(460), + [anon_sym_dynamic] = ACTIONS(460), + [anon_sym_final] = ACTIONS(460), + [anon_sym_abstract] = ACTIONS(460), + [anon_sym_class] = ACTIONS(460), + [anon_sym_extends] = ACTIONS(460), + [anon_sym_implements] = ACTIONS(460), + [anon_sym_interface] = ACTIONS(460), + [anon_sym_typedef] = ACTIONS(460), + [anon_sym_function] = ACTIONS(460), + [anon_sym_var] = ACTIONS(460), + [aux_sym_integer_token1] = ACTIONS(460), + [aux_sym_integer_token2] = ACTIONS(458), + [aux_sym_float_token1] = ACTIONS(460), + [aux_sym_float_token2] = ACTIONS(458), + [anon_sym_true] = ACTIONS(460), + [anon_sym_false] = ACTIONS(460), + [aux_sym_string_token1] = ACTIONS(458), + [aux_sym_string_token3] = ACTIONS(458), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(460), + [anon_sym_catch] = ACTIONS(460), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_do] = ACTIONS(460), + [anon_sym_enum] = ACTIONS(460), + [anon_sym_extern] = ACTIONS(460), + [anon_sym_for] = ACTIONS(460), + [anon_sym_inline] = ACTIONS(460), + [anon_sym_macro] = ACTIONS(460), + [anon_sym_operator] = ACTIONS(460), + [anon_sym_overload] = ACTIONS(460), + [anon_sym_override] = ACTIONS(460), + [anon_sym_private] = ACTIONS(460), + [anon_sym_public] = ACTIONS(460), + [anon_sym_return] = ACTIONS(460), + [anon_sym_static] = ACTIONS(460), + [anon_sym_try] = ACTIONS(460), + [anon_sym_untyped] = ACTIONS(460), + [anon_sym_while] = ACTIONS(460), + [sym__semicolon] = ACTIONS(458), + }, + [79] = { + [sym__binaryOperator] = STATE(341), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(458), + [sym_identifier] = ACTIONS(460), + [anon_sym_POUND] = ACTIONS(458), + [anon_sym_package] = ACTIONS(460), + [anon_sym_import] = ACTIONS(460), + [anon_sym_using] = ACTIONS(460), + [anon_sym_throw] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(458), + [anon_sym_switch] = ACTIONS(460), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(458), + [anon_sym_case] = ACTIONS(460), + [anon_sym_default] = ACTIONS(460), + [anon_sym_cast] = ACTIONS(460), + [anon_sym_DOLLARtype] = ACTIONS(458), + [anon_sym_in] = ACTIONS(460), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_this] = ACTIONS(460), + [anon_sym_QMARK] = ACTIONS(422), + [anon_sym_AT] = ACTIONS(460), + [anon_sym_AT_COLON] = ACTIONS(458), + [anon_sym_if] = ACTIONS(460), + [anon_sym_else] = ACTIONS(460), + [anon_sym_new] = ACTIONS(460), + [sym__prefixUnaryOperator] = ACTIONS(460), + [sym__eitherUnaryOperator] = ACTIONS(332), + [sym__arithmetic_operator] = ACTIONS(320), + [sym__bitwise_operator] = ACTIONS(320), + [sym__logical_operator] = ACTIONS(322), + [sym__comparison_operator] = ACTIONS(324), + [sym__map_operator] = ACTIONS(322), + [sym__null_colalese_operator] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(324), + [sym__range_operator] = ACTIONS(322), + [anon_sym_null] = ACTIONS(460), + [anon_sym_dynamic] = ACTIONS(460), + [anon_sym_final] = ACTIONS(460), + [anon_sym_abstract] = ACTIONS(460), + [anon_sym_class] = ACTIONS(460), + [anon_sym_extends] = ACTIONS(460), + [anon_sym_implements] = ACTIONS(460), + [anon_sym_interface] = ACTIONS(460), + [anon_sym_typedef] = ACTIONS(460), + [anon_sym_function] = ACTIONS(460), + [anon_sym_var] = ACTIONS(460), + [aux_sym_integer_token1] = ACTIONS(460), + [aux_sym_integer_token2] = ACTIONS(458), + [aux_sym_float_token1] = ACTIONS(460), + [aux_sym_float_token2] = ACTIONS(458), + [anon_sym_true] = ACTIONS(460), + [anon_sym_false] = ACTIONS(460), + [aux_sym_string_token1] = ACTIONS(458), + [aux_sym_string_token3] = ACTIONS(458), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(460), + [anon_sym_catch] = ACTIONS(460), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_do] = ACTIONS(460), + [anon_sym_enum] = ACTIONS(460), + [anon_sym_extern] = ACTIONS(460), + [anon_sym_for] = ACTIONS(460), + [anon_sym_inline] = ACTIONS(460), + [anon_sym_macro] = ACTIONS(460), + [anon_sym_operator] = ACTIONS(460), + [anon_sym_overload] = ACTIONS(460), + [anon_sym_override] = ACTIONS(460), + [anon_sym_private] = ACTIONS(460), + [anon_sym_public] = ACTIONS(460), + [anon_sym_return] = ACTIONS(460), + [anon_sym_static] = ACTIONS(460), + [anon_sym_try] = ACTIONS(460), + [anon_sym_untyped] = ACTIONS(460), + [anon_sym_while] = ACTIONS(460), + [sym__semicolon] = ACTIONS(458), + }, + [80] = { + [ts_builtin_sym_end] = ACTIONS(462), + [sym_identifier] = ACTIONS(464), + [anon_sym_POUND] = ACTIONS(462), + [anon_sym_package] = ACTIONS(464), + [anon_sym_import] = ACTIONS(464), + [anon_sym_using] = ACTIONS(464), + [anon_sym_throw] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_RPAREN] = ACTIONS(462), + [anon_sym_switch] = ACTIONS(464), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_RBRACE] = ACTIONS(462), + [anon_sym_case] = ACTIONS(464), + [anon_sym_default] = ACTIONS(464), + [anon_sym_cast] = ACTIONS(464), + [anon_sym_COMMA] = ACTIONS(462), + [anon_sym_DOLLARtype] = ACTIONS(462), + [anon_sym_in] = ACTIONS(464), + [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_this] = ACTIONS(464), + [aux_sym_member_expression_token1] = ACTIONS(464), + [anon_sym_QMARK] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(464), + [anon_sym_AT_COLON] = ACTIONS(462), + [anon_sym_if] = ACTIONS(464), + [anon_sym_else] = ACTIONS(464), + [anon_sym_new] = ACTIONS(464), + [sym__prefixUnaryOperator] = ACTIONS(464), + [sym__eitherUnaryOperator] = ACTIONS(462), + [sym__arithmetic_operator] = ACTIONS(464), + [sym__bitwise_operator] = ACTIONS(464), + [sym__logical_operator] = ACTIONS(462), + [sym__comparison_operator] = ACTIONS(464), + [sym__map_operator] = ACTIONS(462), + [sym__null_colalese_operator] = ACTIONS(462), + [anon_sym_EQ] = ACTIONS(464), + [sym__range_operator] = ACTIONS(462), + [anon_sym_null] = ACTIONS(464), + [anon_sym_dynamic] = ACTIONS(464), + [anon_sym_final] = ACTIONS(464), + [anon_sym_abstract] = ACTIONS(464), + [anon_sym_class] = ACTIONS(464), + [anon_sym_extends] = ACTIONS(464), + [anon_sym_implements] = ACTIONS(464), + [anon_sym_interface] = ACTIONS(464), + [anon_sym_typedef] = ACTIONS(464), + [anon_sym_function] = ACTIONS(464), + [anon_sym_var] = ACTIONS(464), + [aux_sym_integer_token1] = ACTIONS(464), + [aux_sym_integer_token2] = ACTIONS(462), + [aux_sym_float_token1] = ACTIONS(464), + [aux_sym_float_token2] = ACTIONS(462), + [anon_sym_true] = ACTIONS(464), + [anon_sym_false] = ACTIONS(464), + [aux_sym_string_token1] = ACTIONS(462), + [aux_sym_string_token3] = ACTIONS(462), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(464), + [anon_sym_catch] = ACTIONS(464), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_do] = ACTIONS(464), + [anon_sym_enum] = ACTIONS(464), + [anon_sym_extern] = ACTIONS(464), + [anon_sym_for] = ACTIONS(464), + [anon_sym_inline] = ACTIONS(464), + [anon_sym_macro] = ACTIONS(464), + [anon_sym_operator] = ACTIONS(464), + [anon_sym_overload] = ACTIONS(464), + [anon_sym_override] = ACTIONS(464), + [anon_sym_private] = ACTIONS(464), + [anon_sym_public] = ACTIONS(464), + [anon_sym_return] = ACTIONS(464), + [anon_sym_static] = ACTIONS(464), + [anon_sym_try] = ACTIONS(464), + [anon_sym_untyped] = ACTIONS(464), + [anon_sym_while] = ACTIONS(464), + [sym__semicolon] = ACTIONS(462), + }, + [81] = { + [sym__binaryOperator] = STATE(341), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(466), + [sym_identifier] = ACTIONS(468), + [anon_sym_POUND] = ACTIONS(466), + [anon_sym_package] = ACTIONS(468), + [anon_sym_import] = ACTIONS(468), + [anon_sym_using] = ACTIONS(468), + [anon_sym_throw] = ACTIONS(468), + [anon_sym_LPAREN] = ACTIONS(466), + [anon_sym_switch] = ACTIONS(468), + [anon_sym_LBRACE] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(468), + [anon_sym_cast] = ACTIONS(468), + [anon_sym_DOLLARtype] = ACTIONS(466), + [anon_sym_in] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_this] = ACTIONS(468), + [anon_sym_QMARK] = ACTIONS(422), + [anon_sym_AT] = ACTIONS(468), + [anon_sym_AT_COLON] = ACTIONS(466), + [anon_sym_if] = ACTIONS(468), + [anon_sym_else] = ACTIONS(468), + [anon_sym_new] = ACTIONS(468), + [sym__prefixUnaryOperator] = ACTIONS(468), + [sym__eitherUnaryOperator] = ACTIONS(466), + [sym__arithmetic_operator] = ACTIONS(320), + [sym__bitwise_operator] = ACTIONS(320), + [sym__logical_operator] = ACTIONS(322), + [sym__comparison_operator] = ACTIONS(324), + [sym__map_operator] = ACTIONS(322), + [sym__null_colalese_operator] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(324), + [sym__range_operator] = ACTIONS(322), + [anon_sym_null] = ACTIONS(468), + [anon_sym_dynamic] = ACTIONS(468), + [anon_sym_final] = ACTIONS(468), + [anon_sym_abstract] = ACTIONS(468), + [anon_sym_class] = ACTIONS(468), + [anon_sym_extends] = ACTIONS(468), + [anon_sym_implements] = ACTIONS(468), + [anon_sym_interface] = ACTIONS(468), + [anon_sym_typedef] = ACTIONS(468), + [anon_sym_function] = ACTIONS(468), + [anon_sym_var] = ACTIONS(468), + [aux_sym_integer_token1] = ACTIONS(468), + [aux_sym_integer_token2] = ACTIONS(466), + [aux_sym_float_token1] = ACTIONS(468), + [aux_sym_float_token2] = ACTIONS(466), + [anon_sym_true] = ACTIONS(468), + [anon_sym_false] = ACTIONS(468), + [aux_sym_string_token1] = ACTIONS(466), + [aux_sym_string_token3] = ACTIONS(466), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(468), + [anon_sym_catch] = ACTIONS(468), + [anon_sym_continue] = ACTIONS(468), + [anon_sym_do] = ACTIONS(468), + [anon_sym_enum] = ACTIONS(468), + [anon_sym_extern] = ACTIONS(468), + [anon_sym_for] = ACTIONS(468), + [anon_sym_inline] = ACTIONS(468), + [anon_sym_macro] = ACTIONS(468), + [anon_sym_operator] = ACTIONS(468), + [anon_sym_overload] = ACTIONS(468), + [anon_sym_override] = ACTIONS(468), + [anon_sym_private] = ACTIONS(468), + [anon_sym_public] = ACTIONS(468), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(468), + [anon_sym_try] = ACTIONS(468), + [anon_sym_untyped] = ACTIONS(468), + [anon_sym_while] = ACTIONS(468), + [sym__semicolon] = ACTIONS(466), + }, + [82] = { + [sym__binaryOperator] = STATE(341), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(310), + [sym_identifier] = ACTIONS(312), + [anon_sym_POUND] = ACTIONS(310), + [anon_sym_package] = ACTIONS(312), + [anon_sym_import] = ACTIONS(312), + [anon_sym_using] = ACTIONS(312), + [anon_sym_throw] = ACTIONS(312), + [anon_sym_LPAREN] = ACTIONS(310), + [anon_sym_switch] = ACTIONS(312), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_RBRACE] = ACTIONS(310), + [anon_sym_case] = ACTIONS(312), + [anon_sym_default] = ACTIONS(312), + [anon_sym_cast] = ACTIONS(312), + [anon_sym_DOLLARtype] = ACTIONS(310), + [anon_sym_in] = ACTIONS(312), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_this] = ACTIONS(312), + [anon_sym_QMARK] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(312), + [anon_sym_AT_COLON] = ACTIONS(310), + [anon_sym_if] = ACTIONS(312), + [anon_sym_else] = ACTIONS(312), + [anon_sym_new] = ACTIONS(312), + [sym__prefixUnaryOperator] = ACTIONS(312), + [sym__eitherUnaryOperator] = ACTIONS(310), + [sym__arithmetic_operator] = ACTIONS(312), + [sym__bitwise_operator] = ACTIONS(312), + [sym__logical_operator] = ACTIONS(310), + [sym__comparison_operator] = ACTIONS(312), + [sym__map_operator] = ACTIONS(310), + [sym__null_colalese_operator] = ACTIONS(310), + [anon_sym_EQ] = ACTIONS(312), + [sym__range_operator] = ACTIONS(310), + [anon_sym_null] = ACTIONS(312), + [anon_sym_dynamic] = ACTIONS(312), + [anon_sym_final] = ACTIONS(312), + [anon_sym_abstract] = ACTIONS(312), + [anon_sym_class] = ACTIONS(312), + [anon_sym_extends] = ACTIONS(312), + [anon_sym_implements] = ACTIONS(312), + [anon_sym_interface] = ACTIONS(312), + [anon_sym_typedef] = ACTIONS(312), + [anon_sym_function] = ACTIONS(312), + [anon_sym_var] = ACTIONS(312), + [aux_sym_integer_token1] = ACTIONS(312), + [aux_sym_integer_token2] = ACTIONS(310), + [aux_sym_float_token1] = ACTIONS(312), + [aux_sym_float_token2] = ACTIONS(310), + [anon_sym_true] = ACTIONS(312), + [anon_sym_false] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [aux_sym_string_token3] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(312), + [anon_sym_catch] = ACTIONS(312), + [anon_sym_continue] = ACTIONS(312), + [anon_sym_do] = ACTIONS(312), + [anon_sym_enum] = ACTIONS(312), + [anon_sym_extern] = ACTIONS(312), + [anon_sym_for] = ACTIONS(312), + [anon_sym_inline] = ACTIONS(312), + [anon_sym_macro] = ACTIONS(312), + [anon_sym_operator] = ACTIONS(312), + [anon_sym_overload] = ACTIONS(312), + [anon_sym_override] = ACTIONS(312), + [anon_sym_private] = ACTIONS(312), + [anon_sym_public] = ACTIONS(312), + [anon_sym_return] = ACTIONS(312), + [anon_sym_static] = ACTIONS(312), + [anon_sym_try] = ACTIONS(312), + [anon_sym_untyped] = ACTIONS(312), + [anon_sym_while] = ACTIONS(312), + [sym__semicolon] = ACTIONS(310), + }, + [83] = { + [sym__binaryOperator] = STATE(341), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(310), + [sym_identifier] = ACTIONS(312), + [anon_sym_POUND] = ACTIONS(310), + [anon_sym_package] = ACTIONS(312), + [anon_sym_import] = ACTIONS(312), + [anon_sym_using] = ACTIONS(312), + [anon_sym_throw] = ACTIONS(312), + [anon_sym_LPAREN] = ACTIONS(310), + [anon_sym_switch] = ACTIONS(312), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_RBRACE] = ACTIONS(310), + [anon_sym_case] = ACTIONS(312), + [anon_sym_default] = ACTIONS(312), + [anon_sym_cast] = ACTIONS(312), + [anon_sym_DOLLARtype] = ACTIONS(310), + [anon_sym_in] = ACTIONS(312), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_this] = ACTIONS(312), + [anon_sym_QMARK] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(312), + [anon_sym_AT_COLON] = ACTIONS(310), + [anon_sym_if] = ACTIONS(312), + [anon_sym_else] = ACTIONS(312), + [anon_sym_new] = ACTIONS(312), + [sym__prefixUnaryOperator] = ACTIONS(312), + [sym__eitherUnaryOperator] = ACTIONS(310), + [sym__arithmetic_operator] = ACTIONS(312), + [sym__bitwise_operator] = ACTIONS(312), + [sym__logical_operator] = ACTIONS(310), + [sym__comparison_operator] = ACTIONS(312), + [sym__map_operator] = ACTIONS(310), + [sym__null_colalese_operator] = ACTIONS(310), + [anon_sym_EQ] = ACTIONS(312), + [sym__range_operator] = ACTIONS(310), + [anon_sym_null] = ACTIONS(312), + [anon_sym_dynamic] = ACTIONS(312), + [anon_sym_final] = ACTIONS(312), + [anon_sym_abstract] = ACTIONS(312), + [anon_sym_class] = ACTIONS(312), + [anon_sym_extends] = ACTIONS(312), + [anon_sym_implements] = ACTIONS(312), + [anon_sym_interface] = ACTIONS(312), + [anon_sym_typedef] = ACTIONS(312), + [anon_sym_function] = ACTIONS(312), + [anon_sym_var] = ACTIONS(312), + [aux_sym_integer_token1] = ACTIONS(312), + [aux_sym_integer_token2] = ACTIONS(310), + [aux_sym_float_token1] = ACTIONS(312), + [aux_sym_float_token2] = ACTIONS(310), + [anon_sym_true] = ACTIONS(312), + [anon_sym_false] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [aux_sym_string_token3] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(312), + [anon_sym_catch] = ACTIONS(312), + [anon_sym_continue] = ACTIONS(312), + [anon_sym_do] = ACTIONS(312), + [anon_sym_enum] = ACTIONS(312), + [anon_sym_extern] = ACTIONS(312), + [anon_sym_for] = ACTIONS(312), + [anon_sym_inline] = ACTIONS(312), + [anon_sym_macro] = ACTIONS(312), + [anon_sym_operator] = ACTIONS(312), + [anon_sym_overload] = ACTIONS(312), + [anon_sym_override] = ACTIONS(312), + [anon_sym_private] = ACTIONS(312), + [anon_sym_public] = ACTIONS(312), + [anon_sym_return] = ACTIONS(312), + [anon_sym_static] = ACTIONS(312), + [anon_sym_try] = ACTIONS(312), + [anon_sym_untyped] = ACTIONS(312), + [anon_sym_while] = ACTIONS(312), + [sym__semicolon] = ACTIONS(310), + }, + [84] = { + [sym__binaryOperator] = STATE(341), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(310), + [sym_identifier] = ACTIONS(312), + [anon_sym_POUND] = ACTIONS(310), + [anon_sym_package] = ACTIONS(312), + [anon_sym_import] = ACTIONS(312), + [anon_sym_using] = ACTIONS(312), + [anon_sym_throw] = ACTIONS(312), + [anon_sym_LPAREN] = ACTIONS(310), + [anon_sym_switch] = ACTIONS(312), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_RBRACE] = ACTIONS(310), + [anon_sym_case] = ACTIONS(312), + [anon_sym_default] = ACTIONS(312), + [anon_sym_cast] = ACTIONS(312), + [anon_sym_DOLLARtype] = ACTIONS(310), + [anon_sym_in] = ACTIONS(312), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_this] = ACTIONS(312), + [anon_sym_QMARK] = ACTIONS(312), + [anon_sym_AT] = ACTIONS(312), + [anon_sym_AT_COLON] = ACTIONS(310), + [anon_sym_if] = ACTIONS(312), + [anon_sym_else] = ACTIONS(312), + [anon_sym_new] = ACTIONS(312), + [sym__prefixUnaryOperator] = ACTIONS(312), + [sym__eitherUnaryOperator] = ACTIONS(310), + [sym__arithmetic_operator] = ACTIONS(312), + [sym__bitwise_operator] = ACTIONS(312), + [sym__logical_operator] = ACTIONS(310), + [sym__comparison_operator] = ACTIONS(312), + [sym__map_operator] = ACTIONS(310), + [sym__null_colalese_operator] = ACTIONS(310), + [anon_sym_EQ] = ACTIONS(312), + [sym__range_operator] = ACTIONS(310), + [anon_sym_null] = ACTIONS(312), + [anon_sym_dynamic] = ACTIONS(312), + [anon_sym_final] = ACTIONS(312), + [anon_sym_abstract] = ACTIONS(312), + [anon_sym_class] = ACTIONS(312), + [anon_sym_extends] = ACTIONS(312), + [anon_sym_implements] = ACTIONS(312), + [anon_sym_interface] = ACTIONS(312), + [anon_sym_typedef] = ACTIONS(312), + [anon_sym_function] = ACTIONS(312), + [anon_sym_var] = ACTIONS(312), + [aux_sym_integer_token1] = ACTIONS(312), + [aux_sym_integer_token2] = ACTIONS(310), + [aux_sym_float_token1] = ACTIONS(312), + [aux_sym_float_token2] = ACTIONS(310), + [anon_sym_true] = ACTIONS(312), + [anon_sym_false] = ACTIONS(312), + [aux_sym_string_token1] = ACTIONS(310), + [aux_sym_string_token3] = ACTIONS(310), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(312), + [anon_sym_catch] = ACTIONS(312), + [anon_sym_continue] = ACTIONS(312), + [anon_sym_do] = ACTIONS(312), + [anon_sym_enum] = ACTIONS(312), + [anon_sym_extern] = ACTIONS(312), + [anon_sym_for] = ACTIONS(312), + [anon_sym_inline] = ACTIONS(312), + [anon_sym_macro] = ACTIONS(312), + [anon_sym_operator] = ACTIONS(312), + [anon_sym_overload] = ACTIONS(312), + [anon_sym_override] = ACTIONS(312), + [anon_sym_private] = ACTIONS(312), + [anon_sym_public] = ACTIONS(312), + [anon_sym_return] = ACTIONS(312), + [anon_sym_static] = ACTIONS(312), + [anon_sym_try] = ACTIONS(312), + [anon_sym_untyped] = ACTIONS(312), + [anon_sym_while] = ACTIONS(312), + [sym__semicolon] = ACTIONS(310), + }, + [85] = { + [sym__binaryOperator] = STATE(341), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(466), + [sym_identifier] = ACTIONS(468), + [anon_sym_POUND] = ACTIONS(466), + [anon_sym_package] = ACTIONS(468), + [anon_sym_import] = ACTIONS(468), + [anon_sym_using] = ACTIONS(468), + [anon_sym_throw] = ACTIONS(468), + [anon_sym_LPAREN] = ACTIONS(466), + [anon_sym_switch] = ACTIONS(468), + [anon_sym_LBRACE] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(468), + [anon_sym_cast] = ACTIONS(468), + [anon_sym_DOLLARtype] = ACTIONS(466), + [anon_sym_in] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_this] = ACTIONS(468), + [anon_sym_QMARK] = ACTIONS(422), + [anon_sym_AT] = ACTIONS(468), + [anon_sym_AT_COLON] = ACTIONS(466), + [anon_sym_if] = ACTIONS(468), + [anon_sym_else] = ACTIONS(468), + [anon_sym_new] = ACTIONS(468), + [sym__prefixUnaryOperator] = ACTIONS(468), + [sym__eitherUnaryOperator] = ACTIONS(466), + [sym__arithmetic_operator] = ACTIONS(320), + [sym__bitwise_operator] = ACTIONS(320), + [sym__logical_operator] = ACTIONS(322), + [sym__comparison_operator] = ACTIONS(324), + [sym__map_operator] = ACTIONS(322), + [sym__null_colalese_operator] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(324), + [sym__range_operator] = ACTIONS(322), + [anon_sym_null] = ACTIONS(468), + [anon_sym_dynamic] = ACTIONS(468), + [anon_sym_final] = ACTIONS(468), + [anon_sym_abstract] = ACTIONS(468), + [anon_sym_class] = ACTIONS(468), + [anon_sym_extends] = ACTIONS(468), + [anon_sym_implements] = ACTIONS(468), + [anon_sym_interface] = ACTIONS(468), + [anon_sym_typedef] = ACTIONS(468), + [anon_sym_function] = ACTIONS(468), + [anon_sym_var] = ACTIONS(468), + [aux_sym_integer_token1] = ACTIONS(468), + [aux_sym_integer_token2] = ACTIONS(466), + [aux_sym_float_token1] = ACTIONS(468), + [aux_sym_float_token2] = ACTIONS(466), + [anon_sym_true] = ACTIONS(468), + [anon_sym_false] = ACTIONS(468), + [aux_sym_string_token1] = ACTIONS(466), + [aux_sym_string_token3] = ACTIONS(466), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(468), + [anon_sym_catch] = ACTIONS(468), + [anon_sym_continue] = ACTIONS(468), + [anon_sym_do] = ACTIONS(468), + [anon_sym_enum] = ACTIONS(468), + [anon_sym_extern] = ACTIONS(468), + [anon_sym_for] = ACTIONS(468), + [anon_sym_inline] = ACTIONS(468), + [anon_sym_macro] = ACTIONS(468), + [anon_sym_operator] = ACTIONS(468), + [anon_sym_overload] = ACTIONS(468), + [anon_sym_override] = ACTIONS(468), + [anon_sym_private] = ACTIONS(468), + [anon_sym_public] = ACTIONS(468), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(468), + [anon_sym_try] = ACTIONS(468), + [anon_sym_untyped] = ACTIONS(468), + [anon_sym_while] = ACTIONS(468), + [sym__semicolon] = ACTIONS(466), + }, + [86] = { + [ts_builtin_sym_end] = ACTIONS(470), + [sym_identifier] = ACTIONS(472), + [anon_sym_POUND] = ACTIONS(470), + [anon_sym_package] = ACTIONS(472), + [anon_sym_import] = ACTIONS(472), + [anon_sym_using] = ACTIONS(472), + [anon_sym_throw] = ACTIONS(472), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_RPAREN] = ACTIONS(470), + [anon_sym_switch] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(470), + [anon_sym_RBRACE] = ACTIONS(470), + [anon_sym_case] = ACTIONS(472), + [anon_sym_default] = ACTIONS(472), + [anon_sym_cast] = ACTIONS(472), + [anon_sym_COMMA] = ACTIONS(470), + [anon_sym_DOLLARtype] = ACTIONS(470), + [anon_sym_in] = ACTIONS(472), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_this] = ACTIONS(472), + [aux_sym_member_expression_token1] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(472), + [anon_sym_AT] = ACTIONS(472), + [anon_sym_AT_COLON] = ACTIONS(470), + [anon_sym_if] = ACTIONS(472), + [anon_sym_else] = ACTIONS(472), + [anon_sym_new] = ACTIONS(472), + [sym__prefixUnaryOperator] = ACTIONS(472), + [sym__eitherUnaryOperator] = ACTIONS(470), + [sym__arithmetic_operator] = ACTIONS(472), + [sym__bitwise_operator] = ACTIONS(472), + [sym__logical_operator] = ACTIONS(470), + [sym__comparison_operator] = ACTIONS(472), + [sym__map_operator] = ACTIONS(470), + [sym__null_colalese_operator] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(472), + [sym__range_operator] = ACTIONS(470), + [anon_sym_null] = ACTIONS(472), + [anon_sym_dynamic] = ACTIONS(472), + [anon_sym_final] = ACTIONS(472), + [anon_sym_abstract] = ACTIONS(472), + [anon_sym_class] = ACTIONS(472), + [anon_sym_extends] = ACTIONS(472), + [anon_sym_implements] = ACTIONS(472), + [anon_sym_interface] = ACTIONS(472), + [anon_sym_typedef] = ACTIONS(472), + [anon_sym_function] = ACTIONS(472), + [anon_sym_var] = ACTIONS(472), + [aux_sym_integer_token1] = ACTIONS(472), + [aux_sym_integer_token2] = ACTIONS(470), + [aux_sym_float_token1] = ACTIONS(472), + [aux_sym_float_token2] = ACTIONS(470), + [anon_sym_true] = ACTIONS(472), + [anon_sym_false] = ACTIONS(472), + [aux_sym_string_token1] = ACTIONS(470), + [aux_sym_string_token3] = ACTIONS(470), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(472), + [anon_sym_catch] = ACTIONS(472), + [anon_sym_continue] = ACTIONS(472), + [anon_sym_do] = ACTIONS(472), + [anon_sym_enum] = ACTIONS(472), + [anon_sym_extern] = ACTIONS(472), + [anon_sym_for] = ACTIONS(472), + [anon_sym_inline] = ACTIONS(472), + [anon_sym_macro] = ACTIONS(472), + [anon_sym_operator] = ACTIONS(472), + [anon_sym_overload] = ACTIONS(472), + [anon_sym_override] = ACTIONS(472), + [anon_sym_private] = ACTIONS(472), + [anon_sym_public] = ACTIONS(472), + [anon_sym_return] = ACTIONS(472), + [anon_sym_static] = ACTIONS(472), + [anon_sym_try] = ACTIONS(472), + [anon_sym_untyped] = ACTIONS(472), + [anon_sym_while] = ACTIONS(472), + [sym__semicolon] = ACTIONS(470), + }, + [87] = { + [sym__binaryOperator] = STATE(341), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(466), + [sym_identifier] = ACTIONS(468), + [anon_sym_POUND] = ACTIONS(466), + [anon_sym_package] = ACTIONS(468), + [anon_sym_import] = ACTIONS(468), + [anon_sym_using] = ACTIONS(468), + [anon_sym_throw] = ACTIONS(468), + [anon_sym_LPAREN] = ACTIONS(466), + [anon_sym_switch] = ACTIONS(468), + [anon_sym_LBRACE] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(468), + [anon_sym_cast] = ACTIONS(468), + [anon_sym_DOLLARtype] = ACTIONS(466), + [anon_sym_in] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_this] = ACTIONS(468), + [anon_sym_QMARK] = ACTIONS(422), + [anon_sym_AT] = ACTIONS(468), + [anon_sym_AT_COLON] = ACTIONS(466), + [anon_sym_if] = ACTIONS(468), + [anon_sym_else] = ACTIONS(468), + [anon_sym_new] = ACTIONS(468), + [sym__prefixUnaryOperator] = ACTIONS(468), + [sym__eitherUnaryOperator] = ACTIONS(332), + [sym__arithmetic_operator] = ACTIONS(320), + [sym__bitwise_operator] = ACTIONS(320), + [sym__logical_operator] = ACTIONS(322), + [sym__comparison_operator] = ACTIONS(324), + [sym__map_operator] = ACTIONS(322), + [sym__null_colalese_operator] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(324), + [sym__range_operator] = ACTIONS(322), + [anon_sym_null] = ACTIONS(468), + [anon_sym_dynamic] = ACTIONS(468), + [anon_sym_final] = ACTIONS(468), + [anon_sym_abstract] = ACTIONS(468), + [anon_sym_class] = ACTIONS(468), + [anon_sym_extends] = ACTIONS(468), + [anon_sym_implements] = ACTIONS(468), + [anon_sym_interface] = ACTIONS(468), + [anon_sym_typedef] = ACTIONS(468), + [anon_sym_function] = ACTIONS(468), + [anon_sym_var] = ACTIONS(468), + [aux_sym_integer_token1] = ACTIONS(468), + [aux_sym_integer_token2] = ACTIONS(466), + [aux_sym_float_token1] = ACTIONS(468), + [aux_sym_float_token2] = ACTIONS(466), + [anon_sym_true] = ACTIONS(468), + [anon_sym_false] = ACTIONS(468), + [aux_sym_string_token1] = ACTIONS(466), + [aux_sym_string_token3] = ACTIONS(466), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(468), + [anon_sym_catch] = ACTIONS(468), + [anon_sym_continue] = ACTIONS(468), + [anon_sym_do] = ACTIONS(468), + [anon_sym_enum] = ACTIONS(468), + [anon_sym_extern] = ACTIONS(468), + [anon_sym_for] = ACTIONS(468), + [anon_sym_inline] = ACTIONS(468), + [anon_sym_macro] = ACTIONS(468), + [anon_sym_operator] = ACTIONS(468), + [anon_sym_overload] = ACTIONS(468), + [anon_sym_override] = ACTIONS(468), + [anon_sym_private] = ACTIONS(468), + [anon_sym_public] = ACTIONS(468), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(468), + [anon_sym_try] = ACTIONS(468), + [anon_sym_untyped] = ACTIONS(468), + [anon_sym_while] = ACTIONS(468), + [sym__semicolon] = ACTIONS(466), + }, + [88] = { + [ts_builtin_sym_end] = ACTIONS(474), + [sym_identifier] = ACTIONS(476), + [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_LBRACE] = ACTIONS(474), + [anon_sym_RBRACE] = ACTIONS(474), + [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_in] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(474), + [anon_sym_this] = ACTIONS(476), + [aux_sym_member_expression_token1] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(476), + [anon_sym_AT_COLON] = ACTIONS(474), + [anon_sym_if] = ACTIONS(476), + [anon_sym_else] = ACTIONS(476), + [anon_sym_new] = ACTIONS(476), + [sym__prefixUnaryOperator] = ACTIONS(476), + [sym__eitherUnaryOperator] = ACTIONS(474), + [sym__arithmetic_operator] = ACTIONS(476), + [sym__bitwise_operator] = ACTIONS(476), + [sym__logical_operator] = ACTIONS(474), + [sym__comparison_operator] = ACTIONS(476), + [sym__map_operator] = ACTIONS(474), + [sym__null_colalese_operator] = ACTIONS(474), + [anon_sym_EQ] = ACTIONS(476), + [sym__range_operator] = ACTIONS(474), + [anon_sym_null] = ACTIONS(476), + [anon_sym_dynamic] = ACTIONS(476), + [anon_sym_final] = ACTIONS(476), + [anon_sym_abstract] = ACTIONS(476), + [anon_sym_class] = ACTIONS(476), + [anon_sym_extends] = ACTIONS(476), + [anon_sym_implements] = 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(476), + [aux_sym_integer_token2] = ACTIONS(474), + [aux_sym_float_token1] = ACTIONS(476), + [aux_sym_float_token2] = ACTIONS(474), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [aux_sym_string_token1] = ACTIONS(474), + [aux_sym_string_token3] = ACTIONS(474), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(476), + [anon_sym_catch] = ACTIONS(476), + [anon_sym_continue] = ACTIONS(476), + [anon_sym_do] = ACTIONS(476), + [anon_sym_enum] = ACTIONS(476), + [anon_sym_extern] = ACTIONS(476), + [anon_sym_for] = ACTIONS(476), + [anon_sym_inline] = ACTIONS(476), + [anon_sym_macro] = ACTIONS(476), + [anon_sym_operator] = ACTIONS(476), + [anon_sym_overload] = ACTIONS(476), + [anon_sym_override] = ACTIONS(476), + [anon_sym_private] = ACTIONS(476), + [anon_sym_public] = ACTIONS(476), + [anon_sym_return] = ACTIONS(476), + [anon_sym_static] = ACTIONS(476), + [anon_sym_try] = ACTIONS(476), + [anon_sym_untyped] = ACTIONS(476), + [anon_sym_while] = ACTIONS(476), + [sym__semicolon] = ACTIONS(474), + }, + [89] = { + [ts_builtin_sym_end] = ACTIONS(478), + [sym_identifier] = ACTIONS(480), + [anon_sym_POUND] = ACTIONS(478), + [anon_sym_package] = ACTIONS(480), + [anon_sym_import] = ACTIONS(480), + [anon_sym_using] = ACTIONS(480), + [anon_sym_throw] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_RPAREN] = ACTIONS(478), + [anon_sym_switch] = ACTIONS(480), + [anon_sym_LBRACE] = ACTIONS(478), + [anon_sym_RBRACE] = ACTIONS(478), + [anon_sym_case] = ACTIONS(480), + [anon_sym_default] = ACTIONS(480), + [anon_sym_cast] = ACTIONS(480), + [anon_sym_COMMA] = ACTIONS(478), + [anon_sym_DOLLARtype] = ACTIONS(478), + [anon_sym_in] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_this] = ACTIONS(480), + [aux_sym_member_expression_token1] = ACTIONS(480), + [anon_sym_QMARK] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(480), + [anon_sym_AT_COLON] = ACTIONS(478), + [anon_sym_if] = ACTIONS(480), + [anon_sym_else] = ACTIONS(480), + [anon_sym_new] = ACTIONS(480), + [sym__prefixUnaryOperator] = ACTIONS(480), + [sym__eitherUnaryOperator] = ACTIONS(478), + [sym__arithmetic_operator] = ACTIONS(480), + [sym__bitwise_operator] = ACTIONS(480), + [sym__logical_operator] = ACTIONS(478), + [sym__comparison_operator] = ACTIONS(480), + [sym__map_operator] = ACTIONS(478), + [sym__null_colalese_operator] = ACTIONS(478), + [anon_sym_EQ] = ACTIONS(480), + [sym__range_operator] = ACTIONS(478), + [anon_sym_null] = ACTIONS(480), + [anon_sym_dynamic] = ACTIONS(480), + [anon_sym_final] = ACTIONS(480), + [anon_sym_abstract] = ACTIONS(480), + [anon_sym_class] = ACTIONS(480), + [anon_sym_extends] = ACTIONS(480), + [anon_sym_implements] = ACTIONS(480), + [anon_sym_interface] = ACTIONS(480), + [anon_sym_typedef] = ACTIONS(480), + [anon_sym_function] = ACTIONS(480), + [anon_sym_var] = ACTIONS(480), + [aux_sym_integer_token1] = ACTIONS(480), + [aux_sym_integer_token2] = ACTIONS(478), + [aux_sym_float_token1] = ACTIONS(480), + [aux_sym_float_token2] = ACTIONS(478), + [anon_sym_true] = ACTIONS(480), + [anon_sym_false] = ACTIONS(480), + [aux_sym_string_token1] = ACTIONS(478), + [aux_sym_string_token3] = ACTIONS(478), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(480), + [anon_sym_catch] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_do] = ACTIONS(480), + [anon_sym_enum] = ACTIONS(480), + [anon_sym_extern] = ACTIONS(480), + [anon_sym_for] = ACTIONS(480), + [anon_sym_inline] = ACTIONS(480), + [anon_sym_macro] = ACTIONS(480), + [anon_sym_operator] = ACTIONS(480), + [anon_sym_overload] = ACTIONS(480), + [anon_sym_override] = ACTIONS(480), + [anon_sym_private] = ACTIONS(480), + [anon_sym_public] = ACTIONS(480), + [anon_sym_return] = ACTIONS(480), + [anon_sym_static] = ACTIONS(480), + [anon_sym_try] = ACTIONS(480), + [anon_sym_untyped] = ACTIONS(480), + [anon_sym_while] = ACTIONS(480), + [sym__semicolon] = ACTIONS(478), + }, + [90] = { + [sym__binaryOperator] = STATE(341), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(452), + [sym_identifier] = ACTIONS(454), + [anon_sym_POUND] = ACTIONS(452), + [anon_sym_package] = ACTIONS(454), + [anon_sym_import] = ACTIONS(454), + [anon_sym_using] = ACTIONS(454), + [anon_sym_throw] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(452), + [anon_sym_switch] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(452), + [anon_sym_RBRACE] = ACTIONS(452), + [anon_sym_case] = ACTIONS(454), + [anon_sym_default] = ACTIONS(454), + [anon_sym_cast] = ACTIONS(454), + [anon_sym_DOLLARtype] = ACTIONS(452), + [anon_sym_in] = ACTIONS(454), + [anon_sym_LBRACK] = ACTIONS(452), + [anon_sym_this] = ACTIONS(454), + [anon_sym_QMARK] = ACTIONS(422), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_AT_COLON] = ACTIONS(452), + [anon_sym_if] = ACTIONS(454), + [anon_sym_else] = ACTIONS(454), + [anon_sym_new] = ACTIONS(454), + [sym__prefixUnaryOperator] = ACTIONS(454), + [sym__eitherUnaryOperator] = ACTIONS(332), + [sym__arithmetic_operator] = ACTIONS(320), + [sym__bitwise_operator] = ACTIONS(320), + [sym__logical_operator] = ACTIONS(322), + [sym__comparison_operator] = ACTIONS(324), + [sym__map_operator] = ACTIONS(322), + [sym__null_colalese_operator] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(324), + [sym__range_operator] = ACTIONS(322), + [anon_sym_null] = ACTIONS(454), + [anon_sym_dynamic] = ACTIONS(454), + [anon_sym_final] = ACTIONS(454), + [anon_sym_abstract] = ACTIONS(454), + [anon_sym_class] = ACTIONS(454), + [anon_sym_extends] = ACTIONS(454), + [anon_sym_implements] = ACTIONS(454), + [anon_sym_interface] = ACTIONS(454), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_function] = ACTIONS(454), + [anon_sym_var] = ACTIONS(454), + [aux_sym_integer_token1] = ACTIONS(454), + [aux_sym_integer_token2] = ACTIONS(452), + [aux_sym_float_token1] = ACTIONS(454), + [aux_sym_float_token2] = ACTIONS(452), + [anon_sym_true] = ACTIONS(454), + [anon_sym_false] = ACTIONS(454), + [aux_sym_string_token1] = ACTIONS(452), + [aux_sym_string_token3] = ACTIONS(452), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(454), + [anon_sym_catch] = ACTIONS(454), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_do] = ACTIONS(454), + [anon_sym_enum] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(454), + [anon_sym_for] = ACTIONS(454), + [anon_sym_inline] = ACTIONS(454), + [anon_sym_macro] = ACTIONS(454), + [anon_sym_operator] = ACTIONS(454), + [anon_sym_overload] = ACTIONS(454), + [anon_sym_override] = ACTIONS(454), + [anon_sym_private] = ACTIONS(454), + [anon_sym_public] = ACTIONS(454), + [anon_sym_return] = ACTIONS(454), + [anon_sym_static] = ACTIONS(454), + [anon_sym_try] = ACTIONS(454), + [anon_sym_untyped] = ACTIONS(454), + [anon_sym_while] = ACTIONS(454), + [sym__semicolon] = ACTIONS(456), + }, + [91] = { + [ts_builtin_sym_end] = ACTIONS(482), + [sym_identifier] = ACTIONS(484), + [anon_sym_POUND] = ACTIONS(482), + [anon_sym_package] = ACTIONS(484), + [anon_sym_import] = ACTIONS(484), + [anon_sym_using] = ACTIONS(484), + [anon_sym_throw] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_RPAREN] = ACTIONS(482), + [anon_sym_switch] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_RBRACE] = ACTIONS(482), + [anon_sym_case] = ACTIONS(484), + [anon_sym_default] = ACTIONS(484), + [anon_sym_cast] = ACTIONS(484), + [anon_sym_COMMA] = ACTIONS(482), + [anon_sym_DOLLARtype] = ACTIONS(482), + [anon_sym_in] = ACTIONS(484), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_this] = ACTIONS(484), + [aux_sym_member_expression_token1] = ACTIONS(484), + [anon_sym_QMARK] = ACTIONS(484), + [anon_sym_AT] = ACTIONS(484), + [anon_sym_AT_COLON] = ACTIONS(482), + [anon_sym_if] = ACTIONS(484), + [anon_sym_else] = ACTIONS(484), + [anon_sym_new] = ACTIONS(484), + [sym__prefixUnaryOperator] = ACTIONS(484), + [sym__eitherUnaryOperator] = ACTIONS(482), + [sym__arithmetic_operator] = ACTIONS(484), + [sym__bitwise_operator] = ACTIONS(484), + [sym__logical_operator] = ACTIONS(482), + [sym__comparison_operator] = ACTIONS(484), + [sym__map_operator] = ACTIONS(482), + [sym__null_colalese_operator] = ACTIONS(482), + [anon_sym_EQ] = ACTIONS(484), + [sym__range_operator] = ACTIONS(482), + [anon_sym_null] = ACTIONS(484), + [anon_sym_dynamic] = ACTIONS(484), + [anon_sym_final] = ACTIONS(484), + [anon_sym_abstract] = ACTIONS(484), + [anon_sym_class] = ACTIONS(484), + [anon_sym_extends] = ACTIONS(484), + [anon_sym_implements] = ACTIONS(484), + [anon_sym_interface] = ACTIONS(484), + [anon_sym_typedef] = ACTIONS(484), + [anon_sym_function] = ACTIONS(484), + [anon_sym_var] = ACTIONS(484), + [aux_sym_integer_token1] = ACTIONS(484), + [aux_sym_integer_token2] = ACTIONS(482), + [aux_sym_float_token1] = ACTIONS(484), + [aux_sym_float_token2] = ACTIONS(482), + [anon_sym_true] = ACTIONS(484), + [anon_sym_false] = ACTIONS(484), + [aux_sym_string_token1] = ACTIONS(482), + [aux_sym_string_token3] = ACTIONS(482), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(484), + [anon_sym_catch] = ACTIONS(484), + [anon_sym_continue] = ACTIONS(484), + [anon_sym_do] = ACTIONS(484), + [anon_sym_enum] = ACTIONS(484), + [anon_sym_extern] = ACTIONS(484), + [anon_sym_for] = ACTIONS(484), + [anon_sym_inline] = ACTIONS(484), + [anon_sym_macro] = ACTIONS(484), + [anon_sym_operator] = ACTIONS(484), + [anon_sym_overload] = ACTIONS(484), + [anon_sym_override] = ACTIONS(484), + [anon_sym_private] = ACTIONS(484), + [anon_sym_public] = ACTIONS(484), + [anon_sym_return] = ACTIONS(484), + [anon_sym_static] = ACTIONS(484), + [anon_sym_try] = ACTIONS(484), + [anon_sym_untyped] = ACTIONS(484), + [anon_sym_while] = ACTIONS(484), + [sym__semicolon] = ACTIONS(482), + }, + [92] = { [ts_builtin_sym_end] = ACTIONS(486), [sym_identifier] = ACTIONS(488), [anon_sym_POUND] = ACTIONS(486), @@ -15351,49 +14571,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(486), [anon_sym_RBRACE] = ACTIONS(486), [anon_sym_case] = ACTIONS(488), - [anon_sym_COLON] = ACTIONS(486), [anon_sym_default] = ACTIONS(488), [anon_sym_cast] = ACTIONS(488), [anon_sym_COMMA] = ACTIONS(486), [anon_sym_DOLLARtype] = ACTIONS(486), [anon_sym_in] = ACTIONS(488), [anon_sym_LBRACK] = ACTIONS(486), - [anon_sym_RBRACK] = ACTIONS(486), [anon_sym_this] = ACTIONS(488), - [anon_sym_DOT] = ACTIONS(488), + [aux_sym_member_expression_token1] = ACTIONS(488), [anon_sym_QMARK] = ACTIONS(488), [anon_sym_AT] = ACTIONS(488), [anon_sym_AT_COLON] = ACTIONS(486), [anon_sym_if] = ACTIONS(488), [anon_sym_else] = ACTIONS(488), [anon_sym_new] = ACTIONS(488), - [anon_sym_TILDE] = ACTIONS(486), - [anon_sym_BANG] = ACTIONS(488), - [anon_sym_DASH] = ACTIONS(488), - [anon_sym_PLUS_PLUS] = ACTIONS(486), - [anon_sym_DASH_DASH] = ACTIONS(486), - [anon_sym_PERCENT] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(486), - [anon_sym_SLASH] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(488), - [anon_sym_LT_LT] = ACTIONS(486), - [anon_sym_GT_GT] = ACTIONS(488), - [anon_sym_GT_GT_GT] = ACTIONS(486), - [anon_sym_AMP] = ACTIONS(488), - [anon_sym_PIPE] = ACTIONS(488), - [anon_sym_CARET] = ACTIONS(486), - [anon_sym_AMP_AMP] = ACTIONS(486), - [anon_sym_PIPE_PIPE] = ACTIONS(486), - [anon_sym_EQ_EQ] = ACTIONS(486), - [anon_sym_BANG_EQ] = ACTIONS(486), - [anon_sym_LT] = ACTIONS(488), - [anon_sym_LT_EQ] = ACTIONS(486), - [anon_sym_GT] = ACTIONS(488), - [anon_sym_GT_EQ] = ACTIONS(486), - [anon_sym_EQ_GT] = ACTIONS(486), - [anon_sym_QMARK_QMARK] = ACTIONS(486), + [sym__prefixUnaryOperator] = ACTIONS(488), + [sym__eitherUnaryOperator] = ACTIONS(486), + [sym__arithmetic_operator] = ACTIONS(488), + [sym__bitwise_operator] = ACTIONS(488), + [sym__logical_operator] = ACTIONS(486), + [sym__comparison_operator] = ACTIONS(488), + [sym__map_operator] = ACTIONS(486), + [sym__null_colalese_operator] = ACTIONS(486), [anon_sym_EQ] = ACTIONS(488), - [sym__rangeOperator] = ACTIONS(486), + [sym__range_operator] = ACTIONS(486), [anon_sym_null] = ACTIONS(488), [anon_sym_dynamic] = ACTIONS(488), [anon_sym_final] = ACTIONS(488), @@ -15435,7 +14636,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(488), [sym__semicolon] = ACTIONS(486), }, - [76] = { + [93] = { + [ts_builtin_sym_end] = ACTIONS(306), + [sym_identifier] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(306), + [anon_sym_package] = ACTIONS(308), + [anon_sym_import] = ACTIONS(308), + [anon_sym_using] = ACTIONS(308), + [anon_sym_throw] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(294), + [anon_sym_switch] = ACTIONS(308), + [anon_sym_LBRACE] = ACTIONS(306), + [anon_sym_RBRACE] = ACTIONS(306), + [anon_sym_case] = ACTIONS(308), + [anon_sym_COLON] = ACTIONS(378), + [anon_sym_default] = ACTIONS(308), + [anon_sym_cast] = ACTIONS(308), + [anon_sym_DOLLARtype] = ACTIONS(306), + [anon_sym_in] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(306), + [anon_sym_this] = ACTIONS(308), + [aux_sym_member_expression_token1] = ACTIONS(300), + [anon_sym_QMARK] = ACTIONS(308), + [anon_sym_AT] = ACTIONS(308), + [anon_sym_AT_COLON] = ACTIONS(306), + [anon_sym_if] = ACTIONS(308), + [anon_sym_else] = ACTIONS(308), + [anon_sym_new] = ACTIONS(308), + [sym__prefixUnaryOperator] = ACTIONS(308), + [sym__eitherUnaryOperator] = ACTIONS(306), + [sym__arithmetic_operator] = ACTIONS(308), + [sym__bitwise_operator] = ACTIONS(308), + [sym__logical_operator] = ACTIONS(306), + [sym__comparison_operator] = ACTIONS(308), + [sym__map_operator] = ACTIONS(378), + [sym__null_colalese_operator] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(308), + [sym__range_operator] = ACTIONS(306), + [anon_sym_null] = ACTIONS(308), + [anon_sym_dynamic] = ACTIONS(308), + [anon_sym_LT] = ACTIONS(296), + [anon_sym_final] = ACTIONS(308), + [anon_sym_abstract] = ACTIONS(308), + [anon_sym_class] = ACTIONS(308), + [anon_sym_extends] = ACTIONS(308), + [anon_sym_implements] = ACTIONS(308), + [anon_sym_interface] = ACTIONS(308), + [anon_sym_typedef] = ACTIONS(308), + [anon_sym_function] = ACTIONS(308), + [anon_sym_var] = ACTIONS(308), + [aux_sym_integer_token1] = ACTIONS(308), + [aux_sym_integer_token2] = ACTIONS(306), + [aux_sym_float_token1] = ACTIONS(308), + [aux_sym_float_token2] = ACTIONS(306), + [anon_sym_true] = ACTIONS(308), + [anon_sym_false] = ACTIONS(308), + [aux_sym_string_token1] = ACTIONS(306), + [aux_sym_string_token3] = ACTIONS(306), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(308), + [anon_sym_catch] = ACTIONS(308), + [anon_sym_continue] = ACTIONS(308), + [anon_sym_do] = ACTIONS(308), + [anon_sym_enum] = ACTIONS(308), + [anon_sym_extern] = ACTIONS(308), + [anon_sym_for] = ACTIONS(308), + [anon_sym_inline] = ACTIONS(308), + [anon_sym_macro] = ACTIONS(308), + [anon_sym_operator] = ACTIONS(308), + [anon_sym_overload] = ACTIONS(308), + [anon_sym_override] = ACTIONS(308), + [anon_sym_private] = ACTIONS(308), + [anon_sym_public] = ACTIONS(308), + [anon_sym_return] = ACTIONS(308), + [anon_sym_static] = ACTIONS(308), + [anon_sym_try] = ACTIONS(308), + [anon_sym_untyped] = ACTIONS(308), + [anon_sym_while] = ACTIONS(308), + [sym__semicolon] = ACTIONS(306), + }, + [94] = { + [ts_builtin_sym_end] = ACTIONS(306), + [sym_identifier] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(306), + [anon_sym_package] = ACTIONS(308), + [anon_sym_import] = ACTIONS(308), + [anon_sym_using] = ACTIONS(308), + [anon_sym_throw] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(294), + [anon_sym_switch] = ACTIONS(308), + [anon_sym_LBRACE] = ACTIONS(306), + [anon_sym_RBRACE] = ACTIONS(306), + [anon_sym_case] = ACTIONS(308), + [anon_sym_COLON] = ACTIONS(378), + [anon_sym_default] = ACTIONS(308), + [anon_sym_cast] = ACTIONS(308), + [anon_sym_DOLLARtype] = ACTIONS(306), + [anon_sym_in] = ACTIONS(380), + [anon_sym_LBRACK] = ACTIONS(330), + [anon_sym_this] = ACTIONS(308), + [aux_sym_member_expression_token1] = ACTIONS(300), + [anon_sym_QMARK] = ACTIONS(308), + [anon_sym_AT] = ACTIONS(308), + [anon_sym_AT_COLON] = ACTIONS(306), + [anon_sym_if] = ACTIONS(308), + [anon_sym_else] = ACTIONS(308), + [anon_sym_new] = ACTIONS(308), + [sym__prefixUnaryOperator] = ACTIONS(308), + [sym__eitherUnaryOperator] = ACTIONS(306), + [sym__arithmetic_operator] = ACTIONS(308), + [sym__bitwise_operator] = ACTIONS(308), + [sym__logical_operator] = ACTIONS(306), + [sym__comparison_operator] = ACTIONS(308), + [sym__map_operator] = ACTIONS(378), + [sym__null_colalese_operator] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(308), + [sym__range_operator] = ACTIONS(306), + [anon_sym_null] = ACTIONS(308), + [anon_sym_dynamic] = ACTIONS(308), + [anon_sym_LT] = ACTIONS(296), + [anon_sym_final] = ACTIONS(308), + [anon_sym_abstract] = ACTIONS(308), + [anon_sym_class] = ACTIONS(308), + [anon_sym_extends] = ACTIONS(308), + [anon_sym_implements] = ACTIONS(308), + [anon_sym_interface] = ACTIONS(308), + [anon_sym_typedef] = ACTIONS(308), + [anon_sym_function] = ACTIONS(308), + [anon_sym_var] = ACTIONS(308), + [aux_sym_integer_token1] = ACTIONS(308), + [aux_sym_integer_token2] = ACTIONS(306), + [aux_sym_float_token1] = ACTIONS(308), + [aux_sym_float_token2] = ACTIONS(306), + [anon_sym_true] = ACTIONS(308), + [anon_sym_false] = ACTIONS(308), + [aux_sym_string_token1] = ACTIONS(306), + [aux_sym_string_token3] = ACTIONS(306), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(308), + [anon_sym_catch] = ACTIONS(308), + [anon_sym_continue] = ACTIONS(308), + [anon_sym_do] = ACTIONS(308), + [anon_sym_enum] = ACTIONS(308), + [anon_sym_extern] = ACTIONS(308), + [anon_sym_for] = ACTIONS(308), + [anon_sym_inline] = ACTIONS(308), + [anon_sym_macro] = ACTIONS(308), + [anon_sym_operator] = ACTIONS(308), + [anon_sym_overload] = ACTIONS(308), + [anon_sym_override] = ACTIONS(308), + [anon_sym_private] = ACTIONS(308), + [anon_sym_public] = ACTIONS(308), + [anon_sym_return] = ACTIONS(308), + [anon_sym_static] = ACTIONS(308), + [anon_sym_try] = ACTIONS(308), + [anon_sym_untyped] = ACTIONS(308), + [anon_sym_while] = ACTIONS(308), + [sym__semicolon] = ACTIONS(306), + }, + [95] = { + [sym__binaryOperator] = STATE(341), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(418), + [sym_identifier] = ACTIONS(420), + [anon_sym_POUND] = ACTIONS(418), + [anon_sym_package] = ACTIONS(420), + [anon_sym_import] = ACTIONS(420), + [anon_sym_using] = ACTIONS(420), + [anon_sym_throw] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(418), + [anon_sym_switch] = ACTIONS(420), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_case] = ACTIONS(420), + [anon_sym_default] = ACTIONS(420), + [anon_sym_cast] = ACTIONS(420), + [anon_sym_DOLLARtype] = ACTIONS(418), + [anon_sym_in] = ACTIONS(420), + [anon_sym_LBRACK] = ACTIONS(418), + [anon_sym_this] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(422), + [anon_sym_AT] = ACTIONS(420), + [anon_sym_AT_COLON] = ACTIONS(418), + [anon_sym_if] = ACTIONS(420), + [anon_sym_else] = ACTIONS(420), + [anon_sym_new] = ACTIONS(420), + [sym__prefixUnaryOperator] = ACTIONS(420), + [sym__eitherUnaryOperator] = ACTIONS(332), + [sym__arithmetic_operator] = ACTIONS(320), + [sym__bitwise_operator] = ACTIONS(320), + [sym__logical_operator] = ACTIONS(322), + [sym__comparison_operator] = ACTIONS(324), + [sym__map_operator] = ACTIONS(322), + [sym__null_colalese_operator] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(324), + [sym__range_operator] = ACTIONS(322), + [anon_sym_null] = ACTIONS(420), + [anon_sym_dynamic] = ACTIONS(420), + [anon_sym_final] = ACTIONS(420), + [anon_sym_abstract] = ACTIONS(420), + [anon_sym_class] = ACTIONS(420), + [anon_sym_extends] = ACTIONS(420), + [anon_sym_implements] = ACTIONS(420), + [anon_sym_interface] = ACTIONS(420), + [anon_sym_typedef] = ACTIONS(420), + [anon_sym_function] = ACTIONS(420), + [anon_sym_var] = ACTIONS(420), + [aux_sym_integer_token1] = ACTIONS(420), + [aux_sym_integer_token2] = ACTIONS(418), + [aux_sym_float_token1] = ACTIONS(420), + [aux_sym_float_token2] = ACTIONS(418), + [anon_sym_true] = ACTIONS(420), + [anon_sym_false] = ACTIONS(420), + [aux_sym_string_token1] = ACTIONS(418), + [aux_sym_string_token3] = ACTIONS(418), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(420), + [anon_sym_catch] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(420), + [anon_sym_do] = ACTIONS(420), + [anon_sym_enum] = ACTIONS(420), + [anon_sym_extern] = ACTIONS(420), + [anon_sym_for] = ACTIONS(420), + [anon_sym_inline] = ACTIONS(420), + [anon_sym_macro] = ACTIONS(420), + [anon_sym_operator] = ACTIONS(420), + [anon_sym_overload] = ACTIONS(420), + [anon_sym_override] = ACTIONS(420), + [anon_sym_private] = ACTIONS(420), + [anon_sym_public] = ACTIONS(420), + [anon_sym_return] = ACTIONS(420), + [anon_sym_static] = ACTIONS(420), + [anon_sym_try] = ACTIONS(420), + [anon_sym_untyped] = ACTIONS(420), + [anon_sym_while] = ACTIONS(420), + [sym__semicolon] = ACTIONS(418), + }, + [96] = { [ts_builtin_sym_end] = ACTIONS(490), [sym_identifier] = ACTIONS(492), [anon_sym_POUND] = ACTIONS(490), @@ -15449,49 +14887,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(490), [anon_sym_RBRACE] = ACTIONS(490), [anon_sym_case] = ACTIONS(492), - [anon_sym_COLON] = ACTIONS(490), [anon_sym_default] = ACTIONS(492), [anon_sym_cast] = ACTIONS(492), [anon_sym_COMMA] = ACTIONS(490), [anon_sym_DOLLARtype] = ACTIONS(490), [anon_sym_in] = ACTIONS(492), [anon_sym_LBRACK] = ACTIONS(490), - [anon_sym_RBRACK] = ACTIONS(490), [anon_sym_this] = ACTIONS(492), - [anon_sym_DOT] = ACTIONS(492), + [aux_sym_member_expression_token1] = ACTIONS(492), [anon_sym_QMARK] = ACTIONS(492), [anon_sym_AT] = ACTIONS(492), [anon_sym_AT_COLON] = ACTIONS(490), [anon_sym_if] = ACTIONS(492), [anon_sym_else] = ACTIONS(492), [anon_sym_new] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(490), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_PLUS_PLUS] = ACTIONS(490), - [anon_sym_DASH_DASH] = ACTIONS(490), - [anon_sym_PERCENT] = ACTIONS(490), - [anon_sym_STAR] = ACTIONS(490), - [anon_sym_SLASH] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(492), - [anon_sym_LT_LT] = ACTIONS(490), - [anon_sym_GT_GT] = ACTIONS(492), - [anon_sym_GT_GT_GT] = ACTIONS(490), - [anon_sym_AMP] = ACTIONS(492), - [anon_sym_PIPE] = ACTIONS(492), - [anon_sym_CARET] = ACTIONS(490), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_EQ_EQ] = ACTIONS(490), - [anon_sym_BANG_EQ] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(492), - [anon_sym_LT_EQ] = ACTIONS(490), - [anon_sym_GT] = ACTIONS(492), - [anon_sym_GT_EQ] = ACTIONS(490), - [anon_sym_EQ_GT] = ACTIONS(490), - [anon_sym_QMARK_QMARK] = ACTIONS(490), + [sym__prefixUnaryOperator] = ACTIONS(492), + [sym__eitherUnaryOperator] = ACTIONS(490), + [sym__arithmetic_operator] = ACTIONS(492), + [sym__bitwise_operator] = ACTIONS(492), + [sym__logical_operator] = ACTIONS(490), + [sym__comparison_operator] = ACTIONS(492), + [sym__map_operator] = ACTIONS(490), + [sym__null_colalese_operator] = ACTIONS(490), [anon_sym_EQ] = ACTIONS(492), - [sym__rangeOperator] = ACTIONS(490), + [sym__range_operator] = ACTIONS(490), [anon_sym_null] = ACTIONS(492), [anon_sym_dynamic] = ACTIONS(492), [anon_sym_final] = ACTIONS(492), @@ -15533,7 +14952,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(492), [sym__semicolon] = ACTIONS(490), }, - [77] = { + [97] = { + [sym__binaryOperator] = STATE(341), + [sym__assignment_operator] = STATE(649), + [sym__compound_assignment_operator] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(418), + [sym_identifier] = ACTIONS(420), + [anon_sym_POUND] = ACTIONS(418), + [anon_sym_package] = ACTIONS(420), + [anon_sym_import] = ACTIONS(420), + [anon_sym_using] = ACTIONS(420), + [anon_sym_throw] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(418), + [anon_sym_switch] = ACTIONS(420), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_case] = ACTIONS(420), + [anon_sym_default] = ACTIONS(420), + [anon_sym_cast] = ACTIONS(420), + [anon_sym_DOLLARtype] = ACTIONS(418), + [anon_sym_in] = ACTIONS(420), + [anon_sym_LBRACK] = ACTIONS(418), + [anon_sym_this] = ACTIONS(420), + [anon_sym_QMARK] = ACTIONS(422), + [anon_sym_AT] = ACTIONS(420), + [anon_sym_AT_COLON] = ACTIONS(418), + [anon_sym_if] = ACTIONS(420), + [anon_sym_else] = ACTIONS(420), + [anon_sym_new] = ACTIONS(420), + [sym__prefixUnaryOperator] = ACTIONS(420), + [sym__eitherUnaryOperator] = ACTIONS(418), + [sym__arithmetic_operator] = ACTIONS(320), + [sym__bitwise_operator] = ACTIONS(320), + [sym__logical_operator] = ACTIONS(322), + [sym__comparison_operator] = ACTIONS(324), + [sym__map_operator] = ACTIONS(322), + [sym__null_colalese_operator] = ACTIONS(322), + [anon_sym_EQ] = ACTIONS(324), + [sym__range_operator] = ACTIONS(322), + [anon_sym_null] = ACTIONS(420), + [anon_sym_dynamic] = ACTIONS(420), + [anon_sym_final] = ACTIONS(420), + [anon_sym_abstract] = ACTIONS(420), + [anon_sym_class] = ACTIONS(420), + [anon_sym_extends] = ACTIONS(420), + [anon_sym_implements] = ACTIONS(420), + [anon_sym_interface] = ACTIONS(420), + [anon_sym_typedef] = ACTIONS(420), + [anon_sym_function] = ACTIONS(420), + [anon_sym_var] = ACTIONS(420), + [aux_sym_integer_token1] = ACTIONS(420), + [aux_sym_integer_token2] = ACTIONS(418), + [aux_sym_float_token1] = ACTIONS(420), + [aux_sym_float_token2] = ACTIONS(418), + [anon_sym_true] = ACTIONS(420), + [anon_sym_false] = ACTIONS(420), + [aux_sym_string_token1] = ACTIONS(418), + [aux_sym_string_token3] = ACTIONS(418), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(420), + [anon_sym_catch] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(420), + [anon_sym_do] = ACTIONS(420), + [anon_sym_enum] = ACTIONS(420), + [anon_sym_extern] = ACTIONS(420), + [anon_sym_for] = ACTIONS(420), + [anon_sym_inline] = ACTIONS(420), + [anon_sym_macro] = ACTIONS(420), + [anon_sym_operator] = ACTIONS(420), + [anon_sym_overload] = ACTIONS(420), + [anon_sym_override] = ACTIONS(420), + [anon_sym_private] = ACTIONS(420), + [anon_sym_public] = ACTIONS(420), + [anon_sym_return] = ACTIONS(420), + [anon_sym_static] = ACTIONS(420), + [anon_sym_try] = ACTIONS(420), + [anon_sym_untyped] = ACTIONS(420), + [anon_sym_while] = ACTIONS(420), + [sym__semicolon] = ACTIONS(418), + }, + [98] = { [ts_builtin_sym_end] = ACTIONS(494), [sym_identifier] = ACTIONS(496), [anon_sym_POUND] = ACTIONS(494), @@ -15547,49 +15045,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(494), [anon_sym_RBRACE] = ACTIONS(494), [anon_sym_case] = ACTIONS(496), - [anon_sym_COLON] = ACTIONS(494), [anon_sym_default] = ACTIONS(496), [anon_sym_cast] = ACTIONS(496), [anon_sym_COMMA] = ACTIONS(494), [anon_sym_DOLLARtype] = ACTIONS(494), [anon_sym_in] = ACTIONS(496), [anon_sym_LBRACK] = ACTIONS(494), - [anon_sym_RBRACK] = ACTIONS(494), [anon_sym_this] = ACTIONS(496), - [anon_sym_DOT] = ACTIONS(496), + [aux_sym_member_expression_token1] = ACTIONS(496), [anon_sym_QMARK] = ACTIONS(496), [anon_sym_AT] = ACTIONS(496), [anon_sym_AT_COLON] = ACTIONS(494), [anon_sym_if] = ACTIONS(496), [anon_sym_else] = ACTIONS(496), [anon_sym_new] = ACTIONS(496), - [anon_sym_TILDE] = ACTIONS(494), - [anon_sym_BANG] = ACTIONS(496), - [anon_sym_DASH] = ACTIONS(496), - [anon_sym_PLUS_PLUS] = ACTIONS(494), - [anon_sym_DASH_DASH] = ACTIONS(494), - [anon_sym_PERCENT] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(494), - [anon_sym_SLASH] = ACTIONS(496), - [anon_sym_PLUS] = ACTIONS(496), - [anon_sym_LT_LT] = ACTIONS(494), - [anon_sym_GT_GT] = ACTIONS(496), - [anon_sym_GT_GT_GT] = ACTIONS(494), - [anon_sym_AMP] = ACTIONS(496), - [anon_sym_PIPE] = ACTIONS(496), - [anon_sym_CARET] = ACTIONS(494), - [anon_sym_AMP_AMP] = ACTIONS(494), - [anon_sym_PIPE_PIPE] = ACTIONS(494), - [anon_sym_EQ_EQ] = ACTIONS(494), - [anon_sym_BANG_EQ] = ACTIONS(494), - [anon_sym_LT] = ACTIONS(496), - [anon_sym_LT_EQ] = ACTIONS(494), - [anon_sym_GT] = ACTIONS(496), - [anon_sym_GT_EQ] = ACTIONS(494), - [anon_sym_EQ_GT] = ACTIONS(494), - [anon_sym_QMARK_QMARK] = ACTIONS(494), + [sym__prefixUnaryOperator] = ACTIONS(496), + [sym__eitherUnaryOperator] = ACTIONS(494), + [sym__arithmetic_operator] = ACTIONS(496), + [sym__bitwise_operator] = ACTIONS(496), + [sym__logical_operator] = ACTIONS(494), + [sym__comparison_operator] = ACTIONS(496), + [sym__map_operator] = ACTIONS(494), + [sym__null_colalese_operator] = ACTIONS(494), [anon_sym_EQ] = ACTIONS(496), - [sym__rangeOperator] = ACTIONS(494), + [sym__range_operator] = ACTIONS(494), [anon_sym_null] = ACTIONS(496), [anon_sym_dynamic] = ACTIONS(496), [anon_sym_final] = ACTIONS(496), @@ -15631,7 +15110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(496), [sym__semicolon] = ACTIONS(494), }, - [78] = { + [99] = { [ts_builtin_sym_end] = ACTIONS(498), [sym_identifier] = ACTIONS(500), [anon_sym_POUND] = ACTIONS(498), @@ -15645,49 +15124,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(498), [anon_sym_RBRACE] = ACTIONS(498), [anon_sym_case] = ACTIONS(500), - [anon_sym_COLON] = ACTIONS(498), [anon_sym_default] = ACTIONS(500), [anon_sym_cast] = ACTIONS(500), [anon_sym_COMMA] = ACTIONS(498), [anon_sym_DOLLARtype] = ACTIONS(498), [anon_sym_in] = ACTIONS(500), [anon_sym_LBRACK] = ACTIONS(498), - [anon_sym_RBRACK] = ACTIONS(498), [anon_sym_this] = ACTIONS(500), - [anon_sym_DOT] = ACTIONS(500), + [aux_sym_member_expression_token1] = ACTIONS(500), [anon_sym_QMARK] = ACTIONS(500), [anon_sym_AT] = ACTIONS(500), [anon_sym_AT_COLON] = ACTIONS(498), [anon_sym_if] = ACTIONS(500), [anon_sym_else] = ACTIONS(500), [anon_sym_new] = ACTIONS(500), - [anon_sym_TILDE] = ACTIONS(498), - [anon_sym_BANG] = ACTIONS(500), - [anon_sym_DASH] = ACTIONS(500), - [anon_sym_PLUS_PLUS] = ACTIONS(498), - [anon_sym_DASH_DASH] = ACTIONS(498), - [anon_sym_PERCENT] = ACTIONS(498), - [anon_sym_STAR] = ACTIONS(498), - [anon_sym_SLASH] = ACTIONS(500), - [anon_sym_PLUS] = ACTIONS(500), - [anon_sym_LT_LT] = ACTIONS(498), - [anon_sym_GT_GT] = ACTIONS(500), - [anon_sym_GT_GT_GT] = ACTIONS(498), - [anon_sym_AMP] = ACTIONS(500), - [anon_sym_PIPE] = ACTIONS(500), - [anon_sym_CARET] = ACTIONS(498), - [anon_sym_AMP_AMP] = ACTIONS(498), - [anon_sym_PIPE_PIPE] = ACTIONS(498), - [anon_sym_EQ_EQ] = ACTIONS(498), - [anon_sym_BANG_EQ] = ACTIONS(498), - [anon_sym_LT] = ACTIONS(500), - [anon_sym_LT_EQ] = ACTIONS(498), - [anon_sym_GT] = ACTIONS(500), - [anon_sym_GT_EQ] = ACTIONS(498), - [anon_sym_EQ_GT] = ACTIONS(498), - [anon_sym_QMARK_QMARK] = ACTIONS(498), + [sym__prefixUnaryOperator] = ACTIONS(500), + [sym__eitherUnaryOperator] = ACTIONS(498), + [sym__arithmetic_operator] = ACTIONS(500), + [sym__bitwise_operator] = ACTIONS(500), + [sym__logical_operator] = ACTIONS(498), + [sym__comparison_operator] = ACTIONS(500), + [sym__map_operator] = ACTIONS(498), + [sym__null_colalese_operator] = ACTIONS(498), [anon_sym_EQ] = ACTIONS(500), - [sym__rangeOperator] = ACTIONS(498), + [sym__range_operator] = ACTIONS(498), [anon_sym_null] = ACTIONS(500), [anon_sym_dynamic] = ACTIONS(500), [anon_sym_final] = ACTIONS(500), @@ -15729,7 +15189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(500), [sym__semicolon] = ACTIONS(498), }, - [79] = { + [100] = { [ts_builtin_sym_end] = ACTIONS(502), [sym_identifier] = ACTIONS(504), [anon_sym_POUND] = ACTIONS(502), @@ -15743,49 +15203,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(502), [anon_sym_RBRACE] = ACTIONS(502), [anon_sym_case] = ACTIONS(504), - [anon_sym_COLON] = ACTIONS(502), [anon_sym_default] = ACTIONS(504), [anon_sym_cast] = ACTIONS(504), [anon_sym_COMMA] = ACTIONS(502), [anon_sym_DOLLARtype] = ACTIONS(502), [anon_sym_in] = ACTIONS(504), [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_RBRACK] = ACTIONS(502), [anon_sym_this] = ACTIONS(504), - [anon_sym_DOT] = ACTIONS(504), + [aux_sym_member_expression_token1] = ACTIONS(504), [anon_sym_QMARK] = ACTIONS(504), [anon_sym_AT] = ACTIONS(504), [anon_sym_AT_COLON] = ACTIONS(502), [anon_sym_if] = ACTIONS(504), [anon_sym_else] = ACTIONS(504), [anon_sym_new] = ACTIONS(504), - [anon_sym_TILDE] = ACTIONS(502), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PLUS_PLUS] = ACTIONS(502), - [anon_sym_DASH_DASH] = ACTIONS(502), - [anon_sym_PERCENT] = ACTIONS(502), - [anon_sym_STAR] = ACTIONS(502), - [anon_sym_SLASH] = ACTIONS(504), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_LT_LT] = ACTIONS(502), - [anon_sym_GT_GT] = ACTIONS(504), - [anon_sym_GT_GT_GT] = ACTIONS(502), - [anon_sym_AMP] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_CARET] = ACTIONS(502), - [anon_sym_AMP_AMP] = ACTIONS(502), - [anon_sym_PIPE_PIPE] = ACTIONS(502), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(502), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_GT_EQ] = ACTIONS(502), - [anon_sym_EQ_GT] = ACTIONS(502), - [anon_sym_QMARK_QMARK] = ACTIONS(502), + [sym__prefixUnaryOperator] = ACTIONS(504), + [sym__eitherUnaryOperator] = ACTIONS(502), + [sym__arithmetic_operator] = ACTIONS(504), + [sym__bitwise_operator] = ACTIONS(504), + [sym__logical_operator] = ACTIONS(502), + [sym__comparison_operator] = ACTIONS(504), + [sym__map_operator] = ACTIONS(502), + [sym__null_colalese_operator] = ACTIONS(502), [anon_sym_EQ] = ACTIONS(504), - [sym__rangeOperator] = ACTIONS(502), + [sym__range_operator] = ACTIONS(502), [anon_sym_null] = ACTIONS(504), [anon_sym_dynamic] = ACTIONS(504), [anon_sym_final] = ACTIONS(504), @@ -15827,595 +15268,541 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(504), [sym__semicolon] = ACTIONS(502), }, - [80] = { - [ts_builtin_sym_end] = ACTIONS(506), - [sym_identifier] = ACTIONS(508), - [anon_sym_POUND] = ACTIONS(506), - [anon_sym_package] = ACTIONS(508), - [anon_sym_import] = ACTIONS(508), - [anon_sym_using] = ACTIONS(508), - [anon_sym_throw] = ACTIONS(508), - [anon_sym_LPAREN] = ACTIONS(424), - [anon_sym_RPAREN] = ACTIONS(506), - [anon_sym_switch] = ACTIONS(508), - [anon_sym_LBRACE] = ACTIONS(506), + [101] = { + [aux_sym_map_repeat1] = STATE(1149), + [sym_identifier] = ACTIONS(434), + [anon_sym_POUND] = ACTIONS(432), + [anon_sym_package] = ACTIONS(434), + [anon_sym_import] = ACTIONS(434), + [anon_sym_using] = ACTIONS(434), + [anon_sym_throw] = ACTIONS(434), + [anon_sym_LPAREN] = ACTIONS(432), + [anon_sym_switch] = ACTIONS(434), + [anon_sym_LBRACE] = ACTIONS(432), [anon_sym_RBRACE] = ACTIONS(506), - [anon_sym_case] = ACTIONS(508), - [anon_sym_COLON] = ACTIONS(506), - [anon_sym_default] = ACTIONS(508), - [anon_sym_cast] = ACTIONS(508), - [anon_sym_COMMA] = ACTIONS(506), - [anon_sym_DOLLARtype] = ACTIONS(506), - [anon_sym_in] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(506), - [anon_sym_RBRACK] = ACTIONS(506), - [anon_sym_this] = ACTIONS(508), - [anon_sym_DOT] = ACTIONS(508), - [anon_sym_QMARK] = ACTIONS(508), - [anon_sym_AT] = ACTIONS(508), - [anon_sym_AT_COLON] = ACTIONS(506), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(508), - [anon_sym_new] = ACTIONS(508), - [anon_sym_TILDE] = ACTIONS(506), - [anon_sym_BANG] = ACTIONS(508), - [anon_sym_DASH] = ACTIONS(508), - [anon_sym_PLUS_PLUS] = ACTIONS(506), - [anon_sym_DASH_DASH] = ACTIONS(506), - [anon_sym_PERCENT] = ACTIONS(506), - [anon_sym_STAR] = ACTIONS(506), - [anon_sym_SLASH] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(506), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_GT_GT_GT] = ACTIONS(506), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_PIPE] = ACTIONS(508), - [anon_sym_CARET] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(506), - [anon_sym_PIPE_PIPE] = ACTIONS(506), - [anon_sym_EQ_EQ] = ACTIONS(506), - [anon_sym_BANG_EQ] = ACTIONS(506), - [anon_sym_LT] = ACTIONS(426), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT] = ACTIONS(508), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_EQ_GT] = ACTIONS(506), - [anon_sym_QMARK_QMARK] = ACTIONS(506), - [anon_sym_EQ] = ACTIONS(508), - [sym__rangeOperator] = ACTIONS(506), - [anon_sym_null] = ACTIONS(508), - [anon_sym_dynamic] = ACTIONS(508), - [anon_sym_final] = ACTIONS(508), - [anon_sym_abstract] = ACTIONS(508), - [anon_sym_class] = ACTIONS(508), - [anon_sym_extends] = ACTIONS(508), - [anon_sym_implements] = ACTIONS(508), - [anon_sym_interface] = ACTIONS(508), - [anon_sym_typedef] = ACTIONS(508), - [anon_sym_function] = ACTIONS(508), - [anon_sym_var] = ACTIONS(508), - [aux_sym_integer_token1] = ACTIONS(508), - [aux_sym_integer_token2] = ACTIONS(506), - [aux_sym_float_token1] = ACTIONS(508), - [aux_sym_float_token2] = ACTIONS(506), - [anon_sym_true] = ACTIONS(508), - [anon_sym_false] = ACTIONS(508), - [aux_sym_string_token1] = ACTIONS(506), - [aux_sym_string_token3] = ACTIONS(506), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(508), - [anon_sym_catch] = ACTIONS(508), - [anon_sym_continue] = ACTIONS(508), - [anon_sym_do] = ACTIONS(508), - [anon_sym_enum] = ACTIONS(508), - [anon_sym_extern] = ACTIONS(508), - [anon_sym_for] = ACTIONS(508), - [anon_sym_inline] = ACTIONS(508), - [anon_sym_macro] = ACTIONS(508), - [anon_sym_operator] = ACTIONS(508), - [anon_sym_overload] = ACTIONS(508), - [anon_sym_override] = ACTIONS(508), - [anon_sym_private] = ACTIONS(508), - [anon_sym_public] = ACTIONS(508), - [anon_sym_return] = ACTIONS(508), - [anon_sym_static] = ACTIONS(508), - [anon_sym_try] = ACTIONS(508), - [anon_sym_untyped] = ACTIONS(508), - [anon_sym_while] = ACTIONS(508), - [sym__semicolon] = ACTIONS(506), + [anon_sym_case] = ACTIONS(434), + [anon_sym_default] = ACTIONS(434), + [anon_sym_cast] = ACTIONS(434), + [anon_sym_COMMA] = ACTIONS(508), + [anon_sym_DOLLARtype] = ACTIONS(432), + [anon_sym_in] = ACTIONS(434), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_this] = ACTIONS(434), + [aux_sym_member_expression_token1] = ACTIONS(434), + [anon_sym_QMARK] = ACTIONS(434), + [anon_sym_AT] = ACTIONS(434), + [anon_sym_AT_COLON] = ACTIONS(432), + [anon_sym_if] = ACTIONS(434), + [anon_sym_else] = ACTIONS(434), + [anon_sym_new] = ACTIONS(434), + [sym__prefixUnaryOperator] = ACTIONS(434), + [sym__eitherUnaryOperator] = ACTIONS(432), + [sym__arithmetic_operator] = ACTIONS(434), + [sym__bitwise_operator] = ACTIONS(434), + [sym__logical_operator] = ACTIONS(432), + [sym__comparison_operator] = ACTIONS(434), + [sym__map_operator] = ACTIONS(432), + [sym__null_colalese_operator] = ACTIONS(432), + [anon_sym_EQ] = ACTIONS(434), + [sym__range_operator] = ACTIONS(432), + [anon_sym_null] = ACTIONS(434), + [anon_sym_dynamic] = ACTIONS(434), + [anon_sym_final] = ACTIONS(434), + [anon_sym_abstract] = ACTIONS(434), + [anon_sym_class] = ACTIONS(434), + [anon_sym_extends] = ACTIONS(434), + [anon_sym_implements] = ACTIONS(434), + [anon_sym_interface] = ACTIONS(434), + [anon_sym_typedef] = ACTIONS(434), + [anon_sym_function] = ACTIONS(434), + [anon_sym_var] = ACTIONS(434), + [aux_sym_integer_token1] = ACTIONS(434), + [aux_sym_integer_token2] = ACTIONS(432), + [aux_sym_float_token1] = ACTIONS(434), + [aux_sym_float_token2] = ACTIONS(432), + [anon_sym_true] = ACTIONS(434), + [anon_sym_false] = ACTIONS(434), + [aux_sym_string_token1] = ACTIONS(432), + [aux_sym_string_token3] = ACTIONS(432), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(434), + [anon_sym_catch] = ACTIONS(434), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_do] = ACTIONS(434), + [anon_sym_enum] = ACTIONS(434), + [anon_sym_extern] = ACTIONS(434), + [anon_sym_for] = ACTIONS(434), + [anon_sym_inline] = ACTIONS(434), + [anon_sym_macro] = ACTIONS(434), + [anon_sym_operator] = ACTIONS(434), + [anon_sym_overload] = ACTIONS(434), + [anon_sym_override] = ACTIONS(434), + [anon_sym_private] = ACTIONS(434), + [anon_sym_public] = ACTIONS(434), + [anon_sym_return] = ACTIONS(434), + [anon_sym_static] = ACTIONS(434), + [anon_sym_try] = ACTIONS(434), + [anon_sym_untyped] = ACTIONS(434), + [anon_sym_while] = ACTIONS(434), + [sym__semicolon] = ACTIONS(432), }, - [81] = { - [ts_builtin_sym_end] = ACTIONS(510), - [sym_identifier] = ACTIONS(512), - [anon_sym_POUND] = ACTIONS(510), - [anon_sym_package] = ACTIONS(512), - [anon_sym_import] = ACTIONS(512), - [anon_sym_using] = ACTIONS(512), - [anon_sym_throw] = ACTIONS(512), - [anon_sym_LPAREN] = ACTIONS(510), - [anon_sym_RPAREN] = ACTIONS(510), - [anon_sym_switch] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(510), - [anon_sym_RBRACE] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_COLON] = ACTIONS(510), - [anon_sym_default] = ACTIONS(512), - [anon_sym_cast] = ACTIONS(512), - [anon_sym_COMMA] = ACTIONS(510), - [anon_sym_DOLLARtype] = ACTIONS(510), - [anon_sym_in] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(510), - [anon_sym_RBRACK] = ACTIONS(510), - [anon_sym_this] = ACTIONS(512), - [anon_sym_DOT] = ACTIONS(512), - [anon_sym_QMARK] = ACTIONS(512), - [anon_sym_AT] = ACTIONS(512), - [anon_sym_AT_COLON] = ACTIONS(510), - [anon_sym_if] = ACTIONS(512), - [anon_sym_else] = ACTIONS(512), - [anon_sym_new] = ACTIONS(512), - [anon_sym_TILDE] = ACTIONS(510), - [anon_sym_BANG] = ACTIONS(512), - [anon_sym_DASH] = ACTIONS(512), - [anon_sym_PLUS_PLUS] = ACTIONS(510), - [anon_sym_DASH_DASH] = ACTIONS(510), - [anon_sym_PERCENT] = ACTIONS(510), - [anon_sym_STAR] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(512), - [anon_sym_LT_LT] = ACTIONS(510), - [anon_sym_GT_GT] = ACTIONS(512), - [anon_sym_GT_GT_GT] = ACTIONS(510), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_PIPE] = ACTIONS(512), - [anon_sym_CARET] = ACTIONS(510), - [anon_sym_AMP_AMP] = ACTIONS(510), - [anon_sym_PIPE_PIPE] = ACTIONS(510), - [anon_sym_EQ_EQ] = ACTIONS(510), - [anon_sym_BANG_EQ] = ACTIONS(510), - [anon_sym_LT] = ACTIONS(512), - [anon_sym_LT_EQ] = ACTIONS(510), - [anon_sym_GT] = ACTIONS(512), - [anon_sym_GT_EQ] = ACTIONS(510), - [anon_sym_EQ_GT] = ACTIONS(510), - [anon_sym_QMARK_QMARK] = ACTIONS(510), - [anon_sym_EQ] = ACTIONS(512), - [sym__rangeOperator] = ACTIONS(510), - [anon_sym_null] = ACTIONS(512), - [anon_sym_dynamic] = ACTIONS(512), - [anon_sym_final] = ACTIONS(512), - [anon_sym_abstract] = ACTIONS(512), - [anon_sym_class] = ACTIONS(512), - [anon_sym_extends] = ACTIONS(512), - [anon_sym_implements] = ACTIONS(512), - [anon_sym_interface] = ACTIONS(512), - [anon_sym_typedef] = ACTIONS(512), - [anon_sym_function] = ACTIONS(512), - [anon_sym_var] = ACTIONS(512), - [aux_sym_integer_token1] = ACTIONS(512), - [aux_sym_integer_token2] = ACTIONS(510), - [aux_sym_float_token1] = ACTIONS(512), - [aux_sym_float_token2] = ACTIONS(510), - [anon_sym_true] = ACTIONS(512), - [anon_sym_false] = ACTIONS(512), - [aux_sym_string_token1] = ACTIONS(510), - [aux_sym_string_token3] = ACTIONS(510), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(512), - [anon_sym_catch] = ACTIONS(512), - [anon_sym_continue] = ACTIONS(512), - [anon_sym_do] = ACTIONS(512), - [anon_sym_enum] = ACTIONS(512), - [anon_sym_extern] = ACTIONS(512), - [anon_sym_for] = ACTIONS(512), - [anon_sym_inline] = ACTIONS(512), - [anon_sym_macro] = ACTIONS(512), - [anon_sym_operator] = ACTIONS(512), - [anon_sym_overload] = ACTIONS(512), - [anon_sym_override] = ACTIONS(512), - [anon_sym_private] = ACTIONS(512), - [anon_sym_public] = ACTIONS(512), - [anon_sym_return] = ACTIONS(512), - [anon_sym_static] = ACTIONS(512), - [anon_sym_try] = ACTIONS(512), - [anon_sym_untyped] = ACTIONS(512), - [anon_sym_while] = ACTIONS(512), - [sym__semicolon] = ACTIONS(510), - }, - [82] = { - [ts_builtin_sym_end] = ACTIONS(514), - [sym_identifier] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(514), - [anon_sym_package] = ACTIONS(517), - [anon_sym_import] = ACTIONS(517), - [anon_sym_using] = ACTIONS(517), - [anon_sym_throw] = ACTIONS(517), - [anon_sym_LPAREN] = ACTIONS(514), - [anon_sym_RPAREN] = ACTIONS(514), - [anon_sym_switch] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(514), - [anon_sym_RBRACE] = ACTIONS(514), - [anon_sym_case] = ACTIONS(517), - [anon_sym_COLON] = ACTIONS(514), - [anon_sym_default] = ACTIONS(517), - [anon_sym_cast] = ACTIONS(517), - [anon_sym_COMMA] = ACTIONS(514), - [anon_sym_DOLLARtype] = ACTIONS(514), - [anon_sym_in] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(514), - [anon_sym_RBRACK] = ACTIONS(514), - [anon_sym_this] = ACTIONS(517), - [anon_sym_DOT] = ACTIONS(517), - [anon_sym_QMARK] = ACTIONS(517), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_AT_COLON] = ACTIONS(514), - [anon_sym_if] = ACTIONS(517), - [anon_sym_else] = ACTIONS(517), - [anon_sym_new] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(514), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_PLUS_PLUS] = ACTIONS(514), - [anon_sym_DASH_DASH] = ACTIONS(514), - [anon_sym_PERCENT] = ACTIONS(514), - [anon_sym_STAR] = ACTIONS(514), - [anon_sym_SLASH] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(514), - [anon_sym_GT_GT] = ACTIONS(517), - [anon_sym_GT_GT_GT] = ACTIONS(514), - [anon_sym_AMP] = ACTIONS(517), - [anon_sym_PIPE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(514), - [anon_sym_AMP_AMP] = ACTIONS(514), - [anon_sym_PIPE_PIPE] = ACTIONS(514), - [anon_sym_EQ_EQ] = ACTIONS(514), - [anon_sym_BANG_EQ] = ACTIONS(514), - [anon_sym_LT] = ACTIONS(517), - [anon_sym_LT_EQ] = ACTIONS(514), - [anon_sym_GT] = ACTIONS(517), - [anon_sym_GT_EQ] = ACTIONS(514), - [anon_sym_EQ_GT] = ACTIONS(514), - [anon_sym_QMARK_QMARK] = ACTIONS(514), - [anon_sym_EQ] = ACTIONS(517), - [sym__rangeOperator] = ACTIONS(514), - [anon_sym_null] = ACTIONS(517), - [anon_sym_dynamic] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_class] = ACTIONS(517), - [anon_sym_extends] = ACTIONS(517), - [anon_sym_implements] = ACTIONS(517), - [anon_sym_interface] = ACTIONS(517), - [anon_sym_typedef] = ACTIONS(517), - [anon_sym_function] = ACTIONS(517), - [anon_sym_var] = ACTIONS(517), - [aux_sym_integer_token1] = ACTIONS(517), - [aux_sym_integer_token2] = ACTIONS(514), - [aux_sym_float_token1] = ACTIONS(517), - [aux_sym_float_token2] = ACTIONS(514), - [anon_sym_true] = ACTIONS(517), - [anon_sym_false] = ACTIONS(517), - [aux_sym_string_token1] = ACTIONS(514), - [aux_sym_string_token3] = ACTIONS(514), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(517), - [anon_sym_catch] = ACTIONS(517), - [anon_sym_continue] = ACTIONS(517), - [anon_sym_do] = ACTIONS(517), - [anon_sym_enum] = ACTIONS(517), - [anon_sym_extern] = ACTIONS(517), - [anon_sym_for] = ACTIONS(517), - [anon_sym_inline] = ACTIONS(517), - [anon_sym_macro] = ACTIONS(517), - [anon_sym_operator] = ACTIONS(517), - [anon_sym_overload] = ACTIONS(517), - [anon_sym_override] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_return] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_try] = ACTIONS(517), - [anon_sym_untyped] = ACTIONS(517), - [anon_sym_while] = ACTIONS(517), - [sym__semicolon] = ACTIONS(514), - }, - [83] = { - [ts_builtin_sym_end] = ACTIONS(520), - [sym_identifier] = ACTIONS(522), - [anon_sym_POUND] = ACTIONS(520), - [anon_sym_package] = ACTIONS(522), - [anon_sym_import] = ACTIONS(522), - [anon_sym_using] = ACTIONS(522), - [anon_sym_throw] = ACTIONS(522), - [anon_sym_LPAREN] = ACTIONS(520), - [anon_sym_RPAREN] = ACTIONS(520), - [anon_sym_switch] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(520), - [anon_sym_RBRACE] = ACTIONS(520), - [anon_sym_case] = ACTIONS(522), - [anon_sym_COLON] = ACTIONS(520), - [anon_sym_default] = ACTIONS(522), - [anon_sym_cast] = ACTIONS(522), - [anon_sym_COMMA] = ACTIONS(520), - [anon_sym_DOLLARtype] = ACTIONS(520), - [anon_sym_in] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(520), - [anon_sym_RBRACK] = ACTIONS(520), - [anon_sym_this] = ACTIONS(522), - [anon_sym_DOT] = ACTIONS(522), - [anon_sym_QMARK] = ACTIONS(522), - [anon_sym_AT] = ACTIONS(522), - [anon_sym_AT_COLON] = ACTIONS(520), - [anon_sym_if] = ACTIONS(522), - [anon_sym_else] = ACTIONS(522), - [anon_sym_new] = ACTIONS(522), - [anon_sym_TILDE] = ACTIONS(520), - [anon_sym_BANG] = ACTIONS(522), - [anon_sym_DASH] = ACTIONS(522), - [anon_sym_PLUS_PLUS] = ACTIONS(520), - [anon_sym_DASH_DASH] = ACTIONS(520), - [anon_sym_PERCENT] = ACTIONS(520), - [anon_sym_STAR] = ACTIONS(520), - [anon_sym_SLASH] = ACTIONS(522), - [anon_sym_PLUS] = ACTIONS(522), - [anon_sym_LT_LT] = ACTIONS(520), - [anon_sym_GT_GT] = ACTIONS(522), - [anon_sym_GT_GT_GT] = ACTIONS(520), - [anon_sym_AMP] = ACTIONS(522), - [anon_sym_PIPE] = ACTIONS(522), - [anon_sym_CARET] = ACTIONS(520), - [anon_sym_AMP_AMP] = ACTIONS(520), - [anon_sym_PIPE_PIPE] = ACTIONS(520), - [anon_sym_EQ_EQ] = ACTIONS(520), - [anon_sym_BANG_EQ] = ACTIONS(520), - [anon_sym_LT] = ACTIONS(522), - [anon_sym_LT_EQ] = ACTIONS(520), - [anon_sym_GT] = ACTIONS(522), - [anon_sym_GT_EQ] = ACTIONS(520), - [anon_sym_EQ_GT] = ACTIONS(520), - [anon_sym_QMARK_QMARK] = ACTIONS(520), - [anon_sym_EQ] = ACTIONS(522), - [sym__rangeOperator] = ACTIONS(520), - [anon_sym_null] = ACTIONS(522), - [anon_sym_dynamic] = ACTIONS(522), - [anon_sym_final] = ACTIONS(522), - [anon_sym_abstract] = ACTIONS(522), - [anon_sym_class] = ACTIONS(522), - [anon_sym_extends] = ACTIONS(522), - [anon_sym_implements] = ACTIONS(522), - [anon_sym_interface] = ACTIONS(522), - [anon_sym_typedef] = ACTIONS(522), - [anon_sym_function] = ACTIONS(522), - [anon_sym_var] = ACTIONS(522), - [aux_sym_integer_token1] = ACTIONS(522), - [aux_sym_integer_token2] = ACTIONS(520), - [aux_sym_float_token1] = ACTIONS(522), - [aux_sym_float_token2] = ACTIONS(520), - [anon_sym_true] = ACTIONS(522), - [anon_sym_false] = ACTIONS(522), - [aux_sym_string_token1] = ACTIONS(520), - [aux_sym_string_token3] = ACTIONS(520), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(522), - [anon_sym_catch] = ACTIONS(522), - [anon_sym_continue] = ACTIONS(522), - [anon_sym_do] = ACTIONS(522), - [anon_sym_enum] = ACTIONS(522), - [anon_sym_extern] = ACTIONS(522), - [anon_sym_for] = ACTIONS(522), - [anon_sym_inline] = ACTIONS(522), - [anon_sym_macro] = ACTIONS(522), - [anon_sym_operator] = ACTIONS(522), - [anon_sym_overload] = ACTIONS(522), - [anon_sym_override] = ACTIONS(522), - [anon_sym_private] = ACTIONS(522), - [anon_sym_public] = ACTIONS(522), - [anon_sym_return] = ACTIONS(522), - [anon_sym_static] = ACTIONS(522), - [anon_sym_try] = ACTIONS(522), - [anon_sym_untyped] = ACTIONS(522), - [anon_sym_while] = ACTIONS(522), - [sym__semicolon] = ACTIONS(520), - }, - [84] = { - [ts_builtin_sym_end] = ACTIONS(524), - [sym_identifier] = ACTIONS(526), - [anon_sym_POUND] = ACTIONS(524), - [anon_sym_package] = ACTIONS(526), - [anon_sym_import] = ACTIONS(526), - [anon_sym_using] = ACTIONS(526), - [anon_sym_throw] = ACTIONS(526), - [anon_sym_LPAREN] = ACTIONS(524), - [anon_sym_RPAREN] = ACTIONS(524), - [anon_sym_switch] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(524), - [anon_sym_RBRACE] = ACTIONS(524), - [anon_sym_case] = ACTIONS(526), - [anon_sym_COLON] = ACTIONS(524), - [anon_sym_default] = ACTIONS(526), - [anon_sym_cast] = ACTIONS(526), - [anon_sym_COMMA] = ACTIONS(524), - [anon_sym_DOLLARtype] = ACTIONS(524), - [anon_sym_in] = ACTIONS(526), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_RBRACK] = ACTIONS(524), - [anon_sym_this] = ACTIONS(526), - [anon_sym_DOT] = ACTIONS(526), - [anon_sym_QMARK] = ACTIONS(526), - [anon_sym_AT] = ACTIONS(526), - [anon_sym_AT_COLON] = ACTIONS(524), - [anon_sym_if] = ACTIONS(526), - [anon_sym_else] = ACTIONS(526), - [anon_sym_new] = ACTIONS(526), - [anon_sym_TILDE] = ACTIONS(524), - [anon_sym_BANG] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(526), - [anon_sym_PLUS_PLUS] = ACTIONS(524), - [anon_sym_DASH_DASH] = ACTIONS(524), - [anon_sym_PERCENT] = ACTIONS(524), - [anon_sym_STAR] = ACTIONS(524), - [anon_sym_SLASH] = ACTIONS(526), - [anon_sym_PLUS] = ACTIONS(526), - [anon_sym_LT_LT] = ACTIONS(524), - [anon_sym_GT_GT] = ACTIONS(526), - [anon_sym_GT_GT_GT] = ACTIONS(524), - [anon_sym_AMP] = ACTIONS(526), - [anon_sym_PIPE] = ACTIONS(526), - [anon_sym_CARET] = ACTIONS(524), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_EQ_EQ] = ACTIONS(524), - [anon_sym_BANG_EQ] = ACTIONS(524), - [anon_sym_LT] = ACTIONS(526), - [anon_sym_LT_EQ] = ACTIONS(524), - [anon_sym_GT] = ACTIONS(526), - [anon_sym_GT_EQ] = ACTIONS(524), - [anon_sym_EQ_GT] = ACTIONS(524), - [anon_sym_QMARK_QMARK] = ACTIONS(524), - [anon_sym_EQ] = ACTIONS(526), - [sym__rangeOperator] = ACTIONS(524), - [anon_sym_null] = ACTIONS(526), - [anon_sym_dynamic] = ACTIONS(526), - [anon_sym_final] = ACTIONS(526), - [anon_sym_abstract] = ACTIONS(526), - [anon_sym_class] = ACTIONS(526), - [anon_sym_extends] = ACTIONS(526), - [anon_sym_implements] = 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(524), - [aux_sym_float_token1] = ACTIONS(526), - [aux_sym_float_token2] = ACTIONS(524), - [anon_sym_true] = ACTIONS(526), - [anon_sym_false] = ACTIONS(526), - [aux_sym_string_token1] = ACTIONS(524), - [aux_sym_string_token3] = ACTIONS(524), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(526), - [anon_sym_catch] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_do] = ACTIONS(526), - [anon_sym_enum] = ACTIONS(526), - [anon_sym_extern] = ACTIONS(526), - [anon_sym_for] = ACTIONS(526), - [anon_sym_inline] = ACTIONS(526), - [anon_sym_macro] = ACTIONS(526), - [anon_sym_operator] = ACTIONS(526), - [anon_sym_overload] = ACTIONS(526), - [anon_sym_override] = ACTIONS(526), - [anon_sym_private] = ACTIONS(526), - [anon_sym_public] = ACTIONS(526), - [anon_sym_return] = ACTIONS(526), - [anon_sym_static] = ACTIONS(526), - [anon_sym_try] = ACTIONS(526), - [anon_sym_untyped] = ACTIONS(526), - [anon_sym_while] = ACTIONS(526), - [sym__semicolon] = ACTIONS(524), + [102] = { + [ts_builtin_sym_end] = ACTIONS(306), + [sym_identifier] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(306), + [anon_sym_package] = ACTIONS(308), + [anon_sym_import] = ACTIONS(308), + [anon_sym_using] = ACTIONS(308), + [anon_sym_throw] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(306), + [anon_sym_switch] = ACTIONS(308), + [anon_sym_LBRACE] = ACTIONS(306), + [anon_sym_RBRACE] = ACTIONS(306), + [anon_sym_case] = ACTIONS(308), + [anon_sym_default] = ACTIONS(308), + [anon_sym_cast] = ACTIONS(308), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_DOLLARtype] = ACTIONS(306), + [anon_sym_in] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(306), + [anon_sym_this] = ACTIONS(308), + [aux_sym_member_expression_token1] = ACTIONS(510), + [anon_sym_QMARK] = ACTIONS(308), + [anon_sym_AT] = ACTIONS(308), + [anon_sym_AT_COLON] = ACTIONS(306), + [anon_sym_if] = ACTIONS(308), + [anon_sym_else] = ACTIONS(308), + [anon_sym_new] = ACTIONS(308), + [sym__prefixUnaryOperator] = ACTIONS(308), + [sym__eitherUnaryOperator] = ACTIONS(306), + [sym__arithmetic_operator] = ACTIONS(308), + [sym__bitwise_operator] = ACTIONS(308), + [sym__logical_operator] = ACTIONS(306), + [sym__comparison_operator] = ACTIONS(308), + [sym__map_operator] = ACTIONS(378), + [sym__null_colalese_operator] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(308), + [sym__range_operator] = ACTIONS(306), + [anon_sym_null] = ACTIONS(308), + [anon_sym_dynamic] = ACTIONS(308), + [anon_sym_final] = ACTIONS(308), + [anon_sym_abstract] = ACTIONS(308), + [anon_sym_class] = ACTIONS(308), + [anon_sym_extends] = ACTIONS(308), + [anon_sym_implements] = ACTIONS(308), + [anon_sym_interface] = ACTIONS(308), + [anon_sym_typedef] = ACTIONS(308), + [anon_sym_function] = ACTIONS(308), + [anon_sym_var] = ACTIONS(308), + [aux_sym_integer_token1] = ACTIONS(308), + [aux_sym_integer_token2] = ACTIONS(306), + [aux_sym_float_token1] = ACTIONS(308), + [aux_sym_float_token2] = ACTIONS(306), + [anon_sym_true] = ACTIONS(308), + [anon_sym_false] = ACTIONS(308), + [aux_sym_string_token1] = ACTIONS(306), + [aux_sym_string_token3] = ACTIONS(306), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(308), + [anon_sym_catch] = ACTIONS(308), + [anon_sym_continue] = ACTIONS(308), + [anon_sym_do] = ACTIONS(308), + [anon_sym_enum] = ACTIONS(308), + [anon_sym_extern] = ACTIONS(308), + [anon_sym_for] = ACTIONS(308), + [anon_sym_inline] = ACTIONS(308), + [anon_sym_macro] = ACTIONS(308), + [anon_sym_operator] = ACTIONS(308), + [anon_sym_overload] = ACTIONS(308), + [anon_sym_override] = ACTIONS(308), + [anon_sym_private] = ACTIONS(308), + [anon_sym_public] = ACTIONS(308), + [anon_sym_return] = ACTIONS(308), + [anon_sym_static] = ACTIONS(308), + [anon_sym_try] = ACTIONS(308), + [anon_sym_untyped] = ACTIONS(308), + [anon_sym_while] = ACTIONS(308), + [sym__semicolon] = ACTIONS(306), }, - [85] = { - [ts_builtin_sym_end] = ACTIONS(240), - [sym_identifier] = ACTIONS(242), - [anon_sym_POUND] = ACTIONS(240), - [anon_sym_package] = ACTIONS(242), - [anon_sym_import] = ACTIONS(242), - [anon_sym_using] = ACTIONS(242), - [anon_sym_throw] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(240), - [anon_sym_RPAREN] = ACTIONS(240), - [anon_sym_switch] = ACTIONS(242), - [anon_sym_LBRACE] = ACTIONS(240), - [anon_sym_RBRACE] = ACTIONS(240), - [anon_sym_case] = ACTIONS(242), - [anon_sym_COLON] = ACTIONS(240), - [anon_sym_default] = ACTIONS(242), - [anon_sym_cast] = ACTIONS(242), - [anon_sym_COMMA] = ACTIONS(240), - [anon_sym_DOLLARtype] = ACTIONS(240), - [anon_sym_in] = ACTIONS(242), - [anon_sym_LBRACK] = ACTIONS(240), - [anon_sym_RBRACK] = ACTIONS(240), - [anon_sym_this] = ACTIONS(242), - [anon_sym_DOT] = ACTIONS(242), - [anon_sym_QMARK] = ACTIONS(242), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_AT_COLON] = ACTIONS(240), - [anon_sym_if] = ACTIONS(242), - [anon_sym_else] = ACTIONS(242), - [anon_sym_new] = ACTIONS(242), - [anon_sym_TILDE] = ACTIONS(240), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_DASH] = ACTIONS(242), - [anon_sym_PLUS_PLUS] = ACTIONS(240), - [anon_sym_DASH_DASH] = ACTIONS(240), - [anon_sym_PERCENT] = ACTIONS(240), - [anon_sym_STAR] = ACTIONS(240), - [anon_sym_SLASH] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(242), - [anon_sym_LT_LT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(242), - [anon_sym_GT_GT_GT] = ACTIONS(240), - [anon_sym_AMP] = ACTIONS(242), - [anon_sym_PIPE] = ACTIONS(242), - [anon_sym_CARET] = ACTIONS(240), - [anon_sym_AMP_AMP] = ACTIONS(240), - [anon_sym_PIPE_PIPE] = ACTIONS(240), - [anon_sym_EQ_EQ] = ACTIONS(240), - [anon_sym_BANG_EQ] = ACTIONS(240), - [anon_sym_LT] = ACTIONS(242), - [anon_sym_LT_EQ] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(242), - [anon_sym_GT_EQ] = ACTIONS(240), - [anon_sym_EQ_GT] = ACTIONS(240), - [anon_sym_QMARK_QMARK] = ACTIONS(240), - [anon_sym_EQ] = ACTIONS(242), - [sym__rangeOperator] = ACTIONS(240), - [anon_sym_null] = ACTIONS(242), - [anon_sym_dynamic] = ACTIONS(242), - [anon_sym_final] = ACTIONS(242), - [anon_sym_abstract] = ACTIONS(242), - [anon_sym_class] = ACTIONS(242), - [anon_sym_extends] = ACTIONS(242), - [anon_sym_implements] = ACTIONS(242), - [anon_sym_interface] = ACTIONS(242), - [anon_sym_typedef] = ACTIONS(242), - [anon_sym_function] = ACTIONS(242), - [anon_sym_var] = ACTIONS(242), - [aux_sym_integer_token1] = ACTIONS(242), - [aux_sym_integer_token2] = ACTIONS(240), - [aux_sym_float_token1] = ACTIONS(242), - [aux_sym_float_token2] = ACTIONS(240), - [anon_sym_true] = ACTIONS(242), - [anon_sym_false] = ACTIONS(242), - [aux_sym_string_token1] = ACTIONS(240), - [aux_sym_string_token3] = ACTIONS(240), + [103] = { + [ts_builtin_sym_end] = ACTIONS(374), + [sym_identifier] = ACTIONS(376), + [anon_sym_POUND] = ACTIONS(374), + [anon_sym_package] = ACTIONS(376), + [anon_sym_import] = ACTIONS(376), + [anon_sym_using] = ACTIONS(376), + [anon_sym_throw] = ACTIONS(376), + [anon_sym_LPAREN] = ACTIONS(374), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_LBRACE] = ACTIONS(374), + [anon_sym_RBRACE] = ACTIONS(374), + [anon_sym_case] = ACTIONS(376), + [anon_sym_default] = ACTIONS(376), + [anon_sym_cast] = ACTIONS(376), + [anon_sym_DOLLARtype] = ACTIONS(374), + [anon_sym_in] = ACTIONS(376), + [anon_sym_LBRACK] = ACTIONS(374), + [anon_sym_this] = ACTIONS(376), + [aux_sym_member_expression_token1] = ACTIONS(376), + [anon_sym_QMARK] = ACTIONS(376), + [anon_sym_AT] = ACTIONS(376), + [anon_sym_AT_COLON] = ACTIONS(374), + [anon_sym_if] = ACTIONS(376), + [anon_sym_else] = ACTIONS(376), + [anon_sym_new] = ACTIONS(376), + [sym__prefixUnaryOperator] = ACTIONS(376), + [sym__eitherUnaryOperator] = ACTIONS(374), + [sym__arithmetic_operator] = ACTIONS(376), + [sym__bitwise_operator] = ACTIONS(376), + [sym__logical_operator] = ACTIONS(374), + [sym__comparison_operator] = ACTIONS(376), + [sym__map_operator] = ACTIONS(374), + [sym__null_colalese_operator] = ACTIONS(374), + [anon_sym_EQ] = ACTIONS(376), + [sym__range_operator] = ACTIONS(374), + [anon_sym_null] = ACTIONS(376), + [anon_sym_dynamic] = ACTIONS(376), + [anon_sym_final] = ACTIONS(376), + [anon_sym_abstract] = ACTIONS(376), + [anon_sym_class] = ACTIONS(376), + [anon_sym_extends] = ACTIONS(376), + [anon_sym_implements] = ACTIONS(376), + [anon_sym_interface] = ACTIONS(376), + [anon_sym_typedef] = ACTIONS(376), + [anon_sym_function] = ACTIONS(376), + [anon_sym_var] = ACTIONS(376), + [aux_sym_integer_token1] = ACTIONS(376), + [aux_sym_integer_token2] = ACTIONS(374), + [aux_sym_float_token1] = ACTIONS(376), + [aux_sym_float_token2] = ACTIONS(374), + [anon_sym_true] = ACTIONS(376), + [anon_sym_false] = ACTIONS(376), + [aux_sym_string_token1] = ACTIONS(374), + [aux_sym_string_token3] = ACTIONS(374), [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(242), - [anon_sym_catch] = ACTIONS(242), - [anon_sym_continue] = ACTIONS(242), - [anon_sym_do] = ACTIONS(242), - [anon_sym_enum] = ACTIONS(242), - [anon_sym_extern] = ACTIONS(242), - [anon_sym_for] = ACTIONS(242), - [anon_sym_inline] = ACTIONS(242), - [anon_sym_macro] = ACTIONS(242), - [anon_sym_operator] = ACTIONS(242), - [anon_sym_overload] = ACTIONS(242), - [anon_sym_override] = ACTIONS(242), - [anon_sym_private] = ACTIONS(242), - [anon_sym_public] = ACTIONS(242), - [anon_sym_return] = ACTIONS(242), - [anon_sym_static] = ACTIONS(242), - [anon_sym_try] = ACTIONS(242), - [anon_sym_untyped] = ACTIONS(242), - [anon_sym_while] = ACTIONS(242), - [sym__semicolon] = ACTIONS(240), - }, - [86] = { + [anon_sym_break] = ACTIONS(376), + [anon_sym_catch] = ACTIONS(376), + [anon_sym_continue] = ACTIONS(376), + [anon_sym_do] = ACTIONS(376), + [anon_sym_enum] = ACTIONS(376), + [anon_sym_extern] = ACTIONS(376), + [anon_sym_for] = ACTIONS(376), + [anon_sym_inline] = ACTIONS(376), + [anon_sym_macro] = ACTIONS(376), + [anon_sym_operator] = ACTIONS(376), + [anon_sym_overload] = ACTIONS(376), + [anon_sym_override] = ACTIONS(376), + [anon_sym_private] = ACTIONS(376), + [anon_sym_public] = ACTIONS(376), + [anon_sym_return] = ACTIONS(376), + [anon_sym_static] = ACTIONS(376), + [anon_sym_try] = ACTIONS(376), + [anon_sym_untyped] = ACTIONS(376), + [anon_sym_while] = ACTIONS(376), + [sym__semicolon] = ACTIONS(374), + }, + [104] = { + [ts_builtin_sym_end] = ACTIONS(306), + [sym_identifier] = ACTIONS(308), + [anon_sym_POUND] = ACTIONS(306), + [anon_sym_package] = ACTIONS(308), + [anon_sym_import] = ACTIONS(308), + [anon_sym_using] = ACTIONS(308), + [anon_sym_throw] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(306), + [anon_sym_switch] = ACTIONS(308), + [anon_sym_LBRACE] = ACTIONS(306), + [anon_sym_RBRACE] = ACTIONS(306), + [anon_sym_case] = ACTIONS(308), + [anon_sym_default] = ACTIONS(308), + [anon_sym_cast] = ACTIONS(308), + [anon_sym_DOLLARtype] = ACTIONS(306), + [anon_sym_in] = ACTIONS(308), + [anon_sym_LBRACK] = ACTIONS(306), + [anon_sym_this] = ACTIONS(308), + [aux_sym_member_expression_token1] = ACTIONS(512), + [anon_sym_QMARK] = ACTIONS(308), + [anon_sym_AT] = ACTIONS(308), + [anon_sym_AT_COLON] = ACTIONS(306), + [anon_sym_if] = ACTIONS(308), + [anon_sym_else] = ACTIONS(308), + [anon_sym_new] = ACTIONS(308), + [sym__prefixUnaryOperator] = ACTIONS(308), + [sym__eitherUnaryOperator] = ACTIONS(306), + [sym__arithmetic_operator] = ACTIONS(308), + [sym__bitwise_operator] = ACTIONS(308), + [sym__logical_operator] = ACTIONS(306), + [sym__comparison_operator] = ACTIONS(308), + [sym__map_operator] = ACTIONS(378), + [sym__null_colalese_operator] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(308), + [sym__range_operator] = ACTIONS(306), + [anon_sym_null] = ACTIONS(308), + [anon_sym_dynamic] = ACTIONS(308), + [anon_sym_final] = ACTIONS(308), + [anon_sym_abstract] = ACTIONS(308), + [anon_sym_class] = ACTIONS(308), + [anon_sym_extends] = ACTIONS(308), + [anon_sym_implements] = ACTIONS(308), + [anon_sym_interface] = ACTIONS(308), + [anon_sym_typedef] = ACTIONS(308), + [anon_sym_function] = ACTIONS(308), + [anon_sym_var] = ACTIONS(308), + [aux_sym_integer_token1] = ACTIONS(308), + [aux_sym_integer_token2] = ACTIONS(306), + [aux_sym_float_token1] = ACTIONS(308), + [aux_sym_float_token2] = ACTIONS(306), + [anon_sym_true] = ACTIONS(308), + [anon_sym_false] = ACTIONS(308), + [aux_sym_string_token1] = ACTIONS(306), + [aux_sym_string_token3] = ACTIONS(306), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(308), + [anon_sym_catch] = ACTIONS(308), + [anon_sym_continue] = ACTIONS(308), + [anon_sym_do] = ACTIONS(308), + [anon_sym_enum] = ACTIONS(308), + [anon_sym_extern] = ACTIONS(308), + [anon_sym_for] = ACTIONS(308), + [anon_sym_inline] = ACTIONS(308), + [anon_sym_macro] = ACTIONS(308), + [anon_sym_operator] = ACTIONS(308), + [anon_sym_overload] = ACTIONS(308), + [anon_sym_override] = ACTIONS(308), + [anon_sym_private] = ACTIONS(308), + [anon_sym_public] = ACTIONS(308), + [anon_sym_return] = ACTIONS(308), + [anon_sym_static] = ACTIONS(308), + [anon_sym_try] = ACTIONS(308), + [anon_sym_untyped] = ACTIONS(308), + [anon_sym_while] = ACTIONS(308), + [sym__semicolon] = ACTIONS(306), + }, + [105] = { + [ts_builtin_sym_end] = ACTIONS(294), + [sym_identifier] = ACTIONS(296), + [anon_sym_POUND] = ACTIONS(294), + [anon_sym_package] = ACTIONS(296), + [anon_sym_import] = ACTIONS(296), + [anon_sym_using] = ACTIONS(296), + [anon_sym_throw] = ACTIONS(296), + [anon_sym_LPAREN] = ACTIONS(294), + [anon_sym_RPAREN] = ACTIONS(294), + [anon_sym_switch] = ACTIONS(296), + [anon_sym_LBRACE] = ACTIONS(294), + [anon_sym_RBRACE] = ACTIONS(294), + [anon_sym_case] = ACTIONS(296), + [anon_sym_COLON] = ACTIONS(298), + [anon_sym_default] = ACTIONS(296), + [anon_sym_cast] = ACTIONS(296), + [anon_sym_COMMA] = ACTIONS(294), + [anon_sym_DOLLARtype] = ACTIONS(294), + [anon_sym_in] = ACTIONS(296), + [anon_sym_LBRACK] = ACTIONS(294), + [anon_sym_this] = ACTIONS(296), + [aux_sym_member_expression_token1] = ACTIONS(514), + [anon_sym_DASH_GT] = ACTIONS(294), + [anon_sym_AT] = ACTIONS(296), + [anon_sym_AT_COLON] = ACTIONS(294), + [anon_sym_if] = ACTIONS(296), + [anon_sym_else] = ACTIONS(296), + [anon_sym_new] = ACTIONS(296), + [sym__prefixUnaryOperator] = ACTIONS(296), + [sym__eitherUnaryOperator] = ACTIONS(294), + [sym__map_operator] = ACTIONS(298), + [anon_sym_EQ] = ACTIONS(296), + [anon_sym_null] = ACTIONS(296), + [anon_sym_dynamic] = ACTIONS(296), + [anon_sym_LT] = ACTIONS(294), + [anon_sym_final] = ACTIONS(296), + [anon_sym_abstract] = ACTIONS(296), + [anon_sym_class] = ACTIONS(296), + [anon_sym_extends] = ACTIONS(296), + [anon_sym_implements] = ACTIONS(296), + [anon_sym_interface] = ACTIONS(296), + [anon_sym_typedef] = ACTIONS(296), + [anon_sym_function] = ACTIONS(296), + [anon_sym_var] = ACTIONS(296), + [aux_sym_integer_token1] = ACTIONS(296), + [aux_sym_integer_token2] = ACTIONS(294), + [aux_sym_float_token1] = ACTIONS(296), + [aux_sym_float_token2] = ACTIONS(294), + [anon_sym_true] = ACTIONS(296), + [anon_sym_false] = ACTIONS(296), + [aux_sym_string_token1] = ACTIONS(294), + [aux_sym_string_token3] = ACTIONS(294), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(296), + [anon_sym_catch] = ACTIONS(296), + [anon_sym_continue] = ACTIONS(296), + [anon_sym_do] = ACTIONS(296), + [anon_sym_enum] = ACTIONS(296), + [anon_sym_extern] = ACTIONS(296), + [anon_sym_for] = ACTIONS(296), + [anon_sym_inline] = ACTIONS(296), + [anon_sym_macro] = ACTIONS(296), + [anon_sym_operator] = ACTIONS(296), + [anon_sym_overload] = ACTIONS(296), + [anon_sym_override] = ACTIONS(296), + [anon_sym_private] = ACTIONS(296), + [anon_sym_public] = ACTIONS(296), + [anon_sym_return] = ACTIONS(296), + [anon_sym_static] = ACTIONS(296), + [anon_sym_try] = ACTIONS(296), + [anon_sym_untyped] = ACTIONS(296), + [anon_sym_while] = ACTIONS(296), + [sym__semicolon] = ACTIONS(294), + }, + [106] = { + [sym_member_expression] = STATE(30), + [sym__lhs_expression] = STATE(1045), + [sym__rhs_expression] = STATE(89), + [sym__call] = STATE(57), + [sym__constructor_call] = STATE(40), + [sym_call_expression] = STATE(89), + [sym__literal] = STATE(104), + [sym_integer] = STATE(104), + [sym_float] = STATE(104), + [sym_bool] = STATE(104), + [sym_string] = STATE(65), + [sym_null] = STATE(104), + [sym_array] = STATE(104), + [sym_map] = STATE(104), + [sym_object] = STATE(104), + [sym_pair] = STATE(104), + [sym_identifier] = ACTIONS(516), + [anon_sym_package] = ACTIONS(276), + [anon_sym_import] = ACTIONS(276), + [anon_sym_using] = ACTIONS(276), + [anon_sym_throw] = ACTIONS(276), + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_switch] = ACTIONS(276), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_case] = ACTIONS(276), + [anon_sym_default] = ACTIONS(276), + [anon_sym_cast] = ACTIONS(276), + [anon_sym_in] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_this] = ACTIONS(268), + [anon_sym_if] = ACTIONS(276), + [anon_sym_else] = ACTIONS(276), + [anon_sym_new] = ACTIONS(282), + [anon_sym_null] = ACTIONS(51), + [anon_sym_dynamic] = ACTIONS(276), + [anon_sym_final] = ACTIONS(276), + [anon_sym_abstract] = ACTIONS(276), + [anon_sym_class] = ACTIONS(276), + [anon_sym_extends] = ACTIONS(276), + [anon_sym_implements] = ACTIONS(276), + [anon_sym_interface] = ACTIONS(276), + [anon_sym_typedef] = ACTIONS(276), + [anon_sym_function] = ACTIONS(276), + [anon_sym_var] = ACTIONS(276), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(276), + [anon_sym_catch] = ACTIONS(276), + [anon_sym_continue] = ACTIONS(276), + [anon_sym_do] = ACTIONS(276), + [anon_sym_enum] = ACTIONS(276), + [anon_sym_extern] = ACTIONS(276), + [anon_sym_for] = ACTIONS(276), + [anon_sym_inline] = ACTIONS(276), + [anon_sym_macro] = ACTIONS(276), + [anon_sym_operator] = ACTIONS(276), + [anon_sym_overload] = ACTIONS(276), + [anon_sym_override] = ACTIONS(276), + [anon_sym_private] = ACTIONS(276), + [anon_sym_public] = ACTIONS(276), + [anon_sym_return] = ACTIONS(276), + [anon_sym_static] = ACTIONS(276), + [anon_sym_try] = ACTIONS(276), + [anon_sym_untyped] = ACTIONS(276), + [anon_sym_while] = ACTIONS(276), + }, + [107] = { + [sym_member_expression] = STATE(30), + [sym__lhs_expression] = STATE(1105), + [sym__rhs_expression] = STATE(1237), + [sym__call] = STATE(57), + [sym__constructor_call] = STATE(40), + [sym_call_expression] = STATE(1237), + [sym__literal] = STATE(1134), + [sym_integer] = STATE(1134), + [sym_float] = STATE(1134), + [sym_bool] = STATE(1134), + [sym_string] = STATE(1116), + [sym_null] = STATE(1134), + [sym_array] = STATE(1134), + [sym_map] = STATE(1134), + [sym_object] = STATE(1134), + [sym_pair] = STATE(1134), + [sym_identifier] = ACTIONS(520), + [anon_sym_package] = ACTIONS(276), + [anon_sym_import] = ACTIONS(276), + [anon_sym_using] = ACTIONS(276), + [anon_sym_throw] = ACTIONS(276), + [anon_sym_switch] = ACTIONS(276), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_case] = ACTIONS(276), + [anon_sym__] = ACTIONS(522), + [anon_sym_default] = ACTIONS(276), + [anon_sym_cast] = ACTIONS(276), + [anon_sym_in] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_this] = ACTIONS(524), + [anon_sym_if] = ACTIONS(276), + [anon_sym_else] = ACTIONS(276), + [anon_sym_new] = ACTIONS(526), + [anon_sym_null] = ACTIONS(51), + [anon_sym_dynamic] = ACTIONS(276), + [anon_sym_final] = ACTIONS(276), + [anon_sym_abstract] = ACTIONS(276), + [anon_sym_class] = ACTIONS(276), + [anon_sym_extends] = ACTIONS(276), + [anon_sym_implements] = ACTIONS(276), + [anon_sym_interface] = ACTIONS(276), + [anon_sym_typedef] = ACTIONS(276), + [anon_sym_function] = ACTIONS(276), + [anon_sym_var] = ACTIONS(276), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(276), + [anon_sym_catch] = ACTIONS(276), + [anon_sym_continue] = ACTIONS(276), + [anon_sym_do] = ACTIONS(276), + [anon_sym_enum] = ACTIONS(276), + [anon_sym_extern] = ACTIONS(276), + [anon_sym_for] = ACTIONS(276), + [anon_sym_inline] = ACTIONS(276), + [anon_sym_macro] = ACTIONS(276), + [anon_sym_operator] = ACTIONS(276), + [anon_sym_overload] = ACTIONS(276), + [anon_sym_override] = ACTIONS(276), + [anon_sym_private] = ACTIONS(276), + [anon_sym_public] = ACTIONS(276), + [anon_sym_return] = ACTIONS(276), + [anon_sym_static] = ACTIONS(276), + [anon_sym_try] = ACTIONS(276), + [anon_sym_untyped] = ACTIONS(276), + [anon_sym_while] = ACTIONS(276), + }, + [108] = { + [sym_type_params] = STATE(112), [ts_builtin_sym_end] = ACTIONS(528), [sym_identifier] = ACTIONS(530), [anon_sym_POUND] = ACTIONS(528), @@ -16429,51 +15816,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(528), [anon_sym_RBRACE] = ACTIONS(528), [anon_sym_case] = ACTIONS(530), - [anon_sym_COLON] = ACTIONS(528), [anon_sym_default] = ACTIONS(530), [anon_sym_cast] = ACTIONS(530), [anon_sym_COMMA] = ACTIONS(528), [anon_sym_DOLLARtype] = ACTIONS(528), [anon_sym_in] = ACTIONS(530), [anon_sym_LBRACK] = ACTIONS(528), - [anon_sym_RBRACK] = ACTIONS(528), [anon_sym_this] = ACTIONS(530), - [anon_sym_DOT] = ACTIONS(530), - [anon_sym_QMARK] = ACTIONS(530), + [anon_sym_DASH_GT] = ACTIONS(528), [anon_sym_AT] = ACTIONS(530), [anon_sym_AT_COLON] = ACTIONS(528), [anon_sym_if] = ACTIONS(530), [anon_sym_else] = ACTIONS(530), [anon_sym_new] = ACTIONS(530), - [anon_sym_TILDE] = ACTIONS(528), - [anon_sym_BANG] = ACTIONS(530), - [anon_sym_DASH] = ACTIONS(530), - [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(530), - [anon_sym_PLUS] = ACTIONS(530), - [anon_sym_LT_LT] = ACTIONS(528), - [anon_sym_GT_GT] = ACTIONS(530), - [anon_sym_GT_GT_GT] = ACTIONS(528), - [anon_sym_AMP] = ACTIONS(530), - [anon_sym_PIPE] = ACTIONS(530), - [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(530), - [anon_sym_LT_EQ] = ACTIONS(528), - [anon_sym_GT] = ACTIONS(530), - [anon_sym_GT_EQ] = ACTIONS(528), - [anon_sym_EQ_GT] = ACTIONS(528), - [anon_sym_QMARK_QMARK] = ACTIONS(528), - [anon_sym_EQ] = ACTIONS(530), - [sym__rangeOperator] = ACTIONS(528), + [sym__prefixUnaryOperator] = ACTIONS(530), + [sym__eitherUnaryOperator] = ACTIONS(528), + [anon_sym_EQ] = ACTIONS(528), [anon_sym_null] = ACTIONS(530), [anon_sym_dynamic] = ACTIONS(530), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(528), [anon_sym_final] = ACTIONS(530), [anon_sym_abstract] = ACTIONS(530), [anon_sym_class] = ACTIONS(530), @@ -16513,497 +15875,370 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(530), [sym__semicolon] = ACTIONS(528), }, - [87] = { - [ts_builtin_sym_end] = ACTIONS(532), - [sym_identifier] = ACTIONS(534), - [anon_sym_POUND] = ACTIONS(532), - [anon_sym_package] = ACTIONS(534), - [anon_sym_import] = ACTIONS(534), - [anon_sym_using] = ACTIONS(534), - [anon_sym_throw] = ACTIONS(534), - [anon_sym_LPAREN] = ACTIONS(532), - [anon_sym_RPAREN] = ACTIONS(532), - [anon_sym_switch] = ACTIONS(534), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_RBRACE] = ACTIONS(532), - [anon_sym_case] = ACTIONS(534), - [anon_sym_COLON] = ACTIONS(532), - [anon_sym_default] = ACTIONS(534), - [anon_sym_cast] = ACTIONS(534), - [anon_sym_COMMA] = ACTIONS(532), - [anon_sym_DOLLARtype] = ACTIONS(532), - [anon_sym_in] = ACTIONS(534), - [anon_sym_LBRACK] = ACTIONS(532), - [anon_sym_RBRACK] = ACTIONS(532), - [anon_sym_this] = ACTIONS(534), - [anon_sym_DOT] = ACTIONS(534), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_AT] = ACTIONS(534), - [anon_sym_AT_COLON] = ACTIONS(532), - [anon_sym_if] = ACTIONS(534), - [anon_sym_else] = ACTIONS(534), - [anon_sym_new] = ACTIONS(534), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_BANG] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(534), - [anon_sym_PLUS_PLUS] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(532), - [anon_sym_PERCENT] = ACTIONS(532), - [anon_sym_STAR] = ACTIONS(532), - [anon_sym_SLASH] = ACTIONS(534), - [anon_sym_PLUS] = ACTIONS(534), - [anon_sym_LT_LT] = ACTIONS(532), - [anon_sym_GT_GT] = ACTIONS(534), - [anon_sym_GT_GT_GT] = ACTIONS(532), - [anon_sym_AMP] = ACTIONS(534), - [anon_sym_PIPE] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(532), - [anon_sym_AMP_AMP] = ACTIONS(532), - [anon_sym_PIPE_PIPE] = ACTIONS(532), - [anon_sym_EQ_EQ] = ACTIONS(532), - [anon_sym_BANG_EQ] = ACTIONS(532), - [anon_sym_LT] = ACTIONS(534), - [anon_sym_LT_EQ] = ACTIONS(532), - [anon_sym_GT] = ACTIONS(534), - [anon_sym_GT_EQ] = ACTIONS(532), - [anon_sym_EQ_GT] = ACTIONS(532), - [anon_sym_QMARK_QMARK] = ACTIONS(532), + [109] = { + [sym_type_params] = STATE(111), + [ts_builtin_sym_end] = ACTIONS(534), + [sym_identifier] = ACTIONS(536), + [anon_sym_POUND] = ACTIONS(534), + [anon_sym_package] = ACTIONS(536), + [anon_sym_import] = ACTIONS(536), + [anon_sym_using] = ACTIONS(536), + [anon_sym_throw] = ACTIONS(536), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_RPAREN] = ACTIONS(534), + [anon_sym_switch] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(534), + [anon_sym_RBRACE] = ACTIONS(534), + [anon_sym_case] = ACTIONS(536), + [anon_sym_default] = ACTIONS(536), + [anon_sym_cast] = ACTIONS(536), + [anon_sym_COMMA] = ACTIONS(534), + [anon_sym_DOLLARtype] = ACTIONS(534), + [anon_sym_in] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(534), + [anon_sym_this] = ACTIONS(536), + [anon_sym_DASH_GT] = ACTIONS(534), + [anon_sym_AT] = ACTIONS(536), + [anon_sym_AT_COLON] = ACTIONS(534), + [anon_sym_if] = ACTIONS(536), + [anon_sym_else] = ACTIONS(536), + [anon_sym_new] = ACTIONS(536), + [sym__prefixUnaryOperator] = ACTIONS(536), + [sym__eitherUnaryOperator] = ACTIONS(534), [anon_sym_EQ] = ACTIONS(534), - [sym__rangeOperator] = ACTIONS(532), - [anon_sym_null] = ACTIONS(534), - [anon_sym_dynamic] = ACTIONS(534), - [anon_sym_final] = ACTIONS(534), - [anon_sym_abstract] = ACTIONS(534), - [anon_sym_class] = ACTIONS(534), - [anon_sym_extends] = ACTIONS(534), - [anon_sym_implements] = ACTIONS(534), - [anon_sym_interface] = ACTIONS(534), - [anon_sym_typedef] = ACTIONS(534), - [anon_sym_function] = ACTIONS(534), - [anon_sym_var] = ACTIONS(534), - [aux_sym_integer_token1] = ACTIONS(534), - [aux_sym_integer_token2] = ACTIONS(532), - [aux_sym_float_token1] = ACTIONS(534), - [aux_sym_float_token2] = ACTIONS(532), - [anon_sym_true] = ACTIONS(534), - [anon_sym_false] = ACTIONS(534), - [aux_sym_string_token1] = ACTIONS(532), - [aux_sym_string_token3] = ACTIONS(532), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(534), - [anon_sym_catch] = ACTIONS(534), - [anon_sym_continue] = ACTIONS(534), - [anon_sym_do] = ACTIONS(534), - [anon_sym_enum] = ACTIONS(534), - [anon_sym_extern] = ACTIONS(534), - [anon_sym_for] = ACTIONS(534), - [anon_sym_inline] = ACTIONS(534), - [anon_sym_macro] = ACTIONS(534), - [anon_sym_operator] = ACTIONS(534), - [anon_sym_overload] = ACTIONS(534), - [anon_sym_override] = ACTIONS(534), - [anon_sym_private] = ACTIONS(534), - [anon_sym_public] = ACTIONS(534), - [anon_sym_return] = ACTIONS(534), - [anon_sym_static] = ACTIONS(534), - [anon_sym_try] = ACTIONS(534), - [anon_sym_untyped] = ACTIONS(534), - [anon_sym_while] = ACTIONS(534), - [sym__semicolon] = ACTIONS(532), + [anon_sym_null] = ACTIONS(536), + [anon_sym_dynamic] = ACTIONS(536), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(534), + [anon_sym_final] = ACTIONS(536), + [anon_sym_abstract] = ACTIONS(536), + [anon_sym_class] = ACTIONS(536), + [anon_sym_extends] = ACTIONS(536), + [anon_sym_implements] = ACTIONS(536), + [anon_sym_interface] = ACTIONS(536), + [anon_sym_typedef] = ACTIONS(536), + [anon_sym_function] = ACTIONS(536), + [anon_sym_var] = ACTIONS(536), + [aux_sym_integer_token1] = ACTIONS(536), + [aux_sym_integer_token2] = ACTIONS(534), + [aux_sym_float_token1] = ACTIONS(536), + [aux_sym_float_token2] = ACTIONS(534), + [anon_sym_true] = ACTIONS(536), + [anon_sym_false] = ACTIONS(536), + [aux_sym_string_token1] = ACTIONS(534), + [aux_sym_string_token3] = ACTIONS(534), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(536), + [anon_sym_catch] = ACTIONS(536), + [anon_sym_continue] = ACTIONS(536), + [anon_sym_do] = ACTIONS(536), + [anon_sym_enum] = ACTIONS(536), + [anon_sym_extern] = ACTIONS(536), + [anon_sym_for] = ACTIONS(536), + [anon_sym_inline] = ACTIONS(536), + [anon_sym_macro] = ACTIONS(536), + [anon_sym_operator] = ACTIONS(536), + [anon_sym_overload] = ACTIONS(536), + [anon_sym_override] = ACTIONS(536), + [anon_sym_private] = ACTIONS(536), + [anon_sym_public] = ACTIONS(536), + [anon_sym_return] = ACTIONS(536), + [anon_sym_static] = ACTIONS(536), + [anon_sym_try] = ACTIONS(536), + [anon_sym_untyped] = ACTIONS(536), + [anon_sym_while] = ACTIONS(536), + [sym__semicolon] = ACTIONS(534), }, - [88] = { - [ts_builtin_sym_end] = ACTIONS(536), - [sym_identifier] = ACTIONS(538), - [anon_sym_POUND] = ACTIONS(536), - [anon_sym_package] = ACTIONS(538), - [anon_sym_import] = ACTIONS(538), - [anon_sym_using] = ACTIONS(538), - [anon_sym_throw] = ACTIONS(538), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(536), - [anon_sym_switch] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(536), - [anon_sym_case] = ACTIONS(538), - [anon_sym_COLON] = ACTIONS(536), - [anon_sym_default] = ACTIONS(538), - [anon_sym_cast] = ACTIONS(538), - [anon_sym_COMMA] = ACTIONS(536), - [anon_sym_DOLLARtype] = ACTIONS(536), - [anon_sym_in] = ACTIONS(538), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(536), - [anon_sym_this] = ACTIONS(538), - [anon_sym_DOT] = ACTIONS(538), - [anon_sym_QMARK] = ACTIONS(538), - [anon_sym_AT] = ACTIONS(538), - [anon_sym_AT_COLON] = ACTIONS(536), - [anon_sym_if] = ACTIONS(538), - [anon_sym_else] = ACTIONS(538), - [anon_sym_new] = ACTIONS(538), - [anon_sym_TILDE] = ACTIONS(536), - [anon_sym_BANG] = ACTIONS(538), - [anon_sym_DASH] = ACTIONS(538), - [anon_sym_PLUS_PLUS] = ACTIONS(536), - [anon_sym_DASH_DASH] = ACTIONS(536), - [anon_sym_PERCENT] = ACTIONS(536), - [anon_sym_STAR] = ACTIONS(536), - [anon_sym_SLASH] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(538), - [anon_sym_LT_LT] = ACTIONS(536), - [anon_sym_GT_GT] = ACTIONS(538), - [anon_sym_GT_GT_GT] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_PIPE] = ACTIONS(538), - [anon_sym_CARET] = ACTIONS(536), - [anon_sym_AMP_AMP] = ACTIONS(536), - [anon_sym_PIPE_PIPE] = ACTIONS(536), - [anon_sym_EQ_EQ] = ACTIONS(536), - [anon_sym_BANG_EQ] = ACTIONS(536), + [110] = { + [ts_builtin_sym_end] = ACTIONS(538), + [sym_identifier] = ACTIONS(540), + [anon_sym_POUND] = ACTIONS(538), + [anon_sym_package] = ACTIONS(540), + [anon_sym_import] = ACTIONS(540), + [anon_sym_using] = ACTIONS(540), + [anon_sym_throw] = ACTIONS(540), + [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_RPAREN] = ACTIONS(538), + [anon_sym_switch] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(538), + [anon_sym_RBRACE] = ACTIONS(538), + [anon_sym_case] = ACTIONS(540), + [anon_sym_default] = ACTIONS(540), + [anon_sym_cast] = ACTIONS(540), + [anon_sym_COMMA] = ACTIONS(538), + [anon_sym_DOLLARtype] = ACTIONS(538), + [anon_sym_in] = ACTIONS(540), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_this] = ACTIONS(540), + [anon_sym_DASH_GT] = ACTIONS(538), + [anon_sym_AT] = ACTIONS(540), + [anon_sym_AT_COLON] = ACTIONS(538), + [anon_sym_if] = ACTIONS(540), + [anon_sym_else] = ACTIONS(540), + [anon_sym_new] = ACTIONS(540), + [sym__prefixUnaryOperator] = ACTIONS(540), + [sym__eitherUnaryOperator] = ACTIONS(538), + [anon_sym_EQ] = ACTIONS(538), + [anon_sym_null] = ACTIONS(540), + [anon_sym_dynamic] = ACTIONS(540), [anon_sym_LT] = ACTIONS(538), - [anon_sym_LT_EQ] = ACTIONS(536), [anon_sym_GT] = ACTIONS(538), - [anon_sym_GT_EQ] = ACTIONS(536), - [anon_sym_EQ_GT] = ACTIONS(536), - [anon_sym_QMARK_QMARK] = ACTIONS(536), - [anon_sym_EQ] = ACTIONS(538), - [sym__rangeOperator] = ACTIONS(536), - [anon_sym_null] = ACTIONS(538), - [anon_sym_dynamic] = ACTIONS(538), - [anon_sym_final] = ACTIONS(538), - [anon_sym_abstract] = ACTIONS(538), - [anon_sym_class] = ACTIONS(538), - [anon_sym_extends] = ACTIONS(538), - [anon_sym_implements] = ACTIONS(538), - [anon_sym_interface] = ACTIONS(538), - [anon_sym_typedef] = ACTIONS(538), - [anon_sym_function] = ACTIONS(538), - [anon_sym_var] = ACTIONS(538), - [aux_sym_integer_token1] = ACTIONS(538), - [aux_sym_integer_token2] = ACTIONS(536), - [aux_sym_float_token1] = ACTIONS(538), - [aux_sym_float_token2] = ACTIONS(536), - [anon_sym_true] = ACTIONS(538), - [anon_sym_false] = ACTIONS(538), - [aux_sym_string_token1] = ACTIONS(536), - [aux_sym_string_token3] = ACTIONS(536), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(538), - [anon_sym_catch] = ACTIONS(538), - [anon_sym_continue] = ACTIONS(538), - [anon_sym_do] = ACTIONS(538), - [anon_sym_enum] = ACTIONS(538), - [anon_sym_extern] = ACTIONS(538), - [anon_sym_for] = ACTIONS(538), - [anon_sym_inline] = ACTIONS(538), - [anon_sym_macro] = ACTIONS(538), - [anon_sym_operator] = ACTIONS(538), - [anon_sym_overload] = ACTIONS(538), - [anon_sym_override] = ACTIONS(538), - [anon_sym_private] = ACTIONS(538), - [anon_sym_public] = ACTIONS(538), - [anon_sym_return] = ACTIONS(538), - [anon_sym_static] = ACTIONS(538), - [anon_sym_try] = ACTIONS(538), - [anon_sym_untyped] = ACTIONS(538), - [anon_sym_while] = ACTIONS(538), - [sym__semicolon] = ACTIONS(536), + [anon_sym_final] = ACTIONS(540), + [anon_sym_abstract] = ACTIONS(540), + [anon_sym_class] = ACTIONS(540), + [anon_sym_extends] = ACTIONS(540), + [anon_sym_implements] = ACTIONS(540), + [anon_sym_interface] = ACTIONS(540), + [anon_sym_typedef] = ACTIONS(540), + [anon_sym_function] = ACTIONS(540), + [anon_sym_var] = ACTIONS(540), + [aux_sym_integer_token1] = ACTIONS(540), + [aux_sym_integer_token2] = ACTIONS(538), + [aux_sym_float_token1] = ACTIONS(540), + [aux_sym_float_token2] = ACTIONS(538), + [anon_sym_true] = ACTIONS(540), + [anon_sym_false] = ACTIONS(540), + [aux_sym_string_token1] = ACTIONS(538), + [aux_sym_string_token3] = ACTIONS(538), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(540), + [anon_sym_catch] = ACTIONS(540), + [anon_sym_continue] = ACTIONS(540), + [anon_sym_do] = ACTIONS(540), + [anon_sym_enum] = ACTIONS(540), + [anon_sym_extern] = ACTIONS(540), + [anon_sym_for] = ACTIONS(540), + [anon_sym_inline] = ACTIONS(540), + [anon_sym_macro] = ACTIONS(540), + [anon_sym_operator] = ACTIONS(540), + [anon_sym_overload] = ACTIONS(540), + [anon_sym_override] = ACTIONS(540), + [anon_sym_private] = ACTIONS(540), + [anon_sym_public] = ACTIONS(540), + [anon_sym_return] = ACTIONS(540), + [anon_sym_static] = ACTIONS(540), + [anon_sym_try] = ACTIONS(540), + [anon_sym_untyped] = ACTIONS(540), + [anon_sym_while] = ACTIONS(540), + [sym__semicolon] = ACTIONS(538), }, - [89] = { - [ts_builtin_sym_end] = ACTIONS(540), - [sym_identifier] = ACTIONS(542), - [anon_sym_POUND] = ACTIONS(540), - [anon_sym_package] = ACTIONS(542), - [anon_sym_import] = ACTIONS(542), - [anon_sym_using] = ACTIONS(542), - [anon_sym_throw] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(540), - [anon_sym_RPAREN] = ACTIONS(540), - [anon_sym_switch] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(540), - [anon_sym_RBRACE] = ACTIONS(540), - [anon_sym_case] = ACTIONS(542), - [anon_sym_COLON] = ACTIONS(540), - [anon_sym_default] = ACTIONS(542), - [anon_sym_cast] = ACTIONS(542), - [anon_sym_COMMA] = ACTIONS(540), - [anon_sym_DOLLARtype] = ACTIONS(540), - [anon_sym_in] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(540), - [anon_sym_RBRACK] = ACTIONS(540), - [anon_sym_this] = ACTIONS(542), - [anon_sym_DOT] = ACTIONS(542), - [anon_sym_QMARK] = ACTIONS(542), - [anon_sym_AT] = ACTIONS(542), - [anon_sym_AT_COLON] = ACTIONS(540), - [anon_sym_if] = ACTIONS(542), - [anon_sym_else] = ACTIONS(542), - [anon_sym_new] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_DASH] = ACTIONS(542), - [anon_sym_PLUS_PLUS] = ACTIONS(540), - [anon_sym_DASH_DASH] = ACTIONS(540), - [anon_sym_PERCENT] = ACTIONS(540), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_SLASH] = ACTIONS(542), - [anon_sym_PLUS] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(540), - [anon_sym_GT_GT] = ACTIONS(542), - [anon_sym_GT_GT_GT] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(542), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_AMP_AMP] = ACTIONS(540), - [anon_sym_PIPE_PIPE] = ACTIONS(540), - [anon_sym_EQ_EQ] = ACTIONS(540), - [anon_sym_BANG_EQ] = ACTIONS(540), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_LT_EQ] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(540), - [anon_sym_EQ_GT] = ACTIONS(540), - [anon_sym_QMARK_QMARK] = ACTIONS(540), + [111] = { + [ts_builtin_sym_end] = ACTIONS(542), + [sym_identifier] = ACTIONS(544), + [anon_sym_POUND] = ACTIONS(542), + [anon_sym_package] = 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_LBRACE] = ACTIONS(542), + [anon_sym_RBRACE] = 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_in] = ACTIONS(544), + [anon_sym_LBRACK] = ACTIONS(542), + [anon_sym_this] = ACTIONS(544), + [anon_sym_DASH_GT] = ACTIONS(542), + [anon_sym_AT] = ACTIONS(544), + [anon_sym_AT_COLON] = ACTIONS(542), + [anon_sym_if] = ACTIONS(544), + [anon_sym_else] = ACTIONS(544), + [anon_sym_new] = ACTIONS(544), + [sym__prefixUnaryOperator] = ACTIONS(544), + [sym__eitherUnaryOperator] = ACTIONS(542), [anon_sym_EQ] = ACTIONS(542), - [sym__rangeOperator] = ACTIONS(540), - [anon_sym_null] = ACTIONS(542), - [anon_sym_dynamic] = ACTIONS(542), - [anon_sym_final] = ACTIONS(542), - [anon_sym_abstract] = ACTIONS(542), - [anon_sym_class] = ACTIONS(542), - [anon_sym_extends] = ACTIONS(542), - [anon_sym_implements] = ACTIONS(542), - [anon_sym_interface] = ACTIONS(542), - [anon_sym_typedef] = ACTIONS(542), - [anon_sym_function] = ACTIONS(542), - [anon_sym_var] = ACTIONS(542), - [aux_sym_integer_token1] = ACTIONS(542), - [aux_sym_integer_token2] = ACTIONS(540), - [aux_sym_float_token1] = ACTIONS(542), - [aux_sym_float_token2] = ACTIONS(540), - [anon_sym_true] = ACTIONS(542), - [anon_sym_false] = ACTIONS(542), - [aux_sym_string_token1] = ACTIONS(540), - [aux_sym_string_token3] = ACTIONS(540), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(542), - [anon_sym_catch] = ACTIONS(542), - [anon_sym_continue] = ACTIONS(542), - [anon_sym_do] = ACTIONS(542), - [anon_sym_enum] = ACTIONS(542), - [anon_sym_extern] = ACTIONS(542), - [anon_sym_for] = ACTIONS(542), - [anon_sym_inline] = ACTIONS(542), - [anon_sym_macro] = ACTIONS(542), - [anon_sym_operator] = ACTIONS(542), - [anon_sym_overload] = ACTIONS(542), - [anon_sym_override] = ACTIONS(542), - [anon_sym_private] = ACTIONS(542), - [anon_sym_public] = ACTIONS(542), - [anon_sym_return] = ACTIONS(542), - [anon_sym_static] = ACTIONS(542), - [anon_sym_try] = ACTIONS(542), - [anon_sym_untyped] = ACTIONS(542), - [anon_sym_while] = ACTIONS(542), - [sym__semicolon] = ACTIONS(540), + [anon_sym_null] = ACTIONS(544), + [anon_sym_dynamic] = ACTIONS(544), + [anon_sym_GT] = ACTIONS(542), + [anon_sym_final] = ACTIONS(544), + [anon_sym_abstract] = ACTIONS(544), + [anon_sym_class] = ACTIONS(544), + [anon_sym_extends] = ACTIONS(544), + [anon_sym_implements] = 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), + [anon_sym_break] = ACTIONS(544), + [anon_sym_catch] = ACTIONS(544), + [anon_sym_continue] = ACTIONS(544), + [anon_sym_do] = ACTIONS(544), + [anon_sym_enum] = ACTIONS(544), + [anon_sym_extern] = ACTIONS(544), + [anon_sym_for] = ACTIONS(544), + [anon_sym_inline] = ACTIONS(544), + [anon_sym_macro] = ACTIONS(544), + [anon_sym_operator] = ACTIONS(544), + [anon_sym_overload] = ACTIONS(544), + [anon_sym_override] = ACTIONS(544), + [anon_sym_private] = ACTIONS(544), + [anon_sym_public] = ACTIONS(544), + [anon_sym_return] = ACTIONS(544), + [anon_sym_static] = ACTIONS(544), + [anon_sym_try] = ACTIONS(544), + [anon_sym_untyped] = ACTIONS(544), + [anon_sym_while] = ACTIONS(544), + [sym__semicolon] = ACTIONS(542), }, - [90] = { - [ts_builtin_sym_end] = ACTIONS(544), - [sym_identifier] = ACTIONS(546), - [anon_sym_POUND] = ACTIONS(544), - [anon_sym_package] = ACTIONS(546), - [anon_sym_import] = ACTIONS(546), - [anon_sym_using] = ACTIONS(546), - [anon_sym_throw] = ACTIONS(546), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(544), - [anon_sym_switch] = ACTIONS(546), - [anon_sym_LBRACE] = ACTIONS(544), - [anon_sym_RBRACE] = ACTIONS(544), - [anon_sym_case] = ACTIONS(546), - [anon_sym_COLON] = ACTIONS(544), - [anon_sym_default] = ACTIONS(546), - [anon_sym_cast] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(544), - [anon_sym_DOLLARtype] = ACTIONS(544), - [anon_sym_in] = ACTIONS(546), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(544), - [anon_sym_this] = ACTIONS(546), - [anon_sym_DOT] = ACTIONS(546), - [anon_sym_QMARK] = ACTIONS(546), - [anon_sym_AT] = ACTIONS(546), - [anon_sym_AT_COLON] = ACTIONS(544), - [anon_sym_if] = ACTIONS(546), - [anon_sym_else] = ACTIONS(546), - [anon_sym_new] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(544), - [anon_sym_BANG] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_PLUS_PLUS] = ACTIONS(544), - [anon_sym_DASH_DASH] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_SLASH] = ACTIONS(546), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(546), - [anon_sym_GT_GT_GT] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(546), - [anon_sym_PIPE] = ACTIONS(546), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), - [anon_sym_EQ_EQ] = ACTIONS(544), - [anon_sym_BANG_EQ] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(546), - [anon_sym_LT_EQ] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(546), - [anon_sym_GT_EQ] = ACTIONS(544), - [anon_sym_EQ_GT] = ACTIONS(544), - [anon_sym_QMARK_QMARK] = ACTIONS(544), + [112] = { + [ts_builtin_sym_end] = ACTIONS(546), + [sym_identifier] = ACTIONS(548), + [anon_sym_POUND] = ACTIONS(546), + [anon_sym_package] = ACTIONS(548), + [anon_sym_import] = ACTIONS(548), + [anon_sym_using] = ACTIONS(548), + [anon_sym_throw] = ACTIONS(548), + [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_RPAREN] = ACTIONS(546), + [anon_sym_switch] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(546), + [anon_sym_RBRACE] = ACTIONS(546), + [anon_sym_case] = ACTIONS(548), + [anon_sym_default] = ACTIONS(548), + [anon_sym_cast] = ACTIONS(548), + [anon_sym_COMMA] = ACTIONS(546), + [anon_sym_DOLLARtype] = ACTIONS(546), + [anon_sym_in] = ACTIONS(548), + [anon_sym_LBRACK] = ACTIONS(546), + [anon_sym_this] = ACTIONS(548), + [anon_sym_DASH_GT] = ACTIONS(546), + [anon_sym_AT] = ACTIONS(548), + [anon_sym_AT_COLON] = ACTIONS(546), + [anon_sym_if] = ACTIONS(548), + [anon_sym_else] = ACTIONS(548), + [anon_sym_new] = ACTIONS(548), + [sym__prefixUnaryOperator] = ACTIONS(548), + [sym__eitherUnaryOperator] = ACTIONS(546), [anon_sym_EQ] = ACTIONS(546), - [sym__rangeOperator] = ACTIONS(544), - [anon_sym_null] = ACTIONS(546), - [anon_sym_dynamic] = ACTIONS(546), - [anon_sym_final] = ACTIONS(546), - [anon_sym_abstract] = ACTIONS(546), - [anon_sym_class] = ACTIONS(546), - [anon_sym_extends] = ACTIONS(546), - [anon_sym_implements] = ACTIONS(546), - [anon_sym_interface] = ACTIONS(546), - [anon_sym_typedef] = ACTIONS(546), - [anon_sym_function] = ACTIONS(546), - [anon_sym_var] = ACTIONS(546), - [aux_sym_integer_token1] = ACTIONS(546), - [aux_sym_integer_token2] = ACTIONS(544), - [aux_sym_float_token1] = ACTIONS(546), - [aux_sym_float_token2] = ACTIONS(544), - [anon_sym_true] = ACTIONS(546), - [anon_sym_false] = ACTIONS(546), - [aux_sym_string_token1] = ACTIONS(544), - [aux_sym_string_token3] = ACTIONS(544), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(546), - [anon_sym_catch] = ACTIONS(546), - [anon_sym_continue] = ACTIONS(546), - [anon_sym_do] = ACTIONS(546), - [anon_sym_enum] = ACTIONS(546), - [anon_sym_extern] = ACTIONS(546), - [anon_sym_for] = ACTIONS(546), - [anon_sym_inline] = ACTIONS(546), - [anon_sym_macro] = ACTIONS(546), - [anon_sym_operator] = ACTIONS(546), - [anon_sym_overload] = ACTIONS(546), - [anon_sym_override] = ACTIONS(546), - [anon_sym_private] = ACTIONS(546), - [anon_sym_public] = ACTIONS(546), - [anon_sym_return] = ACTIONS(546), - [anon_sym_static] = ACTIONS(546), - [anon_sym_try] = ACTIONS(546), - [anon_sym_untyped] = ACTIONS(546), - [anon_sym_while] = ACTIONS(546), - [sym__semicolon] = ACTIONS(544), + [anon_sym_null] = ACTIONS(548), + [anon_sym_dynamic] = ACTIONS(548), + [anon_sym_GT] = ACTIONS(546), + [anon_sym_final] = ACTIONS(548), + [anon_sym_abstract] = ACTIONS(548), + [anon_sym_class] = ACTIONS(548), + [anon_sym_extends] = ACTIONS(548), + [anon_sym_implements] = ACTIONS(548), + [anon_sym_interface] = ACTIONS(548), + [anon_sym_typedef] = ACTIONS(548), + [anon_sym_function] = ACTIONS(548), + [anon_sym_var] = ACTIONS(548), + [aux_sym_integer_token1] = ACTIONS(548), + [aux_sym_integer_token2] = ACTIONS(546), + [aux_sym_float_token1] = ACTIONS(548), + [aux_sym_float_token2] = ACTIONS(546), + [anon_sym_true] = ACTIONS(548), + [anon_sym_false] = ACTIONS(548), + [aux_sym_string_token1] = ACTIONS(546), + [aux_sym_string_token3] = ACTIONS(546), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(548), + [anon_sym_catch] = ACTIONS(548), + [anon_sym_continue] = ACTIONS(548), + [anon_sym_do] = ACTIONS(548), + [anon_sym_enum] = ACTIONS(548), + [anon_sym_extern] = ACTIONS(548), + [anon_sym_for] = ACTIONS(548), + [anon_sym_inline] = ACTIONS(548), + [anon_sym_macro] = ACTIONS(548), + [anon_sym_operator] = ACTIONS(548), + [anon_sym_overload] = ACTIONS(548), + [anon_sym_override] = ACTIONS(548), + [anon_sym_private] = ACTIONS(548), + [anon_sym_public] = ACTIONS(548), + [anon_sym_return] = ACTIONS(548), + [anon_sym_static] = ACTIONS(548), + [anon_sym_try] = ACTIONS(548), + [anon_sym_untyped] = ACTIONS(548), + [anon_sym_while] = ACTIONS(548), + [sym__semicolon] = ACTIONS(546), }, - [91] = { - [ts_builtin_sym_end] = ACTIONS(548), - [sym_identifier] = ACTIONS(551), - [anon_sym_POUND] = ACTIONS(548), - [anon_sym_package] = ACTIONS(551), - [anon_sym_import] = ACTIONS(551), - [anon_sym_using] = ACTIONS(551), - [anon_sym_throw] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_RPAREN] = ACTIONS(548), - [anon_sym_switch] = ACTIONS(551), - [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(548), - [anon_sym_case] = ACTIONS(551), - [anon_sym_COLON] = ACTIONS(548), - [anon_sym_default] = ACTIONS(551), - [anon_sym_cast] = ACTIONS(551), - [anon_sym_COMMA] = ACTIONS(548), - [anon_sym_DOLLARtype] = ACTIONS(548), - [anon_sym_in] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_RBRACK] = ACTIONS(548), - [anon_sym_this] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(551), - [anon_sym_QMARK] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(551), - [anon_sym_AT_COLON] = ACTIONS(548), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(551), - [anon_sym_new] = ACTIONS(551), - [anon_sym_TILDE] = ACTIONS(548), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_PLUS_PLUS] = ACTIONS(548), - [anon_sym_DASH_DASH] = ACTIONS(548), - [anon_sym_PERCENT] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(551), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_LT_LT] = ACTIONS(548), - [anon_sym_GT_GT] = ACTIONS(551), - [anon_sym_GT_GT_GT] = ACTIONS(548), - [anon_sym_AMP] = ACTIONS(551), - [anon_sym_PIPE] = ACTIONS(551), - [anon_sym_CARET] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(548), - [anon_sym_PIPE_PIPE] = ACTIONS(548), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(551), - [anon_sym_LT_EQ] = ACTIONS(548), - [anon_sym_GT] = ACTIONS(551), - [anon_sym_GT_EQ] = ACTIONS(548), - [anon_sym_EQ_GT] = ACTIONS(548), - [anon_sym_QMARK_QMARK] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(551), - [sym__rangeOperator] = ACTIONS(548), - [anon_sym_null] = ACTIONS(551), - [anon_sym_dynamic] = ACTIONS(551), - [anon_sym_final] = ACTIONS(551), - [anon_sym_abstract] = ACTIONS(551), - [anon_sym_class] = ACTIONS(551), - [anon_sym_extends] = ACTIONS(551), - [anon_sym_implements] = ACTIONS(551), - [anon_sym_interface] = ACTIONS(551), - [anon_sym_typedef] = ACTIONS(551), - [anon_sym_function] = ACTIONS(551), - [anon_sym_var] = ACTIONS(551), - [aux_sym_integer_token1] = ACTIONS(551), - [aux_sym_integer_token2] = ACTIONS(548), - [aux_sym_float_token1] = ACTIONS(551), - [aux_sym_float_token2] = ACTIONS(548), - [anon_sym_true] = ACTIONS(551), - [anon_sym_false] = ACTIONS(551), - [aux_sym_string_token1] = ACTIONS(548), - [aux_sym_string_token3] = ACTIONS(548), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(551), - [anon_sym_catch] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_do] = ACTIONS(551), - [anon_sym_enum] = ACTIONS(551), - [anon_sym_extern] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_inline] = ACTIONS(551), - [anon_sym_macro] = ACTIONS(551), - [anon_sym_operator] = ACTIONS(551), - [anon_sym_overload] = ACTIONS(551), - [anon_sym_override] = ACTIONS(551), - [anon_sym_private] = ACTIONS(551), - [anon_sym_public] = ACTIONS(551), - [anon_sym_return] = ACTIONS(551), - [anon_sym_static] = ACTIONS(551), - [anon_sym_try] = ACTIONS(551), - [anon_sym_untyped] = ACTIONS(551), - [anon_sym_while] = ACTIONS(551), - [sym__semicolon] = ACTIONS(548), + [113] = { + [ts_builtin_sym_end] = ACTIONS(550), + [sym_identifier] = ACTIONS(552), + [anon_sym_POUND] = ACTIONS(550), + [anon_sym_package] = ACTIONS(552), + [anon_sym_import] = ACTIONS(552), + [anon_sym_using] = ACTIONS(552), + [anon_sym_throw] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(550), + [anon_sym_RPAREN] = ACTIONS(550), + [anon_sym_switch] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(550), + [anon_sym_RBRACE] = ACTIONS(550), + [anon_sym_case] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_cast] = ACTIONS(552), + [anon_sym_COMMA] = ACTIONS(550), + [anon_sym_DOLLARtype] = ACTIONS(550), + [anon_sym_in] = ACTIONS(552), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_this] = ACTIONS(552), + [anon_sym_DASH_GT] = ACTIONS(550), + [anon_sym_AT] = ACTIONS(552), + [anon_sym_AT_COLON] = ACTIONS(550), + [anon_sym_if] = ACTIONS(552), + [anon_sym_else] = ACTIONS(552), + [anon_sym_new] = ACTIONS(552), + [sym__prefixUnaryOperator] = ACTIONS(552), + [sym__eitherUnaryOperator] = ACTIONS(550), + [anon_sym_EQ] = ACTIONS(550), + [anon_sym_null] = ACTIONS(552), + [anon_sym_dynamic] = ACTIONS(552), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_final] = ACTIONS(552), + [anon_sym_abstract] = ACTIONS(552), + [anon_sym_class] = ACTIONS(552), + [anon_sym_extends] = ACTIONS(552), + [anon_sym_implements] = ACTIONS(552), + [anon_sym_interface] = ACTIONS(552), + [anon_sym_typedef] = ACTIONS(552), + [anon_sym_function] = ACTIONS(552), + [anon_sym_var] = ACTIONS(552), + [aux_sym_integer_token1] = ACTIONS(552), + [aux_sym_integer_token2] = ACTIONS(550), + [aux_sym_float_token1] = ACTIONS(552), + [aux_sym_float_token2] = ACTIONS(550), + [anon_sym_true] = ACTIONS(552), + [anon_sym_false] = ACTIONS(552), + [aux_sym_string_token1] = ACTIONS(550), + [aux_sym_string_token3] = ACTIONS(550), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(552), + [anon_sym_catch] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_do] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_extern] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_inline] = ACTIONS(552), + [anon_sym_macro] = ACTIONS(552), + [anon_sym_operator] = ACTIONS(552), + [anon_sym_overload] = ACTIONS(552), + [anon_sym_override] = ACTIONS(552), + [anon_sym_private] = ACTIONS(552), + [anon_sym_public] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_static] = ACTIONS(552), + [anon_sym_try] = ACTIONS(552), + [anon_sym_untyped] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [sym__semicolon] = ACTIONS(550), }, - [92] = { + [114] = { [ts_builtin_sym_end] = ACTIONS(554), [sym_identifier] = ACTIONS(556), [anon_sym_POUND] = ACTIONS(554), @@ -17017,51 +16252,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(554), [anon_sym_RBRACE] = ACTIONS(554), [anon_sym_case] = ACTIONS(556), - [anon_sym_COLON] = ACTIONS(554), [anon_sym_default] = ACTIONS(556), [anon_sym_cast] = ACTIONS(556), [anon_sym_COMMA] = ACTIONS(554), [anon_sym_DOLLARtype] = ACTIONS(554), [anon_sym_in] = ACTIONS(556), [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_RBRACK] = ACTIONS(554), [anon_sym_this] = ACTIONS(556), - [anon_sym_DOT] = ACTIONS(556), - [anon_sym_QMARK] = ACTIONS(556), + [anon_sym_DASH_GT] = ACTIONS(554), [anon_sym_AT] = ACTIONS(556), [anon_sym_AT_COLON] = ACTIONS(554), [anon_sym_if] = ACTIONS(556), [anon_sym_else] = ACTIONS(556), [anon_sym_new] = ACTIONS(556), - [anon_sym_TILDE] = ACTIONS(554), - [anon_sym_BANG] = ACTIONS(556), - [anon_sym_DASH] = ACTIONS(556), - [anon_sym_PLUS_PLUS] = ACTIONS(554), - [anon_sym_DASH_DASH] = ACTIONS(554), - [anon_sym_PERCENT] = ACTIONS(554), - [anon_sym_STAR] = ACTIONS(554), - [anon_sym_SLASH] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(556), - [anon_sym_LT_LT] = ACTIONS(554), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_GT_GT_GT] = ACTIONS(554), - [anon_sym_AMP] = ACTIONS(556), - [anon_sym_PIPE] = ACTIONS(556), - [anon_sym_CARET] = ACTIONS(554), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [anon_sym_EQ_EQ] = ACTIONS(554), - [anon_sym_BANG_EQ] = ACTIONS(554), - [anon_sym_LT] = ACTIONS(556), - [anon_sym_LT_EQ] = ACTIONS(554), - [anon_sym_GT] = ACTIONS(556), - [anon_sym_GT_EQ] = ACTIONS(554), - [anon_sym_EQ_GT] = ACTIONS(554), - [anon_sym_QMARK_QMARK] = ACTIONS(554), - [anon_sym_EQ] = ACTIONS(556), - [sym__rangeOperator] = ACTIONS(554), + [sym__prefixUnaryOperator] = ACTIONS(556), + [sym__eitherUnaryOperator] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(554), [anon_sym_null] = ACTIONS(556), [anon_sym_dynamic] = ACTIONS(556), + [anon_sym_GT] = ACTIONS(554), [anon_sym_final] = ACTIONS(556), [anon_sym_abstract] = ACTIONS(556), [anon_sym_class] = ACTIONS(556), @@ -17101,7 +16310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(556), [sym__semicolon] = ACTIONS(554), }, - [93] = { + [115] = { [ts_builtin_sym_end] = ACTIONS(558), [sym_identifier] = ACTIONS(560), [anon_sym_POUND] = ACTIONS(558), @@ -17115,51 +16324,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(558), [anon_sym_RBRACE] = ACTIONS(558), [anon_sym_case] = ACTIONS(560), - [anon_sym_COLON] = ACTIONS(558), [anon_sym_default] = ACTIONS(560), [anon_sym_cast] = ACTIONS(560), [anon_sym_COMMA] = ACTIONS(558), [anon_sym_DOLLARtype] = ACTIONS(558), [anon_sym_in] = ACTIONS(560), [anon_sym_LBRACK] = ACTIONS(558), - [anon_sym_RBRACK] = ACTIONS(558), [anon_sym_this] = ACTIONS(560), - [anon_sym_DOT] = ACTIONS(560), - [anon_sym_QMARK] = ACTIONS(560), + [anon_sym_DASH_GT] = ACTIONS(558), [anon_sym_AT] = ACTIONS(560), [anon_sym_AT_COLON] = ACTIONS(558), [anon_sym_if] = ACTIONS(560), [anon_sym_else] = ACTIONS(560), [anon_sym_new] = ACTIONS(560), - [anon_sym_TILDE] = ACTIONS(558), - [anon_sym_BANG] = ACTIONS(560), - [anon_sym_DASH] = ACTIONS(560), - [anon_sym_PLUS_PLUS] = ACTIONS(558), - [anon_sym_DASH_DASH] = ACTIONS(558), - [anon_sym_PERCENT] = ACTIONS(558), - [anon_sym_STAR] = ACTIONS(558), - [anon_sym_SLASH] = ACTIONS(560), - [anon_sym_PLUS] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(558), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_GT_GT_GT] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(560), - [anon_sym_PIPE] = ACTIONS(560), - [anon_sym_CARET] = ACTIONS(558), - [anon_sym_AMP_AMP] = ACTIONS(558), - [anon_sym_PIPE_PIPE] = ACTIONS(558), - [anon_sym_EQ_EQ] = ACTIONS(558), - [anon_sym_BANG_EQ] = ACTIONS(558), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_LT_EQ] = ACTIONS(558), - [anon_sym_GT] = ACTIONS(560), - [anon_sym_GT_EQ] = ACTIONS(558), - [anon_sym_EQ_GT] = ACTIONS(558), - [anon_sym_QMARK_QMARK] = ACTIONS(558), - [anon_sym_EQ] = ACTIONS(560), - [sym__rangeOperator] = ACTIONS(558), + [sym__prefixUnaryOperator] = ACTIONS(560), + [sym__eitherUnaryOperator] = ACTIONS(558), + [anon_sym_EQ] = ACTIONS(558), [anon_sym_null] = ACTIONS(560), [anon_sym_dynamic] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(558), [anon_sym_final] = ACTIONS(560), [anon_sym_abstract] = ACTIONS(560), [anon_sym_class] = ACTIONS(560), @@ -17199,7 +16382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(560), [sym__semicolon] = ACTIONS(558), }, - [94] = { + [116] = { [ts_builtin_sym_end] = ACTIONS(562), [sym_identifier] = ACTIONS(564), [anon_sym_POUND] = ACTIONS(562), @@ -17213,51 +16396,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(562), [anon_sym_RBRACE] = ACTIONS(562), [anon_sym_case] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(562), [anon_sym_default] = ACTIONS(564), [anon_sym_cast] = ACTIONS(564), [anon_sym_COMMA] = ACTIONS(562), [anon_sym_DOLLARtype] = ACTIONS(562), [anon_sym_in] = ACTIONS(564), [anon_sym_LBRACK] = ACTIONS(562), - [anon_sym_RBRACK] = ACTIONS(562), [anon_sym_this] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(564), - [anon_sym_QMARK] = ACTIONS(564), + [anon_sym_DASH_GT] = ACTIONS(562), [anon_sym_AT] = ACTIONS(564), [anon_sym_AT_COLON] = ACTIONS(562), [anon_sym_if] = ACTIONS(564), [anon_sym_else] = 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), + [sym__prefixUnaryOperator] = ACTIONS(564), + [sym__eitherUnaryOperator] = ACTIONS(562), + [anon_sym_EQ] = ACTIONS(562), [anon_sym_null] = ACTIONS(564), [anon_sym_dynamic] = ACTIONS(564), + [anon_sym_GT] = ACTIONS(562), [anon_sym_final] = ACTIONS(564), [anon_sym_abstract] = ACTIONS(564), [anon_sym_class] = ACTIONS(564), @@ -17297,7 +16454,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(564), [sym__semicolon] = ACTIONS(562), }, - [95] = { + [117] = { + [ts_builtin_sym_end] = ACTIONS(494), + [sym_identifier] = ACTIONS(496), + [anon_sym_POUND] = ACTIONS(494), + [anon_sym_package] = ACTIONS(496), + [anon_sym_import] = ACTIONS(496), + [anon_sym_using] = ACTIONS(496), + [anon_sym_throw] = ACTIONS(496), + [anon_sym_LPAREN] = ACTIONS(494), + [anon_sym_RPAREN] = ACTIONS(494), + [anon_sym_switch] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(494), + [anon_sym_RBRACE] = ACTIONS(494), + [anon_sym_case] = ACTIONS(496), + [anon_sym_COLON] = ACTIONS(494), + [anon_sym_default] = ACTIONS(496), + [anon_sym_cast] = ACTIONS(496), + [anon_sym_COMMA] = ACTIONS(494), + [anon_sym_DOLLARtype] = ACTIONS(494), + [anon_sym_in] = ACTIONS(496), + [anon_sym_LBRACK] = ACTIONS(494), + [anon_sym_this] = ACTIONS(496), + [anon_sym_AT] = ACTIONS(496), + [anon_sym_AT_COLON] = ACTIONS(494), + [anon_sym_if] = ACTIONS(496), + [anon_sym_else] = ACTIONS(496), + [anon_sym_elseif] = ACTIONS(494), + [anon_sym_new] = ACTIONS(496), + [sym__prefixUnaryOperator] = ACTIONS(496), + [sym__eitherUnaryOperator] = ACTIONS(494), + [anon_sym_null] = ACTIONS(496), + [anon_sym_dynamic] = ACTIONS(496), + [anon_sym_final] = ACTIONS(496), + [anon_sym_abstract] = ACTIONS(496), + [anon_sym_class] = ACTIONS(496), + [anon_sym_extends] = ACTIONS(496), + [anon_sym_implements] = ACTIONS(496), + [anon_sym_interface] = ACTIONS(496), + [anon_sym_typedef] = ACTIONS(496), + [anon_sym_function] = ACTIONS(496), + [anon_sym_var] = ACTIONS(496), + [aux_sym_integer_token1] = ACTIONS(496), + [aux_sym_integer_token2] = ACTIONS(494), + [aux_sym_float_token1] = ACTIONS(496), + [aux_sym_float_token2] = ACTIONS(494), + [anon_sym_true] = ACTIONS(496), + [anon_sym_false] = ACTIONS(496), + [aux_sym_string_token1] = ACTIONS(494), + [aux_sym_string_token3] = ACTIONS(494), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(496), + [anon_sym_catch] = ACTIONS(496), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_do] = ACTIONS(496), + [anon_sym_enum] = ACTIONS(496), + [anon_sym_extern] = ACTIONS(496), + [anon_sym_for] = ACTIONS(496), + [anon_sym_inline] = ACTIONS(496), + [anon_sym_macro] = ACTIONS(496), + [anon_sym_operator] = ACTIONS(496), + [anon_sym_overload] = ACTIONS(496), + [anon_sym_override] = ACTIONS(496), + [anon_sym_private] = ACTIONS(496), + [anon_sym_public] = ACTIONS(496), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(496), + [anon_sym_try] = ACTIONS(496), + [anon_sym_untyped] = ACTIONS(496), + [anon_sym_while] = ACTIONS(496), + [sym__semicolon] = ACTIONS(494), + }, + [118] = { [ts_builtin_sym_end] = ACTIONS(566), [sym_identifier] = ACTIONS(568), [anon_sym_POUND] = ACTIONS(566), @@ -17311,49 +16539,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(566), [anon_sym_RBRACE] = ACTIONS(566), [anon_sym_case] = ACTIONS(568), - [anon_sym_COLON] = ACTIONS(566), [anon_sym_default] = ACTIONS(568), [anon_sym_cast] = ACTIONS(568), [anon_sym_COMMA] = ACTIONS(566), [anon_sym_DOLLARtype] = ACTIONS(566), [anon_sym_in] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_RBRACK] = ACTIONS(566), [anon_sym_this] = ACTIONS(568), - [anon_sym_DOT] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(568), + [anon_sym_DASH_GT] = ACTIONS(570), [anon_sym_AT] = ACTIONS(568), [anon_sym_AT_COLON] = ACTIONS(566), [anon_sym_if] = ACTIONS(568), [anon_sym_else] = ACTIONS(568), [anon_sym_new] = ACTIONS(568), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_BANG] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_PLUS_PLUS] = ACTIONS(566), - [anon_sym_DASH_DASH] = ACTIONS(566), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_STAR] = ACTIONS(566), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_LT_LT] = ACTIONS(566), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_GT_GT_GT] = ACTIONS(566), - [anon_sym_AMP] = ACTIONS(568), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(566), - [anon_sym_AMP_AMP] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_EQ_GT] = ACTIONS(566), - [anon_sym_QMARK_QMARK] = ACTIONS(566), - [anon_sym_EQ] = ACTIONS(568), - [sym__rangeOperator] = ACTIONS(566), + [sym__prefixUnaryOperator] = ACTIONS(568), + [sym__eitherUnaryOperator] = ACTIONS(566), + [anon_sym_EQ] = ACTIONS(566), [anon_sym_null] = ACTIONS(568), [anon_sym_dynamic] = ACTIONS(568), [anon_sym_final] = ACTIONS(568), @@ -17395,3349 +16596,1953 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(568), [sym__semicolon] = ACTIONS(566), }, - [96] = { - [ts_builtin_sym_end] = ACTIONS(570), - [sym_identifier] = ACTIONS(572), - [anon_sym_POUND] = ACTIONS(570), - [anon_sym_package] = ACTIONS(572), - [anon_sym_import] = ACTIONS(572), - [anon_sym_using] = ACTIONS(572), - [anon_sym_throw] = ACTIONS(572), - [anon_sym_LPAREN] = ACTIONS(570), - [anon_sym_RPAREN] = ACTIONS(570), - [anon_sym_switch] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(570), - [anon_sym_RBRACE] = ACTIONS(570), - [anon_sym_case] = ACTIONS(572), - [anon_sym_COLON] = ACTIONS(570), - [anon_sym_default] = ACTIONS(572), - [anon_sym_cast] = ACTIONS(572), - [anon_sym_COMMA] = ACTIONS(570), - [anon_sym_DOLLARtype] = ACTIONS(570), - [anon_sym_in] = ACTIONS(572), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(570), - [anon_sym_this] = ACTIONS(572), - [anon_sym_DOT] = ACTIONS(572), - [anon_sym_QMARK] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(572), - [anon_sym_AT_COLON] = ACTIONS(570), - [anon_sym_if] = ACTIONS(572), - [anon_sym_else] = ACTIONS(572), - [anon_sym_new] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(570), - [anon_sym_BANG] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PERCENT] = ACTIONS(570), - [anon_sym_STAR] = ACTIONS(570), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_LT_LT] = ACTIONS(570), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_GT_GT_GT] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_PIPE] = ACTIONS(572), - [anon_sym_CARET] = ACTIONS(570), - [anon_sym_AMP_AMP] = ACTIONS(570), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_EQ_EQ] = ACTIONS(570), - [anon_sym_BANG_EQ] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(572), - [anon_sym_LT_EQ] = ACTIONS(570), - [anon_sym_GT] = ACTIONS(572), - [anon_sym_GT_EQ] = ACTIONS(570), - [anon_sym_EQ_GT] = ACTIONS(570), - [anon_sym_QMARK_QMARK] = ACTIONS(570), + [119] = { + [ts_builtin_sym_end] = ACTIONS(572), + [sym_identifier] = ACTIONS(574), + [anon_sym_POUND] = ACTIONS(572), + [anon_sym_package] = ACTIONS(574), + [anon_sym_import] = ACTIONS(574), + [anon_sym_using] = ACTIONS(574), + [anon_sym_throw] = ACTIONS(574), + [anon_sym_LPAREN] = ACTIONS(572), + [anon_sym_RPAREN] = ACTIONS(572), + [anon_sym_switch] = ACTIONS(574), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_RBRACE] = ACTIONS(572), + [anon_sym_case] = ACTIONS(574), + [anon_sym_default] = ACTIONS(574), + [anon_sym_cast] = ACTIONS(574), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_DOLLARtype] = ACTIONS(572), + [anon_sym_in] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(572), + [anon_sym_this] = ACTIONS(574), + [anon_sym_DASH_GT] = ACTIONS(570), + [anon_sym_AT] = ACTIONS(574), + [anon_sym_AT_COLON] = ACTIONS(572), + [anon_sym_if] = ACTIONS(574), + [anon_sym_else] = ACTIONS(574), + [anon_sym_new] = ACTIONS(574), + [sym__prefixUnaryOperator] = ACTIONS(574), + [sym__eitherUnaryOperator] = ACTIONS(572), [anon_sym_EQ] = ACTIONS(572), - [sym__rangeOperator] = ACTIONS(570), - [anon_sym_null] = ACTIONS(572), - [anon_sym_dynamic] = ACTIONS(572), - [anon_sym_final] = ACTIONS(572), - [anon_sym_abstract] = ACTIONS(572), - [anon_sym_class] = ACTIONS(572), - [anon_sym_extends] = ACTIONS(572), - [anon_sym_implements] = ACTIONS(572), - [anon_sym_interface] = ACTIONS(572), - [anon_sym_typedef] = ACTIONS(572), - [anon_sym_function] = ACTIONS(572), - [anon_sym_var] = ACTIONS(572), - [aux_sym_integer_token1] = ACTIONS(572), - [aux_sym_integer_token2] = ACTIONS(570), - [aux_sym_float_token1] = ACTIONS(572), - [aux_sym_float_token2] = ACTIONS(570), - [anon_sym_true] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [aux_sym_string_token1] = ACTIONS(570), - [aux_sym_string_token3] = ACTIONS(570), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(572), - [anon_sym_catch] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(572), - [anon_sym_do] = ACTIONS(572), - [anon_sym_enum] = ACTIONS(572), - [anon_sym_extern] = ACTIONS(572), - [anon_sym_for] = ACTIONS(572), - [anon_sym_inline] = ACTIONS(572), - [anon_sym_macro] = ACTIONS(572), - [anon_sym_operator] = ACTIONS(572), - [anon_sym_overload] = ACTIONS(572), - [anon_sym_override] = ACTIONS(572), - [anon_sym_private] = ACTIONS(572), - [anon_sym_public] = ACTIONS(572), - [anon_sym_return] = ACTIONS(572), - [anon_sym_static] = ACTIONS(572), - [anon_sym_try] = ACTIONS(572), - [anon_sym_untyped] = ACTIONS(572), - [anon_sym_while] = ACTIONS(572), - [sym__semicolon] = ACTIONS(570), + [anon_sym_null] = ACTIONS(574), + [anon_sym_dynamic] = ACTIONS(574), + [anon_sym_final] = ACTIONS(574), + [anon_sym_abstract] = ACTIONS(574), + [anon_sym_class] = ACTIONS(574), + [anon_sym_extends] = ACTIONS(574), + [anon_sym_implements] = ACTIONS(574), + [anon_sym_interface] = ACTIONS(574), + [anon_sym_typedef] = ACTIONS(574), + [anon_sym_function] = ACTIONS(574), + [anon_sym_var] = ACTIONS(574), + [aux_sym_integer_token1] = ACTIONS(574), + [aux_sym_integer_token2] = ACTIONS(572), + [aux_sym_float_token1] = ACTIONS(574), + [aux_sym_float_token2] = ACTIONS(572), + [anon_sym_true] = ACTIONS(574), + [anon_sym_false] = ACTIONS(574), + [aux_sym_string_token1] = ACTIONS(572), + [aux_sym_string_token3] = ACTIONS(572), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(574), + [anon_sym_catch] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_do] = ACTIONS(574), + [anon_sym_enum] = ACTIONS(574), + [anon_sym_extern] = ACTIONS(574), + [anon_sym_for] = ACTIONS(574), + [anon_sym_inline] = ACTIONS(574), + [anon_sym_macro] = ACTIONS(574), + [anon_sym_operator] = ACTIONS(574), + [anon_sym_overload] = ACTIONS(574), + [anon_sym_override] = ACTIONS(574), + [anon_sym_private] = ACTIONS(574), + [anon_sym_public] = ACTIONS(574), + [anon_sym_return] = ACTIONS(574), + [anon_sym_static] = ACTIONS(574), + [anon_sym_try] = ACTIONS(574), + [anon_sym_untyped] = ACTIONS(574), + [anon_sym_while] = ACTIONS(574), + [sym__semicolon] = ACTIONS(572), }, - [97] = { - [ts_builtin_sym_end] = ACTIONS(506), - [sym_identifier] = ACTIONS(508), - [anon_sym_POUND] = ACTIONS(506), - [anon_sym_package] = ACTIONS(508), - [anon_sym_import] = ACTIONS(508), - [anon_sym_using] = ACTIONS(508), - [anon_sym_throw] = ACTIONS(508), - [anon_sym_LPAREN] = ACTIONS(424), - [anon_sym_RPAREN] = ACTIONS(506), - [anon_sym_switch] = ACTIONS(508), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_RBRACE] = ACTIONS(506), - [anon_sym_case] = ACTIONS(508), - [anon_sym_COLON] = ACTIONS(506), - [anon_sym_default] = ACTIONS(508), - [anon_sym_cast] = ACTIONS(508), - [anon_sym_COMMA] = ACTIONS(506), - [anon_sym_DOLLARtype] = ACTIONS(506), - [anon_sym_in] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(454), - [anon_sym_RBRACK] = ACTIONS(506), - [anon_sym_this] = ACTIONS(508), - [anon_sym_DOT] = ACTIONS(508), - [anon_sym_QMARK] = ACTIONS(508), - [anon_sym_AT] = ACTIONS(508), - [anon_sym_AT_COLON] = ACTIONS(506), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(508), - [anon_sym_new] = ACTIONS(508), - [anon_sym_TILDE] = ACTIONS(506), - [anon_sym_BANG] = ACTIONS(508), - [anon_sym_DASH] = ACTIONS(508), - [anon_sym_PLUS_PLUS] = ACTIONS(506), - [anon_sym_DASH_DASH] = ACTIONS(506), - [anon_sym_PERCENT] = ACTIONS(506), - [anon_sym_STAR] = ACTIONS(506), - [anon_sym_SLASH] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(506), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_GT_GT_GT] = ACTIONS(506), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_PIPE] = ACTIONS(508), - [anon_sym_CARET] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(506), - [anon_sym_PIPE_PIPE] = ACTIONS(506), - [anon_sym_EQ_EQ] = ACTIONS(506), - [anon_sym_BANG_EQ] = ACTIONS(506), - [anon_sym_LT] = ACTIONS(426), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT] = ACTIONS(508), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_EQ_GT] = ACTIONS(506), - [anon_sym_QMARK_QMARK] = ACTIONS(506), - [anon_sym_EQ] = ACTIONS(508), - [sym__rangeOperator] = ACTIONS(506), - [anon_sym_null] = ACTIONS(508), - [anon_sym_dynamic] = ACTIONS(508), - [anon_sym_final] = ACTIONS(508), - [anon_sym_abstract] = ACTIONS(508), - [anon_sym_class] = ACTIONS(508), - [anon_sym_extends] = ACTIONS(508), - [anon_sym_implements] = ACTIONS(508), - [anon_sym_interface] = ACTIONS(508), - [anon_sym_typedef] = ACTIONS(508), - [anon_sym_function] = ACTIONS(508), - [anon_sym_var] = ACTIONS(508), - [aux_sym_integer_token1] = ACTIONS(508), - [aux_sym_integer_token2] = ACTIONS(506), - [aux_sym_float_token1] = ACTIONS(508), - [aux_sym_float_token2] = ACTIONS(506), - [anon_sym_true] = ACTIONS(508), - [anon_sym_false] = ACTIONS(508), - [aux_sym_string_token1] = ACTIONS(506), - [aux_sym_string_token3] = ACTIONS(506), + [120] = { + [ts_builtin_sym_end] = ACTIONS(448), + [sym_identifier] = ACTIONS(450), + [anon_sym_POUND] = ACTIONS(448), + [anon_sym_package] = ACTIONS(450), + [anon_sym_import] = ACTIONS(450), + [anon_sym_using] = ACTIONS(450), + [anon_sym_throw] = ACTIONS(450), + [anon_sym_LPAREN] = ACTIONS(448), + [anon_sym_RPAREN] = ACTIONS(448), + [anon_sym_switch] = ACTIONS(450), + [anon_sym_LBRACE] = ACTIONS(448), + [anon_sym_RBRACE] = ACTIONS(448), + [anon_sym_case] = ACTIONS(450), + [anon_sym_COLON] = ACTIONS(448), + [anon_sym_default] = ACTIONS(450), + [anon_sym_cast] = ACTIONS(450), + [anon_sym_COMMA] = ACTIONS(448), + [anon_sym_DOLLARtype] = ACTIONS(448), + [anon_sym_in] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_this] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(450), + [anon_sym_AT_COLON] = ACTIONS(448), + [anon_sym_if] = ACTIONS(450), + [anon_sym_else] = ACTIONS(450), + [anon_sym_elseif] = ACTIONS(448), + [anon_sym_new] = ACTIONS(450), + [sym__prefixUnaryOperator] = ACTIONS(450), + [sym__eitherUnaryOperator] = ACTIONS(448), + [anon_sym_null] = ACTIONS(450), + [anon_sym_dynamic] = ACTIONS(450), + [anon_sym_final] = ACTIONS(450), + [anon_sym_abstract] = ACTIONS(450), + [anon_sym_class] = ACTIONS(450), + [anon_sym_extends] = ACTIONS(450), + [anon_sym_implements] = ACTIONS(450), + [anon_sym_interface] = ACTIONS(450), + [anon_sym_typedef] = ACTIONS(450), + [anon_sym_function] = ACTIONS(450), + [anon_sym_var] = ACTIONS(450), + [aux_sym_integer_token1] = ACTIONS(450), + [aux_sym_integer_token2] = ACTIONS(448), + [aux_sym_float_token1] = ACTIONS(450), + [aux_sym_float_token2] = ACTIONS(448), + [anon_sym_true] = ACTIONS(450), + [anon_sym_false] = ACTIONS(450), + [aux_sym_string_token1] = ACTIONS(448), + [aux_sym_string_token3] = ACTIONS(448), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(450), + [anon_sym_catch] = ACTIONS(450), + [anon_sym_continue] = ACTIONS(450), + [anon_sym_do] = ACTIONS(450), + [anon_sym_enum] = ACTIONS(450), + [anon_sym_extern] = ACTIONS(450), + [anon_sym_for] = ACTIONS(450), + [anon_sym_inline] = ACTIONS(450), + [anon_sym_macro] = ACTIONS(450), + [anon_sym_operator] = ACTIONS(450), + [anon_sym_overload] = ACTIONS(450), + [anon_sym_override] = ACTIONS(450), + [anon_sym_private] = ACTIONS(450), + [anon_sym_public] = ACTIONS(450), + [anon_sym_return] = ACTIONS(450), + [anon_sym_static] = ACTIONS(450), + [anon_sym_try] = ACTIONS(450), + [anon_sym_untyped] = ACTIONS(450), + [anon_sym_while] = ACTIONS(450), + [sym__semicolon] = ACTIONS(448), + }, + [121] = { + [ts_builtin_sym_end] = ACTIONS(486), + [sym_identifier] = ACTIONS(488), + [anon_sym_POUND] = ACTIONS(486), + [anon_sym_package] = ACTIONS(488), + [anon_sym_import] = ACTIONS(488), + [anon_sym_using] = ACTIONS(488), + [anon_sym_throw] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_RPAREN] = ACTIONS(486), + [anon_sym_switch] = ACTIONS(488), + [anon_sym_LBRACE] = ACTIONS(486), + [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_case] = ACTIONS(488), + [anon_sym_COLON] = ACTIONS(486), + [anon_sym_default] = ACTIONS(488), + [anon_sym_cast] = ACTIONS(488), + [anon_sym_COMMA] = ACTIONS(486), + [anon_sym_DOLLARtype] = ACTIONS(486), + [anon_sym_in] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(486), + [anon_sym_this] = ACTIONS(488), + [anon_sym_AT] = ACTIONS(488), + [anon_sym_AT_COLON] = ACTIONS(486), + [anon_sym_if] = ACTIONS(488), + [anon_sym_else] = ACTIONS(488), + [anon_sym_elseif] = ACTIONS(486), + [anon_sym_new] = ACTIONS(488), + [sym__prefixUnaryOperator] = ACTIONS(488), + [sym__eitherUnaryOperator] = ACTIONS(486), + [anon_sym_null] = ACTIONS(488), + [anon_sym_dynamic] = ACTIONS(488), + [anon_sym_final] = ACTIONS(488), + [anon_sym_abstract] = ACTIONS(488), + [anon_sym_class] = ACTIONS(488), + [anon_sym_extends] = ACTIONS(488), + [anon_sym_implements] = ACTIONS(488), + [anon_sym_interface] = ACTIONS(488), + [anon_sym_typedef] = ACTIONS(488), + [anon_sym_function] = ACTIONS(488), + [anon_sym_var] = ACTIONS(488), + [aux_sym_integer_token1] = ACTIONS(488), + [aux_sym_integer_token2] = ACTIONS(486), + [aux_sym_float_token1] = ACTIONS(488), + [aux_sym_float_token2] = ACTIONS(486), + [anon_sym_true] = ACTIONS(488), + [anon_sym_false] = ACTIONS(488), + [aux_sym_string_token1] = ACTIONS(486), + [aux_sym_string_token3] = ACTIONS(486), [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(508), - [anon_sym_catch] = ACTIONS(508), - [anon_sym_continue] = ACTIONS(508), - [anon_sym_do] = ACTIONS(508), - [anon_sym_enum] = ACTIONS(508), - [anon_sym_extern] = ACTIONS(508), - [anon_sym_for] = ACTIONS(508), - [anon_sym_inline] = ACTIONS(508), - [anon_sym_macro] = ACTIONS(508), - [anon_sym_operator] = ACTIONS(508), - [anon_sym_overload] = ACTIONS(508), - [anon_sym_override] = ACTIONS(508), - [anon_sym_private] = ACTIONS(508), - [anon_sym_public] = ACTIONS(508), - [anon_sym_return] = ACTIONS(508), - [anon_sym_static] = ACTIONS(508), - [anon_sym_try] = ACTIONS(508), - [anon_sym_untyped] = ACTIONS(508), - [anon_sym_while] = ACTIONS(508), - [sym__semicolon] = ACTIONS(506), + [anon_sym_break] = ACTIONS(488), + [anon_sym_catch] = ACTIONS(488), + [anon_sym_continue] = ACTIONS(488), + [anon_sym_do] = ACTIONS(488), + [anon_sym_enum] = ACTIONS(488), + [anon_sym_extern] = ACTIONS(488), + [anon_sym_for] = ACTIONS(488), + [anon_sym_inline] = ACTIONS(488), + [anon_sym_macro] = ACTIONS(488), + [anon_sym_operator] = ACTIONS(488), + [anon_sym_overload] = ACTIONS(488), + [anon_sym_override] = ACTIONS(488), + [anon_sym_private] = ACTIONS(488), + [anon_sym_public] = ACTIONS(488), + [anon_sym_return] = ACTIONS(488), + [anon_sym_static] = ACTIONS(488), + [anon_sym_try] = ACTIONS(488), + [anon_sym_untyped] = ACTIONS(488), + [anon_sym_while] = ACTIONS(488), + [sym__semicolon] = ACTIONS(486), }, - [98] = { - [ts_builtin_sym_end] = ACTIONS(574), - [sym_identifier] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(574), - [anon_sym_package] = ACTIONS(576), - [anon_sym_import] = ACTIONS(576), - [anon_sym_using] = ACTIONS(576), - [anon_sym_throw] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(574), - [anon_sym_RPAREN] = ACTIONS(574), - [anon_sym_switch] = ACTIONS(576), - [anon_sym_LBRACE] = ACTIONS(574), - [anon_sym_RBRACE] = ACTIONS(574), - [anon_sym_case] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(574), - [anon_sym_default] = ACTIONS(576), - [anon_sym_cast] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(574), - [anon_sym_DOLLARtype] = ACTIONS(574), - [anon_sym_in] = ACTIONS(576), - [anon_sym_LBRACK] = ACTIONS(574), - [anon_sym_RBRACK] = ACTIONS(574), - [anon_sym_this] = ACTIONS(576), - [anon_sym_DOT] = ACTIONS(576), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym_AT_COLON] = ACTIONS(574), - [anon_sym_if] = ACTIONS(576), - [anon_sym_else] = ACTIONS(576), - [anon_sym_new] = ACTIONS(576), - [anon_sym_TILDE] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(576), - [anon_sym_PLUS_PLUS] = ACTIONS(574), - [anon_sym_DASH_DASH] = ACTIONS(574), - [anon_sym_PERCENT] = ACTIONS(574), - [anon_sym_STAR] = ACTIONS(574), - [anon_sym_SLASH] = ACTIONS(576), - [anon_sym_PLUS] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(574), - [anon_sym_GT_GT] = ACTIONS(576), - [anon_sym_GT_GT_GT] = ACTIONS(574), - [anon_sym_AMP] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(576), - [anon_sym_CARET] = ACTIONS(574), - [anon_sym_AMP_AMP] = ACTIONS(574), - [anon_sym_PIPE_PIPE] = ACTIONS(574), - [anon_sym_EQ_EQ] = ACTIONS(574), - [anon_sym_BANG_EQ] = ACTIONS(574), - [anon_sym_LT] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(574), - [anon_sym_GT] = ACTIONS(576), - [anon_sym_GT_EQ] = ACTIONS(574), - [anon_sym_EQ_GT] = ACTIONS(574), - [anon_sym_QMARK_QMARK] = ACTIONS(574), + [122] = { + [ts_builtin_sym_end] = ACTIONS(576), + [sym_identifier] = ACTIONS(578), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_package] = ACTIONS(578), + [anon_sym_import] = ACTIONS(578), + [anon_sym_using] = ACTIONS(578), + [anon_sym_throw] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(576), + [anon_sym_RPAREN] = ACTIONS(576), + [anon_sym_switch] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_RBRACE] = ACTIONS(576), + [anon_sym_case] = ACTIONS(578), + [anon_sym_default] = ACTIONS(578), + [anon_sym_cast] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_DOLLARtype] = ACTIONS(576), + [anon_sym_in] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_this] = ACTIONS(578), + [anon_sym_DASH_GT] = ACTIONS(570), + [anon_sym_AT] = ACTIONS(578), + [anon_sym_AT_COLON] = ACTIONS(576), + [anon_sym_if] = ACTIONS(578), + [anon_sym_else] = ACTIONS(578), + [anon_sym_new] = ACTIONS(578), + [sym__prefixUnaryOperator] = ACTIONS(578), + [sym__eitherUnaryOperator] = ACTIONS(576), [anon_sym_EQ] = ACTIONS(576), - [sym__rangeOperator] = ACTIONS(574), - [anon_sym_null] = ACTIONS(576), - [anon_sym_dynamic] = ACTIONS(576), - [anon_sym_final] = ACTIONS(576), - [anon_sym_abstract] = ACTIONS(576), - [anon_sym_class] = ACTIONS(576), - [anon_sym_extends] = ACTIONS(576), - [anon_sym_implements] = ACTIONS(576), - [anon_sym_interface] = ACTIONS(576), - [anon_sym_typedef] = ACTIONS(576), - [anon_sym_function] = ACTIONS(576), - [anon_sym_var] = ACTIONS(576), - [aux_sym_integer_token1] = ACTIONS(576), - [aux_sym_integer_token2] = ACTIONS(574), - [aux_sym_float_token1] = ACTIONS(576), - [aux_sym_float_token2] = ACTIONS(574), - [anon_sym_true] = ACTIONS(576), - [anon_sym_false] = ACTIONS(576), - [aux_sym_string_token1] = ACTIONS(574), - [aux_sym_string_token3] = ACTIONS(574), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(576), - [anon_sym_catch] = ACTIONS(576), - [anon_sym_continue] = ACTIONS(576), - [anon_sym_do] = ACTIONS(576), - [anon_sym_enum] = ACTIONS(576), - [anon_sym_extern] = ACTIONS(576), - [anon_sym_for] = ACTIONS(576), - [anon_sym_inline] = ACTIONS(576), - [anon_sym_macro] = ACTIONS(576), - [anon_sym_operator] = ACTIONS(576), - [anon_sym_overload] = ACTIONS(576), - [anon_sym_override] = ACTIONS(576), - [anon_sym_private] = ACTIONS(576), - [anon_sym_public] = ACTIONS(576), - [anon_sym_return] = ACTIONS(576), - [anon_sym_static] = ACTIONS(576), - [anon_sym_try] = ACTIONS(576), - [anon_sym_untyped] = ACTIONS(576), - [anon_sym_while] = ACTIONS(576), - [sym__semicolon] = ACTIONS(574), + [anon_sym_null] = ACTIONS(578), + [anon_sym_dynamic] = ACTIONS(578), + [anon_sym_final] = ACTIONS(578), + [anon_sym_abstract] = ACTIONS(578), + [anon_sym_class] = ACTIONS(578), + [anon_sym_extends] = ACTIONS(578), + [anon_sym_implements] = ACTIONS(578), + [anon_sym_interface] = ACTIONS(578), + [anon_sym_typedef] = ACTIONS(578), + [anon_sym_function] = ACTIONS(578), + [anon_sym_var] = ACTIONS(578), + [aux_sym_integer_token1] = ACTIONS(578), + [aux_sym_integer_token2] = ACTIONS(576), + [aux_sym_float_token1] = ACTIONS(578), + [aux_sym_float_token2] = ACTIONS(576), + [anon_sym_true] = ACTIONS(578), + [anon_sym_false] = ACTIONS(578), + [aux_sym_string_token1] = ACTIONS(576), + [aux_sym_string_token3] = ACTIONS(576), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(578), + [anon_sym_catch] = ACTIONS(578), + [anon_sym_continue] = ACTIONS(578), + [anon_sym_do] = ACTIONS(578), + [anon_sym_enum] = ACTIONS(578), + [anon_sym_extern] = ACTIONS(578), + [anon_sym_for] = ACTIONS(578), + [anon_sym_inline] = ACTIONS(578), + [anon_sym_macro] = ACTIONS(578), + [anon_sym_operator] = ACTIONS(578), + [anon_sym_overload] = ACTIONS(578), + [anon_sym_override] = ACTIONS(578), + [anon_sym_private] = ACTIONS(578), + [anon_sym_public] = ACTIONS(578), + [anon_sym_return] = ACTIONS(578), + [anon_sym_static] = ACTIONS(578), + [anon_sym_try] = ACTIONS(578), + [anon_sym_untyped] = ACTIONS(578), + [anon_sym_while] = ACTIONS(578), + [sym__semicolon] = ACTIONS(576), }, - [99] = { - [ts_builtin_sym_end] = ACTIONS(578), - [sym_identifier] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(578), - [anon_sym_package] = 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_LBRACE] = ACTIONS(578), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_case] = ACTIONS(580), - [anon_sym_COLON] = ACTIONS(578), - [anon_sym_default] = ACTIONS(580), - [anon_sym_cast] = ACTIONS(580), - [anon_sym_COMMA] = ACTIONS(578), - [anon_sym_DOLLARtype] = ACTIONS(578), - [anon_sym_in] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_RBRACK] = ACTIONS(578), - [anon_sym_this] = ACTIONS(580), - [anon_sym_DOT] = 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_else] = 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_dynamic] = ACTIONS(580), - [anon_sym_final] = ACTIONS(580), - [anon_sym_abstract] = ACTIONS(580), - [anon_sym_class] = ACTIONS(580), - [anon_sym_extends] = ACTIONS(580), - [anon_sym_implements] = 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), - [anon_sym_break] = ACTIONS(580), - [anon_sym_catch] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(580), - [anon_sym_do] = ACTIONS(580), - [anon_sym_enum] = ACTIONS(580), - [anon_sym_extern] = ACTIONS(580), - [anon_sym_for] = ACTIONS(580), - [anon_sym_inline] = ACTIONS(580), - [anon_sym_macro] = ACTIONS(580), - [anon_sym_operator] = ACTIONS(580), - [anon_sym_overload] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_return] = ACTIONS(580), - [anon_sym_static] = ACTIONS(580), - [anon_sym_try] = ACTIONS(580), - [anon_sym_untyped] = ACTIONS(580), - [anon_sym_while] = ACTIONS(580), - [sym__semicolon] = ACTIONS(578), + [123] = { + [sym_type_params] = STATE(112), + [ts_builtin_sym_end] = ACTIONS(580), + [sym_identifier] = ACTIONS(583), + [anon_sym_POUND] = ACTIONS(580), + [anon_sym_package] = ACTIONS(583), + [anon_sym_import] = ACTIONS(583), + [anon_sym_using] = ACTIONS(583), + [anon_sym_throw] = ACTIONS(583), + [anon_sym_LPAREN] = ACTIONS(580), + [anon_sym_switch] = ACTIONS(583), + [anon_sym_LBRACE] = ACTIONS(580), + [anon_sym_RBRACE] = ACTIONS(580), + [anon_sym_case] = ACTIONS(583), + [anon_sym_default] = ACTIONS(583), + [anon_sym_cast] = ACTIONS(583), + [anon_sym_DOLLARtype] = ACTIONS(580), + [anon_sym_in] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(580), + [anon_sym_this] = ACTIONS(583), + [anon_sym_DASH_GT] = ACTIONS(528), + [anon_sym_AT] = ACTIONS(583), + [anon_sym_AT_COLON] = ACTIONS(580), + [anon_sym_if] = ACTIONS(583), + [anon_sym_else] = ACTIONS(583), + [anon_sym_new] = ACTIONS(583), + [sym__prefixUnaryOperator] = ACTIONS(583), + [sym__eitherUnaryOperator] = ACTIONS(580), + [anon_sym_null] = ACTIONS(583), + [anon_sym_dynamic] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_final] = ACTIONS(583), + [anon_sym_abstract] = ACTIONS(583), + [anon_sym_class] = ACTIONS(583), + [anon_sym_extends] = ACTIONS(583), + [anon_sym_implements] = ACTIONS(583), + [anon_sym_interface] = ACTIONS(583), + [anon_sym_typedef] = ACTIONS(583), + [anon_sym_function] = ACTIONS(583), + [anon_sym_var] = ACTIONS(583), + [aux_sym_integer_token1] = ACTIONS(583), + [aux_sym_integer_token2] = ACTIONS(580), + [aux_sym_float_token1] = ACTIONS(583), + [aux_sym_float_token2] = ACTIONS(580), + [anon_sym_true] = ACTIONS(583), + [anon_sym_false] = ACTIONS(583), + [aux_sym_string_token1] = ACTIONS(580), + [aux_sym_string_token3] = ACTIONS(580), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(583), + [anon_sym_catch] = ACTIONS(583), + [anon_sym_continue] = ACTIONS(583), + [anon_sym_do] = ACTIONS(583), + [anon_sym_enum] = ACTIONS(583), + [anon_sym_extern] = ACTIONS(583), + [anon_sym_for] = ACTIONS(583), + [anon_sym_inline] = ACTIONS(583), + [anon_sym_macro] = ACTIONS(583), + [anon_sym_operator] = ACTIONS(583), + [anon_sym_overload] = ACTIONS(583), + [anon_sym_override] = ACTIONS(583), + [anon_sym_private] = ACTIONS(583), + [anon_sym_public] = ACTIONS(583), + [anon_sym_return] = ACTIONS(583), + [anon_sym_static] = ACTIONS(583), + [anon_sym_try] = ACTIONS(583), + [anon_sym_untyped] = ACTIONS(583), + [anon_sym_while] = ACTIONS(583), + [sym__semicolon] = ACTIONS(580), }, - [100] = { - [ts_builtin_sym_end] = ACTIONS(582), - [sym_identifier] = ACTIONS(584), - [anon_sym_POUND] = ACTIONS(582), - [anon_sym_package] = ACTIONS(584), - [anon_sym_import] = ACTIONS(584), - [anon_sym_using] = ACTIONS(584), - [anon_sym_throw] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_RPAREN] = ACTIONS(582), - [anon_sym_switch] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(582), - [anon_sym_RBRACE] = ACTIONS(582), - [anon_sym_case] = ACTIONS(584), - [anon_sym_COLON] = ACTIONS(582), - [anon_sym_default] = ACTIONS(584), - [anon_sym_cast] = ACTIONS(584), - [anon_sym_COMMA] = ACTIONS(582), - [anon_sym_DOLLARtype] = ACTIONS(582), - [anon_sym_in] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_RBRACK] = ACTIONS(582), - [anon_sym_this] = ACTIONS(584), - [anon_sym_DOT] = ACTIONS(584), - [anon_sym_QMARK] = ACTIONS(584), - [anon_sym_AT] = ACTIONS(584), - [anon_sym_AT_COLON] = ACTIONS(582), - [anon_sym_if] = ACTIONS(584), - [anon_sym_else] = ACTIONS(584), - [anon_sym_new] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(582), - [anon_sym_BANG] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(584), - [anon_sym_PLUS_PLUS] = ACTIONS(582), - [anon_sym_DASH_DASH] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_GT_GT] = ACTIONS(584), - [anon_sym_GT_GT_GT] = ACTIONS(582), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(584), - [anon_sym_CARET] = ACTIONS(582), - [anon_sym_AMP_AMP] = ACTIONS(582), - [anon_sym_PIPE_PIPE] = ACTIONS(582), - [anon_sym_EQ_EQ] = ACTIONS(582), - [anon_sym_BANG_EQ] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(584), - [anon_sym_GT_EQ] = ACTIONS(582), - [anon_sym_EQ_GT] = ACTIONS(582), - [anon_sym_QMARK_QMARK] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(584), - [sym__rangeOperator] = ACTIONS(582), - [anon_sym_null] = ACTIONS(584), - [anon_sym_dynamic] = ACTIONS(584), - [anon_sym_final] = ACTIONS(584), - [anon_sym_abstract] = ACTIONS(584), - [anon_sym_class] = ACTIONS(584), - [anon_sym_extends] = ACTIONS(584), - [anon_sym_implements] = ACTIONS(584), - [anon_sym_interface] = ACTIONS(584), - [anon_sym_typedef] = ACTIONS(584), - [anon_sym_function] = ACTIONS(584), - [anon_sym_var] = ACTIONS(584), - [aux_sym_integer_token1] = ACTIONS(584), - [aux_sym_integer_token2] = ACTIONS(582), - [aux_sym_float_token1] = ACTIONS(584), - [aux_sym_float_token2] = ACTIONS(582), - [anon_sym_true] = ACTIONS(584), - [anon_sym_false] = ACTIONS(584), - [aux_sym_string_token1] = ACTIONS(582), - [aux_sym_string_token3] = ACTIONS(582), + [124] = { + [sym_type_params] = STATE(112), + [ts_builtin_sym_end] = ACTIONS(586), + [sym_identifier] = ACTIONS(589), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_package] = ACTIONS(589), + [anon_sym_import] = ACTIONS(589), + [anon_sym_using] = ACTIONS(589), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_switch] = ACTIONS(589), + [anon_sym_LBRACE] = ACTIONS(586), + [anon_sym_RBRACE] = ACTIONS(586), + [anon_sym_case] = ACTIONS(589), + [anon_sym_default] = ACTIONS(589), + [anon_sym_cast] = ACTIONS(589), + [anon_sym_DOLLARtype] = ACTIONS(586), + [anon_sym_in] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(586), + [anon_sym_this] = ACTIONS(589), + [anon_sym_DASH_GT] = ACTIONS(528), + [anon_sym_AT] = ACTIONS(589), + [anon_sym_AT_COLON] = ACTIONS(586), + [anon_sym_if] = ACTIONS(589), + [anon_sym_else] = ACTIONS(589), + [anon_sym_new] = ACTIONS(589), + [sym__prefixUnaryOperator] = ACTIONS(589), + [sym__eitherUnaryOperator] = ACTIONS(586), + [anon_sym_null] = ACTIONS(589), + [anon_sym_dynamic] = ACTIONS(589), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_final] = ACTIONS(589), + [anon_sym_abstract] = ACTIONS(589), + [anon_sym_class] = ACTIONS(589), + [anon_sym_extends] = ACTIONS(589), + [anon_sym_implements] = ACTIONS(589), + [anon_sym_interface] = ACTIONS(589), + [anon_sym_typedef] = ACTIONS(589), + [anon_sym_function] = ACTIONS(589), + [anon_sym_var] = ACTIONS(589), + [aux_sym_integer_token1] = ACTIONS(589), + [aux_sym_integer_token2] = ACTIONS(586), + [aux_sym_float_token1] = ACTIONS(589), + [aux_sym_float_token2] = ACTIONS(586), + [anon_sym_true] = ACTIONS(589), + [anon_sym_false] = ACTIONS(589), + [aux_sym_string_token1] = ACTIONS(586), + [aux_sym_string_token3] = ACTIONS(586), [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(584), - [anon_sym_catch] = ACTIONS(584), - [anon_sym_continue] = ACTIONS(584), - [anon_sym_do] = ACTIONS(584), - [anon_sym_enum] = ACTIONS(584), - [anon_sym_extern] = ACTIONS(584), - [anon_sym_for] = ACTIONS(584), - [anon_sym_inline] = ACTIONS(584), - [anon_sym_macro] = ACTIONS(584), - [anon_sym_operator] = ACTIONS(584), - [anon_sym_overload] = ACTIONS(584), - [anon_sym_override] = ACTIONS(584), - [anon_sym_private] = ACTIONS(584), - [anon_sym_public] = ACTIONS(584), - [anon_sym_return] = ACTIONS(584), - [anon_sym_static] = ACTIONS(584), - [anon_sym_try] = ACTIONS(584), - [anon_sym_untyped] = ACTIONS(584), - [anon_sym_while] = ACTIONS(584), - [sym__semicolon] = ACTIONS(582), + [anon_sym_break] = ACTIONS(589), + [anon_sym_catch] = ACTIONS(589), + [anon_sym_continue] = ACTIONS(589), + [anon_sym_do] = ACTIONS(589), + [anon_sym_enum] = ACTIONS(589), + [anon_sym_extern] = ACTIONS(589), + [anon_sym_for] = ACTIONS(589), + [anon_sym_inline] = ACTIONS(589), + [anon_sym_macro] = ACTIONS(589), + [anon_sym_operator] = ACTIONS(589), + [anon_sym_overload] = ACTIONS(589), + [anon_sym_override] = ACTIONS(589), + [anon_sym_private] = ACTIONS(589), + [anon_sym_public] = ACTIONS(589), + [anon_sym_return] = ACTIONS(589), + [anon_sym_static] = ACTIONS(589), + [anon_sym_try] = ACTIONS(589), + [anon_sym_untyped] = ACTIONS(589), + [anon_sym_while] = ACTIONS(589), + [sym__semicolon] = ACTIONS(586), }, - [101] = { - [ts_builtin_sym_end] = ACTIONS(424), - [sym_identifier] = ACTIONS(426), - [anon_sym_POUND] = ACTIONS(424), - [anon_sym_package] = ACTIONS(426), - [anon_sym_import] = ACTIONS(426), - [anon_sym_using] = ACTIONS(426), - [anon_sym_throw] = ACTIONS(426), - [anon_sym_LPAREN] = ACTIONS(424), - [anon_sym_RPAREN] = ACTIONS(424), - [anon_sym_switch] = ACTIONS(426), - [anon_sym_LBRACE] = ACTIONS(424), - [anon_sym_RBRACE] = ACTIONS(424), - [anon_sym_case] = ACTIONS(426), - [anon_sym_default] = ACTIONS(426), - [anon_sym_cast] = ACTIONS(426), - [anon_sym_COMMA] = ACTIONS(424), - [anon_sym_DOLLARtype] = ACTIONS(424), - [anon_sym_in] = ACTIONS(426), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_this] = ACTIONS(426), - [anon_sym_DOT] = ACTIONS(426), - [anon_sym_QMARK] = ACTIONS(426), - [anon_sym_DASH_GT] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(426), - [anon_sym_AT_COLON] = ACTIONS(424), - [anon_sym_if] = ACTIONS(426), - [anon_sym_else] = ACTIONS(426), - [anon_sym_new] = ACTIONS(426), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_BANG] = ACTIONS(426), - [anon_sym_DASH] = ACTIONS(426), - [anon_sym_PLUS_PLUS] = ACTIONS(424), - [anon_sym_DASH_DASH] = ACTIONS(424), - [anon_sym_PERCENT] = ACTIONS(424), - [anon_sym_STAR] = ACTIONS(424), - [anon_sym_SLASH] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(426), - [anon_sym_LT_LT] = ACTIONS(424), - [anon_sym_GT_GT] = ACTIONS(426), - [anon_sym_GT_GT_GT] = ACTIONS(424), - [anon_sym_AMP] = ACTIONS(426), - [anon_sym_PIPE] = ACTIONS(426), - [anon_sym_CARET] = ACTIONS(424), - [anon_sym_AMP_AMP] = ACTIONS(424), - [anon_sym_PIPE_PIPE] = ACTIONS(424), - [anon_sym_EQ_EQ] = ACTIONS(424), - [anon_sym_BANG_EQ] = ACTIONS(424), - [anon_sym_LT] = ACTIONS(426), - [anon_sym_LT_EQ] = ACTIONS(424), - [anon_sym_GT] = ACTIONS(426), - [anon_sym_GT_EQ] = ACTIONS(424), - [anon_sym_EQ_GT] = ACTIONS(424), - [anon_sym_QMARK_QMARK] = ACTIONS(424), - [anon_sym_EQ] = ACTIONS(426), - [sym__rangeOperator] = ACTIONS(424), - [anon_sym_null] = ACTIONS(426), - [anon_sym_dynamic] = ACTIONS(426), - [anon_sym_final] = ACTIONS(426), - [anon_sym_abstract] = ACTIONS(426), - [anon_sym_class] = ACTIONS(426), - [anon_sym_extends] = ACTIONS(426), - [anon_sym_implements] = ACTIONS(426), - [anon_sym_interface] = ACTIONS(426), - [anon_sym_typedef] = ACTIONS(426), - [anon_sym_function] = ACTIONS(426), - [anon_sym_var] = ACTIONS(426), - [aux_sym_integer_token1] = ACTIONS(426), - [aux_sym_integer_token2] = ACTIONS(424), - [aux_sym_float_token1] = ACTIONS(426), - [aux_sym_float_token2] = ACTIONS(424), - [anon_sym_true] = ACTIONS(426), - [anon_sym_false] = ACTIONS(426), - [aux_sym_string_token1] = ACTIONS(424), - [aux_sym_string_token3] = ACTIONS(424), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(426), - [anon_sym_catch] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(426), - [anon_sym_do] = ACTIONS(426), - [anon_sym_enum] = ACTIONS(426), - [anon_sym_extern] = ACTIONS(426), - [anon_sym_for] = ACTIONS(426), - [anon_sym_inline] = ACTIONS(426), - [anon_sym_macro] = ACTIONS(426), - [anon_sym_operator] = ACTIONS(426), - [anon_sym_overload] = ACTIONS(426), - [anon_sym_override] = ACTIONS(426), - [anon_sym_private] = ACTIONS(426), - [anon_sym_public] = ACTIONS(426), - [anon_sym_return] = ACTIONS(426), - [anon_sym_static] = ACTIONS(426), - [anon_sym_try] = ACTIONS(426), - [anon_sym_untyped] = ACTIONS(426), - [anon_sym_while] = ACTIONS(426), - [sym__semicolon] = ACTIONS(424), - }, - [102] = { - [ts_builtin_sym_end] = ACTIONS(472), - [sym_identifier] = ACTIONS(474), - [anon_sym_POUND] = ACTIONS(472), - [anon_sym_package] = ACTIONS(474), - [anon_sym_import] = ACTIONS(474), - [anon_sym_using] = ACTIONS(474), - [anon_sym_throw] = ACTIONS(474), - [anon_sym_LPAREN] = ACTIONS(472), - [anon_sym_RPAREN] = ACTIONS(472), - [anon_sym_switch] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(472), - [anon_sym_RBRACE] = ACTIONS(472), - [anon_sym_case] = ACTIONS(474), - [anon_sym_default] = ACTIONS(474), - [anon_sym_cast] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(472), - [anon_sym_DOLLARtype] = ACTIONS(472), - [anon_sym_in] = ACTIONS(474), - [anon_sym_LBRACK] = ACTIONS(472), - [anon_sym_this] = ACTIONS(474), - [anon_sym_DOT] = ACTIONS(474), - [anon_sym_QMARK] = ACTIONS(474), - [anon_sym_DASH_GT] = ACTIONS(472), - [anon_sym_AT] = ACTIONS(474), - [anon_sym_AT_COLON] = ACTIONS(472), - [anon_sym_if] = ACTIONS(474), - [anon_sym_else] = ACTIONS(474), - [anon_sym_new] = ACTIONS(474), - [anon_sym_TILDE] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_PLUS_PLUS] = ACTIONS(472), - [anon_sym_DASH_DASH] = ACTIONS(472), - [anon_sym_PERCENT] = ACTIONS(472), - [anon_sym_STAR] = ACTIONS(472), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_PLUS] = ACTIONS(474), - [anon_sym_LT_LT] = ACTIONS(472), - [anon_sym_GT_GT] = ACTIONS(474), - [anon_sym_GT_GT_GT] = ACTIONS(472), - [anon_sym_AMP] = ACTIONS(474), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_CARET] = ACTIONS(472), - [anon_sym_AMP_AMP] = ACTIONS(472), - [anon_sym_PIPE_PIPE] = ACTIONS(472), - [anon_sym_EQ_EQ] = ACTIONS(472), - [anon_sym_BANG_EQ] = ACTIONS(472), - [anon_sym_LT] = ACTIONS(474), - [anon_sym_LT_EQ] = ACTIONS(472), - [anon_sym_GT] = ACTIONS(474), - [anon_sym_GT_EQ] = ACTIONS(472), - [anon_sym_EQ_GT] = ACTIONS(472), - [anon_sym_QMARK_QMARK] = ACTIONS(472), - [anon_sym_EQ] = ACTIONS(474), - [sym__rangeOperator] = ACTIONS(472), - [anon_sym_null] = ACTIONS(474), - [anon_sym_dynamic] = ACTIONS(474), - [anon_sym_final] = ACTIONS(474), - [anon_sym_abstract] = ACTIONS(474), - [anon_sym_class] = ACTIONS(474), - [anon_sym_extends] = ACTIONS(474), - [anon_sym_implements] = ACTIONS(474), - [anon_sym_interface] = ACTIONS(474), - [anon_sym_typedef] = ACTIONS(474), - [anon_sym_function] = ACTIONS(474), - [anon_sym_var] = ACTIONS(474), - [aux_sym_integer_token1] = ACTIONS(474), - [aux_sym_integer_token2] = ACTIONS(472), - [aux_sym_float_token1] = ACTIONS(474), - [aux_sym_float_token2] = ACTIONS(472), - [anon_sym_true] = ACTIONS(474), - [anon_sym_false] = ACTIONS(474), - [aux_sym_string_token1] = ACTIONS(472), - [aux_sym_string_token3] = ACTIONS(472), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(474), - [anon_sym_catch] = ACTIONS(474), - [anon_sym_continue] = ACTIONS(474), - [anon_sym_do] = ACTIONS(474), - [anon_sym_enum] = ACTIONS(474), - [anon_sym_extern] = ACTIONS(474), - [anon_sym_for] = ACTIONS(474), - [anon_sym_inline] = ACTIONS(474), - [anon_sym_macro] = ACTIONS(474), - [anon_sym_operator] = ACTIONS(474), - [anon_sym_overload] = ACTIONS(474), - [anon_sym_override] = ACTIONS(474), - [anon_sym_private] = ACTIONS(474), - [anon_sym_public] = ACTIONS(474), - [anon_sym_return] = ACTIONS(474), - [anon_sym_static] = ACTIONS(474), - [anon_sym_try] = ACTIONS(474), - [anon_sym_untyped] = ACTIONS(474), - [anon_sym_while] = ACTIONS(474), - [sym__semicolon] = ACTIONS(472), - }, - [103] = { - [ts_builtin_sym_end] = ACTIONS(404), - [sym_identifier] = ACTIONS(406), - [anon_sym_POUND] = ACTIONS(404), - [anon_sym_package] = ACTIONS(406), - [anon_sym_import] = ACTIONS(406), - [anon_sym_using] = ACTIONS(406), - [anon_sym_throw] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_switch] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(404), - [anon_sym_RBRACE] = ACTIONS(404), - [anon_sym_case] = ACTIONS(406), - [anon_sym_default] = ACTIONS(406), - [anon_sym_cast] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(404), - [anon_sym_DOLLARtype] = ACTIONS(404), - [anon_sym_in] = ACTIONS(406), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_this] = ACTIONS(406), - [anon_sym_DOT] = ACTIONS(406), - [anon_sym_QMARK] = ACTIONS(406), - [anon_sym_AT] = ACTIONS(406), - [anon_sym_AT_COLON] = ACTIONS(404), - [anon_sym_if] = ACTIONS(406), - [anon_sym_else] = ACTIONS(406), - [anon_sym_new] = ACTIONS(406), - [anon_sym_TILDE] = ACTIONS(404), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(404), - [anon_sym_DASH_DASH] = ACTIONS(404), - [anon_sym_PERCENT] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_SLASH] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(404), - [anon_sym_GT_GT] = ACTIONS(406), - [anon_sym_GT_GT_GT] = ACTIONS(404), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_CARET] = ACTIONS(404), - [anon_sym_AMP_AMP] = ACTIONS(404), - [anon_sym_PIPE_PIPE] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(404), - [anon_sym_BANG_EQ] = ACTIONS(404), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(404), - [anon_sym_GT] = ACTIONS(406), - [anon_sym_GT_EQ] = ACTIONS(404), - [anon_sym_EQ_GT] = ACTIONS(404), - [anon_sym_QMARK_QMARK] = ACTIONS(404), - [anon_sym_EQ] = ACTIONS(406), - [sym__rangeOperator] = ACTIONS(404), - [anon_sym_null] = ACTIONS(406), - [anon_sym_dynamic] = ACTIONS(406), - [anon_sym_final] = ACTIONS(406), - [anon_sym_abstract] = ACTIONS(406), - [anon_sym_class] = ACTIONS(406), - [anon_sym_extends] = ACTIONS(406), - [anon_sym_implements] = ACTIONS(406), - [anon_sym_interface] = ACTIONS(406), - [anon_sym_typedef] = ACTIONS(406), - [anon_sym_function] = ACTIONS(406), - [anon_sym_var] = ACTIONS(406), - [aux_sym_integer_token1] = ACTIONS(406), - [aux_sym_integer_token2] = ACTIONS(404), - [aux_sym_float_token1] = ACTIONS(406), - [aux_sym_float_token2] = ACTIONS(404), - [anon_sym_true] = ACTIONS(406), - [anon_sym_false] = ACTIONS(406), - [aux_sym_string_token1] = ACTIONS(404), - [aux_sym_string_token3] = ACTIONS(404), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(406), - [anon_sym_catch] = ACTIONS(406), - [anon_sym_continue] = ACTIONS(406), - [anon_sym_do] = ACTIONS(406), - [anon_sym_enum] = ACTIONS(406), - [anon_sym_extern] = ACTIONS(406), - [anon_sym_for] = ACTIONS(406), - [anon_sym_inline] = ACTIONS(406), - [anon_sym_macro] = ACTIONS(406), - [anon_sym_operator] = ACTIONS(406), - [anon_sym_overload] = ACTIONS(406), - [anon_sym_override] = ACTIONS(406), - [anon_sym_private] = ACTIONS(406), - [anon_sym_public] = ACTIONS(406), - [anon_sym_return] = ACTIONS(406), - [anon_sym_static] = ACTIONS(406), - [anon_sym_try] = ACTIONS(406), - [anon_sym_untyped] = ACTIONS(406), - [anon_sym_while] = ACTIONS(406), - [sym__semicolon] = ACTIONS(404), - }, - [104] = { - [ts_builtin_sym_end] = ACTIONS(412), - [sym_identifier] = ACTIONS(414), - [anon_sym_POUND] = ACTIONS(412), - [anon_sym_package] = ACTIONS(414), - [anon_sym_import] = ACTIONS(414), - [anon_sym_using] = ACTIONS(414), - [anon_sym_throw] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(412), - [anon_sym_RPAREN] = ACTIONS(412), - [anon_sym_switch] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_RBRACE] = ACTIONS(412), - [anon_sym_case] = ACTIONS(414), - [anon_sym_default] = ACTIONS(414), - [anon_sym_cast] = ACTIONS(414), - [anon_sym_COMMA] = ACTIONS(412), - [anon_sym_DOLLARtype] = ACTIONS(412), - [anon_sym_in] = ACTIONS(414), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_this] = ACTIONS(414), - [anon_sym_DOT] = ACTIONS(414), - [anon_sym_QMARK] = ACTIONS(414), - [anon_sym_AT] = ACTIONS(414), - [anon_sym_AT_COLON] = ACTIONS(412), - [anon_sym_if] = ACTIONS(414), - [anon_sym_else] = ACTIONS(414), - [anon_sym_new] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(412), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_DASH] = ACTIONS(414), - [anon_sym_PLUS_PLUS] = ACTIONS(412), - [anon_sym_DASH_DASH] = ACTIONS(412), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(414), - [anon_sym_PLUS] = ACTIONS(414), - [anon_sym_LT_LT] = ACTIONS(412), - [anon_sym_GT_GT] = ACTIONS(414), - [anon_sym_GT_GT_GT] = ACTIONS(412), - [anon_sym_AMP] = ACTIONS(414), - [anon_sym_PIPE] = ACTIONS(414), - [anon_sym_CARET] = ACTIONS(412), - [anon_sym_AMP_AMP] = ACTIONS(412), - [anon_sym_PIPE_PIPE] = ACTIONS(412), - [anon_sym_EQ_EQ] = ACTIONS(412), - [anon_sym_BANG_EQ] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(414), - [anon_sym_LT_EQ] = ACTIONS(412), - [anon_sym_GT] = ACTIONS(414), - [anon_sym_GT_EQ] = ACTIONS(412), - [anon_sym_EQ_GT] = ACTIONS(412), - [anon_sym_QMARK_QMARK] = ACTIONS(412), - [anon_sym_EQ] = ACTIONS(414), - [sym__rangeOperator] = ACTIONS(412), - [anon_sym_null] = ACTIONS(414), - [anon_sym_dynamic] = ACTIONS(414), - [anon_sym_final] = ACTIONS(414), - [anon_sym_abstract] = ACTIONS(414), - [anon_sym_class] = ACTIONS(414), - [anon_sym_extends] = ACTIONS(414), - [anon_sym_implements] = ACTIONS(414), - [anon_sym_interface] = ACTIONS(414), - [anon_sym_typedef] = ACTIONS(414), - [anon_sym_function] = ACTIONS(414), - [anon_sym_var] = ACTIONS(414), - [aux_sym_integer_token1] = ACTIONS(414), - [aux_sym_integer_token2] = ACTIONS(412), - [aux_sym_float_token1] = ACTIONS(414), - [aux_sym_float_token2] = ACTIONS(412), - [anon_sym_true] = ACTIONS(414), - [anon_sym_false] = ACTIONS(414), - [aux_sym_string_token1] = ACTIONS(412), - [aux_sym_string_token3] = ACTIONS(412), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(414), - [anon_sym_catch] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(414), - [anon_sym_do] = ACTIONS(414), - [anon_sym_enum] = ACTIONS(414), - [anon_sym_extern] = ACTIONS(414), - [anon_sym_for] = ACTIONS(414), - [anon_sym_inline] = ACTIONS(414), - [anon_sym_macro] = ACTIONS(414), - [anon_sym_operator] = ACTIONS(414), - [anon_sym_overload] = ACTIONS(414), - [anon_sym_override] = ACTIONS(414), - [anon_sym_private] = ACTIONS(414), - [anon_sym_public] = ACTIONS(414), - [anon_sym_return] = ACTIONS(414), - [anon_sym_static] = ACTIONS(414), - [anon_sym_try] = ACTIONS(414), - [anon_sym_untyped] = ACTIONS(414), - [anon_sym_while] = ACTIONS(414), - [sym__semicolon] = ACTIONS(412), - }, - [105] = { - [ts_builtin_sym_end] = ACTIONS(586), - [sym_identifier] = ACTIONS(588), - [anon_sym_POUND] = ACTIONS(586), - [anon_sym_package] = ACTIONS(588), - [anon_sym_import] = ACTIONS(588), - [anon_sym_using] = ACTIONS(588), - [anon_sym_throw] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(586), - [anon_sym_switch] = ACTIONS(588), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_RBRACE] = ACTIONS(586), - [anon_sym_case] = ACTIONS(588), - [anon_sym_COLON] = ACTIONS(590), - [anon_sym_default] = ACTIONS(588), - [anon_sym_cast] = ACTIONS(588), - [anon_sym_COMMA] = ACTIONS(586), - [anon_sym_DOLLARtype] = ACTIONS(586), - [anon_sym_in] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_this] = ACTIONS(588), - [anon_sym_DOT] = ACTIONS(588), - [anon_sym_QMARK] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(588), - [anon_sym_AT_COLON] = ACTIONS(586), - [anon_sym_if] = ACTIONS(588), - [anon_sym_else] = ACTIONS(588), - [anon_sym_new] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_GT_GT_GT] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(588), - [anon_sym_PIPE] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(586), - [anon_sym_BANG_EQ] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT] = ACTIONS(588), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_EQ_GT] = ACTIONS(586), - [anon_sym_QMARK_QMARK] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(588), - [sym__rangeOperator] = ACTIONS(586), - [anon_sym_null] = ACTIONS(588), - [anon_sym_dynamic] = ACTIONS(588), - [anon_sym_final] = ACTIONS(588), - [anon_sym_abstract] = ACTIONS(588), - [anon_sym_class] = ACTIONS(588), - [anon_sym_extends] = ACTIONS(588), - [anon_sym_implements] = ACTIONS(588), - [anon_sym_interface] = ACTIONS(588), - [anon_sym_typedef] = ACTIONS(588), - [anon_sym_function] = ACTIONS(588), - [anon_sym_var] = ACTIONS(588), - [aux_sym_integer_token1] = ACTIONS(588), - [aux_sym_integer_token2] = ACTIONS(586), - [aux_sym_float_token1] = ACTIONS(588), - [aux_sym_float_token2] = ACTIONS(586), - [anon_sym_true] = ACTIONS(588), - [anon_sym_false] = ACTIONS(588), - [aux_sym_string_token1] = ACTIONS(586), - [aux_sym_string_token3] = ACTIONS(586), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(588), - [anon_sym_catch] = ACTIONS(588), - [anon_sym_continue] = ACTIONS(588), - [anon_sym_do] = ACTIONS(588), - [anon_sym_enum] = ACTIONS(588), - [anon_sym_extern] = ACTIONS(588), - [anon_sym_for] = ACTIONS(588), - [anon_sym_inline] = ACTIONS(588), - [anon_sym_macro] = ACTIONS(588), - [anon_sym_operator] = ACTIONS(588), - [anon_sym_overload] = ACTIONS(588), - [anon_sym_override] = ACTIONS(588), - [anon_sym_private] = ACTIONS(588), - [anon_sym_public] = ACTIONS(588), - [anon_sym_return] = ACTIONS(588), - [anon_sym_static] = ACTIONS(588), - [anon_sym_try] = ACTIONS(588), - [anon_sym_untyped] = ACTIONS(588), - [anon_sym_while] = ACTIONS(588), - [sym__semicolon] = ACTIONS(586), - }, - [106] = { - [ts_builtin_sym_end] = ACTIONS(400), - [sym_identifier] = ACTIONS(402), - [anon_sym_POUND] = ACTIONS(400), - [anon_sym_package] = ACTIONS(402), - [anon_sym_import] = ACTIONS(402), - [anon_sym_using] = ACTIONS(402), - [anon_sym_throw] = ACTIONS(402), - [anon_sym_LPAREN] = ACTIONS(400), - [anon_sym_RPAREN] = ACTIONS(400), - [anon_sym_switch] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_RBRACE] = ACTIONS(400), - [anon_sym_case] = ACTIONS(402), - [anon_sym_default] = ACTIONS(402), - [anon_sym_cast] = ACTIONS(402), - [anon_sym_COMMA] = ACTIONS(400), - [anon_sym_DOLLARtype] = ACTIONS(400), - [anon_sym_in] = ACTIONS(402), - [anon_sym_LBRACK] = ACTIONS(400), - [anon_sym_this] = ACTIONS(402), - [anon_sym_DOT] = ACTIONS(402), - [anon_sym_QMARK] = ACTIONS(402), - [anon_sym_AT] = ACTIONS(402), - [anon_sym_AT_COLON] = ACTIONS(400), - [anon_sym_if] = ACTIONS(402), - [anon_sym_else] = ACTIONS(402), - [anon_sym_new] = ACTIONS(402), - [anon_sym_TILDE] = ACTIONS(400), - [anon_sym_BANG] = ACTIONS(402), - [anon_sym_DASH] = ACTIONS(402), - [anon_sym_PLUS_PLUS] = ACTIONS(400), - [anon_sym_DASH_DASH] = ACTIONS(400), - [anon_sym_PERCENT] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(400), - [anon_sym_SLASH] = ACTIONS(402), - [anon_sym_PLUS] = ACTIONS(402), - [anon_sym_LT_LT] = ACTIONS(400), - [anon_sym_GT_GT] = ACTIONS(402), - [anon_sym_GT_GT_GT] = ACTIONS(400), - [anon_sym_AMP] = ACTIONS(402), - [anon_sym_PIPE] = ACTIONS(402), - [anon_sym_CARET] = ACTIONS(400), - [anon_sym_AMP_AMP] = ACTIONS(400), - [anon_sym_PIPE_PIPE] = ACTIONS(400), - [anon_sym_EQ_EQ] = ACTIONS(400), - [anon_sym_BANG_EQ] = ACTIONS(400), - [anon_sym_LT] = ACTIONS(402), - [anon_sym_LT_EQ] = ACTIONS(400), - [anon_sym_GT] = ACTIONS(402), - [anon_sym_GT_EQ] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(400), - [anon_sym_QMARK_QMARK] = ACTIONS(400), - [anon_sym_EQ] = ACTIONS(402), - [sym__rangeOperator] = ACTIONS(400), - [anon_sym_null] = ACTIONS(402), - [anon_sym_dynamic] = ACTIONS(402), - [anon_sym_final] = ACTIONS(402), - [anon_sym_abstract] = ACTIONS(402), - [anon_sym_class] = ACTIONS(402), - [anon_sym_extends] = ACTIONS(402), - [anon_sym_implements] = ACTIONS(402), - [anon_sym_interface] = ACTIONS(402), - [anon_sym_typedef] = ACTIONS(402), - [anon_sym_function] = ACTIONS(402), - [anon_sym_var] = ACTIONS(402), - [aux_sym_integer_token1] = ACTIONS(402), - [aux_sym_integer_token2] = ACTIONS(400), - [aux_sym_float_token1] = ACTIONS(402), - [aux_sym_float_token2] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), - [aux_sym_string_token1] = ACTIONS(400), - [aux_sym_string_token3] = ACTIONS(400), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(402), - [anon_sym_catch] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(402), - [anon_sym_do] = ACTIONS(402), - [anon_sym_enum] = ACTIONS(402), - [anon_sym_extern] = ACTIONS(402), - [anon_sym_for] = ACTIONS(402), - [anon_sym_inline] = ACTIONS(402), - [anon_sym_macro] = ACTIONS(402), - [anon_sym_operator] = ACTIONS(402), - [anon_sym_overload] = ACTIONS(402), - [anon_sym_override] = ACTIONS(402), - [anon_sym_private] = ACTIONS(402), - [anon_sym_public] = ACTIONS(402), - [anon_sym_return] = ACTIONS(402), - [anon_sym_static] = ACTIONS(402), - [anon_sym_try] = ACTIONS(402), - [anon_sym_untyped] = ACTIONS(402), - [anon_sym_while] = ACTIONS(402), - [sym__semicolon] = ACTIONS(400), - }, - [107] = { - [ts_builtin_sym_end] = ACTIONS(506), - [sym_identifier] = ACTIONS(508), - [anon_sym_POUND] = ACTIONS(506), - [anon_sym_package] = ACTIONS(508), - [anon_sym_import] = ACTIONS(508), - [anon_sym_using] = ACTIONS(508), - [anon_sym_throw] = ACTIONS(508), - [anon_sym_LPAREN] = ACTIONS(424), - [anon_sym_switch] = ACTIONS(508), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_RBRACE] = ACTIONS(506), - [anon_sym_case] = ACTIONS(508), - [anon_sym_COLON] = ACTIONS(590), - [anon_sym_default] = ACTIONS(508), - [anon_sym_cast] = ACTIONS(508), - [anon_sym_COMMA] = ACTIONS(506), - [anon_sym_DOLLARtype] = ACTIONS(506), - [anon_sym_in] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(454), - [anon_sym_this] = ACTIONS(508), - [anon_sym_DOT] = ACTIONS(594), - [anon_sym_QMARK] = ACTIONS(596), - [anon_sym_AT] = ACTIONS(508), - [anon_sym_AT_COLON] = ACTIONS(506), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(508), - [anon_sym_new] = ACTIONS(508), - [anon_sym_TILDE] = ACTIONS(506), - [anon_sym_BANG] = ACTIONS(508), - [anon_sym_DASH] = ACTIONS(508), - [anon_sym_PLUS_PLUS] = ACTIONS(506), - [anon_sym_DASH_DASH] = ACTIONS(506), - [anon_sym_PERCENT] = ACTIONS(506), - [anon_sym_STAR] = ACTIONS(506), - [anon_sym_SLASH] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(506), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_GT_GT_GT] = ACTIONS(506), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_PIPE] = ACTIONS(508), - [anon_sym_CARET] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(506), - [anon_sym_PIPE_PIPE] = ACTIONS(506), - [anon_sym_EQ_EQ] = ACTIONS(506), - [anon_sym_BANG_EQ] = ACTIONS(506), - [anon_sym_LT] = ACTIONS(426), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT] = ACTIONS(508), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_EQ_GT] = ACTIONS(590), - [anon_sym_QMARK_QMARK] = ACTIONS(506), - [anon_sym_EQ] = ACTIONS(508), - [sym__rangeOperator] = ACTIONS(506), - [anon_sym_null] = ACTIONS(508), - [anon_sym_dynamic] = ACTIONS(508), - [anon_sym_final] = ACTIONS(508), - [anon_sym_abstract] = ACTIONS(508), - [anon_sym_class] = ACTIONS(508), - [anon_sym_extends] = ACTIONS(508), - [anon_sym_implements] = ACTIONS(508), - [anon_sym_interface] = ACTIONS(508), - [anon_sym_typedef] = ACTIONS(508), - [anon_sym_function] = ACTIONS(508), - [anon_sym_var] = ACTIONS(508), - [aux_sym_integer_token1] = ACTIONS(508), - [aux_sym_integer_token2] = ACTIONS(506), - [aux_sym_float_token1] = ACTIONS(508), - [aux_sym_float_token2] = ACTIONS(506), - [anon_sym_true] = ACTIONS(508), - [anon_sym_false] = ACTIONS(508), - [aux_sym_string_token1] = ACTIONS(506), - [aux_sym_string_token3] = ACTIONS(506), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(508), - [anon_sym_catch] = ACTIONS(508), - [anon_sym_continue] = ACTIONS(508), - [anon_sym_do] = ACTIONS(508), - [anon_sym_enum] = ACTIONS(508), - [anon_sym_extern] = ACTIONS(508), - [anon_sym_for] = ACTIONS(508), - [anon_sym_inline] = ACTIONS(508), - [anon_sym_macro] = ACTIONS(508), - [anon_sym_operator] = ACTIONS(508), - [anon_sym_overload] = ACTIONS(508), - [anon_sym_override] = ACTIONS(508), - [anon_sym_private] = ACTIONS(508), - [anon_sym_public] = ACTIONS(508), - [anon_sym_return] = ACTIONS(508), - [anon_sym_static] = ACTIONS(508), - [anon_sym_try] = ACTIONS(508), - [anon_sym_untyped] = ACTIONS(508), - [anon_sym_while] = ACTIONS(508), - [sym__semicolon] = ACTIONS(506), - }, - [108] = { - [ts_builtin_sym_end] = ACTIONS(506), - [sym_identifier] = ACTIONS(508), - [anon_sym_POUND] = ACTIONS(506), - [anon_sym_package] = ACTIONS(508), - [anon_sym_import] = ACTIONS(508), - [anon_sym_using] = ACTIONS(508), - [anon_sym_throw] = ACTIONS(508), - [anon_sym_LPAREN] = ACTIONS(424), - [anon_sym_switch] = ACTIONS(508), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_RBRACE] = ACTIONS(506), - [anon_sym_case] = ACTIONS(508), - [anon_sym_COLON] = ACTIONS(590), - [anon_sym_default] = ACTIONS(508), - [anon_sym_cast] = ACTIONS(508), - [anon_sym_COMMA] = ACTIONS(506), - [anon_sym_DOLLARtype] = ACTIONS(506), - [anon_sym_in] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(506), - [anon_sym_this] = ACTIONS(508), - [anon_sym_DOT] = ACTIONS(594), - [anon_sym_QMARK] = ACTIONS(596), - [anon_sym_AT] = ACTIONS(508), - [anon_sym_AT_COLON] = ACTIONS(506), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(508), - [anon_sym_new] = ACTIONS(508), - [anon_sym_TILDE] = ACTIONS(506), - [anon_sym_BANG] = ACTIONS(508), - [anon_sym_DASH] = ACTIONS(508), - [anon_sym_PLUS_PLUS] = ACTIONS(506), - [anon_sym_DASH_DASH] = ACTIONS(506), - [anon_sym_PERCENT] = ACTIONS(506), - [anon_sym_STAR] = ACTIONS(506), - [anon_sym_SLASH] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(506), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_GT_GT_GT] = ACTIONS(506), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_PIPE] = ACTIONS(508), - [anon_sym_CARET] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(506), - [anon_sym_PIPE_PIPE] = ACTIONS(506), - [anon_sym_EQ_EQ] = ACTIONS(506), - [anon_sym_BANG_EQ] = ACTIONS(506), - [anon_sym_LT] = ACTIONS(426), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT] = ACTIONS(508), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_EQ_GT] = ACTIONS(590), - [anon_sym_QMARK_QMARK] = ACTIONS(506), - [anon_sym_EQ] = ACTIONS(508), - [sym__rangeOperator] = ACTIONS(506), - [anon_sym_null] = ACTIONS(508), - [anon_sym_dynamic] = ACTIONS(508), - [anon_sym_final] = ACTIONS(508), - [anon_sym_abstract] = ACTIONS(508), - [anon_sym_class] = ACTIONS(508), - [anon_sym_extends] = ACTIONS(508), - [anon_sym_implements] = ACTIONS(508), - [anon_sym_interface] = ACTIONS(508), - [anon_sym_typedef] = ACTIONS(508), - [anon_sym_function] = ACTIONS(508), - [anon_sym_var] = ACTIONS(508), - [aux_sym_integer_token1] = ACTIONS(508), - [aux_sym_integer_token2] = ACTIONS(506), - [aux_sym_float_token1] = ACTIONS(508), - [aux_sym_float_token2] = ACTIONS(506), - [anon_sym_true] = ACTIONS(508), - [anon_sym_false] = ACTIONS(508), - [aux_sym_string_token1] = ACTIONS(506), - [aux_sym_string_token3] = ACTIONS(506), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(508), - [anon_sym_catch] = ACTIONS(508), - [anon_sym_continue] = ACTIONS(508), - [anon_sym_do] = ACTIONS(508), - [anon_sym_enum] = ACTIONS(508), - [anon_sym_extern] = ACTIONS(508), - [anon_sym_for] = ACTIONS(508), - [anon_sym_inline] = ACTIONS(508), - [anon_sym_macro] = ACTIONS(508), - [anon_sym_operator] = ACTIONS(508), - [anon_sym_overload] = ACTIONS(508), - [anon_sym_override] = ACTIONS(508), - [anon_sym_private] = ACTIONS(508), - [anon_sym_public] = ACTIONS(508), - [anon_sym_return] = ACTIONS(508), - [anon_sym_static] = ACTIONS(508), - [anon_sym_try] = ACTIONS(508), - [anon_sym_untyped] = ACTIONS(508), - [anon_sym_while] = ACTIONS(508), - [sym__semicolon] = ACTIONS(506), - }, - [109] = { - [ts_builtin_sym_end] = ACTIONS(408), - [sym_identifier] = ACTIONS(410), - [anon_sym_POUND] = ACTIONS(408), - [anon_sym_package] = ACTIONS(410), - [anon_sym_import] = ACTIONS(410), - [anon_sym_using] = ACTIONS(410), - [anon_sym_throw] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(408), - [anon_sym_switch] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_RBRACE] = ACTIONS(408), - [anon_sym_case] = ACTIONS(410), - [anon_sym_default] = ACTIONS(410), - [anon_sym_cast] = ACTIONS(410), - [anon_sym_COMMA] = ACTIONS(408), - [anon_sym_DOLLARtype] = ACTIONS(408), - [anon_sym_in] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(408), - [anon_sym_this] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(410), - [anon_sym_QMARK] = ACTIONS(410), - [anon_sym_AT] = ACTIONS(410), - [anon_sym_AT_COLON] = ACTIONS(408), - [anon_sym_if] = ACTIONS(410), - [anon_sym_else] = ACTIONS(410), - [anon_sym_new] = ACTIONS(410), - [anon_sym_TILDE] = ACTIONS(408), - [anon_sym_BANG] = ACTIONS(410), - [anon_sym_DASH] = ACTIONS(410), - [anon_sym_PLUS_PLUS] = ACTIONS(408), - [anon_sym_DASH_DASH] = ACTIONS(408), - [anon_sym_PERCENT] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(410), - [anon_sym_PLUS] = ACTIONS(410), - [anon_sym_LT_LT] = ACTIONS(408), - [anon_sym_GT_GT] = ACTIONS(410), - [anon_sym_GT_GT_GT] = ACTIONS(408), - [anon_sym_AMP] = ACTIONS(410), - [anon_sym_PIPE] = ACTIONS(410), - [anon_sym_CARET] = ACTIONS(408), - [anon_sym_AMP_AMP] = ACTIONS(408), - [anon_sym_PIPE_PIPE] = ACTIONS(408), - [anon_sym_EQ_EQ] = ACTIONS(408), - [anon_sym_BANG_EQ] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(410), - [anon_sym_LT_EQ] = ACTIONS(408), - [anon_sym_GT] = ACTIONS(410), - [anon_sym_GT_EQ] = ACTIONS(408), - [anon_sym_EQ_GT] = ACTIONS(408), - [anon_sym_QMARK_QMARK] = ACTIONS(408), - [anon_sym_EQ] = ACTIONS(410), - [sym__rangeOperator] = ACTIONS(408), - [anon_sym_null] = ACTIONS(410), - [anon_sym_dynamic] = ACTIONS(410), - [anon_sym_final] = ACTIONS(410), - [anon_sym_abstract] = ACTIONS(410), - [anon_sym_class] = ACTIONS(410), - [anon_sym_extends] = ACTIONS(410), - [anon_sym_implements] = ACTIONS(410), - [anon_sym_interface] = ACTIONS(410), - [anon_sym_typedef] = ACTIONS(410), - [anon_sym_function] = ACTIONS(410), - [anon_sym_var] = ACTIONS(410), - [aux_sym_integer_token1] = ACTIONS(410), - [aux_sym_integer_token2] = ACTIONS(408), - [aux_sym_float_token1] = ACTIONS(410), - [aux_sym_float_token2] = ACTIONS(408), - [anon_sym_true] = ACTIONS(410), - [anon_sym_false] = ACTIONS(410), - [aux_sym_string_token1] = ACTIONS(408), - [aux_sym_string_token3] = ACTIONS(408), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(410), - [anon_sym_catch] = ACTIONS(410), - [anon_sym_continue] = ACTIONS(410), - [anon_sym_do] = ACTIONS(410), - [anon_sym_enum] = ACTIONS(410), - [anon_sym_extern] = ACTIONS(410), - [anon_sym_for] = ACTIONS(410), - [anon_sym_inline] = ACTIONS(410), - [anon_sym_macro] = ACTIONS(410), - [anon_sym_operator] = ACTIONS(410), - [anon_sym_overload] = ACTIONS(410), - [anon_sym_override] = ACTIONS(410), - [anon_sym_private] = ACTIONS(410), - [anon_sym_public] = ACTIONS(410), - [anon_sym_return] = ACTIONS(410), - [anon_sym_static] = ACTIONS(410), - [anon_sym_try] = ACTIONS(410), - [anon_sym_untyped] = ACTIONS(410), - [anon_sym_while] = ACTIONS(410), - [sym__semicolon] = ACTIONS(408), + [125] = { + [sym_type_params] = STATE(112), + [ts_builtin_sym_end] = ACTIONS(592), + [sym_identifier] = ACTIONS(595), + [anon_sym_POUND] = ACTIONS(592), + [anon_sym_package] = ACTIONS(595), + [anon_sym_import] = ACTIONS(595), + [anon_sym_using] = ACTIONS(595), + [anon_sym_throw] = ACTIONS(595), + [anon_sym_LPAREN] = ACTIONS(592), + [anon_sym_switch] = ACTIONS(595), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_RBRACE] = ACTIONS(592), + [anon_sym_case] = ACTIONS(595), + [anon_sym_default] = ACTIONS(595), + [anon_sym_cast] = ACTIONS(595), + [anon_sym_DOLLARtype] = ACTIONS(592), + [anon_sym_in] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(592), + [anon_sym_this] = ACTIONS(595), + [anon_sym_DASH_GT] = ACTIONS(528), + [anon_sym_AT] = ACTIONS(595), + [anon_sym_AT_COLON] = ACTIONS(592), + [anon_sym_if] = ACTIONS(595), + [anon_sym_else] = ACTIONS(595), + [anon_sym_new] = ACTIONS(595), + [sym__prefixUnaryOperator] = ACTIONS(595), + [sym__eitherUnaryOperator] = ACTIONS(592), + [anon_sym_null] = ACTIONS(595), + [anon_sym_dynamic] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_final] = ACTIONS(595), + [anon_sym_abstract] = ACTIONS(595), + [anon_sym_class] = ACTIONS(595), + [anon_sym_extends] = ACTIONS(595), + [anon_sym_implements] = ACTIONS(595), + [anon_sym_interface] = ACTIONS(595), + [anon_sym_typedef] = ACTIONS(595), + [anon_sym_function] = ACTIONS(595), + [anon_sym_var] = ACTIONS(595), + [aux_sym_integer_token1] = ACTIONS(595), + [aux_sym_integer_token2] = ACTIONS(592), + [aux_sym_float_token1] = ACTIONS(595), + [aux_sym_float_token2] = ACTIONS(592), + [anon_sym_true] = ACTIONS(595), + [anon_sym_false] = ACTIONS(595), + [aux_sym_string_token1] = ACTIONS(592), + [aux_sym_string_token3] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(595), + [anon_sym_catch] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(595), + [anon_sym_do] = ACTIONS(595), + [anon_sym_enum] = ACTIONS(595), + [anon_sym_extern] = ACTIONS(595), + [anon_sym_for] = ACTIONS(595), + [anon_sym_inline] = ACTIONS(595), + [anon_sym_macro] = ACTIONS(595), + [anon_sym_operator] = ACTIONS(595), + [anon_sym_overload] = ACTIONS(595), + [anon_sym_override] = ACTIONS(595), + [anon_sym_private] = ACTIONS(595), + [anon_sym_public] = ACTIONS(595), + [anon_sym_return] = ACTIONS(595), + [anon_sym_static] = ACTIONS(595), + [anon_sym_try] = ACTIONS(595), + [anon_sym_untyped] = ACTIONS(595), + [anon_sym_while] = ACTIONS(595), + [sym__semicolon] = ACTIONS(592), }, - [110] = { - [sym__rhs_expression] = STATE(439), - [sym__unaryExpression] = STATE(342), - [sym_runtime_type_check_expression] = STATE(342), - [sym_switch_expression] = STATE(342), - [sym_cast_expression] = STATE(342), - [sym_type_trace_expression] = STATE(342), - [sym__parenthesized_expression] = STATE(469), - [sym_range_expression] = STATE(342), - [sym_subscript_expression] = STATE(342), - [sym_member_expression] = STATE(457), - [sym__lhs_expression] = STATE(981), - [sym_builtin_type] = STATE(1008), - [sym__function_type_args] = STATE(1309), - [sym_function_type] = STATE(118), - [sym_type] = STATE(1091), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(439), - [sym_operator] = STATE(801), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(466), - [sym_integer] = STATE(466), - [sym_float] = STATE(466), - [sym_bool] = STATE(466), - [sym_string] = STATE(462), - [sym_null] = STATE(466), - [sym_array] = STATE(466), - [sym_map] = STATE(466), - [sym_object] = STATE(466), - [sym_structure_type_pair] = STATE(1311), - [sym_pair] = STATE(466), - [aux_sym__parenthesized_expression_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(598), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_RPAREN] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(604), - [anon_sym_DOLLARtype] = ACTIONS(31), + [126] = { + [sym_member_expression] = STATE(28), + [sym__lhs_expression] = STATE(1045), + [sym__call] = STATE(59), + [sym__literal] = STATE(1172), + [sym_integer] = STATE(1172), + [sym_float] = STATE(1172), + [sym_bool] = STATE(1172), + [sym_string] = STATE(1025), + [sym_null] = STATE(1172), + [sym_array] = STATE(1172), + [sym_map] = STATE(1172), + [sym_object] = STATE(1172), + [sym_pair] = STATE(1172), + [sym_identifier] = ACTIONS(284), + [anon_sym_package] = ACTIONS(276), + [anon_sym_import] = ACTIONS(276), + [anon_sym_using] = ACTIONS(276), + [anon_sym_throw] = ACTIONS(276), + [anon_sym_switch] = ACTIONS(276), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_case] = ACTIONS(276), + [anon_sym_default] = ACTIONS(276), + [anon_sym_cast] = ACTIONS(276), + [anon_sym_in] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(328), - [anon_sym_Void] = ACTIONS(606), - [anon_sym_Int] = ACTIONS(606), - [anon_sym_Float] = ACTIONS(606), - [anon_sym_Bool] = ACTIONS(606), - [anon_sym_Null] = ACTIONS(606), - [anon_sym_new] = ACTIONS(238), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), + [anon_sym_this] = ACTIONS(286), + [anon_sym_if] = ACTIONS(276), + [anon_sym_else] = ACTIONS(276), + [anon_sym_new] = ACTIONS(276), + [anon_sym_null] = ACTIONS(51), + [anon_sym_dynamic] = ACTIONS(276), + [anon_sym_final] = ACTIONS(276), + [anon_sym_abstract] = ACTIONS(276), + [anon_sym_class] = ACTIONS(276), + [anon_sym_extends] = ACTIONS(276), + [anon_sym_implements] = ACTIONS(276), + [anon_sym_interface] = ACTIONS(276), + [anon_sym_typedef] = ACTIONS(276), + [anon_sym_function] = ACTIONS(276), + [anon_sym_var] = ACTIONS(276), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(276), + [anon_sym_catch] = ACTIONS(276), + [anon_sym_continue] = ACTIONS(276), + [anon_sym_do] = ACTIONS(276), + [anon_sym_enum] = ACTIONS(276), + [anon_sym_extern] = ACTIONS(276), + [anon_sym_for] = ACTIONS(276), + [anon_sym_inline] = ACTIONS(276), + [anon_sym_macro] = ACTIONS(276), + [anon_sym_operator] = ACTIONS(276), + [anon_sym_overload] = ACTIONS(276), + [anon_sym_override] = ACTIONS(276), + [anon_sym_private] = ACTIONS(276), + [anon_sym_public] = ACTIONS(276), + [anon_sym_return] = ACTIONS(276), + [anon_sym_static] = ACTIONS(276), + [anon_sym_try] = ACTIONS(276), + [anon_sym_untyped] = ACTIONS(276), + [anon_sym_while] = ACTIONS(276), }, - [111] = { - [ts_builtin_sym_end] = ACTIONS(608), - [sym_identifier] = ACTIONS(610), - [anon_sym_POUND] = ACTIONS(608), - [anon_sym_package] = ACTIONS(610), - [anon_sym_import] = ACTIONS(610), - [anon_sym_using] = ACTIONS(610), - [anon_sym_throw] = ACTIONS(610), - [anon_sym_LPAREN] = ACTIONS(608), - [anon_sym_RPAREN] = ACTIONS(608), - [anon_sym_switch] = ACTIONS(610), + [127] = { + [sym_type_params] = STATE(112), + [ts_builtin_sym_end] = ACTIONS(598), + [sym_identifier] = ACTIONS(601), + [anon_sym_POUND] = ACTIONS(598), + [anon_sym_package] = ACTIONS(601), + [anon_sym_import] = ACTIONS(601), + [anon_sym_using] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_switch] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(598), + [anon_sym_RBRACE] = ACTIONS(598), + [anon_sym_case] = ACTIONS(601), + [anon_sym_default] = ACTIONS(601), + [anon_sym_cast] = ACTIONS(601), + [anon_sym_DOLLARtype] = ACTIONS(598), + [anon_sym_in] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(598), + [anon_sym_this] = ACTIONS(601), + [anon_sym_DASH_GT] = ACTIONS(528), + [anon_sym_AT] = ACTIONS(601), + [anon_sym_AT_COLON] = ACTIONS(598), + [anon_sym_if] = ACTIONS(601), + [anon_sym_else] = ACTIONS(601), + [anon_sym_new] = ACTIONS(601), + [sym__prefixUnaryOperator] = ACTIONS(601), + [sym__eitherUnaryOperator] = ACTIONS(598), + [anon_sym_null] = ACTIONS(601), + [anon_sym_dynamic] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_final] = ACTIONS(601), + [anon_sym_abstract] = ACTIONS(601), + [anon_sym_class] = ACTIONS(601), + [anon_sym_extends] = ACTIONS(601), + [anon_sym_implements] = ACTIONS(601), + [anon_sym_interface] = ACTIONS(601), + [anon_sym_typedef] = ACTIONS(601), + [anon_sym_function] = ACTIONS(601), + [anon_sym_var] = ACTIONS(601), + [aux_sym_integer_token1] = ACTIONS(601), + [aux_sym_integer_token2] = ACTIONS(598), + [aux_sym_float_token1] = ACTIONS(601), + [aux_sym_float_token2] = ACTIONS(598), + [anon_sym_true] = ACTIONS(601), + [anon_sym_false] = ACTIONS(601), + [aux_sym_string_token1] = ACTIONS(598), + [aux_sym_string_token3] = ACTIONS(598), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(601), + [anon_sym_catch] = ACTIONS(601), + [anon_sym_continue] = ACTIONS(601), + [anon_sym_do] = ACTIONS(601), + [anon_sym_enum] = ACTIONS(601), + [anon_sym_extern] = ACTIONS(601), + [anon_sym_for] = ACTIONS(601), + [anon_sym_inline] = ACTIONS(601), + [anon_sym_macro] = ACTIONS(601), + [anon_sym_operator] = ACTIONS(601), + [anon_sym_overload] = ACTIONS(601), + [anon_sym_override] = ACTIONS(601), + [anon_sym_private] = ACTIONS(601), + [anon_sym_public] = ACTIONS(601), + [anon_sym_return] = ACTIONS(601), + [anon_sym_static] = ACTIONS(601), + [anon_sym_try] = ACTIONS(601), + [anon_sym_untyped] = ACTIONS(601), + [anon_sym_while] = ACTIONS(601), + [sym__semicolon] = ACTIONS(598), + }, + [128] = { + [sym_block] = STATE(204), + [ts_builtin_sym_end] = ACTIONS(604), + [sym_identifier] = ACTIONS(606), + [anon_sym_POUND] = ACTIONS(604), + [anon_sym_package] = ACTIONS(606), + [anon_sym_import] = ACTIONS(606), + [anon_sym_using] = ACTIONS(606), + [anon_sym_throw] = ACTIONS(606), + [anon_sym_LPAREN] = ACTIONS(604), + [anon_sym_switch] = ACTIONS(606), [anon_sym_LBRACE] = ACTIONS(608), - [anon_sym_RBRACE] = ACTIONS(608), - [anon_sym_case] = ACTIONS(610), - [anon_sym_default] = ACTIONS(610), - [anon_sym_cast] = ACTIONS(610), - [anon_sym_COMMA] = ACTIONS(608), - [anon_sym_DOLLARtype] = ACTIONS(608), - [anon_sym_in] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(608), - [anon_sym_this] = ACTIONS(610), - [anon_sym_DASH_GT] = ACTIONS(608), - [anon_sym_AT] = ACTIONS(610), - [anon_sym_AT_COLON] = ACTIONS(608), - [anon_sym_if] = ACTIONS(610), - [anon_sym_else] = ACTIONS(610), - [anon_sym_new] = ACTIONS(610), - [anon_sym_TILDE] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(610), - [anon_sym_DASH] = ACTIONS(610), - [anon_sym_PLUS_PLUS] = ACTIONS(608), - [anon_sym_DASH_DASH] = ACTIONS(608), - [anon_sym_PERCENT] = ACTIONS(608), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_SLASH] = ACTIONS(610), - [anon_sym_PLUS] = ACTIONS(610), - [anon_sym_LT_LT] = ACTIONS(608), - [anon_sym_GT_GT] = ACTIONS(610), - [anon_sym_GT_GT_GT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_CARET] = ACTIONS(608), - [anon_sym_AMP_AMP] = ACTIONS(608), - [anon_sym_PIPE_PIPE] = ACTIONS(608), - [anon_sym_EQ_EQ] = ACTIONS(608), - [anon_sym_BANG_EQ] = ACTIONS(608), - [anon_sym_LT] = ACTIONS(610), - [anon_sym_LT_EQ] = ACTIONS(608), - [anon_sym_GT] = ACTIONS(610), - [anon_sym_GT_EQ] = ACTIONS(608), - [anon_sym_EQ_GT] = ACTIONS(608), - [anon_sym_QMARK_QMARK] = ACTIONS(608), - [anon_sym_EQ] = ACTIONS(610), - [sym__rangeOperator] = ACTIONS(608), - [anon_sym_null] = ACTIONS(610), - [anon_sym_dynamic] = ACTIONS(610), - [anon_sym_final] = ACTIONS(610), - [anon_sym_abstract] = ACTIONS(610), - [anon_sym_class] = ACTIONS(610), - [anon_sym_extends] = ACTIONS(610), - [anon_sym_implements] = ACTIONS(610), - [anon_sym_interface] = ACTIONS(610), - [anon_sym_typedef] = ACTIONS(610), - [anon_sym_function] = ACTIONS(610), - [anon_sym_var] = ACTIONS(610), - [aux_sym_integer_token1] = ACTIONS(610), - [aux_sym_integer_token2] = ACTIONS(608), - [aux_sym_float_token1] = ACTIONS(610), - [aux_sym_float_token2] = ACTIONS(608), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), - [aux_sym_string_token1] = ACTIONS(608), - [aux_sym_string_token3] = ACTIONS(608), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(610), - [anon_sym_catch] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(610), - [anon_sym_do] = ACTIONS(610), - [anon_sym_enum] = ACTIONS(610), - [anon_sym_extern] = ACTIONS(610), - [anon_sym_for] = ACTIONS(610), - [anon_sym_inline] = ACTIONS(610), - [anon_sym_macro] = ACTIONS(610), - [anon_sym_operator] = ACTIONS(610), - [anon_sym_overload] = ACTIONS(610), - [anon_sym_override] = ACTIONS(610), - [anon_sym_private] = ACTIONS(610), - [anon_sym_public] = ACTIONS(610), - [anon_sym_return] = ACTIONS(610), - [anon_sym_static] = ACTIONS(610), - [anon_sym_try] = ACTIONS(610), - [anon_sym_untyped] = ACTIONS(610), - [anon_sym_while] = ACTIONS(610), - [sym__semicolon] = ACTIONS(608), + [anon_sym_RBRACE] = ACTIONS(604), + [anon_sym_case] = ACTIONS(606), + [anon_sym_COLON] = ACTIONS(611), + [anon_sym_default] = ACTIONS(606), + [anon_sym_cast] = ACTIONS(606), + [anon_sym_DOLLARtype] = ACTIONS(604), + [anon_sym_in] = ACTIONS(606), + [anon_sym_LBRACK] = ACTIONS(604), + [anon_sym_this] = ACTIONS(606), + [anon_sym_AT] = ACTIONS(606), + [anon_sym_AT_COLON] = ACTIONS(604), + [anon_sym_if] = ACTIONS(606), + [anon_sym_else] = ACTIONS(606), + [anon_sym_new] = ACTIONS(606), + [sym__prefixUnaryOperator] = ACTIONS(606), + [sym__eitherUnaryOperator] = ACTIONS(604), + [anon_sym_null] = ACTIONS(606), + [anon_sym_dynamic] = ACTIONS(606), + [anon_sym_final] = ACTIONS(606), + [anon_sym_abstract] = ACTIONS(606), + [anon_sym_class] = ACTIONS(606), + [anon_sym_extends] = ACTIONS(606), + [anon_sym_implements] = ACTIONS(606), + [anon_sym_interface] = ACTIONS(606), + [anon_sym_typedef] = ACTIONS(606), + [anon_sym_function] = ACTIONS(606), + [anon_sym_var] = ACTIONS(606), + [aux_sym_integer_token1] = ACTIONS(606), + [aux_sym_integer_token2] = ACTIONS(604), + [aux_sym_float_token1] = ACTIONS(606), + [aux_sym_float_token2] = ACTIONS(604), + [anon_sym_true] = ACTIONS(606), + [anon_sym_false] = ACTIONS(606), + [aux_sym_string_token1] = ACTIONS(604), + [aux_sym_string_token3] = ACTIONS(604), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(606), + [anon_sym_catch] = ACTIONS(606), + [anon_sym_continue] = ACTIONS(606), + [anon_sym_do] = ACTIONS(606), + [anon_sym_enum] = ACTIONS(606), + [anon_sym_extern] = ACTIONS(606), + [anon_sym_for] = ACTIONS(606), + [anon_sym_inline] = ACTIONS(606), + [anon_sym_macro] = ACTIONS(606), + [anon_sym_operator] = ACTIONS(606), + [anon_sym_overload] = ACTIONS(606), + [anon_sym_override] = ACTIONS(606), + [anon_sym_private] = ACTIONS(606), + [anon_sym_public] = ACTIONS(606), + [anon_sym_return] = ACTIONS(606), + [anon_sym_static] = ACTIONS(606), + [anon_sym_try] = ACTIONS(606), + [anon_sym_untyped] = ACTIONS(606), + [anon_sym_while] = ACTIONS(606), + [sym__semicolon] = ACTIONS(604), }, - [112] = { - [ts_builtin_sym_end] = ACTIONS(506), - [sym_identifier] = ACTIONS(508), - [anon_sym_POUND] = ACTIONS(506), - [anon_sym_package] = ACTIONS(508), - [anon_sym_import] = ACTIONS(508), - [anon_sym_using] = ACTIONS(508), - [anon_sym_throw] = ACTIONS(508), - [anon_sym_LPAREN] = ACTIONS(424), - [anon_sym_switch] = ACTIONS(508), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_RBRACE] = ACTIONS(506), - [anon_sym_case] = ACTIONS(508), - [anon_sym_COLON] = ACTIONS(590), - [anon_sym_default] = ACTIONS(508), - [anon_sym_cast] = ACTIONS(508), - [anon_sym_DOLLARtype] = ACTIONS(506), - [anon_sym_in] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(454), - [anon_sym_this] = ACTIONS(508), - [anon_sym_DOT] = ACTIONS(430), - [anon_sym_QMARK] = ACTIONS(432), - [anon_sym_AT] = ACTIONS(508), - [anon_sym_AT_COLON] = ACTIONS(506), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(508), - [anon_sym_new] = ACTIONS(508), - [anon_sym_TILDE] = ACTIONS(506), - [anon_sym_BANG] = ACTIONS(508), - [anon_sym_DASH] = ACTIONS(508), - [anon_sym_PLUS_PLUS] = ACTIONS(506), - [anon_sym_DASH_DASH] = ACTIONS(506), - [anon_sym_PERCENT] = ACTIONS(506), - [anon_sym_STAR] = ACTIONS(506), - [anon_sym_SLASH] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(506), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_GT_GT_GT] = ACTIONS(506), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_PIPE] = ACTIONS(508), - [anon_sym_CARET] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(506), - [anon_sym_PIPE_PIPE] = ACTIONS(506), - [anon_sym_EQ_EQ] = ACTIONS(506), - [anon_sym_BANG_EQ] = ACTIONS(506), - [anon_sym_LT] = ACTIONS(426), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT] = ACTIONS(508), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_EQ_GT] = ACTIONS(590), - [anon_sym_QMARK_QMARK] = ACTIONS(506), - [anon_sym_EQ] = ACTIONS(508), - [sym__rangeOperator] = ACTIONS(506), - [anon_sym_null] = ACTIONS(508), - [anon_sym_dynamic] = ACTIONS(508), - [anon_sym_final] = ACTIONS(508), - [anon_sym_abstract] = ACTIONS(508), - [anon_sym_class] = ACTIONS(508), - [anon_sym_extends] = ACTIONS(508), - [anon_sym_implements] = ACTIONS(508), - [anon_sym_interface] = ACTIONS(508), - [anon_sym_typedef] = ACTIONS(508), - [anon_sym_function] = ACTIONS(508), - [anon_sym_var] = ACTIONS(508), - [aux_sym_integer_token1] = ACTIONS(508), - [aux_sym_integer_token2] = ACTIONS(506), - [aux_sym_float_token1] = ACTIONS(508), - [aux_sym_float_token2] = ACTIONS(506), - [anon_sym_true] = ACTIONS(508), - [anon_sym_false] = ACTIONS(508), - [aux_sym_string_token1] = ACTIONS(506), - [aux_sym_string_token3] = ACTIONS(506), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(508), - [anon_sym_catch] = ACTIONS(508), - [anon_sym_continue] = ACTIONS(508), - [anon_sym_do] = ACTIONS(508), - [anon_sym_enum] = ACTIONS(508), - [anon_sym_extern] = ACTIONS(508), - [anon_sym_for] = ACTIONS(508), - [anon_sym_inline] = ACTIONS(508), - [anon_sym_macro] = ACTIONS(508), - [anon_sym_operator] = ACTIONS(508), - [anon_sym_overload] = ACTIONS(508), - [anon_sym_override] = ACTIONS(508), - [anon_sym_private] = ACTIONS(508), - [anon_sym_public] = ACTIONS(508), - [anon_sym_return] = ACTIONS(508), - [anon_sym_static] = ACTIONS(508), - [anon_sym_try] = ACTIONS(508), - [anon_sym_untyped] = ACTIONS(508), - [anon_sym_while] = ACTIONS(508), - [sym__semicolon] = ACTIONS(506), + [129] = { + [sym_block] = STATE(242), + [ts_builtin_sym_end] = ACTIONS(613), + [sym_identifier] = ACTIONS(615), + [anon_sym_POUND] = ACTIONS(613), + [anon_sym_package] = ACTIONS(615), + [anon_sym_import] = ACTIONS(615), + [anon_sym_using] = ACTIONS(615), + [anon_sym_throw] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym_switch] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_RBRACE] = ACTIONS(613), + [anon_sym_case] = ACTIONS(615), + [anon_sym_COLON] = ACTIONS(620), + [anon_sym_default] = ACTIONS(615), + [anon_sym_cast] = ACTIONS(615), + [anon_sym_DOLLARtype] = ACTIONS(613), + [anon_sym_in] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_this] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(615), + [anon_sym_AT_COLON] = ACTIONS(613), + [anon_sym_if] = ACTIONS(615), + [anon_sym_else] = ACTIONS(615), + [anon_sym_new] = ACTIONS(615), + [sym__prefixUnaryOperator] = ACTIONS(615), + [sym__eitherUnaryOperator] = ACTIONS(613), + [anon_sym_null] = ACTIONS(615), + [anon_sym_dynamic] = ACTIONS(615), + [anon_sym_final] = ACTIONS(615), + [anon_sym_abstract] = ACTIONS(615), + [anon_sym_class] = ACTIONS(615), + [anon_sym_extends] = ACTIONS(615), + [anon_sym_implements] = ACTIONS(615), + [anon_sym_interface] = ACTIONS(615), + [anon_sym_typedef] = ACTIONS(615), + [anon_sym_function] = ACTIONS(615), + [anon_sym_var] = ACTIONS(615), + [aux_sym_integer_token1] = ACTIONS(615), + [aux_sym_integer_token2] = ACTIONS(613), + [aux_sym_float_token1] = ACTIONS(615), + [aux_sym_float_token2] = ACTIONS(613), + [anon_sym_true] = ACTIONS(615), + [anon_sym_false] = ACTIONS(615), + [aux_sym_string_token1] = ACTIONS(613), + [aux_sym_string_token3] = ACTIONS(613), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(615), + [anon_sym_catch] = ACTIONS(615), + [anon_sym_continue] = ACTIONS(615), + [anon_sym_do] = ACTIONS(615), + [anon_sym_enum] = ACTIONS(615), + [anon_sym_extern] = ACTIONS(615), + [anon_sym_for] = ACTIONS(615), + [anon_sym_inline] = ACTIONS(615), + [anon_sym_macro] = ACTIONS(615), + [anon_sym_operator] = ACTIONS(615), + [anon_sym_overload] = ACTIONS(615), + [anon_sym_override] = ACTIONS(615), + [anon_sym_private] = ACTIONS(615), + [anon_sym_public] = ACTIONS(615), + [anon_sym_return] = ACTIONS(615), + [anon_sym_static] = ACTIONS(615), + [anon_sym_try] = ACTIONS(615), + [anon_sym_untyped] = ACTIONS(615), + [anon_sym_while] = ACTIONS(615), + [sym__semicolon] = ACTIONS(613), }, - [113] = { - [ts_builtin_sym_end] = ACTIONS(506), - [sym_identifier] = ACTIONS(508), - [anon_sym_POUND] = ACTIONS(506), - [anon_sym_package] = ACTIONS(508), - [anon_sym_import] = ACTIONS(508), - [anon_sym_using] = ACTIONS(508), - [anon_sym_throw] = ACTIONS(508), - [anon_sym_LPAREN] = ACTIONS(506), - [anon_sym_switch] = ACTIONS(508), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_RBRACE] = ACTIONS(506), - [anon_sym_case] = ACTIONS(508), - [anon_sym_default] = ACTIONS(508), - [anon_sym_cast] = ACTIONS(508), - [anon_sym_COMMA] = ACTIONS(506), - [anon_sym_DOLLARtype] = ACTIONS(506), - [anon_sym_in] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(506), - [anon_sym_this] = ACTIONS(508), - [anon_sym_DOT] = ACTIONS(612), - [anon_sym_QMARK] = ACTIONS(614), - [anon_sym_AT] = ACTIONS(508), - [anon_sym_AT_COLON] = ACTIONS(506), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(508), - [anon_sym_new] = ACTIONS(508), - [anon_sym_TILDE] = ACTIONS(506), - [anon_sym_BANG] = ACTIONS(508), - [anon_sym_DASH] = ACTIONS(508), - [anon_sym_PLUS_PLUS] = ACTIONS(506), - [anon_sym_DASH_DASH] = ACTIONS(506), - [anon_sym_PERCENT] = ACTIONS(506), - [anon_sym_STAR] = ACTIONS(506), - [anon_sym_SLASH] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(506), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_GT_GT_GT] = ACTIONS(506), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_PIPE] = ACTIONS(508), - [anon_sym_CARET] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(506), - [anon_sym_PIPE_PIPE] = ACTIONS(506), - [anon_sym_EQ_EQ] = ACTIONS(506), - [anon_sym_BANG_EQ] = ACTIONS(506), - [anon_sym_LT] = ACTIONS(508), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT] = ACTIONS(508), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_EQ_GT] = ACTIONS(590), - [anon_sym_QMARK_QMARK] = ACTIONS(506), - [anon_sym_EQ] = ACTIONS(508), - [sym__rangeOperator] = ACTIONS(506), - [anon_sym_null] = ACTIONS(508), - [anon_sym_dynamic] = ACTIONS(508), - [anon_sym_final] = ACTIONS(508), - [anon_sym_abstract] = ACTIONS(508), - [anon_sym_class] = ACTIONS(508), - [anon_sym_extends] = ACTIONS(508), - [anon_sym_implements] = ACTIONS(508), - [anon_sym_interface] = ACTIONS(508), - [anon_sym_typedef] = ACTIONS(508), - [anon_sym_function] = ACTIONS(508), - [anon_sym_var] = ACTIONS(508), - [aux_sym_integer_token1] = ACTIONS(508), - [aux_sym_integer_token2] = ACTIONS(506), - [aux_sym_float_token1] = ACTIONS(508), - [aux_sym_float_token2] = ACTIONS(506), - [anon_sym_true] = ACTIONS(508), - [anon_sym_false] = ACTIONS(508), - [aux_sym_string_token1] = ACTIONS(506), - [aux_sym_string_token3] = ACTIONS(506), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(508), - [anon_sym_catch] = ACTIONS(508), - [anon_sym_continue] = ACTIONS(508), - [anon_sym_do] = ACTIONS(508), - [anon_sym_enum] = ACTIONS(508), - [anon_sym_extern] = ACTIONS(508), - [anon_sym_for] = ACTIONS(508), - [anon_sym_inline] = ACTIONS(508), - [anon_sym_macro] = ACTIONS(508), - [anon_sym_operator] = ACTIONS(508), - [anon_sym_overload] = ACTIONS(508), - [anon_sym_override] = ACTIONS(508), - [anon_sym_private] = ACTIONS(508), - [anon_sym_public] = ACTIONS(508), - [anon_sym_return] = ACTIONS(508), - [anon_sym_static] = ACTIONS(508), - [anon_sym_try] = ACTIONS(508), - [anon_sym_untyped] = ACTIONS(508), - [anon_sym_while] = ACTIONS(508), - [sym__semicolon] = ACTIONS(506), + [130] = { + [sym_member_expression] = STATE(28), + [sym__lhs_expression] = STATE(1007), + [sym__literal] = STATE(1172), + [sym_integer] = STATE(1172), + [sym_float] = STATE(1172), + [sym_bool] = STATE(1172), + [sym_string] = STATE(1025), + [sym_null] = STATE(1172), + [sym_array] = STATE(1172), + [sym_map] = STATE(1172), + [sym_object] = STATE(1172), + [sym_pair] = STATE(1172), + [sym_identifier] = ACTIONS(284), + [anon_sym_package] = ACTIONS(276), + [anon_sym_import] = ACTIONS(276), + [anon_sym_using] = ACTIONS(276), + [anon_sym_throw] = ACTIONS(276), + [anon_sym_switch] = ACTIONS(276), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_case] = ACTIONS(276), + [anon_sym_default] = ACTIONS(276), + [anon_sym_cast] = ACTIONS(276), + [anon_sym_in] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_this] = ACTIONS(286), + [anon_sym_if] = ACTIONS(276), + [anon_sym_else] = ACTIONS(276), + [anon_sym_new] = ACTIONS(276), + [anon_sym_null] = ACTIONS(51), + [anon_sym_dynamic] = ACTIONS(276), + [anon_sym_final] = ACTIONS(276), + [anon_sym_abstract] = ACTIONS(276), + [anon_sym_class] = ACTIONS(276), + [anon_sym_extends] = ACTIONS(276), + [anon_sym_implements] = ACTIONS(276), + [anon_sym_interface] = ACTIONS(276), + [anon_sym_typedef] = ACTIONS(276), + [anon_sym_function] = ACTIONS(276), + [anon_sym_var] = ACTIONS(276), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(276), + [anon_sym_catch] = ACTIONS(276), + [anon_sym_continue] = ACTIONS(276), + [anon_sym_do] = ACTIONS(276), + [anon_sym_enum] = ACTIONS(276), + [anon_sym_extern] = ACTIONS(276), + [anon_sym_for] = ACTIONS(276), + [anon_sym_inline] = ACTIONS(276), + [anon_sym_macro] = ACTIONS(276), + [anon_sym_operator] = ACTIONS(276), + [anon_sym_overload] = ACTIONS(276), + [anon_sym_override] = ACTIONS(276), + [anon_sym_private] = ACTIONS(276), + [anon_sym_public] = ACTIONS(276), + [anon_sym_return] = ACTIONS(276), + [anon_sym_static] = ACTIONS(276), + [anon_sym_try] = ACTIONS(276), + [anon_sym_untyped] = ACTIONS(276), + [anon_sym_while] = ACTIONS(276), }, - [114] = { - [ts_builtin_sym_end] = ACTIONS(616), - [sym_identifier] = ACTIONS(618), - [anon_sym_POUND] = ACTIONS(616), - [anon_sym_package] = ACTIONS(618), - [anon_sym_import] = ACTIONS(618), - [anon_sym_using] = ACTIONS(618), - [anon_sym_throw] = ACTIONS(618), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_RPAREN] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(618), - [anon_sym_LBRACE] = ACTIONS(616), - [anon_sym_RBRACE] = ACTIONS(616), - [anon_sym_case] = ACTIONS(618), - [anon_sym_default] = ACTIONS(618), - [anon_sym_cast] = ACTIONS(618), - [anon_sym_COMMA] = ACTIONS(616), - [anon_sym_DOLLARtype] = ACTIONS(616), - [anon_sym_in] = ACTIONS(618), - [anon_sym_LBRACK] = ACTIONS(616), - [anon_sym_this] = ACTIONS(618), - [anon_sym_DASH_GT] = ACTIONS(616), - [anon_sym_AT] = ACTIONS(618), - [anon_sym_AT_COLON] = ACTIONS(616), - [anon_sym_if] = ACTIONS(618), - [anon_sym_else] = ACTIONS(618), - [anon_sym_new] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(616), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_PLUS_PLUS] = ACTIONS(616), - [anon_sym_DASH_DASH] = ACTIONS(616), - [anon_sym_PERCENT] = ACTIONS(616), - [anon_sym_STAR] = ACTIONS(616), - [anon_sym_SLASH] = ACTIONS(618), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_LT_LT] = ACTIONS(616), - [anon_sym_GT_GT] = ACTIONS(618), - [anon_sym_GT_GT_GT] = ACTIONS(616), - [anon_sym_AMP] = ACTIONS(618), - [anon_sym_PIPE] = ACTIONS(618), - [anon_sym_CARET] = ACTIONS(616), - [anon_sym_AMP_AMP] = ACTIONS(616), - [anon_sym_PIPE_PIPE] = ACTIONS(616), - [anon_sym_EQ_EQ] = ACTIONS(616), - [anon_sym_BANG_EQ] = ACTIONS(616), - [anon_sym_LT] = ACTIONS(618), - [anon_sym_LT_EQ] = ACTIONS(616), - [anon_sym_GT] = ACTIONS(618), - [anon_sym_GT_EQ] = ACTIONS(616), - [anon_sym_EQ_GT] = ACTIONS(616), - [anon_sym_QMARK_QMARK] = ACTIONS(616), - [anon_sym_EQ] = ACTIONS(618), - [sym__rangeOperator] = ACTIONS(616), - [anon_sym_null] = ACTIONS(618), - [anon_sym_dynamic] = ACTIONS(618), - [anon_sym_final] = ACTIONS(618), - [anon_sym_abstract] = ACTIONS(618), - [anon_sym_class] = ACTIONS(618), - [anon_sym_extends] = ACTIONS(618), - [anon_sym_implements] = ACTIONS(618), - [anon_sym_interface] = ACTIONS(618), - [anon_sym_typedef] = ACTIONS(618), - [anon_sym_function] = ACTIONS(618), - [anon_sym_var] = ACTIONS(618), - [aux_sym_integer_token1] = ACTIONS(618), - [aux_sym_integer_token2] = ACTIONS(616), - [aux_sym_float_token1] = ACTIONS(618), - [aux_sym_float_token2] = ACTIONS(616), - [anon_sym_true] = ACTIONS(618), - [anon_sym_false] = ACTIONS(618), - [aux_sym_string_token1] = ACTIONS(616), - [aux_sym_string_token3] = ACTIONS(616), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(618), - [anon_sym_catch] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(618), - [anon_sym_do] = ACTIONS(618), - [anon_sym_enum] = ACTIONS(618), - [anon_sym_extern] = ACTIONS(618), - [anon_sym_for] = ACTIONS(618), - [anon_sym_inline] = ACTIONS(618), - [anon_sym_macro] = ACTIONS(618), - [anon_sym_operator] = ACTIONS(618), - [anon_sym_overload] = ACTIONS(618), - [anon_sym_override] = ACTIONS(618), - [anon_sym_private] = ACTIONS(618), - [anon_sym_public] = ACTIONS(618), - [anon_sym_return] = ACTIONS(618), - [anon_sym_static] = ACTIONS(618), - [anon_sym_try] = ACTIONS(618), - [anon_sym_untyped] = ACTIONS(618), - [anon_sym_while] = ACTIONS(618), - [sym__semicolon] = ACTIONS(616), + [131] = { + [sym_member_expression] = STATE(28), + [sym__lhs_expression] = STATE(1123), + [sym__literal] = STATE(1172), + [sym_integer] = STATE(1172), + [sym_float] = STATE(1172), + [sym_bool] = STATE(1172), + [sym_string] = STATE(1025), + [sym_null] = STATE(1172), + [sym_array] = STATE(1172), + [sym_map] = STATE(1172), + [sym_object] = STATE(1172), + [sym_pair] = STATE(1172), + [sym_identifier] = ACTIONS(284), + [anon_sym_package] = ACTIONS(276), + [anon_sym_import] = ACTIONS(276), + [anon_sym_using] = ACTIONS(276), + [anon_sym_throw] = ACTIONS(276), + [anon_sym_switch] = ACTIONS(276), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_case] = ACTIONS(276), + [anon_sym_default] = ACTIONS(276), + [anon_sym_cast] = ACTIONS(276), + [anon_sym_in] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_this] = ACTIONS(286), + [anon_sym_if] = ACTIONS(276), + [anon_sym_else] = ACTIONS(276), + [anon_sym_new] = ACTIONS(276), + [anon_sym_null] = ACTIONS(51), + [anon_sym_dynamic] = ACTIONS(276), + [anon_sym_final] = ACTIONS(276), + [anon_sym_abstract] = ACTIONS(276), + [anon_sym_class] = ACTIONS(276), + [anon_sym_extends] = ACTIONS(276), + [anon_sym_implements] = ACTIONS(276), + [anon_sym_interface] = ACTIONS(276), + [anon_sym_typedef] = ACTIONS(276), + [anon_sym_function] = ACTIONS(276), + [anon_sym_var] = ACTIONS(276), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(276), + [anon_sym_catch] = ACTIONS(276), + [anon_sym_continue] = ACTIONS(276), + [anon_sym_do] = ACTIONS(276), + [anon_sym_enum] = ACTIONS(276), + [anon_sym_extern] = ACTIONS(276), + [anon_sym_for] = ACTIONS(276), + [anon_sym_inline] = ACTIONS(276), + [anon_sym_macro] = ACTIONS(276), + [anon_sym_operator] = ACTIONS(276), + [anon_sym_overload] = ACTIONS(276), + [anon_sym_override] = ACTIONS(276), + [anon_sym_private] = ACTIONS(276), + [anon_sym_public] = ACTIONS(276), + [anon_sym_return] = ACTIONS(276), + [anon_sym_static] = ACTIONS(276), + [anon_sym_try] = ACTIONS(276), + [anon_sym_untyped] = ACTIONS(276), + [anon_sym_while] = ACTIONS(276), }, - [115] = { - [sym_type_params] = STATE(116), - [ts_builtin_sym_end] = ACTIONS(620), - [sym_identifier] = ACTIONS(622), - [anon_sym_POUND] = ACTIONS(620), - [anon_sym_package] = ACTIONS(622), - [anon_sym_import] = ACTIONS(622), - [anon_sym_using] = ACTIONS(622), - [anon_sym_throw] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(620), - [anon_sym_RPAREN] = ACTIONS(620), - [anon_sym_switch] = ACTIONS(622), - [anon_sym_LBRACE] = ACTIONS(620), - [anon_sym_RBRACE] = ACTIONS(620), - [anon_sym_case] = ACTIONS(622), - [anon_sym_default] = ACTIONS(622), - [anon_sym_cast] = ACTIONS(622), - [anon_sym_DOLLARtype] = ACTIONS(620), - [anon_sym_in] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(620), - [anon_sym_this] = ACTIONS(622), - [anon_sym_DASH_GT] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(622), - [anon_sym_AT_COLON] = ACTIONS(620), - [anon_sym_if] = ACTIONS(622), - [anon_sym_else] = ACTIONS(622), + [132] = { + [sym_member_expression] = STATE(28), + [sym__lhs_expression] = STATE(1108), + [sym__literal] = STATE(1172), + [sym_integer] = STATE(1172), + [sym_float] = STATE(1172), + [sym_bool] = STATE(1172), + [sym_string] = STATE(1025), + [sym_null] = STATE(1172), + [sym_array] = STATE(1172), + [sym_map] = STATE(1172), + [sym_object] = STATE(1172), + [sym_pair] = STATE(1172), + [sym_identifier] = ACTIONS(284), + [anon_sym_package] = ACTIONS(276), + [anon_sym_import] = ACTIONS(276), + [anon_sym_using] = ACTIONS(276), + [anon_sym_throw] = ACTIONS(276), + [anon_sym_switch] = ACTIONS(276), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_case] = ACTIONS(276), + [anon_sym_default] = ACTIONS(276), + [anon_sym_cast] = ACTIONS(276), + [anon_sym_in] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_this] = ACTIONS(286), + [anon_sym_if] = ACTIONS(276), + [anon_sym_else] = ACTIONS(276), [anon_sym_new] = ACTIONS(622), - [anon_sym_TILDE] = ACTIONS(620), - [anon_sym_BANG] = ACTIONS(622), - [anon_sym_DASH] = ACTIONS(622), - [anon_sym_PLUS_PLUS] = ACTIONS(620), - [anon_sym_DASH_DASH] = ACTIONS(620), - [anon_sym_PERCENT] = ACTIONS(620), - [anon_sym_STAR] = ACTIONS(620), - [anon_sym_SLASH] = ACTIONS(622), - [anon_sym_PLUS] = ACTIONS(622), - [anon_sym_LT_LT] = ACTIONS(620), - [anon_sym_GT_GT] = ACTIONS(622), - [anon_sym_GT_GT_GT] = ACTIONS(620), - [anon_sym_AMP] = ACTIONS(622), - [anon_sym_PIPE] = ACTIONS(622), - [anon_sym_CARET] = ACTIONS(620), - [anon_sym_AMP_AMP] = ACTIONS(620), - [anon_sym_PIPE_PIPE] = ACTIONS(620), - [anon_sym_EQ_EQ] = ACTIONS(620), - [anon_sym_BANG_EQ] = ACTIONS(620), - [anon_sym_LT] = ACTIONS(624), - [anon_sym_LT_EQ] = ACTIONS(620), - [anon_sym_GT] = ACTIONS(622), - [anon_sym_GT_EQ] = ACTIONS(620), - [anon_sym_EQ_GT] = ACTIONS(620), - [anon_sym_QMARK_QMARK] = ACTIONS(620), - [anon_sym_EQ] = ACTIONS(622), - [sym__rangeOperator] = ACTIONS(620), - [anon_sym_null] = ACTIONS(622), - [anon_sym_dynamic] = ACTIONS(622), - [anon_sym_final] = ACTIONS(622), - [anon_sym_abstract] = ACTIONS(622), - [anon_sym_class] = ACTIONS(622), - [anon_sym_extends] = ACTIONS(622), - [anon_sym_implements] = ACTIONS(622), - [anon_sym_interface] = ACTIONS(622), - [anon_sym_typedef] = ACTIONS(622), - [anon_sym_function] = ACTIONS(622), - [anon_sym_var] = ACTIONS(622), - [aux_sym_integer_token1] = ACTIONS(622), - [aux_sym_integer_token2] = ACTIONS(620), - [aux_sym_float_token1] = ACTIONS(622), - [aux_sym_float_token2] = ACTIONS(620), - [anon_sym_true] = ACTIONS(622), - [anon_sym_false] = ACTIONS(622), - [aux_sym_string_token1] = ACTIONS(620), - [aux_sym_string_token3] = ACTIONS(620), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(622), - [anon_sym_catch] = ACTIONS(622), - [anon_sym_continue] = ACTIONS(622), - [anon_sym_do] = ACTIONS(622), - [anon_sym_enum] = ACTIONS(622), - [anon_sym_extern] = ACTIONS(622), - [anon_sym_for] = ACTIONS(622), - [anon_sym_inline] = ACTIONS(622), - [anon_sym_macro] = ACTIONS(622), - [anon_sym_operator] = ACTIONS(622), - [anon_sym_overload] = ACTIONS(622), - [anon_sym_override] = ACTIONS(622), - [anon_sym_private] = ACTIONS(622), - [anon_sym_public] = ACTIONS(622), - [anon_sym_return] = ACTIONS(622), - [anon_sym_static] = ACTIONS(622), - [anon_sym_try] = ACTIONS(622), - [anon_sym_untyped] = ACTIONS(622), - [anon_sym_while] = ACTIONS(622), - [sym__semicolon] = ACTIONS(620), + [anon_sym_null] = ACTIONS(51), + [anon_sym_dynamic] = ACTIONS(276), + [anon_sym_final] = ACTIONS(276), + [anon_sym_abstract] = ACTIONS(276), + [anon_sym_class] = ACTIONS(276), + [anon_sym_extends] = ACTIONS(276), + [anon_sym_implements] = ACTIONS(276), + [anon_sym_interface] = ACTIONS(276), + [anon_sym_typedef] = ACTIONS(276), + [anon_sym_function] = ACTIONS(276), + [anon_sym_var] = ACTIONS(276), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(276), + [anon_sym_catch] = ACTIONS(276), + [anon_sym_continue] = ACTIONS(276), + [anon_sym_do] = ACTIONS(276), + [anon_sym_enum] = ACTIONS(276), + [anon_sym_extern] = ACTIONS(276), + [anon_sym_for] = ACTIONS(276), + [anon_sym_inline] = ACTIONS(276), + [anon_sym_macro] = ACTIONS(276), + [anon_sym_operator] = ACTIONS(276), + [anon_sym_overload] = ACTIONS(276), + [anon_sym_override] = ACTIONS(276), + [anon_sym_private] = ACTIONS(276), + [anon_sym_public] = ACTIONS(276), + [anon_sym_return] = ACTIONS(276), + [anon_sym_static] = ACTIONS(276), + [anon_sym_try] = ACTIONS(276), + [anon_sym_untyped] = ACTIONS(276), + [anon_sym_while] = ACTIONS(276), }, - [116] = { - [ts_builtin_sym_end] = ACTIONS(626), - [sym_identifier] = ACTIONS(628), - [anon_sym_POUND] = ACTIONS(626), - [anon_sym_package] = ACTIONS(628), - [anon_sym_import] = ACTIONS(628), - [anon_sym_using] = ACTIONS(628), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_RPAREN] = ACTIONS(626), - [anon_sym_switch] = ACTIONS(628), - [anon_sym_LBRACE] = ACTIONS(626), - [anon_sym_RBRACE] = ACTIONS(626), - [anon_sym_case] = ACTIONS(628), - [anon_sym_default] = ACTIONS(628), - [anon_sym_cast] = ACTIONS(628), - [anon_sym_COMMA] = ACTIONS(626), - [anon_sym_DOLLARtype] = ACTIONS(626), - [anon_sym_in] = ACTIONS(628), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_this] = ACTIONS(628), - [anon_sym_DASH_GT] = ACTIONS(626), - [anon_sym_AT] = ACTIONS(628), - [anon_sym_AT_COLON] = ACTIONS(626), - [anon_sym_if] = ACTIONS(628), - [anon_sym_else] = ACTIONS(628), - [anon_sym_new] = ACTIONS(628), - [anon_sym_TILDE] = ACTIONS(626), - [anon_sym_BANG] = ACTIONS(628), - [anon_sym_DASH] = ACTIONS(628), - [anon_sym_PLUS_PLUS] = ACTIONS(626), - [anon_sym_DASH_DASH] = ACTIONS(626), - [anon_sym_PERCENT] = ACTIONS(626), - [anon_sym_STAR] = ACTIONS(626), - [anon_sym_SLASH] = ACTIONS(628), - [anon_sym_PLUS] = ACTIONS(628), - [anon_sym_LT_LT] = ACTIONS(626), - [anon_sym_GT_GT] = ACTIONS(628), - [anon_sym_GT_GT_GT] = ACTIONS(626), - [anon_sym_AMP] = ACTIONS(628), - [anon_sym_PIPE] = ACTIONS(628), - [anon_sym_CARET] = ACTIONS(626), - [anon_sym_AMP_AMP] = ACTIONS(626), - [anon_sym_PIPE_PIPE] = ACTIONS(626), - [anon_sym_EQ_EQ] = ACTIONS(626), - [anon_sym_BANG_EQ] = ACTIONS(626), - [anon_sym_LT] = ACTIONS(628), - [anon_sym_LT_EQ] = ACTIONS(626), - [anon_sym_GT] = ACTIONS(628), - [anon_sym_GT_EQ] = ACTIONS(626), - [anon_sym_EQ_GT] = ACTIONS(626), - [anon_sym_QMARK_QMARK] = ACTIONS(626), - [anon_sym_EQ] = ACTIONS(628), - [sym__rangeOperator] = ACTIONS(626), - [anon_sym_null] = ACTIONS(628), - [anon_sym_dynamic] = ACTIONS(628), - [anon_sym_final] = ACTIONS(628), - [anon_sym_abstract] = ACTIONS(628), - [anon_sym_class] = ACTIONS(628), - [anon_sym_extends] = ACTIONS(628), - [anon_sym_implements] = ACTIONS(628), - [anon_sym_interface] = ACTIONS(628), - [anon_sym_typedef] = ACTIONS(628), - [anon_sym_function] = ACTIONS(628), - [anon_sym_var] = ACTIONS(628), - [aux_sym_integer_token1] = ACTIONS(628), - [aux_sym_integer_token2] = ACTIONS(626), - [aux_sym_float_token1] = ACTIONS(628), - [aux_sym_float_token2] = ACTIONS(626), - [anon_sym_true] = ACTIONS(628), - [anon_sym_false] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(626), - [aux_sym_string_token3] = ACTIONS(626), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(628), - [anon_sym_catch] = ACTIONS(628), - [anon_sym_continue] = ACTIONS(628), - [anon_sym_do] = ACTIONS(628), - [anon_sym_enum] = ACTIONS(628), - [anon_sym_extern] = ACTIONS(628), - [anon_sym_for] = ACTIONS(628), - [anon_sym_inline] = ACTIONS(628), - [anon_sym_macro] = ACTIONS(628), - [anon_sym_operator] = ACTIONS(628), - [anon_sym_overload] = ACTIONS(628), - [anon_sym_override] = ACTIONS(628), - [anon_sym_private] = ACTIONS(628), - [anon_sym_public] = ACTIONS(628), - [anon_sym_return] = ACTIONS(628), - [anon_sym_static] = ACTIONS(628), - [anon_sym_try] = ACTIONS(628), - [anon_sym_untyped] = ACTIONS(628), - [anon_sym_while] = ACTIONS(628), - [sym__semicolon] = ACTIONS(626), + [133] = { + [sym_block] = STATE(198), + [ts_builtin_sym_end] = ACTIONS(624), + [sym_identifier] = ACTIONS(626), + [anon_sym_POUND] = ACTIONS(624), + [anon_sym_package] = ACTIONS(626), + [anon_sym_import] = ACTIONS(626), + [anon_sym_using] = ACTIONS(626), + [anon_sym_throw] = ACTIONS(626), + [anon_sym_LPAREN] = ACTIONS(624), + [anon_sym_switch] = ACTIONS(626), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_RBRACE] = ACTIONS(624), + [anon_sym_case] = ACTIONS(626), + [anon_sym_default] = ACTIONS(626), + [anon_sym_cast] = ACTIONS(626), + [anon_sym_DOLLARtype] = ACTIONS(624), + [anon_sym_in] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_this] = ACTIONS(626), + [anon_sym_DASH_GT] = ACTIONS(570), + [anon_sym_AT] = ACTIONS(626), + [anon_sym_AT_COLON] = ACTIONS(624), + [anon_sym_if] = ACTIONS(626), + [anon_sym_else] = ACTIONS(626), + [anon_sym_new] = ACTIONS(626), + [sym__prefixUnaryOperator] = ACTIONS(626), + [sym__eitherUnaryOperator] = ACTIONS(624), + [anon_sym_null] = ACTIONS(626), + [anon_sym_dynamic] = ACTIONS(626), + [anon_sym_final] = ACTIONS(626), + [anon_sym_abstract] = ACTIONS(626), + [anon_sym_class] = ACTIONS(626), + [anon_sym_extends] = ACTIONS(626), + [anon_sym_implements] = ACTIONS(626), + [anon_sym_interface] = ACTIONS(626), + [anon_sym_typedef] = ACTIONS(626), + [anon_sym_function] = ACTIONS(626), + [anon_sym_var] = ACTIONS(626), + [aux_sym_integer_token1] = ACTIONS(626), + [aux_sym_integer_token2] = ACTIONS(624), + [aux_sym_float_token1] = ACTIONS(626), + [aux_sym_float_token2] = ACTIONS(624), + [anon_sym_true] = ACTIONS(626), + [anon_sym_false] = ACTIONS(626), + [aux_sym_string_token1] = ACTIONS(624), + [aux_sym_string_token3] = ACTIONS(624), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(626), + [anon_sym_catch] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(626), + [anon_sym_do] = ACTIONS(626), + [anon_sym_enum] = ACTIONS(626), + [anon_sym_extern] = ACTIONS(626), + [anon_sym_for] = ACTIONS(626), + [anon_sym_inline] = ACTIONS(626), + [anon_sym_macro] = ACTIONS(626), + [anon_sym_operator] = ACTIONS(626), + [anon_sym_overload] = ACTIONS(626), + [anon_sym_override] = ACTIONS(626), + [anon_sym_private] = ACTIONS(626), + [anon_sym_public] = ACTIONS(626), + [anon_sym_return] = ACTIONS(626), + [anon_sym_static] = ACTIONS(626), + [anon_sym_try] = ACTIONS(626), + [anon_sym_untyped] = ACTIONS(626), + [anon_sym_while] = ACTIONS(626), + [sym__semicolon] = ACTIONS(624), }, - [117] = { - [ts_builtin_sym_end] = ACTIONS(506), - [sym_identifier] = ACTIONS(508), - [anon_sym_POUND] = ACTIONS(506), - [anon_sym_package] = ACTIONS(508), - [anon_sym_import] = ACTIONS(508), - [anon_sym_using] = ACTIONS(508), - [anon_sym_throw] = ACTIONS(508), - [anon_sym_LPAREN] = ACTIONS(424), - [anon_sym_switch] = ACTIONS(508), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_RBRACE] = ACTIONS(506), - [anon_sym_case] = ACTIONS(508), - [anon_sym_COLON] = ACTIONS(590), - [anon_sym_default] = ACTIONS(508), - [anon_sym_cast] = ACTIONS(508), - [anon_sym_DOLLARtype] = ACTIONS(506), - [anon_sym_in] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(506), - [anon_sym_this] = ACTIONS(508), - [anon_sym_DOT] = ACTIONS(430), - [anon_sym_QMARK] = ACTIONS(432), - [anon_sym_AT] = ACTIONS(508), - [anon_sym_AT_COLON] = ACTIONS(506), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(508), - [anon_sym_new] = ACTIONS(508), - [anon_sym_TILDE] = ACTIONS(506), - [anon_sym_BANG] = ACTIONS(508), - [anon_sym_DASH] = ACTIONS(508), - [anon_sym_PLUS_PLUS] = ACTIONS(506), - [anon_sym_DASH_DASH] = ACTIONS(506), - [anon_sym_PERCENT] = ACTIONS(506), - [anon_sym_STAR] = ACTIONS(506), - [anon_sym_SLASH] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(506), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_GT_GT_GT] = ACTIONS(506), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_PIPE] = ACTIONS(508), - [anon_sym_CARET] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(506), - [anon_sym_PIPE_PIPE] = ACTIONS(506), - [anon_sym_EQ_EQ] = ACTIONS(506), - [anon_sym_BANG_EQ] = ACTIONS(506), - [anon_sym_LT] = ACTIONS(426), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT] = ACTIONS(508), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_EQ_GT] = ACTIONS(590), - [anon_sym_QMARK_QMARK] = ACTIONS(506), - [anon_sym_EQ] = ACTIONS(508), - [sym__rangeOperator] = ACTIONS(506), - [anon_sym_null] = ACTIONS(508), - [anon_sym_dynamic] = ACTIONS(508), - [anon_sym_final] = ACTIONS(508), - [anon_sym_abstract] = ACTIONS(508), - [anon_sym_class] = ACTIONS(508), - [anon_sym_extends] = ACTIONS(508), - [anon_sym_implements] = ACTIONS(508), - [anon_sym_interface] = ACTIONS(508), - [anon_sym_typedef] = ACTIONS(508), - [anon_sym_function] = ACTIONS(508), - [anon_sym_var] = ACTIONS(508), - [aux_sym_integer_token1] = ACTIONS(508), - [aux_sym_integer_token2] = ACTIONS(506), - [aux_sym_float_token1] = ACTIONS(508), - [aux_sym_float_token2] = ACTIONS(506), - [anon_sym_true] = ACTIONS(508), - [anon_sym_false] = ACTIONS(508), - [aux_sym_string_token1] = ACTIONS(506), - [aux_sym_string_token3] = ACTIONS(506), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(508), - [anon_sym_catch] = ACTIONS(508), - [anon_sym_continue] = ACTIONS(508), - [anon_sym_do] = ACTIONS(508), - [anon_sym_enum] = ACTIONS(508), - [anon_sym_extern] = ACTIONS(508), - [anon_sym_for] = ACTIONS(508), - [anon_sym_inline] = ACTIONS(508), - [anon_sym_macro] = ACTIONS(508), - [anon_sym_operator] = ACTIONS(508), - [anon_sym_overload] = ACTIONS(508), - [anon_sym_override] = ACTIONS(508), - [anon_sym_private] = ACTIONS(508), - [anon_sym_public] = ACTIONS(508), - [anon_sym_return] = ACTIONS(508), - [anon_sym_static] = ACTIONS(508), - [anon_sym_try] = ACTIONS(508), - [anon_sym_untyped] = ACTIONS(508), - [anon_sym_while] = ACTIONS(508), - [sym__semicolon] = ACTIONS(506), + [134] = { + [sym_block] = STATE(218), + [ts_builtin_sym_end] = ACTIONS(631), + [sym_identifier] = ACTIONS(633), + [anon_sym_POUND] = ACTIONS(631), + [anon_sym_package] = ACTIONS(633), + [anon_sym_import] = ACTIONS(633), + [anon_sym_using] = ACTIONS(633), + [anon_sym_throw] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_switch] = ACTIONS(633), + [anon_sym_LBRACE] = ACTIONS(635), + [anon_sym_RBRACE] = ACTIONS(631), + [anon_sym_case] = ACTIONS(633), + [anon_sym_COLON] = ACTIONS(638), + [anon_sym_default] = ACTIONS(633), + [anon_sym_cast] = ACTIONS(633), + [anon_sym_DOLLARtype] = ACTIONS(631), + [anon_sym_in] = ACTIONS(633), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_this] = ACTIONS(633), + [anon_sym_AT] = ACTIONS(633), + [anon_sym_AT_COLON] = ACTIONS(631), + [anon_sym_if] = ACTIONS(633), + [anon_sym_else] = ACTIONS(633), + [anon_sym_new] = ACTIONS(633), + [sym__prefixUnaryOperator] = ACTIONS(633), + [sym__eitherUnaryOperator] = ACTIONS(631), + [anon_sym_null] = ACTIONS(633), + [anon_sym_dynamic] = ACTIONS(633), + [anon_sym_final] = ACTIONS(633), + [anon_sym_abstract] = ACTIONS(633), + [anon_sym_class] = ACTIONS(633), + [anon_sym_extends] = ACTIONS(633), + [anon_sym_implements] = ACTIONS(633), + [anon_sym_interface] = ACTIONS(633), + [anon_sym_typedef] = ACTIONS(633), + [anon_sym_function] = ACTIONS(633), + [anon_sym_var] = ACTIONS(633), + [aux_sym_integer_token1] = ACTIONS(633), + [aux_sym_integer_token2] = ACTIONS(631), + [aux_sym_float_token1] = ACTIONS(633), + [aux_sym_float_token2] = ACTIONS(631), + [anon_sym_true] = ACTIONS(633), + [anon_sym_false] = ACTIONS(633), + [aux_sym_string_token1] = ACTIONS(631), + [aux_sym_string_token3] = ACTIONS(631), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(633), + [anon_sym_catch] = ACTIONS(633), + [anon_sym_continue] = ACTIONS(633), + [anon_sym_do] = ACTIONS(633), + [anon_sym_enum] = ACTIONS(633), + [anon_sym_extern] = ACTIONS(633), + [anon_sym_for] = ACTIONS(633), + [anon_sym_inline] = ACTIONS(633), + [anon_sym_macro] = ACTIONS(633), + [anon_sym_operator] = ACTIONS(633), + [anon_sym_overload] = ACTIONS(633), + [anon_sym_override] = ACTIONS(633), + [anon_sym_private] = ACTIONS(633), + [anon_sym_public] = ACTIONS(633), + [anon_sym_return] = ACTIONS(633), + [anon_sym_static] = ACTIONS(633), + [anon_sym_try] = ACTIONS(633), + [anon_sym_untyped] = ACTIONS(633), + [anon_sym_while] = ACTIONS(633), + [sym__semicolon] = ACTIONS(631), }, - [118] = { - [ts_builtin_sym_end] = ACTIONS(630), - [sym_identifier] = ACTIONS(632), - [anon_sym_POUND] = ACTIONS(630), - [anon_sym_package] = ACTIONS(632), - [anon_sym_import] = ACTIONS(632), - [anon_sym_using] = ACTIONS(632), - [anon_sym_throw] = ACTIONS(632), - [anon_sym_LPAREN] = ACTIONS(630), - [anon_sym_RPAREN] = ACTIONS(630), - [anon_sym_switch] = ACTIONS(632), - [anon_sym_LBRACE] = ACTIONS(630), - [anon_sym_RBRACE] = ACTIONS(630), - [anon_sym_case] = ACTIONS(632), - [anon_sym_default] = ACTIONS(632), - [anon_sym_cast] = ACTIONS(632), - [anon_sym_COMMA] = ACTIONS(630), - [anon_sym_DOLLARtype] = ACTIONS(630), - [anon_sym_in] = ACTIONS(632), - [anon_sym_LBRACK] = ACTIONS(630), - [anon_sym_this] = ACTIONS(632), - [anon_sym_DASH_GT] = ACTIONS(630), - [anon_sym_AT] = ACTIONS(632), - [anon_sym_AT_COLON] = ACTIONS(630), - [anon_sym_if] = ACTIONS(632), - [anon_sym_else] = ACTIONS(632), - [anon_sym_new] = ACTIONS(632), - [anon_sym_TILDE] = ACTIONS(630), - [anon_sym_BANG] = ACTIONS(632), - [anon_sym_DASH] = ACTIONS(632), - [anon_sym_PLUS_PLUS] = ACTIONS(630), - [anon_sym_DASH_DASH] = ACTIONS(630), - [anon_sym_PERCENT] = ACTIONS(630), - [anon_sym_STAR] = ACTIONS(630), - [anon_sym_SLASH] = ACTIONS(632), - [anon_sym_PLUS] = ACTIONS(632), - [anon_sym_LT_LT] = ACTIONS(630), - [anon_sym_GT_GT] = ACTIONS(632), - [anon_sym_GT_GT_GT] = ACTIONS(630), - [anon_sym_AMP] = ACTIONS(632), - [anon_sym_PIPE] = ACTIONS(632), - [anon_sym_CARET] = ACTIONS(630), - [anon_sym_AMP_AMP] = ACTIONS(630), - [anon_sym_PIPE_PIPE] = ACTIONS(630), - [anon_sym_EQ_EQ] = ACTIONS(630), - [anon_sym_BANG_EQ] = ACTIONS(630), - [anon_sym_LT] = ACTIONS(632), - [anon_sym_LT_EQ] = ACTIONS(630), - [anon_sym_GT] = ACTIONS(632), - [anon_sym_GT_EQ] = ACTIONS(630), - [anon_sym_EQ_GT] = ACTIONS(630), - [anon_sym_QMARK_QMARK] = ACTIONS(630), - [anon_sym_EQ] = ACTIONS(632), - [sym__rangeOperator] = ACTIONS(630), - [anon_sym_null] = ACTIONS(632), - [anon_sym_dynamic] = ACTIONS(632), - [anon_sym_final] = ACTIONS(632), - [anon_sym_abstract] = ACTIONS(632), - [anon_sym_class] = ACTIONS(632), - [anon_sym_extends] = ACTIONS(632), - [anon_sym_implements] = ACTIONS(632), - [anon_sym_interface] = ACTIONS(632), - [anon_sym_typedef] = ACTIONS(632), - [anon_sym_function] = ACTIONS(632), - [anon_sym_var] = ACTIONS(632), - [aux_sym_integer_token1] = ACTIONS(632), - [aux_sym_integer_token2] = ACTIONS(630), - [aux_sym_float_token1] = ACTIONS(632), - [aux_sym_float_token2] = ACTIONS(630), - [anon_sym_true] = ACTIONS(632), - [anon_sym_false] = ACTIONS(632), - [aux_sym_string_token1] = ACTIONS(630), - [aux_sym_string_token3] = ACTIONS(630), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(632), - [anon_sym_catch] = ACTIONS(632), - [anon_sym_continue] = ACTIONS(632), - [anon_sym_do] = ACTIONS(632), - [anon_sym_enum] = ACTIONS(632), - [anon_sym_extern] = ACTIONS(632), - [anon_sym_for] = ACTIONS(632), - [anon_sym_inline] = ACTIONS(632), - [anon_sym_macro] = ACTIONS(632), - [anon_sym_operator] = ACTIONS(632), - [anon_sym_overload] = ACTIONS(632), - [anon_sym_override] = ACTIONS(632), - [anon_sym_private] = ACTIONS(632), - [anon_sym_public] = ACTIONS(632), - [anon_sym_return] = ACTIONS(632), - [anon_sym_static] = ACTIONS(632), - [anon_sym_try] = ACTIONS(632), - [anon_sym_untyped] = ACTIONS(632), - [anon_sym_while] = ACTIONS(632), - [sym__semicolon] = ACTIONS(630), + [135] = { + [sym_member_expression] = STATE(28), + [sym__lhs_expression] = STATE(1253), + [sym__literal] = STATE(1172), + [sym_integer] = STATE(1172), + [sym_float] = STATE(1172), + [sym_bool] = STATE(1172), + [sym_string] = STATE(1025), + [sym_null] = STATE(1172), + [sym_array] = STATE(1172), + [sym_map] = STATE(1172), + [sym_object] = STATE(1172), + [sym_pair] = STATE(1172), + [sym_identifier] = ACTIONS(284), + [anon_sym_package] = ACTIONS(276), + [anon_sym_import] = ACTIONS(276), + [anon_sym_using] = ACTIONS(276), + [anon_sym_throw] = ACTIONS(276), + [anon_sym_switch] = ACTIONS(276), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_case] = ACTIONS(276), + [anon_sym_default] = ACTIONS(276), + [anon_sym_cast] = ACTIONS(276), + [anon_sym_in] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_this] = ACTIONS(286), + [anon_sym_if] = ACTIONS(276), + [anon_sym_else] = ACTIONS(276), + [anon_sym_new] = ACTIONS(276), + [anon_sym_null] = ACTIONS(51), + [anon_sym_dynamic] = ACTIONS(276), + [anon_sym_final] = ACTIONS(276), + [anon_sym_abstract] = ACTIONS(276), + [anon_sym_class] = ACTIONS(276), + [anon_sym_extends] = ACTIONS(276), + [anon_sym_implements] = ACTIONS(276), + [anon_sym_interface] = ACTIONS(276), + [anon_sym_typedef] = ACTIONS(276), + [anon_sym_function] = ACTIONS(276), + [anon_sym_var] = ACTIONS(276), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(276), + [anon_sym_catch] = ACTIONS(276), + [anon_sym_continue] = ACTIONS(276), + [anon_sym_do] = ACTIONS(276), + [anon_sym_enum] = ACTIONS(276), + [anon_sym_extern] = ACTIONS(276), + [anon_sym_for] = ACTIONS(276), + [anon_sym_inline] = ACTIONS(276), + [anon_sym_macro] = ACTIONS(276), + [anon_sym_operator] = ACTIONS(276), + [anon_sym_overload] = ACTIONS(276), + [anon_sym_override] = ACTIONS(276), + [anon_sym_private] = ACTIONS(276), + [anon_sym_public] = ACTIONS(276), + [anon_sym_return] = ACTIONS(276), + [anon_sym_static] = ACTIONS(276), + [anon_sym_try] = ACTIONS(276), + [anon_sym_untyped] = ACTIONS(276), + [anon_sym_while] = ACTIONS(276), }, - [119] = { - [aux_sym_map_repeat1] = STATE(1144), - [sym_identifier] = ACTIONS(588), - [anon_sym_POUND] = ACTIONS(586), - [anon_sym_package] = ACTIONS(588), - [anon_sym_import] = ACTIONS(588), - [anon_sym_using] = ACTIONS(588), - [anon_sym_throw] = ACTIONS(588), - [anon_sym_LPAREN] = ACTIONS(586), - [anon_sym_switch] = ACTIONS(588), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_RBRACE] = ACTIONS(634), - [anon_sym_case] = ACTIONS(588), - [anon_sym_default] = ACTIONS(588), - [anon_sym_cast] = ACTIONS(588), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_DOLLARtype] = ACTIONS(586), - [anon_sym_in] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_this] = ACTIONS(588), - [anon_sym_DOT] = ACTIONS(588), - [anon_sym_QMARK] = ACTIONS(588), - [anon_sym_AT] = ACTIONS(588), - [anon_sym_AT_COLON] = ACTIONS(586), - [anon_sym_if] = ACTIONS(588), - [anon_sym_else] = ACTIONS(588), - [anon_sym_new] = ACTIONS(588), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(586), - [anon_sym_DASH_DASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(588), - [anon_sym_GT_GT_GT] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(588), - [anon_sym_PIPE] = ACTIONS(588), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(586), - [anon_sym_BANG_EQ] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_LT_EQ] = ACTIONS(586), - [anon_sym_GT] = ACTIONS(588), - [anon_sym_GT_EQ] = ACTIONS(586), - [anon_sym_EQ_GT] = ACTIONS(586), - [anon_sym_QMARK_QMARK] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(588), - [sym__rangeOperator] = ACTIONS(586), - [anon_sym_null] = ACTIONS(588), - [anon_sym_dynamic] = ACTIONS(588), - [anon_sym_final] = ACTIONS(588), - [anon_sym_abstract] = ACTIONS(588), - [anon_sym_class] = ACTIONS(588), - [anon_sym_extends] = ACTIONS(588), - [anon_sym_implements] = ACTIONS(588), - [anon_sym_interface] = ACTIONS(588), - [anon_sym_typedef] = ACTIONS(588), - [anon_sym_function] = ACTIONS(588), - [anon_sym_var] = ACTIONS(588), - [aux_sym_integer_token1] = ACTIONS(588), - [aux_sym_integer_token2] = ACTIONS(586), - [aux_sym_float_token1] = ACTIONS(588), - [aux_sym_float_token2] = ACTIONS(586), - [anon_sym_true] = ACTIONS(588), - [anon_sym_false] = ACTIONS(588), - [aux_sym_string_token1] = ACTIONS(586), - [aux_sym_string_token3] = ACTIONS(586), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(588), - [anon_sym_catch] = ACTIONS(588), - [anon_sym_continue] = ACTIONS(588), - [anon_sym_do] = ACTIONS(588), - [anon_sym_enum] = ACTIONS(588), - [anon_sym_extern] = ACTIONS(588), - [anon_sym_for] = ACTIONS(588), - [anon_sym_inline] = ACTIONS(588), - [anon_sym_macro] = ACTIONS(588), - [anon_sym_operator] = ACTIONS(588), - [anon_sym_overload] = ACTIONS(588), - [anon_sym_override] = ACTIONS(588), - [anon_sym_private] = ACTIONS(588), - [anon_sym_public] = ACTIONS(588), - [anon_sym_return] = ACTIONS(588), - [anon_sym_static] = ACTIONS(588), - [anon_sym_try] = ACTIONS(588), - [anon_sym_untyped] = ACTIONS(588), - [anon_sym_while] = ACTIONS(588), - [sym__semicolon] = ACTIONS(586), + [136] = { + [ts_builtin_sym_end] = ACTIONS(640), + [sym_identifier] = ACTIONS(642), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_package] = ACTIONS(642), + [anon_sym_import] = ACTIONS(642), + [anon_sym_using] = ACTIONS(642), + [anon_sym_throw] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(640), + [anon_sym_switch] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(640), + [anon_sym_RBRACE] = ACTIONS(640), + [anon_sym_case] = ACTIONS(642), + [anon_sym_default] = ACTIONS(642), + [anon_sym_cast] = ACTIONS(642), + [anon_sym_DOLLARtype] = ACTIONS(640), + [anon_sym_in] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(640), + [anon_sym_this] = ACTIONS(642), + [aux_sym_member_expression_token1] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(642), + [anon_sym_AT_COLON] = ACTIONS(640), + [anon_sym_if] = ACTIONS(642), + [anon_sym_else] = ACTIONS(642), + [anon_sym_new] = ACTIONS(642), + [sym__prefixUnaryOperator] = ACTIONS(642), + [sym__eitherUnaryOperator] = ACTIONS(640), + [sym__map_operator] = ACTIONS(374), + [anon_sym_null] = ACTIONS(642), + [anon_sym_dynamic] = ACTIONS(642), + [anon_sym_final] = ACTIONS(642), + [anon_sym_abstract] = ACTIONS(642), + [anon_sym_class] = ACTIONS(642), + [anon_sym_extends] = ACTIONS(642), + [anon_sym_implements] = ACTIONS(642), + [anon_sym_interface] = ACTIONS(642), + [anon_sym_typedef] = ACTIONS(642), + [anon_sym_function] = ACTIONS(642), + [anon_sym_var] = ACTIONS(642), + [aux_sym_integer_token1] = ACTIONS(642), + [aux_sym_integer_token2] = ACTIONS(640), + [aux_sym_float_token1] = ACTIONS(642), + [aux_sym_float_token2] = ACTIONS(640), + [anon_sym_true] = ACTIONS(642), + [anon_sym_false] = ACTIONS(642), + [aux_sym_string_token1] = ACTIONS(640), + [aux_sym_string_token3] = ACTIONS(640), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(642), + [anon_sym_catch] = ACTIONS(642), + [anon_sym_continue] = ACTIONS(642), + [anon_sym_do] = ACTIONS(642), + [anon_sym_enum] = ACTIONS(642), + [anon_sym_extern] = ACTIONS(642), + [anon_sym_for] = ACTIONS(642), + [anon_sym_inline] = ACTIONS(642), + [anon_sym_macro] = ACTIONS(642), + [anon_sym_operator] = ACTIONS(642), + [anon_sym_overload] = ACTIONS(642), + [anon_sym_override] = ACTIONS(642), + [anon_sym_private] = ACTIONS(642), + [anon_sym_public] = ACTIONS(642), + [anon_sym_return] = ACTIONS(642), + [anon_sym_static] = ACTIONS(642), + [anon_sym_try] = ACTIONS(642), + [anon_sym_untyped] = ACTIONS(642), + [anon_sym_while] = ACTIONS(642), + [sym__semicolon] = ACTIONS(640), }, - [120] = { - [sym_type_params] = STATE(111), - [ts_builtin_sym_end] = ACTIONS(638), - [sym_identifier] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(638), - [anon_sym_package] = ACTIONS(640), - [anon_sym_import] = ACTIONS(640), - [anon_sym_using] = ACTIONS(640), - [anon_sym_throw] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(638), - [anon_sym_RPAREN] = ACTIONS(638), - [anon_sym_switch] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_RBRACE] = ACTIONS(638), - [anon_sym_case] = ACTIONS(640), - [anon_sym_default] = ACTIONS(640), - [anon_sym_cast] = ACTIONS(640), - [anon_sym_DOLLARtype] = ACTIONS(638), - [anon_sym_in] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(638), - [anon_sym_this] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(638), - [anon_sym_AT] = ACTIONS(640), - [anon_sym_AT_COLON] = ACTIONS(638), - [anon_sym_if] = ACTIONS(640), - [anon_sym_else] = ACTIONS(640), - [anon_sym_new] = ACTIONS(640), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_PLUS_PLUS] = ACTIONS(638), - [anon_sym_DASH_DASH] = ACTIONS(638), - [anon_sym_PERCENT] = ACTIONS(638), - [anon_sym_STAR] = ACTIONS(638), - [anon_sym_SLASH] = ACTIONS(640), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(638), - [anon_sym_GT_GT] = ACTIONS(640), - [anon_sym_GT_GT_GT] = ACTIONS(638), - [anon_sym_AMP] = ACTIONS(640), - [anon_sym_PIPE] = ACTIONS(640), - [anon_sym_CARET] = ACTIONS(638), - [anon_sym_AMP_AMP] = ACTIONS(638), - [anon_sym_PIPE_PIPE] = ACTIONS(638), - [anon_sym_EQ_EQ] = ACTIONS(638), - [anon_sym_BANG_EQ] = ACTIONS(638), - [anon_sym_LT] = ACTIONS(624), - [anon_sym_LT_EQ] = ACTIONS(638), - [anon_sym_GT] = ACTIONS(640), - [anon_sym_GT_EQ] = ACTIONS(638), - [anon_sym_EQ_GT] = ACTIONS(638), - [anon_sym_QMARK_QMARK] = ACTIONS(638), - [anon_sym_EQ] = ACTIONS(640), - [sym__rangeOperator] = ACTIONS(638), - [anon_sym_null] = ACTIONS(640), - [anon_sym_dynamic] = ACTIONS(640), - [anon_sym_final] = ACTIONS(640), - [anon_sym_abstract] = ACTIONS(640), - [anon_sym_class] = ACTIONS(640), - [anon_sym_extends] = ACTIONS(640), - [anon_sym_implements] = ACTIONS(640), - [anon_sym_interface] = ACTIONS(640), - [anon_sym_typedef] = ACTIONS(640), - [anon_sym_function] = ACTIONS(640), - [anon_sym_var] = ACTIONS(640), - [aux_sym_integer_token1] = ACTIONS(640), - [aux_sym_integer_token2] = ACTIONS(638), - [aux_sym_float_token1] = ACTIONS(640), - [aux_sym_float_token2] = ACTIONS(638), - [anon_sym_true] = ACTIONS(640), - [anon_sym_false] = ACTIONS(640), - [aux_sym_string_token1] = ACTIONS(638), - [aux_sym_string_token3] = ACTIONS(638), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(640), - [anon_sym_catch] = ACTIONS(640), - [anon_sym_continue] = ACTIONS(640), - [anon_sym_do] = ACTIONS(640), - [anon_sym_enum] = ACTIONS(640), - [anon_sym_extern] = ACTIONS(640), - [anon_sym_for] = ACTIONS(640), - [anon_sym_inline] = ACTIONS(640), - [anon_sym_macro] = ACTIONS(640), - [anon_sym_operator] = ACTIONS(640), - [anon_sym_overload] = ACTIONS(640), - [anon_sym_override] = ACTIONS(640), - [anon_sym_private] = ACTIONS(640), - [anon_sym_public] = ACTIONS(640), - [anon_sym_return] = ACTIONS(640), - [anon_sym_static] = ACTIONS(640), - [anon_sym_try] = ACTIONS(640), - [anon_sym_untyped] = ACTIONS(640), - [anon_sym_while] = ACTIONS(640), - [sym__semicolon] = ACTIONS(638), + [137] = { + [sym_block] = STATE(175), + [ts_builtin_sym_end] = ACTIONS(644), + [sym_identifier] = ACTIONS(646), + [anon_sym_POUND] = ACTIONS(644), + [anon_sym_package] = ACTIONS(646), + [anon_sym_import] = ACTIONS(646), + [anon_sym_using] = ACTIONS(646), + [anon_sym_throw] = ACTIONS(646), + [anon_sym_LPAREN] = ACTIONS(644), + [anon_sym_switch] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_case] = ACTIONS(646), + [anon_sym_COLON] = ACTIONS(651), + [anon_sym_default] = ACTIONS(646), + [anon_sym_cast] = ACTIONS(646), + [anon_sym_DOLLARtype] = ACTIONS(644), + [anon_sym_in] = ACTIONS(646), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_this] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_AT_COLON] = ACTIONS(644), + [anon_sym_if] = ACTIONS(646), + [anon_sym_else] = ACTIONS(646), + [anon_sym_new] = ACTIONS(646), + [sym__prefixUnaryOperator] = ACTIONS(646), + [sym__eitherUnaryOperator] = ACTIONS(644), + [anon_sym_null] = ACTIONS(646), + [anon_sym_dynamic] = ACTIONS(646), + [anon_sym_final] = ACTIONS(646), + [anon_sym_abstract] = ACTIONS(646), + [anon_sym_class] = ACTIONS(646), + [anon_sym_extends] = ACTIONS(646), + [anon_sym_implements] = ACTIONS(646), + [anon_sym_interface] = ACTIONS(646), + [anon_sym_typedef] = ACTIONS(646), + [anon_sym_function] = ACTIONS(646), + [anon_sym_var] = ACTIONS(646), + [aux_sym_integer_token1] = ACTIONS(646), + [aux_sym_integer_token2] = ACTIONS(644), + [aux_sym_float_token1] = ACTIONS(646), + [aux_sym_float_token2] = ACTIONS(644), + [anon_sym_true] = ACTIONS(646), + [anon_sym_false] = ACTIONS(646), + [aux_sym_string_token1] = ACTIONS(644), + [aux_sym_string_token3] = ACTIONS(644), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(646), + [anon_sym_catch] = ACTIONS(646), + [anon_sym_continue] = ACTIONS(646), + [anon_sym_do] = ACTIONS(646), + [anon_sym_enum] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(646), + [anon_sym_for] = ACTIONS(646), + [anon_sym_inline] = ACTIONS(646), + [anon_sym_macro] = ACTIONS(646), + [anon_sym_operator] = ACTIONS(646), + [anon_sym_overload] = ACTIONS(646), + [anon_sym_override] = ACTIONS(646), + [anon_sym_private] = ACTIONS(646), + [anon_sym_public] = ACTIONS(646), + [anon_sym_return] = ACTIONS(646), + [anon_sym_static] = ACTIONS(646), + [anon_sym_try] = ACTIONS(646), + [anon_sym_untyped] = ACTIONS(646), + [anon_sym_while] = ACTIONS(646), + [sym__semicolon] = ACTIONS(644), }, - [121] = { - [sym_block] = STATE(205), - [ts_builtin_sym_end] = ACTIONS(642), - [sym_identifier] = ACTIONS(644), - [anon_sym_POUND] = ACTIONS(642), - [anon_sym_package] = ACTIONS(644), - [anon_sym_import] = ACTIONS(644), - [anon_sym_using] = ACTIONS(644), - [anon_sym_throw] = ACTIONS(644), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_switch] = ACTIONS(644), - [anon_sym_LBRACE] = ACTIONS(646), - [anon_sym_RBRACE] = ACTIONS(642), - [anon_sym_case] = ACTIONS(644), - [anon_sym_COLON] = ACTIONS(649), - [anon_sym_default] = ACTIONS(644), - [anon_sym_cast] = ACTIONS(644), - [anon_sym_DOLLARtype] = ACTIONS(642), - [anon_sym_in] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(642), - [anon_sym_this] = ACTIONS(644), - [anon_sym_AT] = ACTIONS(644), - [anon_sym_AT_COLON] = ACTIONS(642), - [anon_sym_if] = ACTIONS(644), - [anon_sym_else] = ACTIONS(644), - [anon_sym_new] = ACTIONS(644), - [anon_sym_TILDE] = ACTIONS(642), - [anon_sym_BANG] = ACTIONS(644), - [anon_sym_DASH] = ACTIONS(644), - [anon_sym_PLUS_PLUS] = ACTIONS(642), - [anon_sym_DASH_DASH] = ACTIONS(642), - [anon_sym_PERCENT] = ACTIONS(642), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_SLASH] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(644), - [anon_sym_LT_LT] = ACTIONS(642), - [anon_sym_GT_GT] = ACTIONS(644), - [anon_sym_GT_GT_GT] = ACTIONS(642), - [anon_sym_AMP] = ACTIONS(644), - [anon_sym_PIPE] = ACTIONS(644), - [anon_sym_CARET] = ACTIONS(642), - [anon_sym_AMP_AMP] = ACTIONS(642), - [anon_sym_PIPE_PIPE] = ACTIONS(642), - [anon_sym_EQ_EQ] = ACTIONS(642), - [anon_sym_BANG_EQ] = ACTIONS(642), - [anon_sym_LT] = ACTIONS(644), - [anon_sym_LT_EQ] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(644), - [anon_sym_GT_EQ] = ACTIONS(642), - [anon_sym_EQ_GT] = ACTIONS(642), - [anon_sym_QMARK_QMARK] = ACTIONS(642), - [anon_sym_EQ] = ACTIONS(644), - [sym__rangeOperator] = ACTIONS(642), - [anon_sym_null] = ACTIONS(644), - [anon_sym_dynamic] = ACTIONS(644), - [anon_sym_final] = ACTIONS(644), - [anon_sym_abstract] = ACTIONS(644), - [anon_sym_class] = ACTIONS(644), - [anon_sym_extends] = ACTIONS(644), - [anon_sym_implements] = ACTIONS(644), - [anon_sym_interface] = ACTIONS(644), - [anon_sym_typedef] = ACTIONS(644), - [anon_sym_function] = ACTIONS(644), - [anon_sym_var] = ACTIONS(644), - [aux_sym_integer_token1] = ACTIONS(644), - [aux_sym_integer_token2] = ACTIONS(642), - [aux_sym_float_token1] = ACTIONS(644), - [aux_sym_float_token2] = ACTIONS(642), - [anon_sym_true] = ACTIONS(644), - [anon_sym_false] = ACTIONS(644), - [aux_sym_string_token1] = ACTIONS(642), - [aux_sym_string_token3] = ACTIONS(642), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(644), - [anon_sym_catch] = ACTIONS(644), - [anon_sym_continue] = ACTIONS(644), - [anon_sym_do] = ACTIONS(644), - [anon_sym_enum] = ACTIONS(644), - [anon_sym_extern] = ACTIONS(644), - [anon_sym_for] = ACTIONS(644), - [anon_sym_inline] = ACTIONS(644), - [anon_sym_macro] = ACTIONS(644), - [anon_sym_operator] = ACTIONS(644), - [anon_sym_overload] = ACTIONS(644), - [anon_sym_override] = ACTIONS(644), - [anon_sym_private] = ACTIONS(644), - [anon_sym_public] = ACTIONS(644), - [anon_sym_return] = ACTIONS(644), - [anon_sym_static] = ACTIONS(644), - [anon_sym_try] = ACTIONS(644), - [anon_sym_untyped] = ACTIONS(644), - [anon_sym_while] = ACTIONS(644), - [sym__semicolon] = ACTIONS(642), + [138] = { + [sym_block] = STATE(177), + [ts_builtin_sym_end] = ACTIONS(653), + [sym_identifier] = ACTIONS(655), + [anon_sym_POUND] = ACTIONS(653), + [anon_sym_package] = ACTIONS(655), + [anon_sym_import] = ACTIONS(655), + [anon_sym_using] = ACTIONS(655), + [anon_sym_throw] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(653), + [anon_sym_switch] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(657), + [anon_sym_RBRACE] = ACTIONS(653), + [anon_sym_case] = ACTIONS(655), + [anon_sym_COLON] = ACTIONS(660), + [anon_sym_default] = ACTIONS(655), + [anon_sym_cast] = ACTIONS(655), + [anon_sym_DOLLARtype] = ACTIONS(653), + [anon_sym_in] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(653), + [anon_sym_this] = ACTIONS(655), + [anon_sym_AT] = ACTIONS(655), + [anon_sym_AT_COLON] = ACTIONS(653), + [anon_sym_if] = ACTIONS(655), + [anon_sym_else] = ACTIONS(655), + [anon_sym_new] = ACTIONS(655), + [sym__prefixUnaryOperator] = ACTIONS(655), + [sym__eitherUnaryOperator] = ACTIONS(653), + [anon_sym_null] = ACTIONS(655), + [anon_sym_dynamic] = ACTIONS(655), + [anon_sym_final] = ACTIONS(655), + [anon_sym_abstract] = ACTIONS(655), + [anon_sym_class] = ACTIONS(655), + [anon_sym_extends] = ACTIONS(655), + [anon_sym_implements] = ACTIONS(655), + [anon_sym_interface] = ACTIONS(655), + [anon_sym_typedef] = ACTIONS(655), + [anon_sym_function] = ACTIONS(655), + [anon_sym_var] = ACTIONS(655), + [aux_sym_integer_token1] = ACTIONS(655), + [aux_sym_integer_token2] = ACTIONS(653), + [aux_sym_float_token1] = ACTIONS(655), + [aux_sym_float_token2] = ACTIONS(653), + [anon_sym_true] = ACTIONS(655), + [anon_sym_false] = ACTIONS(655), + [aux_sym_string_token1] = ACTIONS(653), + [aux_sym_string_token3] = ACTIONS(653), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(655), + [anon_sym_catch] = ACTIONS(655), + [anon_sym_continue] = ACTIONS(655), + [anon_sym_do] = ACTIONS(655), + [anon_sym_enum] = ACTIONS(655), + [anon_sym_extern] = ACTIONS(655), + [anon_sym_for] = ACTIONS(655), + [anon_sym_inline] = ACTIONS(655), + [anon_sym_macro] = ACTIONS(655), + [anon_sym_operator] = ACTIONS(655), + [anon_sym_overload] = ACTIONS(655), + [anon_sym_override] = ACTIONS(655), + [anon_sym_private] = ACTIONS(655), + [anon_sym_public] = ACTIONS(655), + [anon_sym_return] = ACTIONS(655), + [anon_sym_static] = ACTIONS(655), + [anon_sym_try] = ACTIONS(655), + [anon_sym_untyped] = ACTIONS(655), + [anon_sym_while] = ACTIONS(655), + [sym__semicolon] = ACTIONS(653), }, - [122] = { - [sym_block] = STATE(241), - [ts_builtin_sym_end] = ACTIONS(651), - [sym_identifier] = ACTIONS(653), - [anon_sym_POUND] = ACTIONS(651), - [anon_sym_package] = ACTIONS(653), - [anon_sym_import] = ACTIONS(653), - [anon_sym_using] = ACTIONS(653), - [anon_sym_throw] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(651), - [anon_sym_switch] = ACTIONS(653), - [anon_sym_LBRACE] = ACTIONS(655), - [anon_sym_RBRACE] = ACTIONS(651), - [anon_sym_case] = ACTIONS(653), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_default] = ACTIONS(653), - [anon_sym_cast] = ACTIONS(653), - [anon_sym_DOLLARtype] = ACTIONS(651), - [anon_sym_in] = ACTIONS(653), - [anon_sym_LBRACK] = ACTIONS(651), - [anon_sym_this] = ACTIONS(653), - [anon_sym_AT] = ACTIONS(653), - [anon_sym_AT_COLON] = ACTIONS(651), - [anon_sym_if] = ACTIONS(653), - [anon_sym_else] = ACTIONS(653), - [anon_sym_new] = ACTIONS(653), - [anon_sym_TILDE] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_PLUS_PLUS] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(651), - [anon_sym_PERCENT] = ACTIONS(651), - [anon_sym_STAR] = ACTIONS(651), - [anon_sym_SLASH] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(653), - [anon_sym_LT_LT] = ACTIONS(651), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_GT_GT_GT] = ACTIONS(651), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PIPE] = ACTIONS(653), - [anon_sym_CARET] = ACTIONS(651), - [anon_sym_AMP_AMP] = ACTIONS(651), - [anon_sym_PIPE_PIPE] = ACTIONS(651), - [anon_sym_EQ_EQ] = ACTIONS(651), - [anon_sym_BANG_EQ] = ACTIONS(651), - [anon_sym_LT] = ACTIONS(653), - [anon_sym_LT_EQ] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(653), - [anon_sym_GT_EQ] = ACTIONS(651), - [anon_sym_EQ_GT] = ACTIONS(651), - [anon_sym_QMARK_QMARK] = ACTIONS(651), - [anon_sym_EQ] = ACTIONS(653), - [sym__rangeOperator] = ACTIONS(651), - [anon_sym_null] = ACTIONS(653), - [anon_sym_dynamic] = ACTIONS(653), - [anon_sym_final] = ACTIONS(653), - [anon_sym_abstract] = ACTIONS(653), - [anon_sym_class] = ACTIONS(653), - [anon_sym_extends] = ACTIONS(653), - [anon_sym_implements] = ACTIONS(653), - [anon_sym_interface] = ACTIONS(653), - [anon_sym_typedef] = ACTIONS(653), - [anon_sym_function] = ACTIONS(653), - [anon_sym_var] = ACTIONS(653), - [aux_sym_integer_token1] = ACTIONS(653), - [aux_sym_integer_token2] = ACTIONS(651), - [aux_sym_float_token1] = ACTIONS(653), - [aux_sym_float_token2] = ACTIONS(651), - [anon_sym_true] = ACTIONS(653), - [anon_sym_false] = ACTIONS(653), - [aux_sym_string_token1] = ACTIONS(651), - [aux_sym_string_token3] = ACTIONS(651), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(653), - [anon_sym_catch] = ACTIONS(653), - [anon_sym_continue] = ACTIONS(653), - [anon_sym_do] = ACTIONS(653), - [anon_sym_enum] = ACTIONS(653), - [anon_sym_extern] = ACTIONS(653), - [anon_sym_for] = ACTIONS(653), - [anon_sym_inline] = ACTIONS(653), - [anon_sym_macro] = ACTIONS(653), - [anon_sym_operator] = ACTIONS(653), - [anon_sym_overload] = ACTIONS(653), - [anon_sym_override] = ACTIONS(653), - [anon_sym_private] = ACTIONS(653), - [anon_sym_public] = ACTIONS(653), - [anon_sym_return] = ACTIONS(653), - [anon_sym_static] = ACTIONS(653), - [anon_sym_try] = ACTIONS(653), - [anon_sym_untyped] = ACTIONS(653), - [anon_sym_while] = ACTIONS(653), - [sym__semicolon] = ACTIONS(651), + [139] = { + [sym_member_expression] = STATE(28), + [sym__lhs_expression] = STATE(1136), + [sym__literal] = STATE(1172), + [sym_integer] = STATE(1172), + [sym_float] = STATE(1172), + [sym_bool] = STATE(1172), + [sym_string] = STATE(1025), + [sym_null] = STATE(1172), + [sym_array] = STATE(1172), + [sym_map] = STATE(1172), + [sym_object] = STATE(1172), + [sym_pair] = STATE(1172), + [sym_identifier] = ACTIONS(284), + [anon_sym_package] = ACTIONS(276), + [anon_sym_import] = ACTIONS(276), + [anon_sym_using] = ACTIONS(276), + [anon_sym_throw] = ACTIONS(276), + [anon_sym_switch] = ACTIONS(276), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_case] = ACTIONS(276), + [anon_sym_default] = ACTIONS(276), + [anon_sym_cast] = ACTIONS(276), + [anon_sym_in] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_this] = ACTIONS(286), + [anon_sym_if] = ACTIONS(276), + [anon_sym_else] = ACTIONS(276), + [anon_sym_new] = ACTIONS(276), + [anon_sym_null] = ACTIONS(51), + [anon_sym_dynamic] = ACTIONS(276), + [anon_sym_final] = ACTIONS(276), + [anon_sym_abstract] = ACTIONS(276), + [anon_sym_class] = ACTIONS(276), + [anon_sym_extends] = ACTIONS(276), + [anon_sym_implements] = ACTIONS(276), + [anon_sym_interface] = ACTIONS(276), + [anon_sym_typedef] = ACTIONS(276), + [anon_sym_function] = ACTIONS(276), + [anon_sym_var] = ACTIONS(276), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(276), + [anon_sym_catch] = ACTIONS(276), + [anon_sym_continue] = ACTIONS(276), + [anon_sym_do] = ACTIONS(276), + [anon_sym_enum] = ACTIONS(276), + [anon_sym_extern] = ACTIONS(276), + [anon_sym_for] = ACTIONS(276), + [anon_sym_inline] = ACTIONS(276), + [anon_sym_macro] = ACTIONS(276), + [anon_sym_operator] = ACTIONS(276), + [anon_sym_overload] = ACTIONS(276), + [anon_sym_override] = ACTIONS(276), + [anon_sym_private] = ACTIONS(276), + [anon_sym_public] = ACTIONS(276), + [anon_sym_return] = ACTIONS(276), + [anon_sym_static] = ACTIONS(276), + [anon_sym_try] = ACTIONS(276), + [anon_sym_untyped] = ACTIONS(276), + [anon_sym_while] = ACTIONS(276), }, - [123] = { - [ts_builtin_sym_end] = ACTIONS(506), - [sym_identifier] = ACTIONS(508), - [anon_sym_POUND] = ACTIONS(506), - [anon_sym_package] = ACTIONS(508), - [anon_sym_import] = ACTIONS(508), - [anon_sym_using] = ACTIONS(508), - [anon_sym_throw] = ACTIONS(508), - [anon_sym_LPAREN] = ACTIONS(506), - [anon_sym_switch] = ACTIONS(508), - [anon_sym_LBRACE] = ACTIONS(506), - [anon_sym_RBRACE] = ACTIONS(506), - [anon_sym_case] = ACTIONS(508), - [anon_sym_default] = ACTIONS(508), - [anon_sym_cast] = ACTIONS(508), - [anon_sym_DOLLARtype] = ACTIONS(506), - [anon_sym_in] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(506), - [anon_sym_this] = ACTIONS(508), - [anon_sym_DOT] = ACTIONS(660), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_AT] = ACTIONS(508), - [anon_sym_AT_COLON] = ACTIONS(506), - [anon_sym_if] = ACTIONS(508), - [anon_sym_else] = ACTIONS(508), - [anon_sym_new] = ACTIONS(508), - [anon_sym_TILDE] = ACTIONS(506), - [anon_sym_BANG] = ACTIONS(508), - [anon_sym_DASH] = ACTIONS(508), - [anon_sym_PLUS_PLUS] = ACTIONS(506), - [anon_sym_DASH_DASH] = ACTIONS(506), - [anon_sym_PERCENT] = ACTIONS(506), - [anon_sym_STAR] = ACTIONS(506), - [anon_sym_SLASH] = ACTIONS(508), - [anon_sym_PLUS] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(506), - [anon_sym_GT_GT] = ACTIONS(508), - [anon_sym_GT_GT_GT] = ACTIONS(506), - [anon_sym_AMP] = ACTIONS(508), - [anon_sym_PIPE] = ACTIONS(508), - [anon_sym_CARET] = ACTIONS(506), - [anon_sym_AMP_AMP] = ACTIONS(506), - [anon_sym_PIPE_PIPE] = ACTIONS(506), - [anon_sym_EQ_EQ] = ACTIONS(506), - [anon_sym_BANG_EQ] = ACTIONS(506), - [anon_sym_LT] = ACTIONS(508), - [anon_sym_LT_EQ] = ACTIONS(506), - [anon_sym_GT] = ACTIONS(508), - [anon_sym_GT_EQ] = ACTIONS(506), - [anon_sym_EQ_GT] = ACTIONS(590), - [anon_sym_QMARK_QMARK] = ACTIONS(506), - [anon_sym_EQ] = ACTIONS(508), - [sym__rangeOperator] = ACTIONS(506), - [anon_sym_null] = ACTIONS(508), - [anon_sym_dynamic] = ACTIONS(508), - [anon_sym_final] = ACTIONS(508), - [anon_sym_abstract] = ACTIONS(508), - [anon_sym_class] = ACTIONS(508), - [anon_sym_extends] = ACTIONS(508), - [anon_sym_implements] = ACTIONS(508), - [anon_sym_interface] = ACTIONS(508), - [anon_sym_typedef] = ACTIONS(508), - [anon_sym_function] = ACTIONS(508), - [anon_sym_var] = ACTIONS(508), - [aux_sym_integer_token1] = ACTIONS(508), - [aux_sym_integer_token2] = ACTIONS(506), - [aux_sym_float_token1] = ACTIONS(508), - [aux_sym_float_token2] = ACTIONS(506), - [anon_sym_true] = ACTIONS(508), - [anon_sym_false] = ACTIONS(508), - [aux_sym_string_token1] = ACTIONS(506), - [aux_sym_string_token3] = ACTIONS(506), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(508), - [anon_sym_catch] = ACTIONS(508), - [anon_sym_continue] = ACTIONS(508), - [anon_sym_do] = ACTIONS(508), - [anon_sym_enum] = ACTIONS(508), - [anon_sym_extern] = ACTIONS(508), - [anon_sym_for] = ACTIONS(508), - [anon_sym_inline] = ACTIONS(508), - [anon_sym_macro] = ACTIONS(508), - [anon_sym_operator] = ACTIONS(508), - [anon_sym_overload] = ACTIONS(508), - [anon_sym_override] = ACTIONS(508), - [anon_sym_private] = ACTIONS(508), - [anon_sym_public] = ACTIONS(508), - [anon_sym_return] = ACTIONS(508), - [anon_sym_static] = ACTIONS(508), - [anon_sym_try] = ACTIONS(508), - [anon_sym_untyped] = ACTIONS(508), - [anon_sym_while] = ACTIONS(508), - [sym__semicolon] = ACTIONS(506), + [140] = { + [sym_block] = STATE(234), + [ts_builtin_sym_end] = ACTIONS(662), + [sym_identifier] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(662), + [anon_sym_package] = ACTIONS(664), + [anon_sym_import] = ACTIONS(664), + [anon_sym_using] = ACTIONS(664), + [anon_sym_throw] = ACTIONS(664), + [anon_sym_LPAREN] = ACTIONS(662), + [anon_sym_switch] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(666), + [anon_sym_RBRACE] = ACTIONS(662), + [anon_sym_case] = ACTIONS(664), + [anon_sym_default] = ACTIONS(664), + [anon_sym_cast] = ACTIONS(664), + [anon_sym_DOLLARtype] = ACTIONS(662), + [anon_sym_in] = ACTIONS(664), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_this] = ACTIONS(664), + [anon_sym_DASH_GT] = ACTIONS(570), + [anon_sym_AT] = ACTIONS(664), + [anon_sym_AT_COLON] = ACTIONS(662), + [anon_sym_if] = ACTIONS(664), + [anon_sym_else] = ACTIONS(664), + [anon_sym_new] = ACTIONS(664), + [sym__prefixUnaryOperator] = ACTIONS(664), + [sym__eitherUnaryOperator] = ACTIONS(662), + [anon_sym_null] = ACTIONS(664), + [anon_sym_dynamic] = ACTIONS(664), + [anon_sym_final] = ACTIONS(664), + [anon_sym_abstract] = ACTIONS(664), + [anon_sym_class] = ACTIONS(664), + [anon_sym_extends] = ACTIONS(664), + [anon_sym_implements] = ACTIONS(664), + [anon_sym_interface] = ACTIONS(664), + [anon_sym_typedef] = ACTIONS(664), + [anon_sym_function] = ACTIONS(664), + [anon_sym_var] = ACTIONS(664), + [aux_sym_integer_token1] = ACTIONS(664), + [aux_sym_integer_token2] = ACTIONS(662), + [aux_sym_float_token1] = ACTIONS(664), + [aux_sym_float_token2] = ACTIONS(662), + [anon_sym_true] = ACTIONS(664), + [anon_sym_false] = ACTIONS(664), + [aux_sym_string_token1] = ACTIONS(662), + [aux_sym_string_token3] = ACTIONS(662), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(664), + [anon_sym_catch] = ACTIONS(664), + [anon_sym_continue] = ACTIONS(664), + [anon_sym_do] = ACTIONS(664), + [anon_sym_enum] = ACTIONS(664), + [anon_sym_extern] = ACTIONS(664), + [anon_sym_for] = ACTIONS(664), + [anon_sym_inline] = ACTIONS(664), + [anon_sym_macro] = ACTIONS(664), + [anon_sym_operator] = ACTIONS(664), + [anon_sym_overload] = ACTIONS(664), + [anon_sym_override] = ACTIONS(664), + [anon_sym_private] = ACTIONS(664), + [anon_sym_public] = ACTIONS(664), + [anon_sym_return] = ACTIONS(664), + [anon_sym_static] = ACTIONS(664), + [anon_sym_try] = ACTIONS(664), + [anon_sym_untyped] = ACTIONS(664), + [anon_sym_while] = ACTIONS(664), + [sym__semicolon] = ACTIONS(662), }, - [124] = { - [sym_block] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(664), - [sym_identifier] = ACTIONS(666), - [anon_sym_POUND] = ACTIONS(664), - [anon_sym_package] = ACTIONS(666), - [anon_sym_import] = ACTIONS(666), - [anon_sym_using] = ACTIONS(666), - [anon_sym_throw] = ACTIONS(666), - [anon_sym_LPAREN] = ACTIONS(664), - [anon_sym_switch] = ACTIONS(666), - [anon_sym_LBRACE] = ACTIONS(668), - [anon_sym_RBRACE] = ACTIONS(664), - [anon_sym_case] = ACTIONS(666), - [anon_sym_default] = ACTIONS(666), - [anon_sym_cast] = ACTIONS(666), - [anon_sym_DOLLARtype] = ACTIONS(664), - [anon_sym_in] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(664), - [anon_sym_this] = ACTIONS(666), - [anon_sym_DASH_GT] = ACTIONS(671), - [anon_sym_AT] = ACTIONS(666), - [anon_sym_AT_COLON] = ACTIONS(664), - [anon_sym_if] = ACTIONS(666), - [anon_sym_else] = ACTIONS(666), - [anon_sym_new] = ACTIONS(666), - [anon_sym_TILDE] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(666), - [anon_sym_DASH] = ACTIONS(666), - [anon_sym_PLUS_PLUS] = ACTIONS(664), - [anon_sym_DASH_DASH] = ACTIONS(664), - [anon_sym_PERCENT] = ACTIONS(664), - [anon_sym_STAR] = ACTIONS(664), - [anon_sym_SLASH] = ACTIONS(666), - [anon_sym_PLUS] = ACTIONS(666), - [anon_sym_LT_LT] = ACTIONS(664), - [anon_sym_GT_GT] = ACTIONS(666), - [anon_sym_GT_GT_GT] = ACTIONS(664), - [anon_sym_AMP] = ACTIONS(666), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_CARET] = ACTIONS(664), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [anon_sym_EQ_EQ] = ACTIONS(664), - [anon_sym_BANG_EQ] = ACTIONS(664), - [anon_sym_LT] = ACTIONS(666), - [anon_sym_LT_EQ] = ACTIONS(664), - [anon_sym_GT] = ACTIONS(666), - [anon_sym_GT_EQ] = ACTIONS(664), - [anon_sym_EQ_GT] = ACTIONS(664), - [anon_sym_QMARK_QMARK] = ACTIONS(664), - [anon_sym_EQ] = ACTIONS(666), - [sym__rangeOperator] = ACTIONS(664), - [anon_sym_null] = ACTIONS(666), - [anon_sym_dynamic] = ACTIONS(666), - [anon_sym_final] = ACTIONS(666), - [anon_sym_abstract] = ACTIONS(666), - [anon_sym_class] = ACTIONS(666), - [anon_sym_extends] = ACTIONS(666), - [anon_sym_implements] = ACTIONS(666), - [anon_sym_interface] = ACTIONS(666), - [anon_sym_typedef] = ACTIONS(666), - [anon_sym_function] = ACTIONS(666), - [anon_sym_var] = ACTIONS(666), - [aux_sym_integer_token1] = ACTIONS(666), - [aux_sym_integer_token2] = ACTIONS(664), - [aux_sym_float_token1] = ACTIONS(666), - [aux_sym_float_token2] = ACTIONS(664), - [anon_sym_true] = ACTIONS(666), - [anon_sym_false] = ACTIONS(666), - [aux_sym_string_token1] = ACTIONS(664), - [aux_sym_string_token3] = ACTIONS(664), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(666), - [anon_sym_catch] = ACTIONS(666), - [anon_sym_continue] = ACTIONS(666), - [anon_sym_do] = ACTIONS(666), - [anon_sym_enum] = ACTIONS(666), - [anon_sym_extern] = ACTIONS(666), - [anon_sym_for] = ACTIONS(666), - [anon_sym_inline] = ACTIONS(666), - [anon_sym_macro] = ACTIONS(666), - [anon_sym_operator] = ACTIONS(666), - [anon_sym_overload] = ACTIONS(666), - [anon_sym_override] = ACTIONS(666), - [anon_sym_private] = ACTIONS(666), - [anon_sym_public] = ACTIONS(666), - [anon_sym_return] = ACTIONS(666), - [anon_sym_static] = ACTIONS(666), - [anon_sym_try] = ACTIONS(666), - [anon_sym_untyped] = ACTIONS(666), - [anon_sym_while] = ACTIONS(666), - [sym__semicolon] = ACTIONS(664), + [141] = { + [sym_member_expression] = STATE(28), + [sym__lhs_expression] = STATE(1003), + [sym__literal] = STATE(1172), + [sym_integer] = STATE(1172), + [sym_float] = STATE(1172), + [sym_bool] = STATE(1172), + [sym_string] = STATE(1025), + [sym_null] = STATE(1172), + [sym_array] = STATE(1172), + [sym_map] = STATE(1172), + [sym_object] = STATE(1172), + [sym_pair] = STATE(1172), + [sym_identifier] = ACTIONS(284), + [anon_sym_package] = ACTIONS(276), + [anon_sym_import] = ACTIONS(276), + [anon_sym_using] = ACTIONS(276), + [anon_sym_throw] = ACTIONS(276), + [anon_sym_switch] = ACTIONS(276), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_case] = ACTIONS(276), + [anon_sym_default] = ACTIONS(276), + [anon_sym_cast] = ACTIONS(276), + [anon_sym_in] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_this] = ACTIONS(286), + [anon_sym_if] = ACTIONS(276), + [anon_sym_else] = ACTIONS(276), + [anon_sym_new] = ACTIONS(276), + [anon_sym_null] = ACTIONS(51), + [anon_sym_dynamic] = ACTIONS(276), + [anon_sym_final] = ACTIONS(276), + [anon_sym_abstract] = ACTIONS(276), + [anon_sym_class] = ACTIONS(276), + [anon_sym_extends] = ACTIONS(276), + [anon_sym_implements] = ACTIONS(276), + [anon_sym_interface] = ACTIONS(276), + [anon_sym_typedef] = ACTIONS(276), + [anon_sym_function] = ACTIONS(276), + [anon_sym_var] = ACTIONS(276), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(276), + [anon_sym_catch] = ACTIONS(276), + [anon_sym_continue] = ACTIONS(276), + [anon_sym_do] = ACTIONS(276), + [anon_sym_enum] = ACTIONS(276), + [anon_sym_extern] = ACTIONS(276), + [anon_sym_for] = ACTIONS(276), + [anon_sym_inline] = ACTIONS(276), + [anon_sym_macro] = ACTIONS(276), + [anon_sym_operator] = ACTIONS(276), + [anon_sym_overload] = ACTIONS(276), + [anon_sym_override] = ACTIONS(276), + [anon_sym_private] = ACTIONS(276), + [anon_sym_public] = ACTIONS(276), + [anon_sym_return] = ACTIONS(276), + [anon_sym_static] = ACTIONS(276), + [anon_sym_try] = ACTIONS(276), + [anon_sym_untyped] = ACTIONS(276), + [anon_sym_while] = ACTIONS(276), }, - [125] = { - [sym_type_params] = STATE(116), - [ts_builtin_sym_end] = ACTIONS(673), - [sym_identifier] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(673), - [anon_sym_package] = ACTIONS(676), - [anon_sym_import] = ACTIONS(676), - [anon_sym_using] = ACTIONS(676), - [anon_sym_throw] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_switch] = ACTIONS(676), + [142] = { + [sym_block] = STATE(284), + [ts_builtin_sym_end] = ACTIONS(669), + [sym_identifier] = ACTIONS(671), + [anon_sym_POUND] = ACTIONS(669), + [anon_sym_package] = ACTIONS(671), + [anon_sym_import] = ACTIONS(671), + [anon_sym_using] = ACTIONS(671), + [anon_sym_throw] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(669), + [anon_sym_switch] = ACTIONS(671), [anon_sym_LBRACE] = ACTIONS(673), - [anon_sym_RBRACE] = ACTIONS(673), - [anon_sym_case] = ACTIONS(676), - [anon_sym_default] = ACTIONS(676), - [anon_sym_cast] = ACTIONS(676), - [anon_sym_DOLLARtype] = ACTIONS(673), - [anon_sym_in] = ACTIONS(676), - [anon_sym_LBRACK] = ACTIONS(673), - [anon_sym_this] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(676), - [anon_sym_AT_COLON] = ACTIONS(673), - [anon_sym_if] = ACTIONS(676), - [anon_sym_else] = ACTIONS(676), - [anon_sym_new] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_PLUS_PLUS] = ACTIONS(673), - [anon_sym_DASH_DASH] = ACTIONS(673), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_SLASH] = ACTIONS(676), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(676), - [anon_sym_GT_GT_GT] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_PIPE] = ACTIONS(676), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_AMP_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(673), - [anon_sym_BANG_EQ] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_LT_EQ] = ACTIONS(673), - [anon_sym_GT] = ACTIONS(676), - [anon_sym_GT_EQ] = ACTIONS(673), - [anon_sym_EQ_GT] = ACTIONS(673), - [anon_sym_QMARK_QMARK] = ACTIONS(673), - [anon_sym_EQ] = ACTIONS(676), - [sym__rangeOperator] = ACTIONS(673), - [anon_sym_null] = ACTIONS(676), - [anon_sym_dynamic] = ACTIONS(676), - [anon_sym_final] = ACTIONS(676), - [anon_sym_abstract] = ACTIONS(676), - [anon_sym_class] = ACTIONS(676), - [anon_sym_extends] = ACTIONS(676), - [anon_sym_implements] = ACTIONS(676), - [anon_sym_interface] = ACTIONS(676), - [anon_sym_typedef] = ACTIONS(676), - [anon_sym_function] = ACTIONS(676), - [anon_sym_var] = ACTIONS(676), - [aux_sym_integer_token1] = ACTIONS(676), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token1] = ACTIONS(676), - [aux_sym_float_token2] = ACTIONS(673), - [anon_sym_true] = ACTIONS(676), - [anon_sym_false] = ACTIONS(676), - [aux_sym_string_token1] = ACTIONS(673), - [aux_sym_string_token3] = ACTIONS(673), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(676), - [anon_sym_catch] = ACTIONS(676), - [anon_sym_continue] = ACTIONS(676), - [anon_sym_do] = ACTIONS(676), - [anon_sym_enum] = ACTIONS(676), - [anon_sym_extern] = ACTIONS(676), - [anon_sym_for] = ACTIONS(676), - [anon_sym_inline] = ACTIONS(676), - [anon_sym_macro] = ACTIONS(676), - [anon_sym_operator] = ACTIONS(676), - [anon_sym_overload] = ACTIONS(676), - [anon_sym_override] = ACTIONS(676), - [anon_sym_private] = ACTIONS(676), - [anon_sym_public] = ACTIONS(676), - [anon_sym_return] = ACTIONS(676), - [anon_sym_static] = ACTIONS(676), - [anon_sym_try] = ACTIONS(676), - [anon_sym_untyped] = ACTIONS(676), - [anon_sym_while] = ACTIONS(676), - [sym__semicolon] = ACTIONS(673), - }, - [126] = { - [ts_builtin_sym_end] = ACTIONS(683), - [sym_identifier] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(683), - [anon_sym_package] = ACTIONS(685), - [anon_sym_import] = ACTIONS(685), - [anon_sym_using] = ACTIONS(685), - [anon_sym_throw] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(683), - [anon_sym_RPAREN] = ACTIONS(683), - [anon_sym_switch] = ACTIONS(685), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_RBRACE] = ACTIONS(683), - [anon_sym_case] = ACTIONS(685), - [anon_sym_default] = ACTIONS(685), - [anon_sym_cast] = ACTIONS(685), - [anon_sym_DOLLARtype] = ACTIONS(683), - [anon_sym_in] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(683), - [anon_sym_this] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(683), - [anon_sym_AT] = ACTIONS(685), - [anon_sym_AT_COLON] = ACTIONS(683), - [anon_sym_if] = ACTIONS(685), - [anon_sym_else] = ACTIONS(685), - [anon_sym_new] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_PLUS_PLUS] = ACTIONS(683), - [anon_sym_DASH_DASH] = ACTIONS(683), - [anon_sym_PERCENT] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(683), - [anon_sym_SLASH] = ACTIONS(685), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(683), - [anon_sym_GT_GT] = ACTIONS(685), - [anon_sym_GT_GT_GT] = ACTIONS(683), - [anon_sym_AMP] = ACTIONS(685), - [anon_sym_PIPE] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(683), - [anon_sym_AMP_AMP] = ACTIONS(683), - [anon_sym_PIPE_PIPE] = ACTIONS(683), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_BANG_EQ] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(683), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_GT_EQ] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(683), - [anon_sym_QMARK_QMARK] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(685), - [sym__rangeOperator] = ACTIONS(683), - [anon_sym_null] = ACTIONS(685), - [anon_sym_dynamic] = ACTIONS(685), - [anon_sym_final] = ACTIONS(685), - [anon_sym_abstract] = ACTIONS(685), - [anon_sym_class] = ACTIONS(685), - [anon_sym_extends] = ACTIONS(685), - [anon_sym_implements] = ACTIONS(685), - [anon_sym_interface] = ACTIONS(685), - [anon_sym_typedef] = ACTIONS(685), - [anon_sym_function] = ACTIONS(685), - [anon_sym_var] = ACTIONS(685), - [aux_sym_integer_token1] = ACTIONS(685), - [aux_sym_integer_token2] = ACTIONS(683), - [aux_sym_float_token1] = ACTIONS(685), - [aux_sym_float_token2] = ACTIONS(683), - [anon_sym_true] = ACTIONS(685), - [anon_sym_false] = ACTIONS(685), - [aux_sym_string_token1] = ACTIONS(683), - [aux_sym_string_token3] = ACTIONS(683), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(685), - [anon_sym_catch] = ACTIONS(685), - [anon_sym_continue] = ACTIONS(685), - [anon_sym_do] = ACTIONS(685), - [anon_sym_enum] = ACTIONS(685), - [anon_sym_extern] = ACTIONS(685), - [anon_sym_for] = ACTIONS(685), - [anon_sym_inline] = ACTIONS(685), - [anon_sym_macro] = ACTIONS(685), - [anon_sym_operator] = ACTIONS(685), - [anon_sym_overload] = ACTIONS(685), - [anon_sym_override] = ACTIONS(685), - [anon_sym_private] = ACTIONS(685), - [anon_sym_public] = ACTIONS(685), - [anon_sym_return] = ACTIONS(685), - [anon_sym_static] = ACTIONS(685), - [anon_sym_try] = ACTIONS(685), - [anon_sym_untyped] = ACTIONS(685), - [anon_sym_while] = ACTIONS(685), - [sym__semicolon] = ACTIONS(683), + [anon_sym_RBRACE] = ACTIONS(669), + [anon_sym_case] = ACTIONS(671), + [anon_sym_COLON] = ACTIONS(676), + [anon_sym_default] = ACTIONS(671), + [anon_sym_cast] = ACTIONS(671), + [anon_sym_DOLLARtype] = ACTIONS(669), + [anon_sym_in] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_this] = ACTIONS(671), + [anon_sym_AT] = ACTIONS(671), + [anon_sym_AT_COLON] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_else] = ACTIONS(671), + [anon_sym_new] = ACTIONS(671), + [sym__prefixUnaryOperator] = ACTIONS(671), + [sym__eitherUnaryOperator] = ACTIONS(669), + [anon_sym_null] = ACTIONS(671), + [anon_sym_dynamic] = ACTIONS(671), + [anon_sym_final] = ACTIONS(671), + [anon_sym_abstract] = ACTIONS(671), + [anon_sym_class] = ACTIONS(671), + [anon_sym_extends] = ACTIONS(671), + [anon_sym_implements] = ACTIONS(671), + [anon_sym_interface] = ACTIONS(671), + [anon_sym_typedef] = ACTIONS(671), + [anon_sym_function] = ACTIONS(671), + [anon_sym_var] = ACTIONS(671), + [aux_sym_integer_token1] = ACTIONS(671), + [aux_sym_integer_token2] = ACTIONS(669), + [aux_sym_float_token1] = ACTIONS(671), + [aux_sym_float_token2] = ACTIONS(669), + [anon_sym_true] = ACTIONS(671), + [anon_sym_false] = ACTIONS(671), + [aux_sym_string_token1] = ACTIONS(669), + [aux_sym_string_token3] = ACTIONS(669), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(671), + [anon_sym_catch] = ACTIONS(671), + [anon_sym_continue] = ACTIONS(671), + [anon_sym_do] = ACTIONS(671), + [anon_sym_enum] = ACTIONS(671), + [anon_sym_extern] = ACTIONS(671), + [anon_sym_for] = ACTIONS(671), + [anon_sym_inline] = ACTIONS(671), + [anon_sym_macro] = ACTIONS(671), + [anon_sym_operator] = ACTIONS(671), + [anon_sym_overload] = ACTIONS(671), + [anon_sym_override] = ACTIONS(671), + [anon_sym_private] = ACTIONS(671), + [anon_sym_public] = ACTIONS(671), + [anon_sym_return] = ACTIONS(671), + [anon_sym_static] = ACTIONS(671), + [anon_sym_try] = ACTIONS(671), + [anon_sym_untyped] = ACTIONS(671), + [anon_sym_while] = ACTIONS(671), + [sym__semicolon] = ACTIONS(669), }, - [127] = { - [sym_block] = STATE(262), - [ts_builtin_sym_end] = ACTIONS(687), - [sym_identifier] = ACTIONS(689), - [anon_sym_POUND] = ACTIONS(687), - [anon_sym_package] = ACTIONS(689), - [anon_sym_import] = ACTIONS(689), - [anon_sym_using] = ACTIONS(689), - [anon_sym_throw] = ACTIONS(689), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_switch] = ACTIONS(689), - [anon_sym_LBRACE] = ACTIONS(691), - [anon_sym_RBRACE] = ACTIONS(687), - [anon_sym_case] = ACTIONS(689), - [anon_sym_default] = ACTIONS(689), - [anon_sym_cast] = ACTIONS(689), - [anon_sym_DOLLARtype] = ACTIONS(687), - [anon_sym_in] = ACTIONS(689), - [anon_sym_LBRACK] = ACTIONS(687), - [anon_sym_this] = ACTIONS(689), - [anon_sym_DASH_GT] = ACTIONS(671), - [anon_sym_AT] = ACTIONS(689), - [anon_sym_AT_COLON] = ACTIONS(687), - [anon_sym_if] = ACTIONS(689), - [anon_sym_else] = ACTIONS(689), - [anon_sym_new] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_DASH] = ACTIONS(689), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(689), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(689), - [anon_sym_GT_GT_GT] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(689), - [anon_sym_PIPE] = ACTIONS(689), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(687), - [anon_sym_PIPE_PIPE] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(687), - [anon_sym_BANG_EQ] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(689), - [anon_sym_LT_EQ] = ACTIONS(687), - [anon_sym_GT] = ACTIONS(689), - [anon_sym_GT_EQ] = ACTIONS(687), - [anon_sym_EQ_GT] = ACTIONS(687), - [anon_sym_QMARK_QMARK] = ACTIONS(687), - [anon_sym_EQ] = ACTIONS(689), - [sym__rangeOperator] = ACTIONS(687), - [anon_sym_null] = ACTIONS(689), - [anon_sym_dynamic] = ACTIONS(689), - [anon_sym_final] = ACTIONS(689), - [anon_sym_abstract] = ACTIONS(689), - [anon_sym_class] = ACTIONS(689), - [anon_sym_extends] = ACTIONS(689), - [anon_sym_implements] = ACTIONS(689), - [anon_sym_interface] = ACTIONS(689), - [anon_sym_typedef] = ACTIONS(689), - [anon_sym_function] = ACTIONS(689), - [anon_sym_var] = ACTIONS(689), - [aux_sym_integer_token1] = ACTIONS(689), - [aux_sym_integer_token2] = ACTIONS(687), - [aux_sym_float_token1] = ACTIONS(689), - [aux_sym_float_token2] = ACTIONS(687), - [anon_sym_true] = ACTIONS(689), - [anon_sym_false] = ACTIONS(689), - [aux_sym_string_token1] = ACTIONS(687), - [aux_sym_string_token3] = ACTIONS(687), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(689), - [anon_sym_catch] = ACTIONS(689), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(689), - [anon_sym_enum] = ACTIONS(689), - [anon_sym_extern] = ACTIONS(689), - [anon_sym_for] = ACTIONS(689), - [anon_sym_inline] = ACTIONS(689), - [anon_sym_macro] = ACTIONS(689), - [anon_sym_operator] = ACTIONS(689), - [anon_sym_overload] = ACTIONS(689), - [anon_sym_override] = ACTIONS(689), - [anon_sym_private] = ACTIONS(689), - [anon_sym_public] = ACTIONS(689), - [anon_sym_return] = ACTIONS(689), - [anon_sym_static] = ACTIONS(689), - [anon_sym_try] = ACTIONS(689), - [anon_sym_untyped] = ACTIONS(689), - [anon_sym_while] = ACTIONS(689), - [sym__semicolon] = ACTIONS(687), + [143] = { + [sym_block] = STATE(169), + [ts_builtin_sym_end] = ACTIONS(678), + [sym_identifier] = ACTIONS(680), + [anon_sym_POUND] = ACTIONS(678), + [anon_sym_package] = ACTIONS(680), + [anon_sym_import] = ACTIONS(680), + [anon_sym_using] = ACTIONS(680), + [anon_sym_throw] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_switch] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_RBRACE] = ACTIONS(678), + [anon_sym_case] = ACTIONS(680), + [anon_sym_default] = ACTIONS(680), + [anon_sym_cast] = ACTIONS(680), + [anon_sym_DOLLARtype] = ACTIONS(678), + [anon_sym_in] = ACTIONS(680), + [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_this] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_AT_COLON] = ACTIONS(678), + [anon_sym_if] = ACTIONS(680), + [anon_sym_else] = ACTIONS(684), + [anon_sym_elseif] = ACTIONS(686), + [anon_sym_new] = ACTIONS(680), + [sym__prefixUnaryOperator] = ACTIONS(680), + [sym__eitherUnaryOperator] = ACTIONS(678), + [anon_sym_null] = ACTIONS(680), + [anon_sym_dynamic] = ACTIONS(680), + [anon_sym_final] = ACTIONS(680), + [anon_sym_abstract] = ACTIONS(680), + [anon_sym_class] = ACTIONS(680), + [anon_sym_extends] = ACTIONS(680), + [anon_sym_implements] = ACTIONS(680), + [anon_sym_interface] = ACTIONS(680), + [anon_sym_typedef] = ACTIONS(680), + [anon_sym_function] = ACTIONS(680), + [anon_sym_var] = ACTIONS(680), + [aux_sym_integer_token1] = ACTIONS(680), + [aux_sym_integer_token2] = ACTIONS(678), + [aux_sym_float_token1] = ACTIONS(680), + [aux_sym_float_token2] = ACTIONS(678), + [anon_sym_true] = ACTIONS(680), + [anon_sym_false] = ACTIONS(680), + [aux_sym_string_token1] = ACTIONS(678), + [aux_sym_string_token3] = ACTIONS(678), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(680), + [anon_sym_catch] = ACTIONS(680), + [anon_sym_continue] = ACTIONS(680), + [anon_sym_do] = ACTIONS(680), + [anon_sym_enum] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(680), + [anon_sym_for] = ACTIONS(680), + [anon_sym_inline] = ACTIONS(680), + [anon_sym_macro] = ACTIONS(680), + [anon_sym_operator] = ACTIONS(680), + [anon_sym_overload] = ACTIONS(680), + [anon_sym_override] = ACTIONS(680), + [anon_sym_private] = ACTIONS(680), + [anon_sym_public] = ACTIONS(680), + [anon_sym_return] = ACTIONS(680), + [anon_sym_static] = ACTIONS(680), + [anon_sym_try] = ACTIONS(680), + [anon_sym_untyped] = ACTIONS(680), + [anon_sym_while] = ACTIONS(680), + [sym__semicolon] = ACTIONS(678), }, - [128] = { - [ts_builtin_sym_end] = ACTIONS(694), - [sym_identifier] = ACTIONS(696), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_package] = ACTIONS(696), - [anon_sym_import] = ACTIONS(696), - [anon_sym_using] = ACTIONS(696), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_LPAREN] = ACTIONS(694), - [anon_sym_RPAREN] = ACTIONS(694), - [anon_sym_switch] = ACTIONS(696), - [anon_sym_LBRACE] = ACTIONS(694), - [anon_sym_RBRACE] = ACTIONS(694), - [anon_sym_case] = ACTIONS(696), - [anon_sym_default] = ACTIONS(696), - [anon_sym_cast] = ACTIONS(696), - [anon_sym_DOLLARtype] = ACTIONS(694), - [anon_sym_in] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(694), - [anon_sym_this] = ACTIONS(696), - [anon_sym_DASH_GT] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(696), - [anon_sym_AT_COLON] = ACTIONS(694), - [anon_sym_if] = ACTIONS(696), - [anon_sym_else] = ACTIONS(696), - [anon_sym_new] = ACTIONS(696), - [anon_sym_TILDE] = ACTIONS(694), - [anon_sym_BANG] = ACTIONS(696), - [anon_sym_DASH] = ACTIONS(696), - [anon_sym_PLUS_PLUS] = ACTIONS(694), - [anon_sym_DASH_DASH] = ACTIONS(694), - [anon_sym_PERCENT] = ACTIONS(694), - [anon_sym_STAR] = ACTIONS(694), - [anon_sym_SLASH] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(696), - [anon_sym_LT_LT] = ACTIONS(694), - [anon_sym_GT_GT] = ACTIONS(696), - [anon_sym_GT_GT_GT] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(696), - [anon_sym_PIPE] = ACTIONS(696), - [anon_sym_CARET] = ACTIONS(694), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [anon_sym_EQ_EQ] = ACTIONS(694), - [anon_sym_BANG_EQ] = ACTIONS(694), - [anon_sym_LT] = ACTIONS(696), - [anon_sym_LT_EQ] = ACTIONS(694), - [anon_sym_GT] = ACTIONS(696), - [anon_sym_GT_EQ] = ACTIONS(694), - [anon_sym_EQ_GT] = ACTIONS(694), - [anon_sym_QMARK_QMARK] = ACTIONS(694), - [anon_sym_EQ] = ACTIONS(696), - [sym__rangeOperator] = ACTIONS(694), - [anon_sym_null] = ACTIONS(696), - [anon_sym_dynamic] = ACTIONS(696), - [anon_sym_final] = ACTIONS(696), - [anon_sym_abstract] = ACTIONS(696), - [anon_sym_class] = ACTIONS(696), - [anon_sym_extends] = ACTIONS(696), - [anon_sym_implements] = ACTIONS(696), - [anon_sym_interface] = ACTIONS(696), - [anon_sym_typedef] = ACTIONS(696), - [anon_sym_function] = ACTIONS(696), - [anon_sym_var] = ACTIONS(696), - [aux_sym_integer_token1] = ACTIONS(696), - [aux_sym_integer_token2] = ACTIONS(694), - [aux_sym_float_token1] = ACTIONS(696), - [aux_sym_float_token2] = ACTIONS(694), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), - [aux_sym_string_token1] = ACTIONS(694), - [aux_sym_string_token3] = ACTIONS(694), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(696), - [anon_sym_catch] = ACTIONS(696), - [anon_sym_continue] = ACTIONS(696), - [anon_sym_do] = ACTIONS(696), - [anon_sym_enum] = ACTIONS(696), - [anon_sym_extern] = ACTIONS(696), - [anon_sym_for] = ACTIONS(696), - [anon_sym_inline] = ACTIONS(696), - [anon_sym_macro] = ACTIONS(696), - [anon_sym_operator] = ACTIONS(696), - [anon_sym_overload] = ACTIONS(696), - [anon_sym_override] = ACTIONS(696), - [anon_sym_private] = ACTIONS(696), - [anon_sym_public] = ACTIONS(696), - [anon_sym_return] = ACTIONS(696), - [anon_sym_static] = ACTIONS(696), - [anon_sym_try] = ACTIONS(696), - [anon_sym_untyped] = ACTIONS(696), - [anon_sym_while] = ACTIONS(696), - [sym__semicolon] = ACTIONS(694), + [144] = { + [sym_block] = STATE(235), + [ts_builtin_sym_end] = ACTIONS(688), + [sym_identifier] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(688), + [anon_sym_package] = ACTIONS(690), + [anon_sym_import] = ACTIONS(690), + [anon_sym_using] = ACTIONS(690), + [anon_sym_throw] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(688), + [anon_sym_switch] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(692), + [anon_sym_RBRACE] = ACTIONS(688), + [anon_sym_case] = ACTIONS(690), + [anon_sym_default] = ACTIONS(690), + [anon_sym_cast] = ACTIONS(690), + [anon_sym_DOLLARtype] = ACTIONS(688), + [anon_sym_in] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(688), + [anon_sym_this] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(570), + [anon_sym_AT] = ACTIONS(690), + [anon_sym_AT_COLON] = ACTIONS(688), + [anon_sym_if] = ACTIONS(690), + [anon_sym_else] = ACTIONS(690), + [anon_sym_new] = ACTIONS(690), + [sym__prefixUnaryOperator] = ACTIONS(690), + [sym__eitherUnaryOperator] = ACTIONS(688), + [anon_sym_null] = ACTIONS(690), + [anon_sym_dynamic] = ACTIONS(690), + [anon_sym_final] = ACTIONS(690), + [anon_sym_abstract] = ACTIONS(690), + [anon_sym_class] = ACTIONS(690), + [anon_sym_extends] = ACTIONS(690), + [anon_sym_implements] = ACTIONS(690), + [anon_sym_interface] = ACTIONS(690), + [anon_sym_typedef] = ACTIONS(690), + [anon_sym_function] = ACTIONS(690), + [anon_sym_var] = ACTIONS(690), + [aux_sym_integer_token1] = ACTIONS(690), + [aux_sym_integer_token2] = ACTIONS(688), + [aux_sym_float_token1] = ACTIONS(690), + [aux_sym_float_token2] = ACTIONS(688), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [aux_sym_string_token1] = ACTIONS(688), + [aux_sym_string_token3] = ACTIONS(688), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(690), + [anon_sym_catch] = ACTIONS(690), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_do] = ACTIONS(690), + [anon_sym_enum] = ACTIONS(690), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_for] = ACTIONS(690), + [anon_sym_inline] = ACTIONS(690), + [anon_sym_macro] = ACTIONS(690), + [anon_sym_operator] = ACTIONS(690), + [anon_sym_overload] = ACTIONS(690), + [anon_sym_override] = ACTIONS(690), + [anon_sym_private] = ACTIONS(690), + [anon_sym_public] = ACTIONS(690), + [anon_sym_return] = ACTIONS(690), + [anon_sym_static] = ACTIONS(690), + [anon_sym_try] = ACTIONS(690), + [anon_sym_untyped] = ACTIONS(690), + [anon_sym_while] = ACTIONS(690), + [sym__semicolon] = ACTIONS(688), }, - [129] = { - [ts_builtin_sym_end] = ACTIONS(698), - [sym_identifier] = ACTIONS(700), - [anon_sym_POUND] = ACTIONS(698), - [anon_sym_package] = ACTIONS(700), - [anon_sym_import] = ACTIONS(700), - [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_LBRACE] = ACTIONS(698), - [anon_sym_RBRACE] = ACTIONS(698), - [anon_sym_case] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_cast] = ACTIONS(700), - [anon_sym_DOLLARtype] = ACTIONS(698), - [anon_sym_in] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(698), - [anon_sym_this] = ACTIONS(700), - [anon_sym_DASH_GT] = ACTIONS(671), - [anon_sym_AT] = ACTIONS(700), - [anon_sym_AT_COLON] = ACTIONS(698), - [anon_sym_if] = ACTIONS(700), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(698), - [anon_sym_null] = ACTIONS(700), - [anon_sym_dynamic] = ACTIONS(700), - [anon_sym_final] = ACTIONS(700), - [anon_sym_abstract] = ACTIONS(700), - [anon_sym_class] = ACTIONS(700), - [anon_sym_extends] = ACTIONS(700), - [anon_sym_implements] = ACTIONS(700), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(700), - [anon_sym_catch] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_do] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_extern] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_macro] = ACTIONS(700), - [anon_sym_operator] = ACTIONS(700), - [anon_sym_overload] = ACTIONS(700), - [anon_sym_override] = ACTIONS(700), - [anon_sym_private] = ACTIONS(700), - [anon_sym_public] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_try] = ACTIONS(700), - [anon_sym_untyped] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym__semicolon] = ACTIONS(698), + [145] = { + [sym_block] = STATE(214), + [ts_builtin_sym_end] = ACTIONS(695), + [sym_identifier] = ACTIONS(697), + [anon_sym_POUND] = ACTIONS(695), + [anon_sym_package] = ACTIONS(697), + [anon_sym_import] = ACTIONS(697), + [anon_sym_using] = ACTIONS(697), + [anon_sym_throw] = ACTIONS(697), + [anon_sym_LPAREN] = ACTIONS(695), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_LBRACE] = ACTIONS(699), + [anon_sym_RBRACE] = ACTIONS(695), + [anon_sym_case] = ACTIONS(697), + [anon_sym_COLON] = ACTIONS(702), + [anon_sym_default] = ACTIONS(697), + [anon_sym_cast] = ACTIONS(697), + [anon_sym_DOLLARtype] = ACTIONS(695), + [anon_sym_in] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_this] = ACTIONS(697), + [anon_sym_AT] = ACTIONS(697), + [anon_sym_AT_COLON] = ACTIONS(695), + [anon_sym_if] = ACTIONS(697), + [anon_sym_else] = ACTIONS(697), + [anon_sym_new] = ACTIONS(697), + [sym__prefixUnaryOperator] = ACTIONS(697), + [sym__eitherUnaryOperator] = ACTIONS(695), + [anon_sym_null] = ACTIONS(697), + [anon_sym_dynamic] = ACTIONS(697), + [anon_sym_final] = ACTIONS(697), + [anon_sym_abstract] = ACTIONS(697), + [anon_sym_class] = ACTIONS(697), + [anon_sym_extends] = ACTIONS(697), + [anon_sym_implements] = ACTIONS(697), + [anon_sym_interface] = ACTIONS(697), + [anon_sym_typedef] = ACTIONS(697), + [anon_sym_function] = ACTIONS(697), + [anon_sym_var] = ACTIONS(697), + [aux_sym_integer_token1] = ACTIONS(697), + [aux_sym_integer_token2] = ACTIONS(695), + [aux_sym_float_token1] = ACTIONS(697), + [aux_sym_float_token2] = ACTIONS(695), + [anon_sym_true] = ACTIONS(697), + [anon_sym_false] = ACTIONS(697), + [aux_sym_string_token1] = ACTIONS(695), + [aux_sym_string_token3] = ACTIONS(695), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(697), + [anon_sym_catch] = ACTIONS(697), + [anon_sym_continue] = ACTIONS(697), + [anon_sym_do] = ACTIONS(697), + [anon_sym_enum] = ACTIONS(697), + [anon_sym_extern] = ACTIONS(697), + [anon_sym_for] = ACTIONS(697), + [anon_sym_inline] = ACTIONS(697), + [anon_sym_macro] = ACTIONS(697), + [anon_sym_operator] = ACTIONS(697), + [anon_sym_overload] = ACTIONS(697), + [anon_sym_override] = ACTIONS(697), + [anon_sym_private] = ACTIONS(697), + [anon_sym_public] = ACTIONS(697), + [anon_sym_return] = ACTIONS(697), + [anon_sym_static] = ACTIONS(697), + [anon_sym_try] = ACTIONS(697), + [anon_sym_untyped] = ACTIONS(697), + [anon_sym_while] = ACTIONS(697), + [sym__semicolon] = ACTIONS(695), }, - [130] = { - [ts_builtin_sym_end] = ACTIONS(702), - [sym_identifier] = ACTIONS(704), - [anon_sym_POUND] = ACTIONS(702), - [anon_sym_package] = ACTIONS(704), - [anon_sym_import] = ACTIONS(704), - [anon_sym_using] = ACTIONS(704), - [anon_sym_throw] = ACTIONS(704), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_RPAREN] = ACTIONS(702), - [anon_sym_switch] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(702), - [anon_sym_case] = ACTIONS(704), - [anon_sym_default] = ACTIONS(704), - [anon_sym_cast] = ACTIONS(704), - [anon_sym_DOLLARtype] = ACTIONS(702), - [anon_sym_in] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(702), - [anon_sym_this] = ACTIONS(704), - [anon_sym_DASH_GT] = ACTIONS(671), - [anon_sym_AT] = ACTIONS(704), - [anon_sym_AT_COLON] = ACTIONS(702), - [anon_sym_if] = ACTIONS(704), - [anon_sym_else] = ACTIONS(704), + [146] = { + [sym_member_expression] = STATE(28), + [sym__lhs_expression] = STATE(1070), + [sym__literal] = STATE(1172), + [sym_integer] = STATE(1172), + [sym_float] = STATE(1172), + [sym_bool] = STATE(1172), + [sym_string] = STATE(1025), + [sym_null] = STATE(1172), + [sym_array] = STATE(1172), + [sym_map] = STATE(1172), + [sym_object] = STATE(1172), + [sym_pair] = STATE(1172), + [sym_identifier] = ACTIONS(284), + [anon_sym_package] = ACTIONS(276), + [anon_sym_import] = ACTIONS(276), + [anon_sym_using] = ACTIONS(276), + [anon_sym_throw] = ACTIONS(276), + [anon_sym_switch] = ACTIONS(276), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_case] = ACTIONS(276), + [anon_sym_default] = ACTIONS(276), + [anon_sym_cast] = ACTIONS(276), + [anon_sym_in] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_this] = ACTIONS(286), + [anon_sym_if] = ACTIONS(276), + [anon_sym_else] = ACTIONS(276), [anon_sym_new] = ACTIONS(704), - [anon_sym_TILDE] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(704), - [anon_sym_DASH] = ACTIONS(704), - [anon_sym_PLUS_PLUS] = ACTIONS(702), - [anon_sym_DASH_DASH] = ACTIONS(702), - [anon_sym_PERCENT] = ACTIONS(702), - [anon_sym_STAR] = ACTIONS(702), - [anon_sym_SLASH] = ACTIONS(704), - [anon_sym_PLUS] = ACTIONS(704), - [anon_sym_LT_LT] = ACTIONS(702), - [anon_sym_GT_GT] = ACTIONS(704), - [anon_sym_GT_GT_GT] = ACTIONS(702), - [anon_sym_AMP] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_CARET] = ACTIONS(702), - [anon_sym_AMP_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(702), - [anon_sym_EQ_EQ] = ACTIONS(702), - [anon_sym_BANG_EQ] = ACTIONS(702), - [anon_sym_LT] = ACTIONS(704), - [anon_sym_LT_EQ] = ACTIONS(702), - [anon_sym_GT] = ACTIONS(704), - [anon_sym_GT_EQ] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(702), - [anon_sym_QMARK_QMARK] = ACTIONS(702), - [anon_sym_EQ] = ACTIONS(704), - [sym__rangeOperator] = ACTIONS(702), - [anon_sym_null] = ACTIONS(704), - [anon_sym_dynamic] = ACTIONS(704), - [anon_sym_final] = ACTIONS(704), - [anon_sym_abstract] = ACTIONS(704), - [anon_sym_class] = ACTIONS(704), - [anon_sym_extends] = ACTIONS(704), - [anon_sym_implements] = ACTIONS(704), - [anon_sym_interface] = ACTIONS(704), - [anon_sym_typedef] = ACTIONS(704), - [anon_sym_function] = ACTIONS(704), - [anon_sym_var] = ACTIONS(704), - [aux_sym_integer_token1] = ACTIONS(704), - [aux_sym_integer_token2] = ACTIONS(702), - [aux_sym_float_token1] = ACTIONS(704), - [aux_sym_float_token2] = ACTIONS(702), - [anon_sym_true] = ACTIONS(704), - [anon_sym_false] = ACTIONS(704), - [aux_sym_string_token1] = ACTIONS(702), - [aux_sym_string_token3] = ACTIONS(702), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(704), - [anon_sym_catch] = ACTIONS(704), - [anon_sym_continue] = ACTIONS(704), - [anon_sym_do] = ACTIONS(704), - [anon_sym_enum] = ACTIONS(704), - [anon_sym_extern] = ACTIONS(704), - [anon_sym_for] = ACTIONS(704), - [anon_sym_inline] = ACTIONS(704), - [anon_sym_macro] = ACTIONS(704), - [anon_sym_operator] = ACTIONS(704), - [anon_sym_overload] = ACTIONS(704), - [anon_sym_override] = ACTIONS(704), - [anon_sym_private] = ACTIONS(704), - [anon_sym_public] = ACTIONS(704), - [anon_sym_return] = ACTIONS(704), - [anon_sym_static] = ACTIONS(704), - [anon_sym_try] = ACTIONS(704), - [anon_sym_untyped] = ACTIONS(704), - [anon_sym_while] = ACTIONS(704), - [sym__semicolon] = ACTIONS(702), + [anon_sym_null] = ACTIONS(51), + [anon_sym_dynamic] = ACTIONS(276), + [anon_sym_final] = ACTIONS(276), + [anon_sym_abstract] = ACTIONS(276), + [anon_sym_class] = ACTIONS(276), + [anon_sym_extends] = ACTIONS(276), + [anon_sym_implements] = ACTIONS(276), + [anon_sym_interface] = ACTIONS(276), + [anon_sym_typedef] = ACTIONS(276), + [anon_sym_function] = ACTIONS(276), + [anon_sym_var] = ACTIONS(276), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(276), + [anon_sym_catch] = ACTIONS(276), + [anon_sym_continue] = ACTIONS(276), + [anon_sym_do] = ACTIONS(276), + [anon_sym_enum] = ACTIONS(276), + [anon_sym_extern] = ACTIONS(276), + [anon_sym_for] = ACTIONS(276), + [anon_sym_inline] = ACTIONS(276), + [anon_sym_macro] = ACTIONS(276), + [anon_sym_operator] = ACTIONS(276), + [anon_sym_overload] = ACTIONS(276), + [anon_sym_override] = ACTIONS(276), + [anon_sym_private] = ACTIONS(276), + [anon_sym_public] = ACTIONS(276), + [anon_sym_return] = ACTIONS(276), + [anon_sym_static] = ACTIONS(276), + [anon_sym_try] = ACTIONS(276), + [anon_sym_untyped] = ACTIONS(276), + [anon_sym_while] = ACTIONS(276), }, - [131] = { + [147] = { + [sym_block] = STATE(254), [ts_builtin_sym_end] = ACTIONS(706), [sym_identifier] = ACTIONS(708), [anon_sym_POUND] = ACTIONS(706), @@ -20746,9 +18551,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(708), [anon_sym_throw] = ACTIONS(708), [anon_sym_LPAREN] = ACTIONS(706), - [anon_sym_RPAREN] = ACTIONS(706), [anon_sym_switch] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(710), [anon_sym_RBRACE] = ACTIONS(706), [anon_sym_case] = ACTIONS(708), [anon_sym_default] = ACTIONS(708), @@ -20757,39 +18561,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(708), [anon_sym_LBRACK] = ACTIONS(706), [anon_sym_this] = ACTIONS(708), - [anon_sym_DASH_GT] = ACTIONS(671), + [anon_sym_DASH_GT] = ACTIONS(570), [anon_sym_AT] = ACTIONS(708), [anon_sym_AT_COLON] = ACTIONS(706), [anon_sym_if] = ACTIONS(708), [anon_sym_else] = ACTIONS(708), [anon_sym_new] = ACTIONS(708), - [anon_sym_TILDE] = ACTIONS(706), - [anon_sym_BANG] = ACTIONS(708), - [anon_sym_DASH] = ACTIONS(708), - [anon_sym_PLUS_PLUS] = ACTIONS(706), - [anon_sym_DASH_DASH] = ACTIONS(706), - [anon_sym_PERCENT] = ACTIONS(706), - [anon_sym_STAR] = ACTIONS(706), - [anon_sym_SLASH] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(708), - [anon_sym_LT_LT] = ACTIONS(706), - [anon_sym_GT_GT] = ACTIONS(708), - [anon_sym_GT_GT_GT] = ACTIONS(706), - [anon_sym_AMP] = ACTIONS(708), - [anon_sym_PIPE] = ACTIONS(708), - [anon_sym_CARET] = ACTIONS(706), - [anon_sym_AMP_AMP] = ACTIONS(706), - [anon_sym_PIPE_PIPE] = ACTIONS(706), - [anon_sym_EQ_EQ] = ACTIONS(706), - [anon_sym_BANG_EQ] = ACTIONS(706), - [anon_sym_LT] = ACTIONS(708), - [anon_sym_LT_EQ] = ACTIONS(706), - [anon_sym_GT] = ACTIONS(708), - [anon_sym_GT_EQ] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(706), - [anon_sym_QMARK_QMARK] = ACTIONS(706), - [anon_sym_EQ] = ACTIONS(708), - [sym__rangeOperator] = ACTIONS(706), + [sym__prefixUnaryOperator] = ACTIONS(708), + [sym__eitherUnaryOperator] = ACTIONS(706), [anon_sym_null] = ACTIONS(708), [anon_sym_dynamic] = ACTIONS(708), [anon_sym_final] = ACTIONS(708), @@ -20831,102 +18610,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(708), [sym__semicolon] = ACTIONS(706), }, - [132] = { - [sym_type_params] = STATE(116), - [ts_builtin_sym_end] = ACTIONS(710), - [sym_identifier] = ACTIONS(713), - [anon_sym_POUND] = ACTIONS(710), - [anon_sym_package] = ACTIONS(713), - [anon_sym_import] = ACTIONS(713), - [anon_sym_using] = ACTIONS(713), - [anon_sym_throw] = ACTIONS(713), - [anon_sym_LPAREN] = ACTIONS(710), - [anon_sym_switch] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_RBRACE] = ACTIONS(710), - [anon_sym_case] = ACTIONS(713), - [anon_sym_default] = ACTIONS(713), - [anon_sym_cast] = ACTIONS(713), - [anon_sym_DOLLARtype] = ACTIONS(710), - [anon_sym_in] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(710), - [anon_sym_this] = ACTIONS(713), - [anon_sym_DASH_GT] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(713), - [anon_sym_AT_COLON] = ACTIONS(710), - [anon_sym_if] = ACTIONS(713), - [anon_sym_else] = ACTIONS(713), - [anon_sym_new] = ACTIONS(713), - [anon_sym_TILDE] = ACTIONS(710), - [anon_sym_BANG] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_PLUS_PLUS] = ACTIONS(710), - [anon_sym_DASH_DASH] = ACTIONS(710), - [anon_sym_PERCENT] = ACTIONS(710), - [anon_sym_STAR] = ACTIONS(710), - [anon_sym_SLASH] = ACTIONS(713), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_LT_LT] = ACTIONS(710), - [anon_sym_GT_GT] = ACTIONS(713), - [anon_sym_GT_GT_GT] = ACTIONS(710), - [anon_sym_AMP] = ACTIONS(713), - [anon_sym_PIPE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(710), - [anon_sym_AMP_AMP] = ACTIONS(710), - [anon_sym_PIPE_PIPE] = ACTIONS(710), - [anon_sym_EQ_EQ] = ACTIONS(710), - [anon_sym_BANG_EQ] = ACTIONS(710), - [anon_sym_LT] = ACTIONS(716), - [anon_sym_LT_EQ] = ACTIONS(710), - [anon_sym_GT] = ACTIONS(713), - [anon_sym_GT_EQ] = ACTIONS(710), - [anon_sym_EQ_GT] = ACTIONS(710), - [anon_sym_QMARK_QMARK] = ACTIONS(710), - [anon_sym_EQ] = ACTIONS(713), - [sym__rangeOperator] = ACTIONS(710), - [anon_sym_null] = ACTIONS(713), - [anon_sym_dynamic] = ACTIONS(713), - [anon_sym_final] = ACTIONS(713), - [anon_sym_abstract] = ACTIONS(713), - [anon_sym_class] = ACTIONS(713), - [anon_sym_extends] = ACTIONS(713), - [anon_sym_implements] = ACTIONS(713), - [anon_sym_interface] = ACTIONS(713), - [anon_sym_typedef] = ACTIONS(713), - [anon_sym_function] = ACTIONS(713), - [anon_sym_var] = ACTIONS(713), - [aux_sym_integer_token1] = ACTIONS(713), - [aux_sym_integer_token2] = ACTIONS(710), - [aux_sym_float_token1] = ACTIONS(713), - [aux_sym_float_token2] = ACTIONS(710), - [anon_sym_true] = ACTIONS(713), - [anon_sym_false] = ACTIONS(713), - [aux_sym_string_token1] = ACTIONS(710), - [aux_sym_string_token3] = ACTIONS(710), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(713), - [anon_sym_catch] = ACTIONS(713), - [anon_sym_continue] = ACTIONS(713), - [anon_sym_do] = ACTIONS(713), - [anon_sym_enum] = ACTIONS(713), - [anon_sym_extern] = ACTIONS(713), - [anon_sym_for] = ACTIONS(713), - [anon_sym_inline] = ACTIONS(713), - [anon_sym_macro] = ACTIONS(713), - [anon_sym_operator] = ACTIONS(713), - [anon_sym_overload] = ACTIONS(713), - [anon_sym_override] = ACTIONS(713), - [anon_sym_private] = ACTIONS(713), - [anon_sym_public] = ACTIONS(713), - [anon_sym_return] = ACTIONS(713), - [anon_sym_static] = ACTIONS(713), - [anon_sym_try] = ACTIONS(713), - [anon_sym_untyped] = ACTIONS(713), - [anon_sym_while] = ACTIONS(713), - [sym__semicolon] = ACTIONS(710), + [148] = { + [sym_block] = STATE(247), + [ts_builtin_sym_end] = ACTIONS(713), + [sym_identifier] = ACTIONS(715), + [anon_sym_POUND] = ACTIONS(713), + [anon_sym_package] = ACTIONS(715), + [anon_sym_import] = ACTIONS(715), + [anon_sym_using] = ACTIONS(715), + [anon_sym_throw] = ACTIONS(715), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_switch] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(717), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_case] = ACTIONS(715), + [anon_sym_default] = ACTIONS(715), + [anon_sym_cast] = ACTIONS(715), + [anon_sym_DOLLARtype] = ACTIONS(713), + [anon_sym_in] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(713), + [anon_sym_this] = ACTIONS(715), + [anon_sym_DASH_GT] = ACTIONS(570), + [anon_sym_AT] = ACTIONS(715), + [anon_sym_AT_COLON] = ACTIONS(713), + [anon_sym_if] = ACTIONS(715), + [anon_sym_else] = ACTIONS(715), + [anon_sym_new] = ACTIONS(715), + [sym__prefixUnaryOperator] = ACTIONS(715), + [sym__eitherUnaryOperator] = ACTIONS(713), + [anon_sym_null] = ACTIONS(715), + [anon_sym_dynamic] = ACTIONS(715), + [anon_sym_final] = ACTIONS(715), + [anon_sym_abstract] = ACTIONS(715), + [anon_sym_class] = ACTIONS(715), + [anon_sym_extends] = ACTIONS(715), + [anon_sym_implements] = ACTIONS(715), + [anon_sym_interface] = ACTIONS(715), + [anon_sym_typedef] = ACTIONS(715), + [anon_sym_function] = ACTIONS(715), + [anon_sym_var] = ACTIONS(715), + [aux_sym_integer_token1] = ACTIONS(715), + [aux_sym_integer_token2] = ACTIONS(713), + [aux_sym_float_token1] = ACTIONS(715), + [aux_sym_float_token2] = ACTIONS(713), + [anon_sym_true] = ACTIONS(715), + [anon_sym_false] = ACTIONS(715), + [aux_sym_string_token1] = ACTIONS(713), + [aux_sym_string_token3] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(715), + [anon_sym_catch] = ACTIONS(715), + [anon_sym_continue] = ACTIONS(715), + [anon_sym_do] = ACTIONS(715), + [anon_sym_enum] = ACTIONS(715), + [anon_sym_extern] = ACTIONS(715), + [anon_sym_for] = ACTIONS(715), + [anon_sym_inline] = ACTIONS(715), + [anon_sym_macro] = ACTIONS(715), + [anon_sym_operator] = ACTIONS(715), + [anon_sym_overload] = ACTIONS(715), + [anon_sym_override] = ACTIONS(715), + [anon_sym_private] = ACTIONS(715), + [anon_sym_public] = ACTIONS(715), + [anon_sym_return] = ACTIONS(715), + [anon_sym_static] = ACTIONS(715), + [anon_sym_try] = ACTIONS(715), + [anon_sym_untyped] = ACTIONS(715), + [anon_sym_while] = ACTIONS(715), + [sym__semicolon] = ACTIONS(713), }, - [133] = { - [sym_block] = STATE(201), + [149] = { + [sym_block] = STATE(251), [ts_builtin_sym_end] = ACTIONS(720), [sym_identifier] = ACTIONS(722), [anon_sym_POUND] = ACTIONS(720), @@ -20939,45 +18693,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(724), [anon_sym_RBRACE] = ACTIONS(720), [anon_sym_case] = ACTIONS(722), - [anon_sym_COLON] = ACTIONS(727), [anon_sym_default] = ACTIONS(722), [anon_sym_cast] = ACTIONS(722), [anon_sym_DOLLARtype] = ACTIONS(720), [anon_sym_in] = ACTIONS(722), [anon_sym_LBRACK] = ACTIONS(720), [anon_sym_this] = ACTIONS(722), + [anon_sym_DASH_GT] = ACTIONS(570), [anon_sym_AT] = ACTIONS(722), [anon_sym_AT_COLON] = ACTIONS(720), [anon_sym_if] = ACTIONS(722), [anon_sym_else] = ACTIONS(722), [anon_sym_new] = ACTIONS(722), - [anon_sym_TILDE] = ACTIONS(720), - [anon_sym_BANG] = ACTIONS(722), - [anon_sym_DASH] = ACTIONS(722), - [anon_sym_PLUS_PLUS] = ACTIONS(720), - [anon_sym_DASH_DASH] = ACTIONS(720), - [anon_sym_PERCENT] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(722), - [anon_sym_PLUS] = ACTIONS(722), - [anon_sym_LT_LT] = ACTIONS(720), - [anon_sym_GT_GT] = ACTIONS(722), - [anon_sym_GT_GT_GT] = ACTIONS(720), - [anon_sym_AMP] = ACTIONS(722), - [anon_sym_PIPE] = ACTIONS(722), - [anon_sym_CARET] = ACTIONS(720), - [anon_sym_AMP_AMP] = ACTIONS(720), - [anon_sym_PIPE_PIPE] = ACTIONS(720), - [anon_sym_EQ_EQ] = ACTIONS(720), - [anon_sym_BANG_EQ] = ACTIONS(720), - [anon_sym_LT] = ACTIONS(722), - [anon_sym_LT_EQ] = ACTIONS(720), - [anon_sym_GT] = ACTIONS(722), - [anon_sym_GT_EQ] = ACTIONS(720), - [anon_sym_EQ_GT] = ACTIONS(720), - [anon_sym_QMARK_QMARK] = ACTIONS(720), - [anon_sym_EQ] = ACTIONS(722), - [sym__rangeOperator] = ACTIONS(720), + [sym__prefixUnaryOperator] = ACTIONS(722), + [sym__eitherUnaryOperator] = ACTIONS(720), [anon_sym_null] = ACTIONS(722), [anon_sym_dynamic] = ACTIONS(722), [anon_sym_final] = ACTIONS(722), @@ -21019,196 +18748,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(722), [sym__semicolon] = ACTIONS(720), }, - [134] = { - [sym_block] = STATE(261), - [ts_builtin_sym_end] = ACTIONS(729), - [sym_identifier] = ACTIONS(731), - [anon_sym_POUND] = ACTIONS(729), - [anon_sym_package] = ACTIONS(731), - [anon_sym_import] = ACTIONS(731), - [anon_sym_using] = ACTIONS(731), - [anon_sym_throw] = ACTIONS(731), - [anon_sym_LPAREN] = ACTIONS(729), - [anon_sym_switch] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [anon_sym_default] = ACTIONS(731), - [anon_sym_cast] = ACTIONS(731), - [anon_sym_DOLLARtype] = ACTIONS(729), - [anon_sym_in] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(729), - [anon_sym_this] = ACTIONS(731), - [anon_sym_DASH_GT] = ACTIONS(671), - [anon_sym_AT] = ACTIONS(731), - [anon_sym_AT_COLON] = ACTIONS(729), - [anon_sym_if] = ACTIONS(731), - [anon_sym_else] = ACTIONS(731), - [anon_sym_new] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_PERCENT] = ACTIONS(729), - [anon_sym_STAR] = ACTIONS(729), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_LT_LT] = ACTIONS(729), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_GT_GT_GT] = ACTIONS(729), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_CARET] = ACTIONS(729), - [anon_sym_AMP_AMP] = ACTIONS(729), - [anon_sym_PIPE_PIPE] = ACTIONS(729), - [anon_sym_EQ_EQ] = ACTIONS(729), - [anon_sym_BANG_EQ] = ACTIONS(729), - [anon_sym_LT] = ACTIONS(731), - [anon_sym_LT_EQ] = ACTIONS(729), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_GT_EQ] = ACTIONS(729), - [anon_sym_EQ_GT] = ACTIONS(729), - [anon_sym_QMARK_QMARK] = ACTIONS(729), - [anon_sym_EQ] = ACTIONS(731), - [sym__rangeOperator] = ACTIONS(729), - [anon_sym_null] = ACTIONS(731), - [anon_sym_dynamic] = ACTIONS(731), - [anon_sym_final] = ACTIONS(731), - [anon_sym_abstract] = ACTIONS(731), - [anon_sym_class] = ACTIONS(731), - [anon_sym_extends] = ACTIONS(731), - [anon_sym_implements] = ACTIONS(731), - [anon_sym_interface] = ACTIONS(731), - [anon_sym_typedef] = ACTIONS(731), - [anon_sym_function] = ACTIONS(731), - [anon_sym_var] = ACTIONS(731), - [aux_sym_integer_token1] = ACTIONS(731), - [aux_sym_integer_token2] = ACTIONS(729), - [aux_sym_float_token1] = ACTIONS(731), - [aux_sym_float_token2] = ACTIONS(729), - [anon_sym_true] = ACTIONS(731), - [anon_sym_false] = ACTIONS(731), - [aux_sym_string_token1] = ACTIONS(729), - [aux_sym_string_token3] = ACTIONS(729), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(731), - [anon_sym_catch] = ACTIONS(731), - [anon_sym_continue] = ACTIONS(731), - [anon_sym_do] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(731), - [anon_sym_extern] = ACTIONS(731), - [anon_sym_for] = ACTIONS(731), - [anon_sym_inline] = ACTIONS(731), - [anon_sym_macro] = ACTIONS(731), - [anon_sym_operator] = ACTIONS(731), - [anon_sym_overload] = ACTIONS(731), - [anon_sym_override] = ACTIONS(731), - [anon_sym_private] = ACTIONS(731), - [anon_sym_public] = ACTIONS(731), - [anon_sym_return] = ACTIONS(731), - [anon_sym_static] = ACTIONS(731), - [anon_sym_try] = ACTIONS(731), - [anon_sym_untyped] = ACTIONS(731), - [anon_sym_while] = ACTIONS(731), - [sym__semicolon] = ACTIONS(729), - }, - [135] = { - [ts_builtin_sym_end] = ACTIONS(510), - [sym_identifier] = ACTIONS(512), - [anon_sym_POUND] = ACTIONS(510), - [anon_sym_package] = ACTIONS(512), - [anon_sym_import] = ACTIONS(512), - [anon_sym_using] = ACTIONS(512), - [anon_sym_throw] = ACTIONS(512), - [anon_sym_LPAREN] = ACTIONS(510), - [anon_sym_switch] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(510), - [anon_sym_RBRACE] = ACTIONS(510), - [anon_sym_case] = ACTIONS(512), - [anon_sym_default] = ACTIONS(512), - [anon_sym_cast] = ACTIONS(512), - [anon_sym_DOLLARtype] = ACTIONS(510), - [anon_sym_in] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(510), - [anon_sym_this] = ACTIONS(512), - [anon_sym_DOT] = ACTIONS(512), - [anon_sym_QMARK] = ACTIONS(512), - [anon_sym_AT] = ACTIONS(512), - [anon_sym_AT_COLON] = ACTIONS(510), - [anon_sym_if] = ACTIONS(512), - [anon_sym_else] = ACTIONS(512), - [anon_sym_new] = ACTIONS(512), - [anon_sym_TILDE] = ACTIONS(510), - [anon_sym_BANG] = ACTIONS(512), - [anon_sym_DASH] = ACTIONS(512), - [anon_sym_PLUS_PLUS] = ACTIONS(510), - [anon_sym_DASH_DASH] = ACTIONS(510), - [anon_sym_PERCENT] = ACTIONS(510), - [anon_sym_STAR] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(512), - [anon_sym_PLUS] = ACTIONS(512), - [anon_sym_LT_LT] = ACTIONS(510), - [anon_sym_GT_GT] = ACTIONS(512), - [anon_sym_GT_GT_GT] = ACTIONS(510), - [anon_sym_AMP] = ACTIONS(512), - [anon_sym_PIPE] = ACTIONS(512), - [anon_sym_CARET] = ACTIONS(510), - [anon_sym_AMP_AMP] = ACTIONS(510), - [anon_sym_PIPE_PIPE] = ACTIONS(510), - [anon_sym_EQ_EQ] = ACTIONS(510), - [anon_sym_BANG_EQ] = ACTIONS(510), - [anon_sym_LT] = ACTIONS(512), - [anon_sym_LT_EQ] = ACTIONS(510), - [anon_sym_GT] = ACTIONS(512), - [anon_sym_GT_EQ] = ACTIONS(510), - [anon_sym_EQ_GT] = ACTIONS(510), - [anon_sym_QMARK_QMARK] = ACTIONS(510), - [anon_sym_EQ] = ACTIONS(512), - [sym__rangeOperator] = ACTIONS(510), - [anon_sym_null] = ACTIONS(512), - [anon_sym_dynamic] = ACTIONS(512), - [anon_sym_final] = ACTIONS(512), - [anon_sym_abstract] = ACTIONS(512), - [anon_sym_class] = ACTIONS(512), - [anon_sym_extends] = ACTIONS(512), - [anon_sym_implements] = ACTIONS(512), - [anon_sym_interface] = ACTIONS(512), - [anon_sym_typedef] = ACTIONS(512), - [anon_sym_function] = ACTIONS(512), - [anon_sym_var] = ACTIONS(512), - [aux_sym_integer_token1] = ACTIONS(512), - [aux_sym_integer_token2] = ACTIONS(510), - [aux_sym_float_token1] = ACTIONS(512), - [aux_sym_float_token2] = ACTIONS(510), - [anon_sym_true] = ACTIONS(512), - [anon_sym_false] = ACTIONS(512), - [aux_sym_string_token1] = ACTIONS(510), - [aux_sym_string_token3] = ACTIONS(510), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(512), - [anon_sym_catch] = ACTIONS(512), - [anon_sym_continue] = ACTIONS(512), - [anon_sym_do] = ACTIONS(512), - [anon_sym_enum] = ACTIONS(512), - [anon_sym_extern] = ACTIONS(512), - [anon_sym_for] = ACTIONS(512), - [anon_sym_inline] = ACTIONS(512), - [anon_sym_macro] = ACTIONS(512), - [anon_sym_operator] = ACTIONS(512), - [anon_sym_overload] = ACTIONS(512), - [anon_sym_override] = ACTIONS(512), - [anon_sym_private] = ACTIONS(512), - [anon_sym_public] = ACTIONS(512), - [anon_sym_return] = ACTIONS(512), - [anon_sym_static] = ACTIONS(512), - [anon_sym_try] = ACTIONS(512), - [anon_sym_untyped] = ACTIONS(512), - [anon_sym_while] = ACTIONS(512), - [sym__semicolon] = ACTIONS(510), + [150] = { + [sym_block] = STATE(274), + [ts_builtin_sym_end] = ACTIONS(727), + [sym_identifier] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(727), + [anon_sym_package] = ACTIONS(729), + [anon_sym_import] = ACTIONS(729), + [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_RBRACE] = ACTIONS(727), + [anon_sym_case] = ACTIONS(729), + [anon_sym_COLON] = ACTIONS(734), + [anon_sym_default] = ACTIONS(729), + [anon_sym_cast] = ACTIONS(729), + [anon_sym_DOLLARtype] = ACTIONS(727), + [anon_sym_in] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(727), + [anon_sym_this] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(729), + [anon_sym_AT_COLON] = ACTIONS(727), + [anon_sym_if] = ACTIONS(729), + [anon_sym_else] = ACTIONS(729), + [anon_sym_new] = ACTIONS(729), + [sym__prefixUnaryOperator] = ACTIONS(729), + [sym__eitherUnaryOperator] = ACTIONS(727), + [anon_sym_null] = ACTIONS(729), + [anon_sym_dynamic] = ACTIONS(729), + [anon_sym_final] = ACTIONS(729), + [anon_sym_abstract] = ACTIONS(729), + [anon_sym_class] = ACTIONS(729), + [anon_sym_extends] = ACTIONS(729), + [anon_sym_implements] = ACTIONS(729), + [anon_sym_interface] = ACTIONS(729), + [anon_sym_typedef] = ACTIONS(729), + [anon_sym_function] = ACTIONS(729), + [anon_sym_var] = ACTIONS(729), + [aux_sym_integer_token1] = ACTIONS(729), + [aux_sym_integer_token2] = ACTIONS(727), + [aux_sym_float_token1] = ACTIONS(729), + [aux_sym_float_token2] = ACTIONS(727), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), + [aux_sym_string_token1] = ACTIONS(727), + [aux_sym_string_token3] = ACTIONS(727), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(729), + [anon_sym_catch] = ACTIONS(729), + [anon_sym_continue] = ACTIONS(729), + [anon_sym_do] = ACTIONS(729), + [anon_sym_enum] = ACTIONS(729), + [anon_sym_extern] = ACTIONS(729), + [anon_sym_for] = ACTIONS(729), + [anon_sym_inline] = ACTIONS(729), + [anon_sym_macro] = ACTIONS(729), + [anon_sym_operator] = ACTIONS(729), + [anon_sym_overload] = ACTIONS(729), + [anon_sym_override] = ACTIONS(729), + [anon_sym_private] = ACTIONS(729), + [anon_sym_public] = ACTIONS(729), + [anon_sym_return] = ACTIONS(729), + [anon_sym_static] = ACTIONS(729), + [anon_sym_try] = ACTIONS(729), + [anon_sym_untyped] = ACTIONS(729), + [anon_sym_while] = ACTIONS(729), + [sym__semicolon] = ACTIONS(727), }, - [136] = { - [sym_block] = STATE(162), + [151] = { + [sym_block] = STATE(187), [ts_builtin_sym_end] = ACTIONS(736), [sym_identifier] = ACTIONS(738), [anon_sym_POUND] = ACTIONS(736), @@ -21227,39 +18837,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(738), [anon_sym_LBRACK] = ACTIONS(736), [anon_sym_this] = ACTIONS(738), + [anon_sym_DASH_GT] = ACTIONS(570), [anon_sym_AT] = ACTIONS(738), [anon_sym_AT_COLON] = ACTIONS(736), [anon_sym_if] = ACTIONS(738), - [anon_sym_else] = ACTIONS(742), - [anon_sym_elseif] = ACTIONS(744), + [anon_sym_else] = ACTIONS(738), [anon_sym_new] = ACTIONS(738), - [anon_sym_TILDE] = ACTIONS(736), - [anon_sym_BANG] = ACTIONS(738), - [anon_sym_DASH] = ACTIONS(738), - [anon_sym_PLUS_PLUS] = ACTIONS(736), - [anon_sym_DASH_DASH] = ACTIONS(736), - [anon_sym_PERCENT] = ACTIONS(736), - [anon_sym_STAR] = ACTIONS(736), - [anon_sym_SLASH] = ACTIONS(738), - [anon_sym_PLUS] = ACTIONS(738), - [anon_sym_LT_LT] = ACTIONS(736), - [anon_sym_GT_GT] = ACTIONS(738), - [anon_sym_GT_GT_GT] = ACTIONS(736), - [anon_sym_AMP] = ACTIONS(738), - [anon_sym_PIPE] = ACTIONS(738), - [anon_sym_CARET] = ACTIONS(736), - [anon_sym_AMP_AMP] = ACTIONS(736), - [anon_sym_PIPE_PIPE] = ACTIONS(736), - [anon_sym_EQ_EQ] = ACTIONS(736), - [anon_sym_BANG_EQ] = ACTIONS(736), - [anon_sym_LT] = ACTIONS(738), - [anon_sym_LT_EQ] = ACTIONS(736), - [anon_sym_GT] = ACTIONS(738), - [anon_sym_GT_EQ] = ACTIONS(736), - [anon_sym_EQ_GT] = ACTIONS(736), - [anon_sym_QMARK_QMARK] = ACTIONS(736), - [anon_sym_EQ] = ACTIONS(738), - [sym__rangeOperator] = ACTIONS(736), + [sym__prefixUnaryOperator] = ACTIONS(738), + [sym__eitherUnaryOperator] = ACTIONS(736), [anon_sym_null] = ACTIONS(738), [anon_sym_dynamic] = ACTIONS(738), [anon_sym_final] = ACTIONS(738), @@ -21301,1230 +18886,1312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(738), [sym__semicolon] = ACTIONS(736), }, - [137] = { - [sym_block] = STATE(220), - [ts_builtin_sym_end] = ACTIONS(746), - [sym_identifier] = ACTIONS(748), - [anon_sym_POUND] = ACTIONS(746), - [anon_sym_package] = ACTIONS(748), - [anon_sym_import] = ACTIONS(748), - [anon_sym_using] = ACTIONS(748), - [anon_sym_throw] = ACTIONS(748), - [anon_sym_LPAREN] = ACTIONS(746), - [anon_sym_switch] = ACTIONS(748), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_RBRACE] = ACTIONS(746), - [anon_sym_case] = ACTIONS(748), - [anon_sym_COLON] = ACTIONS(753), - [anon_sym_default] = ACTIONS(748), - [anon_sym_cast] = ACTIONS(748), - [anon_sym_DOLLARtype] = ACTIONS(746), - [anon_sym_in] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(746), - [anon_sym_this] = ACTIONS(748), - [anon_sym_AT] = ACTIONS(748), - [anon_sym_AT_COLON] = ACTIONS(746), - [anon_sym_if] = ACTIONS(748), - [anon_sym_else] = ACTIONS(748), - [anon_sym_new] = ACTIONS(748), - [anon_sym_TILDE] = ACTIONS(746), - [anon_sym_BANG] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_PLUS_PLUS] = ACTIONS(746), - [anon_sym_DASH_DASH] = ACTIONS(746), - [anon_sym_PERCENT] = ACTIONS(746), - [anon_sym_STAR] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_LT_LT] = ACTIONS(746), - [anon_sym_GT_GT] = ACTIONS(748), - [anon_sym_GT_GT_GT] = ACTIONS(746), - [anon_sym_AMP] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(746), - [anon_sym_AMP_AMP] = ACTIONS(746), - [anon_sym_PIPE_PIPE] = ACTIONS(746), - [anon_sym_EQ_EQ] = ACTIONS(746), - [anon_sym_BANG_EQ] = ACTIONS(746), - [anon_sym_LT] = ACTIONS(748), - [anon_sym_LT_EQ] = ACTIONS(746), - [anon_sym_GT] = ACTIONS(748), - [anon_sym_GT_EQ] = ACTIONS(746), - [anon_sym_EQ_GT] = ACTIONS(746), - [anon_sym_QMARK_QMARK] = ACTIONS(746), - [anon_sym_EQ] = ACTIONS(748), - [sym__rangeOperator] = ACTIONS(746), - [anon_sym_null] = ACTIONS(748), - [anon_sym_dynamic] = ACTIONS(748), - [anon_sym_final] = ACTIONS(748), - [anon_sym_abstract] = ACTIONS(748), - [anon_sym_class] = ACTIONS(748), - [anon_sym_extends] = ACTIONS(748), - [anon_sym_implements] = ACTIONS(748), - [anon_sym_interface] = ACTIONS(748), - [anon_sym_typedef] = ACTIONS(748), - [anon_sym_function] = ACTIONS(748), - [anon_sym_var] = ACTIONS(748), - [aux_sym_integer_token1] = ACTIONS(748), - [aux_sym_integer_token2] = ACTIONS(746), - [aux_sym_float_token1] = ACTIONS(748), - [aux_sym_float_token2] = ACTIONS(746), - [anon_sym_true] = ACTIONS(748), - [anon_sym_false] = ACTIONS(748), - [aux_sym_string_token1] = ACTIONS(746), - [aux_sym_string_token3] = ACTIONS(746), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(748), - [anon_sym_catch] = ACTIONS(748), - [anon_sym_continue] = ACTIONS(748), - [anon_sym_do] = ACTIONS(748), - [anon_sym_enum] = ACTIONS(748), - [anon_sym_extern] = ACTIONS(748), - [anon_sym_for] = ACTIONS(748), - [anon_sym_inline] = ACTIONS(748), - [anon_sym_macro] = ACTIONS(748), - [anon_sym_operator] = ACTIONS(748), - [anon_sym_overload] = ACTIONS(748), - [anon_sym_override] = ACTIONS(748), - [anon_sym_private] = ACTIONS(748), - [anon_sym_public] = ACTIONS(748), - [anon_sym_return] = ACTIONS(748), - [anon_sym_static] = ACTIONS(748), - [anon_sym_try] = ACTIONS(748), - [anon_sym_untyped] = ACTIONS(748), - [anon_sym_while] = ACTIONS(748), - [sym__semicolon] = ACTIONS(746), + [152] = { + [sym_block] = STATE(232), + [ts_builtin_sym_end] = ACTIONS(743), + [sym_identifier] = ACTIONS(745), + [anon_sym_POUND] = ACTIONS(743), + [anon_sym_package] = ACTIONS(745), + [anon_sym_import] = ACTIONS(745), + [anon_sym_using] = ACTIONS(745), + [anon_sym_throw] = ACTIONS(745), + [anon_sym_LPAREN] = ACTIONS(743), + [anon_sym_switch] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(743), + [anon_sym_case] = ACTIONS(745), + [anon_sym_default] = ACTIONS(745), + [anon_sym_cast] = ACTIONS(745), + [anon_sym_DOLLARtype] = ACTIONS(743), + [anon_sym_in] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_this] = ACTIONS(745), + [anon_sym_DASH_GT] = ACTIONS(570), + [anon_sym_AT] = ACTIONS(745), + [anon_sym_AT_COLON] = ACTIONS(743), + [anon_sym_if] = ACTIONS(745), + [anon_sym_else] = ACTIONS(745), + [anon_sym_new] = ACTIONS(745), + [sym__prefixUnaryOperator] = ACTIONS(745), + [sym__eitherUnaryOperator] = ACTIONS(743), + [anon_sym_null] = ACTIONS(745), + [anon_sym_dynamic] = ACTIONS(745), + [anon_sym_final] = ACTIONS(745), + [anon_sym_abstract] = ACTIONS(745), + [anon_sym_class] = ACTIONS(745), + [anon_sym_extends] = ACTIONS(745), + [anon_sym_implements] = ACTIONS(745), + [anon_sym_interface] = ACTIONS(745), + [anon_sym_typedef] = ACTIONS(745), + [anon_sym_function] = ACTIONS(745), + [anon_sym_var] = ACTIONS(745), + [aux_sym_integer_token1] = ACTIONS(745), + [aux_sym_integer_token2] = ACTIONS(743), + [aux_sym_float_token1] = ACTIONS(745), + [aux_sym_float_token2] = ACTIONS(743), + [anon_sym_true] = ACTIONS(745), + [anon_sym_false] = ACTIONS(745), + [aux_sym_string_token1] = ACTIONS(743), + [aux_sym_string_token3] = ACTIONS(743), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(745), + [anon_sym_catch] = ACTIONS(745), + [anon_sym_continue] = ACTIONS(745), + [anon_sym_do] = ACTIONS(745), + [anon_sym_enum] = ACTIONS(745), + [anon_sym_extern] = ACTIONS(745), + [anon_sym_for] = ACTIONS(745), + [anon_sym_inline] = ACTIONS(745), + [anon_sym_macro] = ACTIONS(745), + [anon_sym_operator] = ACTIONS(745), + [anon_sym_overload] = ACTIONS(745), + [anon_sym_override] = ACTIONS(745), + [anon_sym_private] = ACTIONS(745), + [anon_sym_public] = ACTIONS(745), + [anon_sym_return] = ACTIONS(745), + [anon_sym_static] = ACTIONS(745), + [anon_sym_try] = ACTIONS(745), + [anon_sym_untyped] = ACTIONS(745), + [anon_sym_while] = ACTIONS(745), + [sym__semicolon] = ACTIONS(743), }, - [138] = { - [sym_block] = STATE(276), - [ts_builtin_sym_end] = ACTIONS(755), - [sym_identifier] = ACTIONS(757), - [anon_sym_POUND] = ACTIONS(755), - [anon_sym_package] = ACTIONS(757), - [anon_sym_import] = ACTIONS(757), - [anon_sym_using] = ACTIONS(757), - [anon_sym_throw] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_switch] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(755), - [anon_sym_case] = ACTIONS(757), - [anon_sym_default] = ACTIONS(757), - [anon_sym_cast] = ACTIONS(757), - [anon_sym_DOLLARtype] = ACTIONS(755), - [anon_sym_in] = ACTIONS(757), - [anon_sym_LBRACK] = ACTIONS(755), - [anon_sym_this] = ACTIONS(757), - [anon_sym_DASH_GT] = ACTIONS(671), - [anon_sym_AT] = ACTIONS(757), - [anon_sym_AT_COLON] = ACTIONS(755), - [anon_sym_if] = ACTIONS(757), - [anon_sym_else] = ACTIONS(757), - [anon_sym_new] = ACTIONS(757), - [anon_sym_TILDE] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_PERCENT] = ACTIONS(755), - [anon_sym_STAR] = ACTIONS(755), - [anon_sym_SLASH] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_LT_LT] = ACTIONS(755), - [anon_sym_GT_GT] = ACTIONS(757), - [anon_sym_GT_GT_GT] = ACTIONS(755), - [anon_sym_AMP] = ACTIONS(757), - [anon_sym_PIPE] = ACTIONS(757), - [anon_sym_CARET] = ACTIONS(755), - [anon_sym_AMP_AMP] = ACTIONS(755), - [anon_sym_PIPE_PIPE] = ACTIONS(755), - [anon_sym_EQ_EQ] = ACTIONS(755), - [anon_sym_BANG_EQ] = ACTIONS(755), - [anon_sym_LT] = ACTIONS(757), - [anon_sym_LT_EQ] = ACTIONS(755), - [anon_sym_GT] = ACTIONS(757), - [anon_sym_GT_EQ] = ACTIONS(755), - [anon_sym_EQ_GT] = ACTIONS(755), - [anon_sym_QMARK_QMARK] = ACTIONS(755), - [anon_sym_EQ] = ACTIONS(757), - [sym__rangeOperator] = ACTIONS(755), - [anon_sym_null] = ACTIONS(757), - [anon_sym_dynamic] = ACTIONS(757), - [anon_sym_final] = ACTIONS(757), - [anon_sym_abstract] = ACTIONS(757), - [anon_sym_class] = ACTIONS(757), - [anon_sym_extends] = ACTIONS(757), - [anon_sym_implements] = ACTIONS(757), - [anon_sym_interface] = ACTIONS(757), - [anon_sym_typedef] = ACTIONS(757), - [anon_sym_function] = ACTIONS(757), - [anon_sym_var] = ACTIONS(757), - [aux_sym_integer_token1] = ACTIONS(757), - [aux_sym_integer_token2] = ACTIONS(755), - [aux_sym_float_token1] = ACTIONS(757), - [aux_sym_float_token2] = ACTIONS(755), - [anon_sym_true] = ACTIONS(757), - [anon_sym_false] = ACTIONS(757), - [aux_sym_string_token1] = ACTIONS(755), - [aux_sym_string_token3] = ACTIONS(755), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(757), - [anon_sym_catch] = ACTIONS(757), - [anon_sym_continue] = ACTIONS(757), - [anon_sym_do] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(757), - [anon_sym_extern] = ACTIONS(757), - [anon_sym_for] = ACTIONS(757), - [anon_sym_inline] = ACTIONS(757), - [anon_sym_macro] = ACTIONS(757), - [anon_sym_operator] = ACTIONS(757), - [anon_sym_overload] = ACTIONS(757), - [anon_sym_override] = ACTIONS(757), - [anon_sym_private] = ACTIONS(757), - [anon_sym_public] = ACTIONS(757), - [anon_sym_return] = ACTIONS(757), - [anon_sym_static] = ACTIONS(757), - [anon_sym_try] = ACTIONS(757), - [anon_sym_untyped] = ACTIONS(757), - [anon_sym_while] = ACTIONS(757), - [sym__semicolon] = ACTIONS(755), + [153] = { + [sym_block] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(750), + [sym_identifier] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(750), + [anon_sym_package] = ACTIONS(752), + [anon_sym_import] = ACTIONS(752), + [anon_sym_using] = ACTIONS(752), + [anon_sym_throw] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_switch] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(754), + [anon_sym_RBRACE] = ACTIONS(750), + [anon_sym_case] = ACTIONS(752), + [anon_sym_default] = ACTIONS(752), + [anon_sym_cast] = ACTIONS(752), + [anon_sym_DOLLARtype] = ACTIONS(750), + [anon_sym_in] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(750), + [anon_sym_this] = ACTIONS(752), + [anon_sym_DASH_GT] = ACTIONS(570), + [anon_sym_AT] = ACTIONS(752), + [anon_sym_AT_COLON] = ACTIONS(750), + [anon_sym_if] = ACTIONS(752), + [anon_sym_else] = ACTIONS(752), + [anon_sym_new] = ACTIONS(752), + [sym__prefixUnaryOperator] = ACTIONS(752), + [sym__eitherUnaryOperator] = ACTIONS(750), + [anon_sym_null] = ACTIONS(752), + [anon_sym_dynamic] = ACTIONS(752), + [anon_sym_final] = ACTIONS(752), + [anon_sym_abstract] = ACTIONS(752), + [anon_sym_class] = ACTIONS(752), + [anon_sym_extends] = ACTIONS(752), + [anon_sym_implements] = ACTIONS(752), + [anon_sym_interface] = ACTIONS(752), + [anon_sym_typedef] = ACTIONS(752), + [anon_sym_function] = ACTIONS(752), + [anon_sym_var] = ACTIONS(752), + [aux_sym_integer_token1] = ACTIONS(752), + [aux_sym_integer_token2] = ACTIONS(750), + [aux_sym_float_token1] = ACTIONS(752), + [aux_sym_float_token2] = ACTIONS(750), + [anon_sym_true] = ACTIONS(752), + [anon_sym_false] = ACTIONS(752), + [aux_sym_string_token1] = ACTIONS(750), + [aux_sym_string_token3] = ACTIONS(750), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(752), + [anon_sym_catch] = ACTIONS(752), + [anon_sym_continue] = ACTIONS(752), + [anon_sym_do] = ACTIONS(752), + [anon_sym_enum] = ACTIONS(752), + [anon_sym_extern] = ACTIONS(752), + [anon_sym_for] = ACTIONS(752), + [anon_sym_inline] = ACTIONS(752), + [anon_sym_macro] = ACTIONS(752), + [anon_sym_operator] = ACTIONS(752), + [anon_sym_overload] = ACTIONS(752), + [anon_sym_override] = ACTIONS(752), + [anon_sym_private] = ACTIONS(752), + [anon_sym_public] = ACTIONS(752), + [anon_sym_return] = ACTIONS(752), + [anon_sym_static] = ACTIONS(752), + [anon_sym_try] = ACTIONS(752), + [anon_sym_untyped] = ACTIONS(752), + [anon_sym_while] = ACTIONS(752), + [sym__semicolon] = ACTIONS(750), }, - [139] = { - [sym_block] = STATE(239), - [ts_builtin_sym_end] = ACTIONS(762), - [sym_identifier] = ACTIONS(764), - [anon_sym_POUND] = ACTIONS(762), - [anon_sym_package] = ACTIONS(764), - [anon_sym_import] = ACTIONS(764), - [anon_sym_using] = ACTIONS(764), - [anon_sym_throw] = ACTIONS(764), - [anon_sym_LPAREN] = ACTIONS(762), - [anon_sym_switch] = ACTIONS(764), - [anon_sym_LBRACE] = ACTIONS(766), - [anon_sym_RBRACE] = ACTIONS(762), - [anon_sym_case] = ACTIONS(764), - [anon_sym_default] = ACTIONS(764), - [anon_sym_cast] = ACTIONS(764), - [anon_sym_DOLLARtype] = ACTIONS(762), - [anon_sym_in] = ACTIONS(764), - [anon_sym_LBRACK] = ACTIONS(762), - [anon_sym_this] = ACTIONS(764), - [anon_sym_DASH_GT] = ACTIONS(671), - [anon_sym_AT] = ACTIONS(764), - [anon_sym_AT_COLON] = ACTIONS(762), - [anon_sym_if] = ACTIONS(764), - [anon_sym_else] = ACTIONS(764), - [anon_sym_new] = ACTIONS(764), - [anon_sym_TILDE] = ACTIONS(762), - [anon_sym_BANG] = ACTIONS(764), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(762), - [anon_sym_DASH_DASH] = ACTIONS(762), - [anon_sym_PERCENT] = ACTIONS(762), - [anon_sym_STAR] = ACTIONS(762), - [anon_sym_SLASH] = ACTIONS(764), - [anon_sym_PLUS] = ACTIONS(764), - [anon_sym_LT_LT] = ACTIONS(762), - [anon_sym_GT_GT] = ACTIONS(764), - [anon_sym_GT_GT_GT] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(764), - [anon_sym_CARET] = ACTIONS(762), - [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(764), - [anon_sym_LT_EQ] = ACTIONS(762), - [anon_sym_GT] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(762), - [anon_sym_EQ_GT] = ACTIONS(762), - [anon_sym_QMARK_QMARK] = ACTIONS(762), - [anon_sym_EQ] = ACTIONS(764), - [sym__rangeOperator] = ACTIONS(762), - [anon_sym_null] = ACTIONS(764), - [anon_sym_dynamic] = ACTIONS(764), - [anon_sym_final] = ACTIONS(764), - [anon_sym_abstract] = ACTIONS(764), - [anon_sym_class] = ACTIONS(764), - [anon_sym_extends] = ACTIONS(764), - [anon_sym_implements] = ACTIONS(764), - [anon_sym_interface] = ACTIONS(764), - [anon_sym_typedef] = ACTIONS(764), - [anon_sym_function] = ACTIONS(764), - [anon_sym_var] = ACTIONS(764), - [aux_sym_integer_token1] = ACTIONS(764), - [aux_sym_integer_token2] = ACTIONS(762), - [aux_sym_float_token1] = ACTIONS(764), - [aux_sym_float_token2] = ACTIONS(762), - [anon_sym_true] = ACTIONS(764), - [anon_sym_false] = ACTIONS(764), - [aux_sym_string_token1] = ACTIONS(762), - [aux_sym_string_token3] = ACTIONS(762), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(764), - [anon_sym_catch] = ACTIONS(764), - [anon_sym_continue] = ACTIONS(764), - [anon_sym_do] = ACTIONS(764), - [anon_sym_enum] = ACTIONS(764), - [anon_sym_extern] = ACTIONS(764), - [anon_sym_for] = ACTIONS(764), - [anon_sym_inline] = ACTIONS(764), - [anon_sym_macro] = ACTIONS(764), - [anon_sym_operator] = ACTIONS(764), - [anon_sym_overload] = ACTIONS(764), - [anon_sym_override] = ACTIONS(764), - [anon_sym_private] = ACTIONS(764), - [anon_sym_public] = ACTIONS(764), - [anon_sym_return] = ACTIONS(764), - [anon_sym_static] = ACTIONS(764), - [anon_sym_try] = ACTIONS(764), - [anon_sym_untyped] = ACTIONS(764), - [anon_sym_while] = ACTIONS(764), - [sym__semicolon] = ACTIONS(762), + [154] = { + [sym_block] = STATE(182), + [ts_builtin_sym_end] = ACTIONS(757), + [sym_identifier] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(757), + [anon_sym_package] = ACTIONS(759), + [anon_sym_import] = ACTIONS(759), + [anon_sym_using] = ACTIONS(759), + [anon_sym_throw] = ACTIONS(759), + [anon_sym_LPAREN] = ACTIONS(757), + [anon_sym_switch] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_RBRACE] = ACTIONS(757), + [anon_sym_case] = ACTIONS(759), + [anon_sym_COLON] = ACTIONS(764), + [anon_sym_default] = ACTIONS(759), + [anon_sym_cast] = ACTIONS(759), + [anon_sym_DOLLARtype] = ACTIONS(757), + [anon_sym_in] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(757), + [anon_sym_this] = ACTIONS(759), + [anon_sym_AT] = ACTIONS(759), + [anon_sym_AT_COLON] = ACTIONS(757), + [anon_sym_if] = ACTIONS(759), + [anon_sym_else] = ACTIONS(759), + [anon_sym_new] = ACTIONS(759), + [sym__prefixUnaryOperator] = ACTIONS(759), + [sym__eitherUnaryOperator] = ACTIONS(757), + [anon_sym_null] = ACTIONS(759), + [anon_sym_dynamic] = ACTIONS(759), + [anon_sym_final] = ACTIONS(759), + [anon_sym_abstract] = ACTIONS(759), + [anon_sym_class] = ACTIONS(759), + [anon_sym_extends] = ACTIONS(759), + [anon_sym_implements] = ACTIONS(759), + [anon_sym_interface] = ACTIONS(759), + [anon_sym_typedef] = ACTIONS(759), + [anon_sym_function] = ACTIONS(759), + [anon_sym_var] = ACTIONS(759), + [aux_sym_integer_token1] = ACTIONS(759), + [aux_sym_integer_token2] = ACTIONS(757), + [aux_sym_float_token1] = ACTIONS(759), + [aux_sym_float_token2] = ACTIONS(757), + [anon_sym_true] = ACTIONS(759), + [anon_sym_false] = ACTIONS(759), + [aux_sym_string_token1] = ACTIONS(757), + [aux_sym_string_token3] = ACTIONS(757), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(759), + [anon_sym_catch] = ACTIONS(759), + [anon_sym_continue] = ACTIONS(759), + [anon_sym_do] = ACTIONS(759), + [anon_sym_enum] = ACTIONS(759), + [anon_sym_extern] = ACTIONS(759), + [anon_sym_for] = ACTIONS(759), + [anon_sym_inline] = ACTIONS(759), + [anon_sym_macro] = ACTIONS(759), + [anon_sym_operator] = ACTIONS(759), + [anon_sym_overload] = ACTIONS(759), + [anon_sym_override] = ACTIONS(759), + [anon_sym_private] = ACTIONS(759), + [anon_sym_public] = ACTIONS(759), + [anon_sym_return] = ACTIONS(759), + [anon_sym_static] = ACTIONS(759), + [anon_sym_try] = ACTIONS(759), + [anon_sym_untyped] = ACTIONS(759), + [anon_sym_while] = ACTIONS(759), + [sym__semicolon] = ACTIONS(757), }, - [140] = { - [ts_builtin_sym_end] = ACTIONS(769), - [sym_identifier] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(769), - [anon_sym_package] = ACTIONS(771), - [anon_sym_import] = ACTIONS(771), - [anon_sym_using] = ACTIONS(771), - [anon_sym_throw] = ACTIONS(771), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_switch] = ACTIONS(771), - [anon_sym_LBRACE] = ACTIONS(769), - [anon_sym_RBRACE] = ACTIONS(769), - [anon_sym_case] = ACTIONS(771), - [anon_sym_default] = ACTIONS(771), - [anon_sym_cast] = ACTIONS(771), - [anon_sym_DOLLARtype] = ACTIONS(769), - [anon_sym_in] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_this] = ACTIONS(771), - [anon_sym_DOT] = ACTIONS(512), - [anon_sym_QMARK] = ACTIONS(512), - [anon_sym_AT] = ACTIONS(771), - [anon_sym_AT_COLON] = ACTIONS(769), - [anon_sym_if] = ACTIONS(771), - [anon_sym_else] = ACTIONS(771), - [anon_sym_new] = ACTIONS(771), - [anon_sym_TILDE] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_PERCENT] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_LT_LT] = ACTIONS(769), - [anon_sym_GT_GT] = ACTIONS(771), - [anon_sym_GT_GT_GT] = ACTIONS(769), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(769), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(769), - [anon_sym_EQ_GT] = ACTIONS(510), - [anon_sym_QMARK_QMARK] = ACTIONS(769), - [anon_sym_EQ] = ACTIONS(771), - [sym__rangeOperator] = ACTIONS(769), - [anon_sym_null] = ACTIONS(771), - [anon_sym_dynamic] = ACTIONS(771), - [anon_sym_final] = ACTIONS(771), - [anon_sym_abstract] = ACTIONS(771), - [anon_sym_class] = ACTIONS(771), - [anon_sym_extends] = ACTIONS(771), - [anon_sym_implements] = ACTIONS(771), - [anon_sym_interface] = ACTIONS(771), - [anon_sym_typedef] = ACTIONS(771), - [anon_sym_function] = ACTIONS(771), - [anon_sym_var] = ACTIONS(771), - [aux_sym_integer_token1] = ACTIONS(771), - [aux_sym_integer_token2] = ACTIONS(769), - [aux_sym_float_token1] = ACTIONS(771), - [aux_sym_float_token2] = ACTIONS(769), - [anon_sym_true] = ACTIONS(771), - [anon_sym_false] = ACTIONS(771), - [aux_sym_string_token1] = ACTIONS(769), - [aux_sym_string_token3] = ACTIONS(769), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(771), - [anon_sym_catch] = ACTIONS(771), - [anon_sym_continue] = ACTIONS(771), - [anon_sym_do] = ACTIONS(771), - [anon_sym_enum] = ACTIONS(771), - [anon_sym_extern] = ACTIONS(771), - [anon_sym_for] = ACTIONS(771), - [anon_sym_inline] = ACTIONS(771), - [anon_sym_macro] = ACTIONS(771), - [anon_sym_operator] = ACTIONS(771), - [anon_sym_overload] = ACTIONS(771), - [anon_sym_override] = ACTIONS(771), - [anon_sym_private] = ACTIONS(771), - [anon_sym_public] = ACTIONS(771), - [anon_sym_return] = ACTIONS(771), - [anon_sym_static] = ACTIONS(771), - [anon_sym_try] = ACTIONS(771), - [anon_sym_untyped] = ACTIONS(771), - [anon_sym_while] = ACTIONS(771), - [sym__semicolon] = ACTIONS(769), + [155] = { + [sym_member_expression] = STATE(28), + [sym__lhs_expression] = STATE(1063), + [sym__literal] = STATE(1172), + [sym_integer] = STATE(1172), + [sym_float] = STATE(1172), + [sym_bool] = STATE(1172), + [sym_string] = STATE(1025), + [sym_null] = STATE(1172), + [sym_array] = STATE(1172), + [sym_map] = STATE(1172), + [sym_object] = STATE(1172), + [sym_pair] = STATE(1172), + [sym_identifier] = ACTIONS(284), + [anon_sym_package] = ACTIONS(276), + [anon_sym_import] = ACTIONS(276), + [anon_sym_using] = ACTIONS(276), + [anon_sym_throw] = ACTIONS(276), + [anon_sym_switch] = ACTIONS(276), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_case] = ACTIONS(276), + [anon_sym_default] = ACTIONS(276), + [anon_sym_cast] = ACTIONS(276), + [anon_sym_in] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_this] = ACTIONS(286), + [anon_sym_if] = ACTIONS(276), + [anon_sym_else] = ACTIONS(276), + [anon_sym_new] = ACTIONS(766), + [anon_sym_null] = ACTIONS(51), + [anon_sym_dynamic] = ACTIONS(276), + [anon_sym_final] = ACTIONS(276), + [anon_sym_abstract] = ACTIONS(276), + [anon_sym_class] = ACTIONS(276), + [anon_sym_extends] = ACTIONS(276), + [anon_sym_implements] = ACTIONS(276), + [anon_sym_interface] = ACTIONS(276), + [anon_sym_typedef] = ACTIONS(276), + [anon_sym_function] = ACTIONS(276), + [anon_sym_var] = ACTIONS(276), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(276), + [anon_sym_catch] = ACTIONS(276), + [anon_sym_continue] = ACTIONS(276), + [anon_sym_do] = ACTIONS(276), + [anon_sym_enum] = ACTIONS(276), + [anon_sym_extern] = ACTIONS(276), + [anon_sym_for] = ACTIONS(276), + [anon_sym_inline] = ACTIONS(276), + [anon_sym_macro] = ACTIONS(276), + [anon_sym_operator] = ACTIONS(276), + [anon_sym_overload] = ACTIONS(276), + [anon_sym_override] = ACTIONS(276), + [anon_sym_private] = ACTIONS(276), + [anon_sym_public] = ACTIONS(276), + [anon_sym_return] = ACTIONS(276), + [anon_sym_static] = ACTIONS(276), + [anon_sym_try] = ACTIONS(276), + [anon_sym_untyped] = ACTIONS(276), + [anon_sym_while] = ACTIONS(276), }, - [141] = { - [sym_block] = STATE(173), - [ts_builtin_sym_end] = ACTIONS(773), - [sym_identifier] = ACTIONS(775), - [anon_sym_POUND] = ACTIONS(773), - [anon_sym_package] = ACTIONS(775), - [anon_sym_import] = ACTIONS(775), - [anon_sym_using] = ACTIONS(775), - [anon_sym_throw] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(773), - [anon_sym_switch] = ACTIONS(775), - [anon_sym_LBRACE] = ACTIONS(777), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_default] = ACTIONS(775), - [anon_sym_cast] = ACTIONS(775), - [anon_sym_DOLLARtype] = ACTIONS(773), - [anon_sym_in] = ACTIONS(775), - [anon_sym_LBRACK] = ACTIONS(773), - [anon_sym_this] = ACTIONS(775), - [anon_sym_DASH_GT] = ACTIONS(671), - [anon_sym_AT] = ACTIONS(775), - [anon_sym_AT_COLON] = ACTIONS(773), - [anon_sym_if] = ACTIONS(775), - [anon_sym_else] = ACTIONS(775), - [anon_sym_new] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(773), - [anon_sym_DASH_DASH] = ACTIONS(773), - [anon_sym_PERCENT] = ACTIONS(773), - [anon_sym_STAR] = ACTIONS(773), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(773), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(773), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_EQ_EQ] = ACTIONS(773), - [anon_sym_BANG_EQ] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(773), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_GT_EQ] = ACTIONS(773), - [anon_sym_EQ_GT] = ACTIONS(773), - [anon_sym_QMARK_QMARK] = ACTIONS(773), - [anon_sym_EQ] = ACTIONS(775), - [sym__rangeOperator] = ACTIONS(773), - [anon_sym_null] = ACTIONS(775), - [anon_sym_dynamic] = ACTIONS(775), - [anon_sym_final] = ACTIONS(775), - [anon_sym_abstract] = ACTIONS(775), - [anon_sym_class] = ACTIONS(775), - [anon_sym_extends] = ACTIONS(775), - [anon_sym_implements] = ACTIONS(775), - [anon_sym_interface] = ACTIONS(775), - [anon_sym_typedef] = ACTIONS(775), - [anon_sym_function] = ACTIONS(775), - [anon_sym_var] = ACTIONS(775), - [aux_sym_integer_token1] = ACTIONS(775), - [aux_sym_integer_token2] = ACTIONS(773), - [aux_sym_float_token1] = ACTIONS(775), - [aux_sym_float_token2] = ACTIONS(773), - [anon_sym_true] = ACTIONS(775), - [anon_sym_false] = ACTIONS(775), - [aux_sym_string_token1] = ACTIONS(773), - [aux_sym_string_token3] = ACTIONS(773), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(775), - [anon_sym_catch] = ACTIONS(775), - [anon_sym_continue] = ACTIONS(775), - [anon_sym_do] = ACTIONS(775), - [anon_sym_enum] = ACTIONS(775), - [anon_sym_extern] = ACTIONS(775), - [anon_sym_for] = ACTIONS(775), - [anon_sym_inline] = ACTIONS(775), - [anon_sym_macro] = ACTIONS(775), - [anon_sym_operator] = ACTIONS(775), - [anon_sym_overload] = ACTIONS(775), - [anon_sym_override] = ACTIONS(775), - [anon_sym_private] = ACTIONS(775), - [anon_sym_public] = ACTIONS(775), - [anon_sym_return] = ACTIONS(775), - [anon_sym_static] = ACTIONS(775), - [anon_sym_try] = ACTIONS(775), - [anon_sym_untyped] = ACTIONS(775), - [anon_sym_while] = ACTIONS(775), - [sym__semicolon] = ACTIONS(773), + [156] = { + [sym_block] = STATE(268), + [ts_builtin_sym_end] = ACTIONS(768), + [sym_identifier] = ACTIONS(770), + [anon_sym_POUND] = ACTIONS(768), + [anon_sym_package] = ACTIONS(770), + [anon_sym_import] = ACTIONS(770), + [anon_sym_using] = ACTIONS(770), + [anon_sym_throw] = ACTIONS(770), + [anon_sym_LPAREN] = ACTIONS(768), + [anon_sym_switch] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_RBRACE] = ACTIONS(768), + [anon_sym_case] = ACTIONS(770), + [anon_sym_default] = ACTIONS(770), + [anon_sym_cast] = ACTIONS(770), + [anon_sym_DOLLARtype] = ACTIONS(768), + [anon_sym_in] = ACTIONS(770), + [anon_sym_LBRACK] = ACTIONS(768), + [anon_sym_this] = ACTIONS(770), + [anon_sym_DASH_GT] = ACTIONS(570), + [anon_sym_AT] = ACTIONS(770), + [anon_sym_AT_COLON] = ACTIONS(768), + [anon_sym_if] = ACTIONS(770), + [anon_sym_else] = ACTIONS(770), + [anon_sym_new] = ACTIONS(770), + [sym__prefixUnaryOperator] = ACTIONS(770), + [sym__eitherUnaryOperator] = ACTIONS(768), + [anon_sym_null] = ACTIONS(770), + [anon_sym_dynamic] = ACTIONS(770), + [anon_sym_final] = ACTIONS(770), + [anon_sym_abstract] = ACTIONS(770), + [anon_sym_class] = ACTIONS(770), + [anon_sym_extends] = ACTIONS(770), + [anon_sym_implements] = 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(768), + [aux_sym_float_token1] = ACTIONS(770), + [aux_sym_float_token2] = ACTIONS(768), + [anon_sym_true] = ACTIONS(770), + [anon_sym_false] = ACTIONS(770), + [aux_sym_string_token1] = ACTIONS(768), + [aux_sym_string_token3] = ACTIONS(768), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(770), + [anon_sym_catch] = ACTIONS(770), + [anon_sym_continue] = ACTIONS(770), + [anon_sym_do] = ACTIONS(770), + [anon_sym_enum] = ACTIONS(770), + [anon_sym_extern] = ACTIONS(770), + [anon_sym_for] = ACTIONS(770), + [anon_sym_inline] = ACTIONS(770), + [anon_sym_macro] = ACTIONS(770), + [anon_sym_operator] = ACTIONS(770), + [anon_sym_overload] = ACTIONS(770), + [anon_sym_override] = ACTIONS(770), + [anon_sym_private] = ACTIONS(770), + [anon_sym_public] = ACTIONS(770), + [anon_sym_return] = ACTIONS(770), + [anon_sym_static] = ACTIONS(770), + [anon_sym_try] = ACTIONS(770), + [anon_sym_untyped] = ACTIONS(770), + [anon_sym_while] = ACTIONS(770), + [sym__semicolon] = ACTIONS(768), }, - [142] = { - [sym_block] = STATE(223), - [ts_builtin_sym_end] = ACTIONS(780), - [sym_identifier] = ACTIONS(782), - [anon_sym_POUND] = ACTIONS(780), - [anon_sym_package] = ACTIONS(782), - [anon_sym_import] = ACTIONS(782), - [anon_sym_using] = ACTIONS(782), - [anon_sym_throw] = ACTIONS(782), - [anon_sym_LPAREN] = ACTIONS(780), - [anon_sym_switch] = ACTIONS(782), - [anon_sym_LBRACE] = ACTIONS(784), - [anon_sym_RBRACE] = ACTIONS(780), - [anon_sym_case] = ACTIONS(782), - [anon_sym_COLON] = ACTIONS(787), - [anon_sym_default] = ACTIONS(782), - [anon_sym_cast] = ACTIONS(782), - [anon_sym_DOLLARtype] = ACTIONS(780), - [anon_sym_in] = ACTIONS(782), - [anon_sym_LBRACK] = ACTIONS(780), - [anon_sym_this] = ACTIONS(782), - [anon_sym_AT] = ACTIONS(782), - [anon_sym_AT_COLON] = ACTIONS(780), - [anon_sym_if] = ACTIONS(782), - [anon_sym_else] = ACTIONS(782), - [anon_sym_new] = ACTIONS(782), - [anon_sym_TILDE] = ACTIONS(780), - [anon_sym_BANG] = ACTIONS(782), - [anon_sym_DASH] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(780), - [anon_sym_DASH_DASH] = ACTIONS(780), - [anon_sym_PERCENT] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(780), - [anon_sym_SLASH] = ACTIONS(782), - [anon_sym_PLUS] = ACTIONS(782), - [anon_sym_LT_LT] = ACTIONS(780), - [anon_sym_GT_GT] = ACTIONS(782), - [anon_sym_GT_GT_GT] = ACTIONS(780), - [anon_sym_AMP] = ACTIONS(782), - [anon_sym_PIPE] = ACTIONS(782), - [anon_sym_CARET] = ACTIONS(780), - [anon_sym_AMP_AMP] = ACTIONS(780), - [anon_sym_PIPE_PIPE] = ACTIONS(780), - [anon_sym_EQ_EQ] = ACTIONS(780), - [anon_sym_BANG_EQ] = ACTIONS(780), - [anon_sym_LT] = ACTIONS(782), - [anon_sym_LT_EQ] = ACTIONS(780), - [anon_sym_GT] = ACTIONS(782), - [anon_sym_GT_EQ] = ACTIONS(780), - [anon_sym_EQ_GT] = ACTIONS(780), - [anon_sym_QMARK_QMARK] = ACTIONS(780), - [anon_sym_EQ] = ACTIONS(782), - [sym__rangeOperator] = ACTIONS(780), - [anon_sym_null] = ACTIONS(782), - [anon_sym_dynamic] = ACTIONS(782), - [anon_sym_final] = ACTIONS(782), - [anon_sym_abstract] = ACTIONS(782), - [anon_sym_class] = ACTIONS(782), - [anon_sym_extends] = ACTIONS(782), - [anon_sym_implements] = ACTIONS(782), - [anon_sym_interface] = ACTIONS(782), - [anon_sym_typedef] = ACTIONS(782), - [anon_sym_function] = ACTIONS(782), - [anon_sym_var] = ACTIONS(782), - [aux_sym_integer_token1] = ACTIONS(782), - [aux_sym_integer_token2] = ACTIONS(780), - [aux_sym_float_token1] = ACTIONS(782), - [aux_sym_float_token2] = ACTIONS(780), - [anon_sym_true] = ACTIONS(782), - [anon_sym_false] = ACTIONS(782), - [aux_sym_string_token1] = ACTIONS(780), - [aux_sym_string_token3] = ACTIONS(780), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(782), - [anon_sym_catch] = ACTIONS(782), - [anon_sym_continue] = ACTIONS(782), - [anon_sym_do] = ACTIONS(782), - [anon_sym_enum] = ACTIONS(782), - [anon_sym_extern] = ACTIONS(782), - [anon_sym_for] = ACTIONS(782), - [anon_sym_inline] = ACTIONS(782), - [anon_sym_macro] = ACTIONS(782), - [anon_sym_operator] = ACTIONS(782), - [anon_sym_overload] = ACTIONS(782), - [anon_sym_override] = ACTIONS(782), - [anon_sym_private] = ACTIONS(782), - [anon_sym_public] = ACTIONS(782), - [anon_sym_return] = ACTIONS(782), - [anon_sym_static] = ACTIONS(782), - [anon_sym_try] = ACTIONS(782), - [anon_sym_untyped] = ACTIONS(782), - [anon_sym_while] = ACTIONS(782), - [sym__semicolon] = ACTIONS(780), + [157] = { + [sym_block] = STATE(179), + [ts_builtin_sym_end] = ACTIONS(775), + [sym_identifier] = ACTIONS(777), + [anon_sym_POUND] = ACTIONS(775), + [anon_sym_package] = ACTIONS(777), + [anon_sym_import] = ACTIONS(777), + [anon_sym_using] = ACTIONS(777), + [anon_sym_throw] = ACTIONS(777), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_switch] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_case] = ACTIONS(777), + [anon_sym_COLON] = ACTIONS(782), + [anon_sym_default] = ACTIONS(777), + [anon_sym_cast] = ACTIONS(777), + [anon_sym_DOLLARtype] = ACTIONS(775), + [anon_sym_in] = ACTIONS(777), + [anon_sym_LBRACK] = ACTIONS(775), + [anon_sym_this] = ACTIONS(777), + [anon_sym_AT] = ACTIONS(777), + [anon_sym_AT_COLON] = ACTIONS(775), + [anon_sym_if] = ACTIONS(777), + [anon_sym_else] = ACTIONS(777), + [anon_sym_new] = ACTIONS(777), + [sym__prefixUnaryOperator] = ACTIONS(777), + [sym__eitherUnaryOperator] = ACTIONS(775), + [anon_sym_null] = ACTIONS(777), + [anon_sym_dynamic] = ACTIONS(777), + [anon_sym_final] = ACTIONS(777), + [anon_sym_abstract] = ACTIONS(777), + [anon_sym_class] = ACTIONS(777), + [anon_sym_extends] = ACTIONS(777), + [anon_sym_implements] = ACTIONS(777), + [anon_sym_interface] = ACTIONS(777), + [anon_sym_typedef] = ACTIONS(777), + [anon_sym_function] = ACTIONS(777), + [anon_sym_var] = ACTIONS(777), + [aux_sym_integer_token1] = ACTIONS(777), + [aux_sym_integer_token2] = ACTIONS(775), + [aux_sym_float_token1] = ACTIONS(777), + [aux_sym_float_token2] = ACTIONS(775), + [anon_sym_true] = ACTIONS(777), + [anon_sym_false] = ACTIONS(777), + [aux_sym_string_token1] = ACTIONS(775), + [aux_sym_string_token3] = ACTIONS(775), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(777), + [anon_sym_catch] = ACTIONS(777), + [anon_sym_continue] = ACTIONS(777), + [anon_sym_do] = ACTIONS(777), + [anon_sym_enum] = ACTIONS(777), + [anon_sym_extern] = ACTIONS(777), + [anon_sym_for] = ACTIONS(777), + [anon_sym_inline] = ACTIONS(777), + [anon_sym_macro] = ACTIONS(777), + [anon_sym_operator] = ACTIONS(777), + [anon_sym_overload] = ACTIONS(777), + [anon_sym_override] = ACTIONS(777), + [anon_sym_private] = ACTIONS(777), + [anon_sym_public] = ACTIONS(777), + [anon_sym_return] = ACTIONS(777), + [anon_sym_static] = ACTIONS(777), + [anon_sym_try] = ACTIONS(777), + [anon_sym_untyped] = ACTIONS(777), + [anon_sym_while] = ACTIONS(777), + [sym__semicolon] = ACTIONS(775), }, - [143] = { - [sym_block] = STATE(246), - [ts_builtin_sym_end] = ACTIONS(789), - [sym_identifier] = ACTIONS(791), - [anon_sym_POUND] = ACTIONS(789), - [anon_sym_package] = ACTIONS(791), - [anon_sym_import] = ACTIONS(791), - [anon_sym_using] = ACTIONS(791), - [anon_sym_throw] = ACTIONS(791), - [anon_sym_LPAREN] = ACTIONS(789), - [anon_sym_switch] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(789), - [anon_sym_case] = ACTIONS(791), - [anon_sym_default] = ACTIONS(791), - [anon_sym_cast] = ACTIONS(791), - [anon_sym_DOLLARtype] = ACTIONS(789), - [anon_sym_in] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(789), - [anon_sym_this] = ACTIONS(791), - [anon_sym_DASH_GT] = ACTIONS(671), - [anon_sym_AT] = ACTIONS(791), - [anon_sym_AT_COLON] = ACTIONS(789), - [anon_sym_if] = ACTIONS(791), - [anon_sym_else] = ACTIONS(791), - [anon_sym_new] = ACTIONS(791), - [anon_sym_TILDE] = ACTIONS(789), - [anon_sym_BANG] = ACTIONS(791), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_PLUS_PLUS] = ACTIONS(789), - [anon_sym_DASH_DASH] = ACTIONS(789), - [anon_sym_PERCENT] = ACTIONS(789), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_SLASH] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_LT_LT] = ACTIONS(789), - [anon_sym_GT_GT] = ACTIONS(791), - [anon_sym_GT_GT_GT] = ACTIONS(789), - [anon_sym_AMP] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(791), - [anon_sym_CARET] = ACTIONS(789), - [anon_sym_AMP_AMP] = ACTIONS(789), - [anon_sym_PIPE_PIPE] = ACTIONS(789), - [anon_sym_EQ_EQ] = ACTIONS(789), - [anon_sym_BANG_EQ] = ACTIONS(789), - [anon_sym_LT] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(789), - [anon_sym_GT] = ACTIONS(791), - [anon_sym_GT_EQ] = ACTIONS(789), - [anon_sym_EQ_GT] = ACTIONS(789), - [anon_sym_QMARK_QMARK] = ACTIONS(789), - [anon_sym_EQ] = ACTIONS(791), - [sym__rangeOperator] = ACTIONS(789), - [anon_sym_null] = ACTIONS(791), - [anon_sym_dynamic] = ACTIONS(791), - [anon_sym_final] = ACTIONS(791), - [anon_sym_abstract] = ACTIONS(791), - [anon_sym_class] = ACTIONS(791), - [anon_sym_extends] = ACTIONS(791), - [anon_sym_implements] = ACTIONS(791), - [anon_sym_interface] = ACTIONS(791), - [anon_sym_typedef] = ACTIONS(791), - [anon_sym_function] = ACTIONS(791), - [anon_sym_var] = ACTIONS(791), - [aux_sym_integer_token1] = ACTIONS(791), - [aux_sym_integer_token2] = ACTIONS(789), - [aux_sym_float_token1] = ACTIONS(791), - [aux_sym_float_token2] = ACTIONS(789), - [anon_sym_true] = ACTIONS(791), - [anon_sym_false] = ACTIONS(791), - [aux_sym_string_token1] = ACTIONS(789), - [aux_sym_string_token3] = ACTIONS(789), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(791), - [anon_sym_catch] = ACTIONS(791), - [anon_sym_continue] = ACTIONS(791), - [anon_sym_do] = ACTIONS(791), - [anon_sym_enum] = ACTIONS(791), - [anon_sym_extern] = ACTIONS(791), - [anon_sym_for] = ACTIONS(791), - [anon_sym_inline] = ACTIONS(791), - [anon_sym_macro] = ACTIONS(791), - [anon_sym_operator] = ACTIONS(791), - [anon_sym_overload] = ACTIONS(791), - [anon_sym_override] = ACTIONS(791), - [anon_sym_private] = ACTIONS(791), - [anon_sym_public] = ACTIONS(791), - [anon_sym_return] = ACTIONS(791), - [anon_sym_static] = ACTIONS(791), - [anon_sym_try] = ACTIONS(791), - [anon_sym_untyped] = ACTIONS(791), - [anon_sym_while] = ACTIONS(791), - [sym__semicolon] = ACTIONS(789), + [158] = { + [sym_block] = STATE(283), + [ts_builtin_sym_end] = ACTIONS(784), + [sym_identifier] = ACTIONS(786), + [anon_sym_POUND] = ACTIONS(784), + [anon_sym_package] = ACTIONS(786), + [anon_sym_import] = ACTIONS(786), + [anon_sym_using] = ACTIONS(786), + [anon_sym_throw] = ACTIONS(786), + [anon_sym_LPAREN] = ACTIONS(784), + [anon_sym_switch] = ACTIONS(786), + [anon_sym_LBRACE] = ACTIONS(788), + [anon_sym_RBRACE] = ACTIONS(784), + [anon_sym_case] = ACTIONS(786), + [anon_sym_default] = ACTIONS(786), + [anon_sym_cast] = ACTIONS(786), + [anon_sym_DOLLARtype] = ACTIONS(784), + [anon_sym_in] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(784), + [anon_sym_this] = ACTIONS(786), + [anon_sym_DASH_GT] = ACTIONS(570), + [anon_sym_AT] = ACTIONS(786), + [anon_sym_AT_COLON] = ACTIONS(784), + [anon_sym_if] = ACTIONS(786), + [anon_sym_else] = ACTIONS(786), + [anon_sym_new] = ACTIONS(786), + [sym__prefixUnaryOperator] = ACTIONS(786), + [sym__eitherUnaryOperator] = ACTIONS(784), + [anon_sym_null] = ACTIONS(786), + [anon_sym_dynamic] = ACTIONS(786), + [anon_sym_final] = ACTIONS(786), + [anon_sym_abstract] = ACTIONS(786), + [anon_sym_class] = ACTIONS(786), + [anon_sym_extends] = ACTIONS(786), + [anon_sym_implements] = ACTIONS(786), + [anon_sym_interface] = ACTIONS(786), + [anon_sym_typedef] = ACTIONS(786), + [anon_sym_function] = ACTIONS(786), + [anon_sym_var] = ACTIONS(786), + [aux_sym_integer_token1] = ACTIONS(786), + [aux_sym_integer_token2] = ACTIONS(784), + [aux_sym_float_token1] = ACTIONS(786), + [aux_sym_float_token2] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [aux_sym_string_token1] = ACTIONS(784), + [aux_sym_string_token3] = ACTIONS(784), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(786), + [anon_sym_catch] = ACTIONS(786), + [anon_sym_continue] = ACTIONS(786), + [anon_sym_do] = ACTIONS(786), + [anon_sym_enum] = ACTIONS(786), + [anon_sym_extern] = ACTIONS(786), + [anon_sym_for] = ACTIONS(786), + [anon_sym_inline] = ACTIONS(786), + [anon_sym_macro] = ACTIONS(786), + [anon_sym_operator] = ACTIONS(786), + [anon_sym_overload] = ACTIONS(786), + [anon_sym_override] = ACTIONS(786), + [anon_sym_private] = ACTIONS(786), + [anon_sym_public] = ACTIONS(786), + [anon_sym_return] = ACTIONS(786), + [anon_sym_static] = ACTIONS(786), + [anon_sym_try] = ACTIONS(786), + [anon_sym_untyped] = ACTIONS(786), + [anon_sym_while] = ACTIONS(786), + [sym__semicolon] = ACTIONS(784), }, - [144] = { - [sym_block] = STATE(219), - [ts_builtin_sym_end] = ACTIONS(796), - [sym_identifier] = ACTIONS(798), - [anon_sym_POUND] = ACTIONS(796), - [anon_sym_package] = ACTIONS(798), - [anon_sym_import] = ACTIONS(798), - [anon_sym_using] = ACTIONS(798), - [anon_sym_throw] = ACTIONS(798), - [anon_sym_LPAREN] = ACTIONS(796), - [anon_sym_switch] = ACTIONS(798), - [anon_sym_LBRACE] = ACTIONS(800), - [anon_sym_RBRACE] = ACTIONS(796), - [anon_sym_case] = ACTIONS(798), - [anon_sym_default] = ACTIONS(798), - [anon_sym_cast] = ACTIONS(798), - [anon_sym_DOLLARtype] = ACTIONS(796), - [anon_sym_in] = ACTIONS(798), - [anon_sym_LBRACK] = ACTIONS(796), - [anon_sym_this] = ACTIONS(798), - [anon_sym_DASH_GT] = ACTIONS(671), - [anon_sym_AT] = ACTIONS(798), - [anon_sym_AT_COLON] = ACTIONS(796), - [anon_sym_if] = ACTIONS(798), - [anon_sym_else] = ACTIONS(798), - [anon_sym_new] = ACTIONS(798), - [anon_sym_TILDE] = ACTIONS(796), - [anon_sym_BANG] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(798), - [anon_sym_PLUS_PLUS] = ACTIONS(796), - [anon_sym_DASH_DASH] = ACTIONS(796), - [anon_sym_PERCENT] = ACTIONS(796), - [anon_sym_STAR] = ACTIONS(796), - [anon_sym_SLASH] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(798), - [anon_sym_LT_LT] = ACTIONS(796), - [anon_sym_GT_GT] = ACTIONS(798), - [anon_sym_GT_GT_GT] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(798), - [anon_sym_PIPE] = ACTIONS(798), - [anon_sym_CARET] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [anon_sym_EQ_EQ] = ACTIONS(796), - [anon_sym_BANG_EQ] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(798), - [anon_sym_LT_EQ] = ACTIONS(796), - [anon_sym_GT] = ACTIONS(798), - [anon_sym_GT_EQ] = ACTIONS(796), - [anon_sym_EQ_GT] = ACTIONS(796), - [anon_sym_QMARK_QMARK] = ACTIONS(796), - [anon_sym_EQ] = ACTIONS(798), - [sym__rangeOperator] = ACTIONS(796), - [anon_sym_null] = ACTIONS(798), - [anon_sym_dynamic] = ACTIONS(798), - [anon_sym_final] = ACTIONS(798), - [anon_sym_abstract] = ACTIONS(798), - [anon_sym_class] = ACTIONS(798), - [anon_sym_extends] = ACTIONS(798), - [anon_sym_implements] = ACTIONS(798), - [anon_sym_interface] = ACTIONS(798), - [anon_sym_typedef] = ACTIONS(798), - [anon_sym_function] = ACTIONS(798), - [anon_sym_var] = ACTIONS(798), - [aux_sym_integer_token1] = ACTIONS(798), - [aux_sym_integer_token2] = ACTIONS(796), - [aux_sym_float_token1] = ACTIONS(798), - [aux_sym_float_token2] = ACTIONS(796), - [anon_sym_true] = ACTIONS(798), - [anon_sym_false] = ACTIONS(798), - [aux_sym_string_token1] = ACTIONS(796), - [aux_sym_string_token3] = ACTIONS(796), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(798), - [anon_sym_catch] = ACTIONS(798), - [anon_sym_continue] = ACTIONS(798), - [anon_sym_do] = ACTIONS(798), - [anon_sym_enum] = ACTIONS(798), - [anon_sym_extern] = ACTIONS(798), - [anon_sym_for] = ACTIONS(798), - [anon_sym_inline] = ACTIONS(798), - [anon_sym_macro] = ACTIONS(798), - [anon_sym_operator] = ACTIONS(798), - [anon_sym_overload] = ACTIONS(798), - [anon_sym_override] = ACTIONS(798), - [anon_sym_private] = ACTIONS(798), - [anon_sym_public] = ACTIONS(798), - [anon_sym_return] = ACTIONS(798), - [anon_sym_static] = ACTIONS(798), - [anon_sym_try] = ACTIONS(798), - [anon_sym_untyped] = ACTIONS(798), - [anon_sym_while] = ACTIONS(798), - [sym__semicolon] = ACTIONS(796), + [159] = { + [sym_block] = STATE(189), + [ts_builtin_sym_end] = ACTIONS(791), + [sym_identifier] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(791), + [anon_sym_package] = ACTIONS(793), + [anon_sym_import] = ACTIONS(793), + [anon_sym_using] = ACTIONS(793), + [anon_sym_throw] = ACTIONS(793), + [anon_sym_LPAREN] = ACTIONS(791), + [anon_sym_switch] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(795), + [anon_sym_RBRACE] = ACTIONS(791), + [anon_sym_case] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(798), + [anon_sym_default] = ACTIONS(793), + [anon_sym_cast] = ACTIONS(793), + [anon_sym_DOLLARtype] = ACTIONS(791), + [anon_sym_in] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_this] = ACTIONS(793), + [anon_sym_AT] = ACTIONS(793), + [anon_sym_AT_COLON] = ACTIONS(791), + [anon_sym_if] = ACTIONS(793), + [anon_sym_else] = ACTIONS(793), + [anon_sym_new] = ACTIONS(793), + [sym__prefixUnaryOperator] = ACTIONS(793), + [sym__eitherUnaryOperator] = ACTIONS(791), + [anon_sym_null] = ACTIONS(793), + [anon_sym_dynamic] = ACTIONS(793), + [anon_sym_final] = ACTIONS(793), + [anon_sym_abstract] = ACTIONS(793), + [anon_sym_class] = ACTIONS(793), + [anon_sym_extends] = ACTIONS(793), + [anon_sym_implements] = ACTIONS(793), + [anon_sym_interface] = ACTIONS(793), + [anon_sym_typedef] = ACTIONS(793), + [anon_sym_function] = ACTIONS(793), + [anon_sym_var] = ACTIONS(793), + [aux_sym_integer_token1] = ACTIONS(793), + [aux_sym_integer_token2] = ACTIONS(791), + [aux_sym_float_token1] = ACTIONS(793), + [aux_sym_float_token2] = ACTIONS(791), + [anon_sym_true] = ACTIONS(793), + [anon_sym_false] = ACTIONS(793), + [aux_sym_string_token1] = ACTIONS(791), + [aux_sym_string_token3] = ACTIONS(791), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(793), + [anon_sym_catch] = ACTIONS(793), + [anon_sym_continue] = ACTIONS(793), + [anon_sym_do] = ACTIONS(793), + [anon_sym_enum] = ACTIONS(793), + [anon_sym_extern] = ACTIONS(793), + [anon_sym_for] = ACTIONS(793), + [anon_sym_inline] = ACTIONS(793), + [anon_sym_macro] = ACTIONS(793), + [anon_sym_operator] = ACTIONS(793), + [anon_sym_overload] = ACTIONS(793), + [anon_sym_override] = ACTIONS(793), + [anon_sym_private] = ACTIONS(793), + [anon_sym_public] = ACTIONS(793), + [anon_sym_return] = ACTIONS(793), + [anon_sym_static] = ACTIONS(793), + [anon_sym_try] = ACTIONS(793), + [anon_sym_untyped] = ACTIONS(793), + [anon_sym_while] = ACTIONS(793), + [sym__semicolon] = ACTIONS(791), }, - [145] = { - [sym_block] = STATE(268), - [ts_builtin_sym_end] = ACTIONS(803), - [sym_identifier] = ACTIONS(805), - [anon_sym_POUND] = ACTIONS(803), - [anon_sym_package] = ACTIONS(805), - [anon_sym_import] = ACTIONS(805), - [anon_sym_using] = ACTIONS(805), - [anon_sym_throw] = ACTIONS(805), - [anon_sym_LPAREN] = ACTIONS(803), - [anon_sym_switch] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(803), - [anon_sym_case] = ACTIONS(805), - [anon_sym_COLON] = ACTIONS(810), - [anon_sym_default] = ACTIONS(805), - [anon_sym_cast] = ACTIONS(805), - [anon_sym_DOLLARtype] = ACTIONS(803), - [anon_sym_in] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(803), - [anon_sym_this] = ACTIONS(805), - [anon_sym_AT] = ACTIONS(805), - [anon_sym_AT_COLON] = ACTIONS(803), - [anon_sym_if] = ACTIONS(805), - [anon_sym_else] = ACTIONS(805), - [anon_sym_new] = ACTIONS(805), - [anon_sym_TILDE] = ACTIONS(803), - [anon_sym_BANG] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_PERCENT] = ACTIONS(803), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_LT_LT] = ACTIONS(803), - [anon_sym_GT_GT] = ACTIONS(805), - [anon_sym_GT_GT_GT] = ACTIONS(803), - [anon_sym_AMP] = ACTIONS(805), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(803), - [anon_sym_AMP_AMP] = ACTIONS(803), - [anon_sym_PIPE_PIPE] = ACTIONS(803), - [anon_sym_EQ_EQ] = ACTIONS(803), - [anon_sym_BANG_EQ] = ACTIONS(803), - [anon_sym_LT] = ACTIONS(805), - [anon_sym_LT_EQ] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_GT_EQ] = ACTIONS(803), - [anon_sym_EQ_GT] = ACTIONS(803), - [anon_sym_QMARK_QMARK] = ACTIONS(803), - [anon_sym_EQ] = ACTIONS(805), - [sym__rangeOperator] = ACTIONS(803), - [anon_sym_null] = ACTIONS(805), - [anon_sym_dynamic] = ACTIONS(805), - [anon_sym_final] = ACTIONS(805), - [anon_sym_abstract] = ACTIONS(805), - [anon_sym_class] = ACTIONS(805), - [anon_sym_extends] = ACTIONS(805), - [anon_sym_implements] = ACTIONS(805), - [anon_sym_interface] = ACTIONS(805), - [anon_sym_typedef] = ACTIONS(805), - [anon_sym_function] = ACTIONS(805), - [anon_sym_var] = ACTIONS(805), - [aux_sym_integer_token1] = ACTIONS(805), - [aux_sym_integer_token2] = ACTIONS(803), - [aux_sym_float_token1] = ACTIONS(805), - [aux_sym_float_token2] = ACTIONS(803), - [anon_sym_true] = ACTIONS(805), - [anon_sym_false] = ACTIONS(805), - [aux_sym_string_token1] = ACTIONS(803), - [aux_sym_string_token3] = ACTIONS(803), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(805), - [anon_sym_catch] = ACTIONS(805), - [anon_sym_continue] = ACTIONS(805), - [anon_sym_do] = ACTIONS(805), - [anon_sym_enum] = ACTIONS(805), - [anon_sym_extern] = ACTIONS(805), - [anon_sym_for] = ACTIONS(805), - [anon_sym_inline] = ACTIONS(805), - [anon_sym_macro] = ACTIONS(805), - [anon_sym_operator] = ACTIONS(805), - [anon_sym_overload] = ACTIONS(805), - [anon_sym_override] = ACTIONS(805), - [anon_sym_private] = ACTIONS(805), - [anon_sym_public] = ACTIONS(805), - [anon_sym_return] = ACTIONS(805), - [anon_sym_static] = ACTIONS(805), - [anon_sym_try] = ACTIONS(805), - [anon_sym_untyped] = ACTIONS(805), - [anon_sym_while] = ACTIONS(805), - [sym__semicolon] = ACTIONS(803), + [160] = { + [sym_member_expression] = STATE(28), + [sym__lhs_expression] = STATE(1015), + [sym__literal] = STATE(1172), + [sym_integer] = STATE(1172), + [sym_float] = STATE(1172), + [sym_bool] = STATE(1172), + [sym_string] = STATE(1025), + [sym_null] = STATE(1172), + [sym_array] = STATE(1172), + [sym_map] = STATE(1172), + [sym_object] = STATE(1172), + [sym_pair] = STATE(1172), + [sym_identifier] = ACTIONS(284), + [anon_sym_package] = ACTIONS(276), + [anon_sym_import] = ACTIONS(276), + [anon_sym_using] = ACTIONS(276), + [anon_sym_throw] = ACTIONS(276), + [anon_sym_switch] = ACTIONS(276), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_case] = ACTIONS(276), + [anon_sym_default] = ACTIONS(276), + [anon_sym_cast] = ACTIONS(276), + [anon_sym_in] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_this] = ACTIONS(286), + [anon_sym_if] = ACTIONS(276), + [anon_sym_else] = ACTIONS(276), + [anon_sym_new] = ACTIONS(276), + [anon_sym_null] = ACTIONS(51), + [anon_sym_dynamic] = ACTIONS(276), + [anon_sym_final] = ACTIONS(276), + [anon_sym_abstract] = ACTIONS(276), + [anon_sym_class] = ACTIONS(276), + [anon_sym_extends] = ACTIONS(276), + [anon_sym_implements] = ACTIONS(276), + [anon_sym_interface] = ACTIONS(276), + [anon_sym_typedef] = ACTIONS(276), + [anon_sym_function] = ACTIONS(276), + [anon_sym_var] = ACTIONS(276), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(276), + [anon_sym_catch] = ACTIONS(276), + [anon_sym_continue] = ACTIONS(276), + [anon_sym_do] = ACTIONS(276), + [anon_sym_enum] = ACTIONS(276), + [anon_sym_extern] = ACTIONS(276), + [anon_sym_for] = ACTIONS(276), + [anon_sym_inline] = ACTIONS(276), + [anon_sym_macro] = ACTIONS(276), + [anon_sym_operator] = ACTIONS(276), + [anon_sym_overload] = ACTIONS(276), + [anon_sym_override] = ACTIONS(276), + [anon_sym_private] = ACTIONS(276), + [anon_sym_public] = ACTIONS(276), + [anon_sym_return] = ACTIONS(276), + [anon_sym_static] = ACTIONS(276), + [anon_sym_try] = ACTIONS(276), + [anon_sym_untyped] = ACTIONS(276), + [anon_sym_while] = ACTIONS(276), }, - [146] = { - [ts_builtin_sym_end] = ACTIONS(812), - [sym_identifier] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(812), - [anon_sym_package] = ACTIONS(814), - [anon_sym_import] = ACTIONS(814), - [anon_sym_using] = ACTIONS(814), - [anon_sym_throw] = ACTIONS(814), - [anon_sym_LPAREN] = ACTIONS(812), - [anon_sym_RPAREN] = ACTIONS(812), - [anon_sym_switch] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(812), - [anon_sym_RBRACE] = ACTIONS(812), - [anon_sym_case] = ACTIONS(814), - [anon_sym_default] = ACTIONS(814), - [anon_sym_cast] = ACTIONS(814), - [anon_sym_DOLLARtype] = ACTIONS(812), - [anon_sym_in] = ACTIONS(814), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_this] = ACTIONS(814), - [anon_sym_DASH_GT] = ACTIONS(812), - [anon_sym_AT] = ACTIONS(814), - [anon_sym_AT_COLON] = ACTIONS(812), - [anon_sym_if] = ACTIONS(814), - [anon_sym_else] = ACTIONS(814), - [anon_sym_new] = ACTIONS(814), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_BANG] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_PLUS_PLUS] = ACTIONS(812), - [anon_sym_DASH_DASH] = ACTIONS(812), - [anon_sym_PERCENT] = ACTIONS(812), - [anon_sym_STAR] = ACTIONS(812), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_PLUS] = ACTIONS(814), - [anon_sym_LT_LT] = ACTIONS(812), - [anon_sym_GT_GT] = ACTIONS(814), - [anon_sym_GT_GT_GT] = ACTIONS(812), - [anon_sym_AMP] = ACTIONS(814), - [anon_sym_PIPE] = ACTIONS(814), - [anon_sym_CARET] = ACTIONS(812), - [anon_sym_AMP_AMP] = ACTIONS(812), - [anon_sym_PIPE_PIPE] = ACTIONS(812), - [anon_sym_EQ_EQ] = ACTIONS(812), - [anon_sym_BANG_EQ] = ACTIONS(812), - [anon_sym_LT] = ACTIONS(814), - [anon_sym_LT_EQ] = ACTIONS(812), - [anon_sym_GT] = ACTIONS(814), - [anon_sym_GT_EQ] = ACTIONS(812), - [anon_sym_EQ_GT] = ACTIONS(812), - [anon_sym_QMARK_QMARK] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), - [sym__rangeOperator] = ACTIONS(812), - [anon_sym_null] = ACTIONS(814), - [anon_sym_dynamic] = ACTIONS(814), - [anon_sym_final] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(814), - [anon_sym_class] = ACTIONS(814), - [anon_sym_extends] = ACTIONS(814), - [anon_sym_implements] = ACTIONS(814), - [anon_sym_interface] = 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(812), - [aux_sym_float_token1] = ACTIONS(814), - [aux_sym_float_token2] = ACTIONS(812), - [anon_sym_true] = ACTIONS(814), - [anon_sym_false] = ACTIONS(814), - [aux_sym_string_token1] = ACTIONS(812), - [aux_sym_string_token3] = ACTIONS(812), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(814), - [anon_sym_catch] = ACTIONS(814), - [anon_sym_continue] = ACTIONS(814), - [anon_sym_do] = ACTIONS(814), - [anon_sym_enum] = ACTIONS(814), - [anon_sym_extern] = ACTIONS(814), - [anon_sym_for] = ACTIONS(814), - [anon_sym_inline] = ACTIONS(814), - [anon_sym_macro] = ACTIONS(814), - [anon_sym_operator] = ACTIONS(814), - [anon_sym_overload] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_public] = ACTIONS(814), - [anon_sym_return] = ACTIONS(814), - [anon_sym_static] = ACTIONS(814), - [anon_sym_try] = ACTIONS(814), - [anon_sym_untyped] = ACTIONS(814), - [anon_sym_while] = ACTIONS(814), - [sym__semicolon] = ACTIONS(812), + [161] = { + [sym_block] = STATE(289), + [ts_builtin_sym_end] = ACTIONS(800), + [sym_identifier] = ACTIONS(802), + [anon_sym_POUND] = ACTIONS(800), + [anon_sym_package] = ACTIONS(802), + [anon_sym_import] = ACTIONS(802), + [anon_sym_using] = ACTIONS(802), + [anon_sym_throw] = ACTIONS(802), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_switch] = ACTIONS(802), + [anon_sym_LBRACE] = ACTIONS(804), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_case] = ACTIONS(802), + [anon_sym_COLON] = ACTIONS(807), + [anon_sym_default] = ACTIONS(802), + [anon_sym_cast] = ACTIONS(802), + [anon_sym_DOLLARtype] = ACTIONS(800), + [anon_sym_in] = ACTIONS(802), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_this] = ACTIONS(802), + [anon_sym_AT] = ACTIONS(802), + [anon_sym_AT_COLON] = ACTIONS(800), + [anon_sym_if] = ACTIONS(802), + [anon_sym_else] = ACTIONS(802), + [anon_sym_new] = ACTIONS(802), + [sym__prefixUnaryOperator] = ACTIONS(802), + [sym__eitherUnaryOperator] = ACTIONS(800), + [anon_sym_null] = ACTIONS(802), + [anon_sym_dynamic] = ACTIONS(802), + [anon_sym_final] = ACTIONS(802), + [anon_sym_abstract] = ACTIONS(802), + [anon_sym_class] = ACTIONS(802), + [anon_sym_extends] = ACTIONS(802), + [anon_sym_implements] = ACTIONS(802), + [anon_sym_interface] = ACTIONS(802), + [anon_sym_typedef] = ACTIONS(802), + [anon_sym_function] = ACTIONS(802), + [anon_sym_var] = ACTIONS(802), + [aux_sym_integer_token1] = ACTIONS(802), + [aux_sym_integer_token2] = ACTIONS(800), + [aux_sym_float_token1] = ACTIONS(802), + [aux_sym_float_token2] = ACTIONS(800), + [anon_sym_true] = ACTIONS(802), + [anon_sym_false] = ACTIONS(802), + [aux_sym_string_token1] = ACTIONS(800), + [aux_sym_string_token3] = ACTIONS(800), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(802), + [anon_sym_catch] = ACTIONS(802), + [anon_sym_continue] = ACTIONS(802), + [anon_sym_do] = ACTIONS(802), + [anon_sym_enum] = ACTIONS(802), + [anon_sym_extern] = ACTIONS(802), + [anon_sym_for] = ACTIONS(802), + [anon_sym_inline] = ACTIONS(802), + [anon_sym_macro] = ACTIONS(802), + [anon_sym_operator] = ACTIONS(802), + [anon_sym_overload] = ACTIONS(802), + [anon_sym_override] = ACTIONS(802), + [anon_sym_private] = ACTIONS(802), + [anon_sym_public] = ACTIONS(802), + [anon_sym_return] = ACTIONS(802), + [anon_sym_static] = ACTIONS(802), + [anon_sym_try] = ACTIONS(802), + [anon_sym_untyped] = ACTIONS(802), + [anon_sym_while] = ACTIONS(802), + [sym__semicolon] = ACTIONS(800), }, - [147] = { - [sym_type_params] = STATE(116), + [162] = { + [sym_member_expression] = STATE(28), + [sym__lhs_expression] = STATE(1242), + [sym__literal] = STATE(1172), + [sym_integer] = STATE(1172), + [sym_float] = STATE(1172), + [sym_bool] = STATE(1172), + [sym_string] = STATE(1025), + [sym_null] = STATE(1172), + [sym_array] = STATE(1172), + [sym_map] = STATE(1172), + [sym_object] = STATE(1172), + [sym_pair] = STATE(1172), + [sym_identifier] = ACTIONS(284), + [anon_sym_package] = ACTIONS(276), + [anon_sym_import] = ACTIONS(276), + [anon_sym_using] = ACTIONS(276), + [anon_sym_throw] = ACTIONS(276), + [anon_sym_switch] = ACTIONS(276), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_case] = ACTIONS(276), + [anon_sym_default] = ACTIONS(276), + [anon_sym_cast] = ACTIONS(276), + [anon_sym_in] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_this] = ACTIONS(286), + [anon_sym_if] = ACTIONS(276), + [anon_sym_else] = ACTIONS(276), + [anon_sym_new] = ACTIONS(276), + [anon_sym_null] = ACTIONS(51), + [anon_sym_dynamic] = ACTIONS(276), + [anon_sym_final] = ACTIONS(276), + [anon_sym_abstract] = ACTIONS(276), + [anon_sym_class] = ACTIONS(276), + [anon_sym_extends] = ACTIONS(276), + [anon_sym_implements] = ACTIONS(276), + [anon_sym_interface] = ACTIONS(276), + [anon_sym_typedef] = ACTIONS(276), + [anon_sym_function] = ACTIONS(276), + [anon_sym_var] = ACTIONS(276), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(276), + [anon_sym_catch] = ACTIONS(276), + [anon_sym_continue] = ACTIONS(276), + [anon_sym_do] = ACTIONS(276), + [anon_sym_enum] = ACTIONS(276), + [anon_sym_extern] = ACTIONS(276), + [anon_sym_for] = ACTIONS(276), + [anon_sym_inline] = ACTIONS(276), + [anon_sym_macro] = ACTIONS(276), + [anon_sym_operator] = ACTIONS(276), + [anon_sym_overload] = ACTIONS(276), + [anon_sym_override] = ACTIONS(276), + [anon_sym_private] = ACTIONS(276), + [anon_sym_public] = ACTIONS(276), + [anon_sym_return] = ACTIONS(276), + [anon_sym_static] = ACTIONS(276), + [anon_sym_try] = ACTIONS(276), + [anon_sym_untyped] = ACTIONS(276), + [anon_sym_while] = ACTIONS(276), + }, + [163] = { + [sym_member_expression] = STATE(28), + [sym__lhs_expression] = STATE(1247), + [sym__literal] = STATE(1172), + [sym_integer] = STATE(1172), + [sym_float] = STATE(1172), + [sym_bool] = STATE(1172), + [sym_string] = STATE(1025), + [sym_null] = STATE(1172), + [sym_array] = STATE(1172), + [sym_map] = STATE(1172), + [sym_object] = STATE(1172), + [sym_pair] = STATE(1172), + [sym_identifier] = ACTIONS(284), + [anon_sym_package] = ACTIONS(276), + [anon_sym_import] = ACTIONS(276), + [anon_sym_using] = ACTIONS(276), + [anon_sym_throw] = ACTIONS(276), + [anon_sym_switch] = ACTIONS(276), + [anon_sym_LBRACE] = ACTIONS(214), + [anon_sym_case] = ACTIONS(276), + [anon_sym_default] = ACTIONS(276), + [anon_sym_cast] = ACTIONS(276), + [anon_sym_in] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_this] = ACTIONS(286), + [anon_sym_if] = ACTIONS(276), + [anon_sym_else] = ACTIONS(276), + [anon_sym_new] = ACTIONS(276), + [anon_sym_null] = ACTIONS(51), + [anon_sym_dynamic] = ACTIONS(276), + [anon_sym_final] = ACTIONS(276), + [anon_sym_abstract] = ACTIONS(276), + [anon_sym_class] = ACTIONS(276), + [anon_sym_extends] = ACTIONS(276), + [anon_sym_implements] = ACTIONS(276), + [anon_sym_interface] = ACTIONS(276), + [anon_sym_typedef] = ACTIONS(276), + [anon_sym_function] = ACTIONS(276), + [anon_sym_var] = ACTIONS(276), + [aux_sym_integer_token1] = ACTIONS(67), + [aux_sym_integer_token2] = ACTIONS(69), + [aux_sym_float_token1] = ACTIONS(71), + [aux_sym_float_token2] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [aux_sym_string_token1] = ACTIONS(77), + [aux_sym_string_token3] = ACTIONS(79), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(276), + [anon_sym_catch] = ACTIONS(276), + [anon_sym_continue] = ACTIONS(276), + [anon_sym_do] = ACTIONS(276), + [anon_sym_enum] = ACTIONS(276), + [anon_sym_extern] = ACTIONS(276), + [anon_sym_for] = ACTIONS(276), + [anon_sym_inline] = ACTIONS(276), + [anon_sym_macro] = ACTIONS(276), + [anon_sym_operator] = ACTIONS(276), + [anon_sym_overload] = ACTIONS(276), + [anon_sym_override] = ACTIONS(276), + [anon_sym_private] = ACTIONS(276), + [anon_sym_public] = ACTIONS(276), + [anon_sym_return] = ACTIONS(276), + [anon_sym_static] = ACTIONS(276), + [anon_sym_try] = ACTIONS(276), + [anon_sym_untyped] = ACTIONS(276), + [anon_sym_while] = ACTIONS(276), + }, + [164] = { + [sym_block] = STATE(249), + [ts_builtin_sym_end] = ACTIONS(809), + [sym_identifier] = ACTIONS(811), + [anon_sym_POUND] = ACTIONS(809), + [anon_sym_package] = ACTIONS(811), + [anon_sym_import] = ACTIONS(811), + [anon_sym_using] = ACTIONS(811), + [anon_sym_throw] = ACTIONS(811), + [anon_sym_LPAREN] = ACTIONS(809), + [anon_sym_switch] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_RBRACE] = ACTIONS(809), + [anon_sym_case] = ACTIONS(811), + [anon_sym_default] = ACTIONS(811), + [anon_sym_cast] = ACTIONS(811), + [anon_sym_DOLLARtype] = ACTIONS(809), + [anon_sym_in] = ACTIONS(811), + [anon_sym_LBRACK] = ACTIONS(809), + [anon_sym_this] = ACTIONS(811), + [anon_sym_DASH_GT] = ACTIONS(570), + [anon_sym_AT] = ACTIONS(811), + [anon_sym_AT_COLON] = ACTIONS(809), + [anon_sym_if] = ACTIONS(811), + [anon_sym_else] = ACTIONS(811), + [anon_sym_new] = ACTIONS(811), + [sym__prefixUnaryOperator] = ACTIONS(811), + [sym__eitherUnaryOperator] = ACTIONS(809), + [anon_sym_null] = ACTIONS(811), + [anon_sym_dynamic] = ACTIONS(811), + [anon_sym_final] = ACTIONS(811), + [anon_sym_abstract] = ACTIONS(811), + [anon_sym_class] = ACTIONS(811), + [anon_sym_extends] = ACTIONS(811), + [anon_sym_implements] = ACTIONS(811), + [anon_sym_interface] = ACTIONS(811), + [anon_sym_typedef] = ACTIONS(811), + [anon_sym_function] = ACTIONS(811), + [anon_sym_var] = ACTIONS(811), + [aux_sym_integer_token1] = ACTIONS(811), + [aux_sym_integer_token2] = ACTIONS(809), + [aux_sym_float_token1] = ACTIONS(811), + [aux_sym_float_token2] = ACTIONS(809), + [anon_sym_true] = ACTIONS(811), + [anon_sym_false] = ACTIONS(811), + [aux_sym_string_token1] = ACTIONS(809), + [aux_sym_string_token3] = ACTIONS(809), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(811), + [anon_sym_catch] = ACTIONS(811), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_do] = ACTIONS(811), + [anon_sym_enum] = ACTIONS(811), + [anon_sym_extern] = ACTIONS(811), + [anon_sym_for] = ACTIONS(811), + [anon_sym_inline] = ACTIONS(811), + [anon_sym_macro] = ACTIONS(811), + [anon_sym_operator] = ACTIONS(811), + [anon_sym_overload] = ACTIONS(811), + [anon_sym_override] = ACTIONS(811), + [anon_sym_private] = ACTIONS(811), + [anon_sym_public] = ACTIONS(811), + [anon_sym_return] = ACTIONS(811), + [anon_sym_static] = ACTIONS(811), + [anon_sym_try] = ACTIONS(811), + [anon_sym_untyped] = ACTIONS(811), + [anon_sym_while] = ACTIONS(811), + [sym__semicolon] = ACTIONS(809), + }, + [165] = { [ts_builtin_sym_end] = ACTIONS(816), - [sym_identifier] = ACTIONS(819), + [sym_identifier] = ACTIONS(818), [anon_sym_POUND] = ACTIONS(816), - [anon_sym_package] = ACTIONS(819), - [anon_sym_import] = ACTIONS(819), - [anon_sym_using] = ACTIONS(819), - [anon_sym_throw] = ACTIONS(819), + [anon_sym_package] = ACTIONS(818), + [anon_sym_import] = ACTIONS(818), + [anon_sym_using] = ACTIONS(818), + [anon_sym_throw] = ACTIONS(818), [anon_sym_LPAREN] = ACTIONS(816), - [anon_sym_switch] = ACTIONS(819), + [anon_sym_switch] = ACTIONS(818), [anon_sym_LBRACE] = ACTIONS(816), [anon_sym_RBRACE] = ACTIONS(816), - [anon_sym_case] = ACTIONS(819), - [anon_sym_default] = ACTIONS(819), - [anon_sym_cast] = ACTIONS(819), + [anon_sym_case] = ACTIONS(818), + [anon_sym_default] = ACTIONS(818), + [anon_sym_cast] = ACTIONS(818), [anon_sym_DOLLARtype] = ACTIONS(816), - [anon_sym_in] = ACTIONS(819), + [anon_sym_in] = ACTIONS(818), [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_this] = ACTIONS(819), - [anon_sym_DASH_GT] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(819), + [anon_sym_this] = ACTIONS(818), + [anon_sym_DASH_GT] = ACTIONS(570), + [anon_sym_AT] = ACTIONS(818), [anon_sym_AT_COLON] = ACTIONS(816), - [anon_sym_if] = ACTIONS(819), - [anon_sym_else] = ACTIONS(819), - [anon_sym_new] = ACTIONS(819), - [anon_sym_TILDE] = ACTIONS(816), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(816), - [anon_sym_DASH_DASH] = ACTIONS(816), - [anon_sym_PERCENT] = ACTIONS(816), - [anon_sym_STAR] = ACTIONS(816), - [anon_sym_SLASH] = ACTIONS(819), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_LT_LT] = ACTIONS(816), - [anon_sym_GT_GT] = ACTIONS(819), - [anon_sym_GT_GT_GT] = ACTIONS(816), - [anon_sym_AMP] = ACTIONS(819), - [anon_sym_PIPE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(816), - [anon_sym_AMP_AMP] = ACTIONS(816), - [anon_sym_PIPE_PIPE] = ACTIONS(816), - [anon_sym_EQ_EQ] = ACTIONS(816), - [anon_sym_BANG_EQ] = ACTIONS(816), - [anon_sym_LT] = ACTIONS(822), - [anon_sym_LT_EQ] = ACTIONS(816), - [anon_sym_GT] = ACTIONS(819), - [anon_sym_GT_EQ] = ACTIONS(816), - [anon_sym_EQ_GT] = ACTIONS(816), - [anon_sym_QMARK_QMARK] = ACTIONS(816), - [anon_sym_EQ] = ACTIONS(819), - [sym__rangeOperator] = ACTIONS(816), - [anon_sym_null] = ACTIONS(819), - [anon_sym_dynamic] = ACTIONS(819), - [anon_sym_final] = ACTIONS(819), - [anon_sym_abstract] = ACTIONS(819), - [anon_sym_class] = ACTIONS(819), - [anon_sym_extends] = ACTIONS(819), - [anon_sym_implements] = ACTIONS(819), - [anon_sym_interface] = ACTIONS(819), - [anon_sym_typedef] = ACTIONS(819), - [anon_sym_function] = ACTIONS(819), - [anon_sym_var] = ACTIONS(819), - [aux_sym_integer_token1] = ACTIONS(819), + [anon_sym_if] = ACTIONS(818), + [anon_sym_else] = ACTIONS(818), + [anon_sym_new] = ACTIONS(818), + [sym__prefixUnaryOperator] = ACTIONS(818), + [sym__eitherUnaryOperator] = ACTIONS(816), + [anon_sym_null] = ACTIONS(818), + [anon_sym_dynamic] = ACTIONS(818), + [anon_sym_final] = ACTIONS(818), + [anon_sym_abstract] = ACTIONS(818), + [anon_sym_class] = ACTIONS(818), + [anon_sym_extends] = ACTIONS(818), + [anon_sym_implements] = ACTIONS(818), + [anon_sym_interface] = ACTIONS(818), + [anon_sym_typedef] = ACTIONS(818), + [anon_sym_function] = ACTIONS(818), + [anon_sym_var] = ACTIONS(818), + [aux_sym_integer_token1] = ACTIONS(818), [aux_sym_integer_token2] = ACTIONS(816), - [aux_sym_float_token1] = ACTIONS(819), + [aux_sym_float_token1] = ACTIONS(818), [aux_sym_float_token2] = ACTIONS(816), - [anon_sym_true] = ACTIONS(819), - [anon_sym_false] = ACTIONS(819), + [anon_sym_true] = ACTIONS(818), + [anon_sym_false] = ACTIONS(818), [aux_sym_string_token1] = ACTIONS(816), [aux_sym_string_token3] = ACTIONS(816), [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(819), - [anon_sym_catch] = ACTIONS(819), - [anon_sym_continue] = ACTIONS(819), - [anon_sym_do] = ACTIONS(819), - [anon_sym_enum] = ACTIONS(819), - [anon_sym_extern] = ACTIONS(819), - [anon_sym_for] = ACTIONS(819), - [anon_sym_inline] = ACTIONS(819), - [anon_sym_macro] = ACTIONS(819), - [anon_sym_operator] = ACTIONS(819), - [anon_sym_overload] = ACTIONS(819), - [anon_sym_override] = ACTIONS(819), - [anon_sym_private] = ACTIONS(819), - [anon_sym_public] = ACTIONS(819), - [anon_sym_return] = ACTIONS(819), - [anon_sym_static] = ACTIONS(819), - [anon_sym_try] = ACTIONS(819), - [anon_sym_untyped] = ACTIONS(819), - [anon_sym_while] = ACTIONS(819), + [anon_sym_break] = ACTIONS(818), + [anon_sym_catch] = ACTIONS(818), + [anon_sym_continue] = ACTIONS(818), + [anon_sym_do] = ACTIONS(818), + [anon_sym_enum] = ACTIONS(818), + [anon_sym_extern] = ACTIONS(818), + [anon_sym_for] = ACTIONS(818), + [anon_sym_inline] = ACTIONS(818), + [anon_sym_macro] = ACTIONS(818), + [anon_sym_operator] = ACTIONS(818), + [anon_sym_overload] = ACTIONS(818), + [anon_sym_override] = ACTIONS(818), + [anon_sym_private] = ACTIONS(818), + [anon_sym_public] = ACTIONS(818), + [anon_sym_return] = ACTIONS(818), + [anon_sym_static] = ACTIONS(818), + [anon_sym_try] = ACTIONS(818), + [anon_sym_untyped] = ACTIONS(818), + [anon_sym_while] = ACTIONS(818), [sym__semicolon] = ACTIONS(816), }, - [148] = { - [sym_block] = STATE(307), - [ts_builtin_sym_end] = ACTIONS(826), - [sym_identifier] = ACTIONS(828), - [anon_sym_POUND] = ACTIONS(826), - [anon_sym_package] = ACTIONS(828), - [anon_sym_import] = ACTIONS(828), - [anon_sym_using] = ACTIONS(828), - [anon_sym_throw] = ACTIONS(828), - [anon_sym_LPAREN] = ACTIONS(826), - [anon_sym_switch] = ACTIONS(828), - [anon_sym_LBRACE] = ACTIONS(830), - [anon_sym_RBRACE] = ACTIONS(826), - [anon_sym_case] = ACTIONS(828), - [anon_sym_default] = ACTIONS(828), - [anon_sym_cast] = ACTIONS(828), - [anon_sym_DOLLARtype] = ACTIONS(826), - [anon_sym_in] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(826), - [anon_sym_this] = ACTIONS(828), - [anon_sym_DASH_GT] = ACTIONS(671), - [anon_sym_AT] = ACTIONS(828), - [anon_sym_AT_COLON] = ACTIONS(826), - [anon_sym_if] = ACTIONS(828), - [anon_sym_else] = ACTIONS(828), - [anon_sym_new] = ACTIONS(828), - [anon_sym_TILDE] = ACTIONS(826), - [anon_sym_BANG] = ACTIONS(828), - [anon_sym_DASH] = ACTIONS(828), - [anon_sym_PLUS_PLUS] = ACTIONS(826), - [anon_sym_DASH_DASH] = ACTIONS(826), - [anon_sym_PERCENT] = ACTIONS(826), - [anon_sym_STAR] = ACTIONS(826), - [anon_sym_SLASH] = ACTIONS(828), - [anon_sym_PLUS] = ACTIONS(828), - [anon_sym_LT_LT] = ACTIONS(826), - [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_GT_GT_GT] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_CARET] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [anon_sym_EQ_EQ] = ACTIONS(826), - [anon_sym_BANG_EQ] = ACTIONS(826), - [anon_sym_LT] = ACTIONS(828), - [anon_sym_LT_EQ] = ACTIONS(826), - [anon_sym_GT] = ACTIONS(828), - [anon_sym_GT_EQ] = ACTIONS(826), - [anon_sym_EQ_GT] = ACTIONS(826), - [anon_sym_QMARK_QMARK] = ACTIONS(826), - [anon_sym_EQ] = ACTIONS(828), - [sym__rangeOperator] = ACTIONS(826), - [anon_sym_null] = ACTIONS(828), - [anon_sym_dynamic] = ACTIONS(828), - [anon_sym_final] = ACTIONS(828), - [anon_sym_abstract] = ACTIONS(828), - [anon_sym_class] = ACTIONS(828), - [anon_sym_extends] = ACTIONS(828), - [anon_sym_implements] = ACTIONS(828), - [anon_sym_interface] = ACTIONS(828), - [anon_sym_typedef] = ACTIONS(828), - [anon_sym_function] = ACTIONS(828), - [anon_sym_var] = ACTIONS(828), - [aux_sym_integer_token1] = ACTIONS(828), - [aux_sym_integer_token2] = ACTIONS(826), - [aux_sym_float_token1] = ACTIONS(828), - [aux_sym_float_token2] = ACTIONS(826), - [anon_sym_true] = ACTIONS(828), - [anon_sym_false] = ACTIONS(828), - [aux_sym_string_token1] = ACTIONS(826), - [aux_sym_string_token3] = ACTIONS(826), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(828), - [anon_sym_catch] = ACTIONS(828), - [anon_sym_continue] = ACTIONS(828), - [anon_sym_do] = ACTIONS(828), - [anon_sym_enum] = ACTIONS(828), - [anon_sym_extern] = ACTIONS(828), - [anon_sym_for] = ACTIONS(828), - [anon_sym_inline] = ACTIONS(828), - [anon_sym_macro] = ACTIONS(828), - [anon_sym_operator] = ACTIONS(828), - [anon_sym_overload] = ACTIONS(828), - [anon_sym_override] = ACTIONS(828), - [anon_sym_private] = ACTIONS(828), - [anon_sym_public] = ACTIONS(828), - [anon_sym_return] = ACTIONS(828), - [anon_sym_static] = ACTIONS(828), - [anon_sym_try] = ACTIONS(828), - [anon_sym_untyped] = ACTIONS(828), - [anon_sym_while] = ACTIONS(828), - [sym__semicolon] = ACTIONS(826), + [166] = { + [ts_builtin_sym_end] = ACTIONS(820), + [sym_identifier] = ACTIONS(822), + [anon_sym_POUND] = ACTIONS(820), + [anon_sym_package] = ACTIONS(822), + [anon_sym_import] = ACTIONS(822), + [anon_sym_using] = ACTIONS(822), + [anon_sym_throw] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_switch] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_case] = ACTIONS(822), + [anon_sym_default] = ACTIONS(822), + [anon_sym_cast] = ACTIONS(822), + [anon_sym_DOLLARtype] = ACTIONS(820), + [anon_sym_in] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_this] = ACTIONS(822), + [anon_sym_DASH_GT] = ACTIONS(570), + [anon_sym_AT] = ACTIONS(822), + [anon_sym_AT_COLON] = ACTIONS(820), + [anon_sym_if] = ACTIONS(822), + [anon_sym_else] = ACTIONS(822), + [anon_sym_new] = ACTIONS(822), + [sym__prefixUnaryOperator] = ACTIONS(822), + [sym__eitherUnaryOperator] = ACTIONS(820), + [anon_sym_null] = ACTIONS(822), + [anon_sym_dynamic] = ACTIONS(822), + [anon_sym_final] = ACTIONS(822), + [anon_sym_abstract] = ACTIONS(822), + [anon_sym_class] = ACTIONS(822), + [anon_sym_extends] = ACTIONS(822), + [anon_sym_implements] = ACTIONS(822), + [anon_sym_interface] = ACTIONS(822), + [anon_sym_typedef] = ACTIONS(822), + [anon_sym_function] = ACTIONS(822), + [anon_sym_var] = ACTIONS(822), + [aux_sym_integer_token1] = ACTIONS(822), + [aux_sym_integer_token2] = ACTIONS(820), + [aux_sym_float_token1] = ACTIONS(822), + [aux_sym_float_token2] = ACTIONS(820), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [aux_sym_string_token1] = ACTIONS(820), + [aux_sym_string_token3] = ACTIONS(820), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(822), + [anon_sym_catch] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_do] = ACTIONS(822), + [anon_sym_enum] = ACTIONS(822), + [anon_sym_extern] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_inline] = ACTIONS(822), + [anon_sym_macro] = ACTIONS(822), + [anon_sym_operator] = ACTIONS(822), + [anon_sym_overload] = ACTIONS(822), + [anon_sym_override] = ACTIONS(822), + [anon_sym_private] = ACTIONS(822), + [anon_sym_public] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_static] = ACTIONS(822), + [anon_sym_try] = ACTIONS(822), + [anon_sym_untyped] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [sym__semicolon] = ACTIONS(820), }, - [149] = { - [sym_block] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(833), - [sym_identifier] = ACTIONS(835), - [anon_sym_POUND] = ACTIONS(833), - [anon_sym_package] = ACTIONS(835), - [anon_sym_import] = ACTIONS(835), - [anon_sym_using] = ACTIONS(835), - [anon_sym_throw] = ACTIONS(835), - [anon_sym_LPAREN] = ACTIONS(833), - [anon_sym_switch] = ACTIONS(835), - [anon_sym_LBRACE] = ACTIONS(837), - [anon_sym_RBRACE] = ACTIONS(833), - [anon_sym_case] = ACTIONS(835), - [anon_sym_default] = ACTIONS(835), - [anon_sym_cast] = ACTIONS(835), - [anon_sym_DOLLARtype] = ACTIONS(833), - [anon_sym_in] = ACTIONS(835), - [anon_sym_LBRACK] = ACTIONS(833), - [anon_sym_this] = ACTIONS(835), - [anon_sym_DASH_GT] = ACTIONS(671), - [anon_sym_AT] = ACTIONS(835), - [anon_sym_AT_COLON] = ACTIONS(833), - [anon_sym_if] = ACTIONS(835), - [anon_sym_else] = ACTIONS(835), - [anon_sym_new] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(833), - [anon_sym_BANG] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_PERCENT] = ACTIONS(833), - [anon_sym_STAR] = ACTIONS(833), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_LT_LT] = ACTIONS(833), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_GT_GT_GT] = ACTIONS(833), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(833), - [anon_sym_AMP_AMP] = ACTIONS(833), - [anon_sym_PIPE_PIPE] = ACTIONS(833), - [anon_sym_EQ_EQ] = ACTIONS(833), - [anon_sym_BANG_EQ] = ACTIONS(833), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_LT_EQ] = ACTIONS(833), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_GT_EQ] = ACTIONS(833), - [anon_sym_EQ_GT] = ACTIONS(833), - [anon_sym_QMARK_QMARK] = ACTIONS(833), - [anon_sym_EQ] = ACTIONS(835), - [sym__rangeOperator] = ACTIONS(833), - [anon_sym_null] = ACTIONS(835), - [anon_sym_dynamic] = ACTIONS(835), - [anon_sym_final] = ACTIONS(835), - [anon_sym_abstract] = ACTIONS(835), - [anon_sym_class] = ACTIONS(835), - [anon_sym_extends] = ACTIONS(835), - [anon_sym_implements] = ACTIONS(835), - [anon_sym_interface] = ACTIONS(835), - [anon_sym_typedef] = ACTIONS(835), - [anon_sym_function] = ACTIONS(835), - [anon_sym_var] = ACTIONS(835), - [aux_sym_integer_token1] = ACTIONS(835), - [aux_sym_integer_token2] = ACTIONS(833), - [aux_sym_float_token1] = ACTIONS(835), - [aux_sym_float_token2] = ACTIONS(833), - [anon_sym_true] = ACTIONS(835), - [anon_sym_false] = ACTIONS(835), - [aux_sym_string_token1] = ACTIONS(833), - [aux_sym_string_token3] = ACTIONS(833), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(835), - [anon_sym_catch] = ACTIONS(835), - [anon_sym_continue] = ACTIONS(835), - [anon_sym_do] = ACTIONS(835), - [anon_sym_enum] = ACTIONS(835), - [anon_sym_extern] = ACTIONS(835), - [anon_sym_for] = ACTIONS(835), - [anon_sym_inline] = ACTIONS(835), - [anon_sym_macro] = ACTIONS(835), - [anon_sym_operator] = ACTIONS(835), - [anon_sym_overload] = ACTIONS(835), - [anon_sym_override] = ACTIONS(835), - [anon_sym_private] = ACTIONS(835), - [anon_sym_public] = ACTIONS(835), - [anon_sym_return] = ACTIONS(835), - [anon_sym_static] = ACTIONS(835), - [anon_sym_try] = ACTIONS(835), - [anon_sym_untyped] = ACTIONS(835), - [anon_sym_while] = ACTIONS(835), - [sym__semicolon] = ACTIONS(833), + [167] = { + [ts_builtin_sym_end] = ACTIONS(824), + [sym_identifier] = ACTIONS(826), + [anon_sym_POUND] = ACTIONS(824), + [anon_sym_package] = ACTIONS(826), + [anon_sym_import] = ACTIONS(826), + [anon_sym_using] = ACTIONS(826), + [anon_sym_throw] = ACTIONS(826), + [anon_sym_LPAREN] = ACTIONS(824), + [anon_sym_switch] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(824), + [anon_sym_case] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(824), + [anon_sym_default] = ACTIONS(826), + [anon_sym_cast] = ACTIONS(826), + [anon_sym_DOLLARtype] = ACTIONS(824), + [anon_sym_in] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(824), + [anon_sym_this] = ACTIONS(826), + [anon_sym_AT] = ACTIONS(826), + [anon_sym_AT_COLON] = ACTIONS(824), + [anon_sym_if] = ACTIONS(826), + [anon_sym_else] = ACTIONS(826), + [anon_sym_new] = ACTIONS(826), + [sym__prefixUnaryOperator] = ACTIONS(826), + [sym__eitherUnaryOperator] = ACTIONS(824), + [anon_sym_null] = ACTIONS(826), + [anon_sym_dynamic] = ACTIONS(826), + [anon_sym_final] = ACTIONS(826), + [anon_sym_abstract] = ACTIONS(826), + [anon_sym_class] = ACTIONS(826), + [anon_sym_extends] = ACTIONS(826), + [anon_sym_implements] = ACTIONS(826), + [anon_sym_interface] = ACTIONS(826), + [anon_sym_typedef] = ACTIONS(826), + [anon_sym_function] = ACTIONS(826), + [anon_sym_var] = ACTIONS(826), + [aux_sym_integer_token1] = ACTIONS(826), + [aux_sym_integer_token2] = ACTIONS(824), + [aux_sym_float_token1] = ACTIONS(826), + [aux_sym_float_token2] = ACTIONS(824), + [anon_sym_true] = ACTIONS(826), + [anon_sym_false] = ACTIONS(826), + [aux_sym_string_token1] = ACTIONS(824), + [aux_sym_string_token3] = ACTIONS(824), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(826), + [anon_sym_catch] = ACTIONS(826), + [anon_sym_continue] = ACTIONS(826), + [anon_sym_do] = ACTIONS(826), + [anon_sym_enum] = ACTIONS(826), + [anon_sym_extern] = ACTIONS(826), + [anon_sym_for] = ACTIONS(826), + [anon_sym_inline] = ACTIONS(826), + [anon_sym_macro] = ACTIONS(826), + [anon_sym_operator] = ACTIONS(826), + [anon_sym_overload] = ACTIONS(826), + [anon_sym_override] = ACTIONS(826), + [anon_sym_private] = ACTIONS(826), + [anon_sym_public] = ACTIONS(826), + [anon_sym_return] = ACTIONS(826), + [anon_sym_static] = ACTIONS(826), + [anon_sym_try] = ACTIONS(826), + [anon_sym_untyped] = ACTIONS(826), + [anon_sym_while] = ACTIONS(826), + [sym__semicolon] = ACTIONS(824), }, - [150] = { - [sym_block] = STATE(315), + [168] = { + [ts_builtin_sym_end] = ACTIONS(640), + [sym_identifier] = ACTIONS(642), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_package] = ACTIONS(642), + [anon_sym_import] = ACTIONS(642), + [anon_sym_using] = ACTIONS(642), + [anon_sym_throw] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(640), + [anon_sym_switch] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(640), + [anon_sym_RBRACE] = ACTIONS(640), + [anon_sym_case] = ACTIONS(642), + [anon_sym_default] = ACTIONS(642), + [anon_sym_cast] = ACTIONS(642), + [anon_sym_DOLLARtype] = ACTIONS(640), + [anon_sym_in] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(640), + [anon_sym_this] = ACTIONS(642), + [anon_sym_AT] = ACTIONS(642), + [anon_sym_AT_COLON] = ACTIONS(640), + [anon_sym_if] = ACTIONS(642), + [anon_sym_else] = ACTIONS(642), + [anon_sym_elseif] = ACTIONS(640), + [anon_sym_new] = ACTIONS(642), + [sym__prefixUnaryOperator] = ACTIONS(642), + [sym__eitherUnaryOperator] = ACTIONS(640), + [anon_sym_null] = ACTIONS(642), + [anon_sym_dynamic] = ACTIONS(642), + [anon_sym_final] = ACTIONS(642), + [anon_sym_abstract] = ACTIONS(642), + [anon_sym_class] = ACTIONS(642), + [anon_sym_extends] = ACTIONS(642), + [anon_sym_implements] = ACTIONS(642), + [anon_sym_interface] = ACTIONS(642), + [anon_sym_typedef] = ACTIONS(642), + [anon_sym_function] = ACTIONS(642), + [anon_sym_var] = ACTIONS(642), + [aux_sym_integer_token1] = ACTIONS(642), + [aux_sym_integer_token2] = ACTIONS(640), + [aux_sym_float_token1] = ACTIONS(642), + [aux_sym_float_token2] = ACTIONS(640), + [anon_sym_true] = ACTIONS(642), + [anon_sym_false] = ACTIONS(642), + [aux_sym_string_token1] = ACTIONS(640), + [aux_sym_string_token3] = ACTIONS(640), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(642), + [anon_sym_catch] = ACTIONS(642), + [anon_sym_continue] = ACTIONS(642), + [anon_sym_do] = ACTIONS(642), + [anon_sym_enum] = ACTIONS(642), + [anon_sym_extern] = ACTIONS(642), + [anon_sym_for] = ACTIONS(642), + [anon_sym_inline] = ACTIONS(642), + [anon_sym_macro] = ACTIONS(642), + [anon_sym_operator] = ACTIONS(642), + [anon_sym_overload] = ACTIONS(642), + [anon_sym_override] = ACTIONS(642), + [anon_sym_private] = ACTIONS(642), + [anon_sym_public] = ACTIONS(642), + [anon_sym_return] = ACTIONS(642), + [anon_sym_static] = ACTIONS(642), + [anon_sym_try] = ACTIONS(642), + [anon_sym_untyped] = ACTIONS(642), + [anon_sym_while] = ACTIONS(642), + [sym__semicolon] = ACTIONS(640), + }, + [169] = { + [ts_builtin_sym_end] = ACTIONS(828), + [sym_identifier] = ACTIONS(830), + [anon_sym_POUND] = ACTIONS(828), + [anon_sym_package] = ACTIONS(830), + [anon_sym_import] = ACTIONS(830), + [anon_sym_using] = ACTIONS(830), + [anon_sym_throw] = ACTIONS(830), + [anon_sym_LPAREN] = ACTIONS(828), + [anon_sym_switch] = ACTIONS(830), + [anon_sym_LBRACE] = ACTIONS(828), + [anon_sym_RBRACE] = ACTIONS(828), + [anon_sym_case] = ACTIONS(830), + [anon_sym_default] = ACTIONS(830), + [anon_sym_cast] = ACTIONS(830), + [anon_sym_DOLLARtype] = ACTIONS(828), + [anon_sym_in] = ACTIONS(830), + [anon_sym_LBRACK] = ACTIONS(828), + [anon_sym_this] = ACTIONS(830), + [anon_sym_AT] = ACTIONS(830), + [anon_sym_AT_COLON] = ACTIONS(828), + [anon_sym_if] = ACTIONS(830), + [anon_sym_else] = ACTIONS(832), + [anon_sym_elseif] = ACTIONS(834), + [anon_sym_new] = ACTIONS(830), + [sym__prefixUnaryOperator] = ACTIONS(830), + [sym__eitherUnaryOperator] = ACTIONS(828), + [anon_sym_null] = ACTIONS(830), + [anon_sym_dynamic] = ACTIONS(830), + [anon_sym_final] = ACTIONS(830), + [anon_sym_abstract] = ACTIONS(830), + [anon_sym_class] = ACTIONS(830), + [anon_sym_extends] = ACTIONS(830), + [anon_sym_implements] = ACTIONS(830), + [anon_sym_interface] = ACTIONS(830), + [anon_sym_typedef] = ACTIONS(830), + [anon_sym_function] = ACTIONS(830), + [anon_sym_var] = ACTIONS(830), + [aux_sym_integer_token1] = ACTIONS(830), + [aux_sym_integer_token2] = ACTIONS(828), + [aux_sym_float_token1] = ACTIONS(830), + [aux_sym_float_token2] = ACTIONS(828), + [anon_sym_true] = ACTIONS(830), + [anon_sym_false] = ACTIONS(830), + [aux_sym_string_token1] = ACTIONS(828), + [aux_sym_string_token3] = ACTIONS(828), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(830), + [anon_sym_catch] = ACTIONS(830), + [anon_sym_continue] = ACTIONS(830), + [anon_sym_do] = ACTIONS(830), + [anon_sym_enum] = ACTIONS(830), + [anon_sym_extern] = ACTIONS(830), + [anon_sym_for] = ACTIONS(830), + [anon_sym_inline] = ACTIONS(830), + [anon_sym_macro] = ACTIONS(830), + [anon_sym_operator] = ACTIONS(830), + [anon_sym_overload] = ACTIONS(830), + [anon_sym_override] = ACTIONS(830), + [anon_sym_private] = ACTIONS(830), + [anon_sym_public] = ACTIONS(830), + [anon_sym_return] = ACTIONS(830), + [anon_sym_static] = ACTIONS(830), + [anon_sym_try] = ACTIONS(830), + [anon_sym_untyped] = ACTIONS(830), + [anon_sym_while] = ACTIONS(830), + [sym__semicolon] = ACTIONS(828), + }, + [170] = { + [ts_builtin_sym_end] = ACTIONS(836), + [sym_identifier] = ACTIONS(838), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_package] = ACTIONS(838), + [anon_sym_import] = ACTIONS(838), + [anon_sym_using] = ACTIONS(838), + [anon_sym_throw] = ACTIONS(838), + [anon_sym_LPAREN] = ACTIONS(836), + [anon_sym_switch] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(836), + [anon_sym_RBRACE] = ACTIONS(836), + [anon_sym_case] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(836), + [anon_sym_default] = ACTIONS(838), + [anon_sym_cast] = ACTIONS(838), + [anon_sym_DOLLARtype] = ACTIONS(836), + [anon_sym_in] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(836), + [anon_sym_this] = ACTIONS(838), + [anon_sym_AT] = ACTIONS(838), + [anon_sym_AT_COLON] = ACTIONS(836), + [anon_sym_if] = ACTIONS(838), + [anon_sym_else] = ACTIONS(838), + [anon_sym_new] = ACTIONS(838), + [sym__prefixUnaryOperator] = ACTIONS(838), + [sym__eitherUnaryOperator] = ACTIONS(836), + [anon_sym_null] = ACTIONS(838), + [anon_sym_dynamic] = ACTIONS(838), + [anon_sym_final] = ACTIONS(838), + [anon_sym_abstract] = ACTIONS(838), + [anon_sym_class] = ACTIONS(838), + [anon_sym_extends] = ACTIONS(838), + [anon_sym_implements] = ACTIONS(838), + [anon_sym_interface] = ACTIONS(838), + [anon_sym_typedef] = ACTIONS(838), + [anon_sym_function] = ACTIONS(838), + [anon_sym_var] = ACTIONS(838), + [aux_sym_integer_token1] = ACTIONS(838), + [aux_sym_integer_token2] = ACTIONS(836), + [aux_sym_float_token1] = ACTIONS(838), + [aux_sym_float_token2] = ACTIONS(836), + [anon_sym_true] = ACTIONS(838), + [anon_sym_false] = ACTIONS(838), + [aux_sym_string_token1] = ACTIONS(836), + [aux_sym_string_token3] = ACTIONS(836), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(838), + [anon_sym_catch] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(838), + [anon_sym_do] = ACTIONS(838), + [anon_sym_enum] = ACTIONS(838), + [anon_sym_extern] = ACTIONS(838), + [anon_sym_for] = ACTIONS(838), + [anon_sym_inline] = ACTIONS(838), + [anon_sym_macro] = ACTIONS(838), + [anon_sym_operator] = ACTIONS(838), + [anon_sym_overload] = ACTIONS(838), + [anon_sym_override] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_return] = ACTIONS(838), + [anon_sym_static] = ACTIONS(838), + [anon_sym_try] = ACTIONS(838), + [anon_sym_untyped] = ACTIONS(838), + [anon_sym_while] = ACTIONS(838), + [sym__semicolon] = ACTIONS(836), + }, + [171] = { [ts_builtin_sym_end] = ACTIONS(840), [sym_identifier] = ACTIONS(842), [anon_sym_POUND] = ACTIONS(840), @@ -22534,48 +20201,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(842), [anon_sym_LPAREN] = ACTIONS(840), [anon_sym_switch] = ACTIONS(842), - [anon_sym_LBRACE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(840), [anon_sym_RBRACE] = ACTIONS(840), [anon_sym_case] = ACTIONS(842), - [anon_sym_COLON] = ACTIONS(847), [anon_sym_default] = ACTIONS(842), [anon_sym_cast] = ACTIONS(842), [anon_sym_DOLLARtype] = ACTIONS(840), [anon_sym_in] = ACTIONS(842), [anon_sym_LBRACK] = ACTIONS(840), [anon_sym_this] = ACTIONS(842), + [anon_sym_DASH_GT] = ACTIONS(570), [anon_sym_AT] = ACTIONS(842), [anon_sym_AT_COLON] = ACTIONS(840), [anon_sym_if] = ACTIONS(842), [anon_sym_else] = ACTIONS(842), [anon_sym_new] = ACTIONS(842), - [anon_sym_TILDE] = ACTIONS(840), - [anon_sym_BANG] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_PLUS_PLUS] = ACTIONS(840), - [anon_sym_DASH_DASH] = ACTIONS(840), - [anon_sym_PERCENT] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(840), - [anon_sym_SLASH] = ACTIONS(842), - [anon_sym_PLUS] = ACTIONS(842), - [anon_sym_LT_LT] = ACTIONS(840), - [anon_sym_GT_GT] = ACTIONS(842), - [anon_sym_GT_GT_GT] = ACTIONS(840), - [anon_sym_AMP] = ACTIONS(842), - [anon_sym_PIPE] = ACTIONS(842), - [anon_sym_CARET] = ACTIONS(840), - [anon_sym_AMP_AMP] = ACTIONS(840), - [anon_sym_PIPE_PIPE] = ACTIONS(840), - [anon_sym_EQ_EQ] = ACTIONS(840), - [anon_sym_BANG_EQ] = ACTIONS(840), - [anon_sym_LT] = ACTIONS(842), - [anon_sym_LT_EQ] = ACTIONS(840), - [anon_sym_GT] = ACTIONS(842), - [anon_sym_GT_EQ] = ACTIONS(840), - [anon_sym_EQ_GT] = ACTIONS(840), - [anon_sym_QMARK_QMARK] = ACTIONS(840), - [anon_sym_EQ] = ACTIONS(842), - [sym__rangeOperator] = ACTIONS(840), + [sym__prefixUnaryOperator] = ACTIONS(842), + [sym__eitherUnaryOperator] = ACTIONS(840), [anon_sym_null] = ACTIONS(842), [anon_sym_dynamic] = ACTIONS(842), [anon_sym_final] = ACTIONS(842), @@ -22617,196 +20259,412 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(842), [sym__semicolon] = ACTIONS(840), }, - [151] = { - [sym_type_params] = STATE(116), - [ts_builtin_sym_end] = ACTIONS(849), - [sym_identifier] = ACTIONS(852), - [anon_sym_POUND] = ACTIONS(849), - [anon_sym_package] = ACTIONS(852), - [anon_sym_import] = ACTIONS(852), - [anon_sym_using] = ACTIONS(852), - [anon_sym_throw] = ACTIONS(852), - [anon_sym_LPAREN] = ACTIONS(849), - [anon_sym_switch] = ACTIONS(852), - [anon_sym_LBRACE] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_case] = ACTIONS(852), - [anon_sym_default] = ACTIONS(852), - [anon_sym_cast] = ACTIONS(852), - [anon_sym_DOLLARtype] = ACTIONS(849), - [anon_sym_in] = ACTIONS(852), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_this] = ACTIONS(852), - [anon_sym_DASH_GT] = ACTIONS(620), - [anon_sym_AT] = ACTIONS(852), - [anon_sym_AT_COLON] = ACTIONS(849), - [anon_sym_if] = ACTIONS(852), - [anon_sym_else] = ACTIONS(852), - [anon_sym_new] = ACTIONS(852), - [anon_sym_TILDE] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_DASH] = ACTIONS(852), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_PERCENT] = ACTIONS(849), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(852), - [anon_sym_LT_LT] = ACTIONS(849), - [anon_sym_GT_GT] = ACTIONS(852), - [anon_sym_GT_GT_GT] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(852), - [anon_sym_PIPE] = ACTIONS(852), - [anon_sym_CARET] = ACTIONS(849), - [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(855), - [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), - [sym__rangeOperator] = ACTIONS(849), - [anon_sym_null] = ACTIONS(852), - [anon_sym_dynamic] = ACTIONS(852), - [anon_sym_final] = ACTIONS(852), - [anon_sym_abstract] = ACTIONS(852), - [anon_sym_class] = ACTIONS(852), - [anon_sym_extends] = ACTIONS(852), - [anon_sym_implements] = ACTIONS(852), - [anon_sym_interface] = ACTIONS(852), - [anon_sym_typedef] = ACTIONS(852), - [anon_sym_function] = ACTIONS(852), - [anon_sym_var] = ACTIONS(852), - [aux_sym_integer_token1] = ACTIONS(852), - [aux_sym_integer_token2] = ACTIONS(849), - [aux_sym_float_token1] = ACTIONS(852), - [aux_sym_float_token2] = ACTIONS(849), - [anon_sym_true] = ACTIONS(852), - [anon_sym_false] = ACTIONS(852), - [aux_sym_string_token1] = ACTIONS(849), - [aux_sym_string_token3] = ACTIONS(849), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(852), - [anon_sym_catch] = ACTIONS(852), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_do] = ACTIONS(852), - [anon_sym_enum] = ACTIONS(852), - [anon_sym_extern] = ACTIONS(852), - [anon_sym_for] = ACTIONS(852), - [anon_sym_inline] = ACTIONS(852), - [anon_sym_macro] = ACTIONS(852), - [anon_sym_operator] = ACTIONS(852), - [anon_sym_overload] = ACTIONS(852), - [anon_sym_override] = ACTIONS(852), - [anon_sym_private] = ACTIONS(852), - [anon_sym_public] = ACTIONS(852), - [anon_sym_return] = ACTIONS(852), - [anon_sym_static] = ACTIONS(852), - [anon_sym_try] = ACTIONS(852), - [anon_sym_untyped] = ACTIONS(852), - [anon_sym_while] = ACTIONS(852), - [sym__semicolon] = ACTIONS(849), + [172] = { + [ts_builtin_sym_end] = ACTIONS(844), + [sym_identifier] = ACTIONS(846), + [anon_sym_POUND] = ACTIONS(844), + [anon_sym_package] = ACTIONS(846), + [anon_sym_import] = ACTIONS(846), + [anon_sym_using] = ACTIONS(846), + [anon_sym_throw] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(844), + [anon_sym_switch] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(844), + [anon_sym_RBRACE] = ACTIONS(844), + [anon_sym_case] = ACTIONS(846), + [anon_sym_default] = ACTIONS(846), + [anon_sym_cast] = ACTIONS(846), + [anon_sym_DOLLARtype] = ACTIONS(844), + [anon_sym_in] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(844), + [anon_sym_this] = ACTIONS(846), + [anon_sym_AT] = ACTIONS(846), + [anon_sym_AT_COLON] = ACTIONS(844), + [anon_sym_if] = ACTIONS(846), + [anon_sym_else] = ACTIONS(846), + [anon_sym_elseif] = ACTIONS(844), + [anon_sym_new] = ACTIONS(846), + [sym__prefixUnaryOperator] = ACTIONS(846), + [sym__eitherUnaryOperator] = ACTIONS(844), + [anon_sym_null] = ACTIONS(846), + [anon_sym_dynamic] = ACTIONS(846), + [anon_sym_final] = ACTIONS(846), + [anon_sym_abstract] = ACTIONS(846), + [anon_sym_class] = ACTIONS(846), + [anon_sym_extends] = ACTIONS(846), + [anon_sym_implements] = ACTIONS(846), + [anon_sym_interface] = ACTIONS(846), + [anon_sym_typedef] = ACTIONS(846), + [anon_sym_function] = ACTIONS(846), + [anon_sym_var] = ACTIONS(846), + [aux_sym_integer_token1] = ACTIONS(846), + [aux_sym_integer_token2] = ACTIONS(844), + [aux_sym_float_token1] = ACTIONS(846), + [aux_sym_float_token2] = ACTIONS(844), + [anon_sym_true] = ACTIONS(846), + [anon_sym_false] = ACTIONS(846), + [aux_sym_string_token1] = ACTIONS(844), + [aux_sym_string_token3] = ACTIONS(844), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(846), + [anon_sym_catch] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(846), + [anon_sym_do] = ACTIONS(846), + [anon_sym_enum] = ACTIONS(846), + [anon_sym_extern] = ACTIONS(846), + [anon_sym_for] = ACTIONS(846), + [anon_sym_inline] = ACTIONS(846), + [anon_sym_macro] = ACTIONS(846), + [anon_sym_operator] = ACTIONS(846), + [anon_sym_overload] = ACTIONS(846), + [anon_sym_override] = ACTIONS(846), + [anon_sym_private] = ACTIONS(846), + [anon_sym_public] = ACTIONS(846), + [anon_sym_return] = ACTIONS(846), + [anon_sym_static] = ACTIONS(846), + [anon_sym_try] = ACTIONS(846), + [anon_sym_untyped] = ACTIONS(846), + [anon_sym_while] = ACTIONS(846), + [sym__semicolon] = ACTIONS(844), }, - [152] = { - [sym_block] = STATE(318), - [ts_builtin_sym_end] = ACTIONS(859), - [sym_identifier] = ACTIONS(861), - [anon_sym_POUND] = ACTIONS(859), - [anon_sym_package] = ACTIONS(861), - [anon_sym_import] = ACTIONS(861), - [anon_sym_using] = ACTIONS(861), - [anon_sym_throw] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(859), - [anon_sym_switch] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(863), - [anon_sym_RBRACE] = ACTIONS(859), - [anon_sym_case] = ACTIONS(861), - [anon_sym_COLON] = ACTIONS(866), - [anon_sym_default] = ACTIONS(861), - [anon_sym_cast] = ACTIONS(861), - [anon_sym_DOLLARtype] = ACTIONS(859), - [anon_sym_in] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(859), - [anon_sym_this] = ACTIONS(861), - [anon_sym_AT] = ACTIONS(861), - [anon_sym_AT_COLON] = ACTIONS(859), - [anon_sym_if] = ACTIONS(861), - [anon_sym_else] = ACTIONS(861), - [anon_sym_new] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(859), - [anon_sym_BANG] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(859), - [anon_sym_DASH_DASH] = ACTIONS(859), - [anon_sym_PERCENT] = ACTIONS(859), - [anon_sym_STAR] = ACTIONS(859), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_LT_LT] = ACTIONS(859), - [anon_sym_GT_GT] = ACTIONS(861), - [anon_sym_GT_GT_GT] = ACTIONS(859), - [anon_sym_AMP] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(859), - [anon_sym_AMP_AMP] = ACTIONS(859), - [anon_sym_PIPE_PIPE] = ACTIONS(859), - [anon_sym_EQ_EQ] = ACTIONS(859), - [anon_sym_BANG_EQ] = ACTIONS(859), - [anon_sym_LT] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(859), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(859), - [anon_sym_EQ_GT] = ACTIONS(859), - [anon_sym_QMARK_QMARK] = ACTIONS(859), - [anon_sym_EQ] = ACTIONS(861), - [sym__rangeOperator] = ACTIONS(859), - [anon_sym_null] = ACTIONS(861), - [anon_sym_dynamic] = ACTIONS(861), - [anon_sym_final] = ACTIONS(861), - [anon_sym_abstract] = ACTIONS(861), - [anon_sym_class] = ACTIONS(861), - [anon_sym_extends] = ACTIONS(861), - [anon_sym_implements] = ACTIONS(861), - [anon_sym_interface] = ACTIONS(861), - [anon_sym_typedef] = ACTIONS(861), - [anon_sym_function] = ACTIONS(861), - [anon_sym_var] = ACTIONS(861), - [aux_sym_integer_token1] = ACTIONS(861), - [aux_sym_integer_token2] = ACTIONS(859), - [aux_sym_float_token1] = ACTIONS(861), - [aux_sym_float_token2] = ACTIONS(859), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym_string_token1] = ACTIONS(859), - [aux_sym_string_token3] = ACTIONS(859), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(861), - [anon_sym_catch] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_enum] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_inline] = ACTIONS(861), - [anon_sym_macro] = ACTIONS(861), - [anon_sym_operator] = ACTIONS(861), - [anon_sym_overload] = ACTIONS(861), - [anon_sym_override] = ACTIONS(861), - [anon_sym_private] = ACTIONS(861), - [anon_sym_public] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_static] = ACTIONS(861), - [anon_sym_try] = ACTIONS(861), - [anon_sym_untyped] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [sym__semicolon] = ACTIONS(859), + [173] = { + [ts_builtin_sym_end] = ACTIONS(848), + [sym_identifier] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(848), + [anon_sym_package] = ACTIONS(850), + [anon_sym_import] = ACTIONS(850), + [anon_sym_using] = ACTIONS(850), + [anon_sym_throw] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(848), + [anon_sym_RBRACE] = ACTIONS(848), + [anon_sym_case] = ACTIONS(850), + [anon_sym_COLON] = ACTIONS(848), + [anon_sym_default] = ACTIONS(850), + [anon_sym_cast] = ACTIONS(850), + [anon_sym_DOLLARtype] = ACTIONS(848), + [anon_sym_in] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_this] = ACTIONS(850), + [anon_sym_AT] = ACTIONS(850), + [anon_sym_AT_COLON] = ACTIONS(848), + [anon_sym_if] = ACTIONS(850), + [anon_sym_else] = ACTIONS(850), + [anon_sym_new] = ACTIONS(850), + [sym__prefixUnaryOperator] = ACTIONS(850), + [sym__eitherUnaryOperator] = ACTIONS(848), + [anon_sym_null] = ACTIONS(850), + [anon_sym_dynamic] = ACTIONS(850), + [anon_sym_final] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(850), + [anon_sym_class] = ACTIONS(850), + [anon_sym_extends] = ACTIONS(850), + [anon_sym_implements] = ACTIONS(850), + [anon_sym_interface] = ACTIONS(850), + [anon_sym_typedef] = ACTIONS(850), + [anon_sym_function] = ACTIONS(850), + [anon_sym_var] = ACTIONS(850), + [aux_sym_integer_token1] = ACTIONS(850), + [aux_sym_integer_token2] = ACTIONS(848), + [aux_sym_float_token1] = ACTIONS(850), + [aux_sym_float_token2] = ACTIONS(848), + [anon_sym_true] = ACTIONS(850), + [anon_sym_false] = ACTIONS(850), + [aux_sym_string_token1] = ACTIONS(848), + [aux_sym_string_token3] = ACTIONS(848), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(850), + [anon_sym_catch] = ACTIONS(850), + [anon_sym_continue] = ACTIONS(850), + [anon_sym_do] = ACTIONS(850), + [anon_sym_enum] = ACTIONS(850), + [anon_sym_extern] = ACTIONS(850), + [anon_sym_for] = ACTIONS(850), + [anon_sym_inline] = ACTIONS(850), + [anon_sym_macro] = ACTIONS(850), + [anon_sym_operator] = ACTIONS(850), + [anon_sym_overload] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_public] = ACTIONS(850), + [anon_sym_return] = ACTIONS(850), + [anon_sym_static] = ACTIONS(850), + [anon_sym_try] = ACTIONS(850), + [anon_sym_untyped] = ACTIONS(850), + [anon_sym_while] = ACTIONS(850), + [sym__semicolon] = ACTIONS(848), }, - [153] = { - [sym_block] = STATE(319), + [174] = { + [ts_builtin_sym_end] = ACTIONS(852), + [sym_identifier] = ACTIONS(854), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_package] = ACTIONS(854), + [anon_sym_import] = ACTIONS(854), + [anon_sym_using] = ACTIONS(854), + [anon_sym_throw] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(852), + [anon_sym_switch] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(852), + [anon_sym_RBRACE] = ACTIONS(852), + [anon_sym_case] = ACTIONS(854), + [anon_sym_default] = ACTIONS(854), + [anon_sym_cast] = ACTIONS(854), + [anon_sym_DOLLARtype] = ACTIONS(852), + [anon_sym_in] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_this] = ACTIONS(854), + [anon_sym_DASH_GT] = ACTIONS(570), + [anon_sym_AT] = ACTIONS(854), + [anon_sym_AT_COLON] = ACTIONS(852), + [anon_sym_if] = ACTIONS(854), + [anon_sym_else] = ACTIONS(854), + [anon_sym_new] = ACTIONS(854), + [sym__prefixUnaryOperator] = ACTIONS(854), + [sym__eitherUnaryOperator] = ACTIONS(852), + [anon_sym_null] = ACTIONS(854), + [anon_sym_dynamic] = ACTIONS(854), + [anon_sym_final] = ACTIONS(854), + [anon_sym_abstract] = ACTIONS(854), + [anon_sym_class] = ACTIONS(854), + [anon_sym_extends] = ACTIONS(854), + [anon_sym_implements] = ACTIONS(854), + [anon_sym_interface] = ACTIONS(854), + [anon_sym_typedef] = ACTIONS(854), + [anon_sym_function] = ACTIONS(854), + [anon_sym_var] = ACTIONS(854), + [aux_sym_integer_token1] = ACTIONS(854), + [aux_sym_integer_token2] = ACTIONS(852), + [aux_sym_float_token1] = ACTIONS(854), + [aux_sym_float_token2] = ACTIONS(852), + [anon_sym_true] = ACTIONS(854), + [anon_sym_false] = ACTIONS(854), + [aux_sym_string_token1] = ACTIONS(852), + [aux_sym_string_token3] = ACTIONS(852), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(854), + [anon_sym_catch] = ACTIONS(854), + [anon_sym_continue] = ACTIONS(854), + [anon_sym_do] = ACTIONS(854), + [anon_sym_enum] = ACTIONS(854), + [anon_sym_extern] = ACTIONS(854), + [anon_sym_for] = ACTIONS(854), + [anon_sym_inline] = ACTIONS(854), + [anon_sym_macro] = ACTIONS(854), + [anon_sym_operator] = ACTIONS(854), + [anon_sym_overload] = ACTIONS(854), + [anon_sym_override] = ACTIONS(854), + [anon_sym_private] = ACTIONS(854), + [anon_sym_public] = ACTIONS(854), + [anon_sym_return] = ACTIONS(854), + [anon_sym_static] = ACTIONS(854), + [anon_sym_try] = ACTIONS(854), + [anon_sym_untyped] = ACTIONS(854), + [anon_sym_while] = ACTIONS(854), + [sym__semicolon] = ACTIONS(852), + }, + [175] = { + [ts_builtin_sym_end] = ACTIONS(856), + [sym_identifier] = ACTIONS(858), + [anon_sym_POUND] = ACTIONS(856), + [anon_sym_package] = ACTIONS(858), + [anon_sym_import] = ACTIONS(858), + [anon_sym_using] = ACTIONS(858), + [anon_sym_throw] = ACTIONS(858), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_switch] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(856), + [anon_sym_RBRACE] = ACTIONS(856), + [anon_sym_case] = ACTIONS(858), + [anon_sym_default] = ACTIONS(858), + [anon_sym_cast] = ACTIONS(858), + [anon_sym_DOLLARtype] = ACTIONS(856), + [anon_sym_in] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(856), + [anon_sym_this] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(858), + [anon_sym_AT_COLON] = ACTIONS(856), + [anon_sym_if] = ACTIONS(858), + [anon_sym_else] = ACTIONS(858), + [anon_sym_new] = ACTIONS(858), + [sym__prefixUnaryOperator] = ACTIONS(858), + [sym__eitherUnaryOperator] = ACTIONS(856), + [anon_sym_null] = ACTIONS(858), + [anon_sym_dynamic] = ACTIONS(858), + [anon_sym_final] = ACTIONS(858), + [anon_sym_abstract] = ACTIONS(858), + [anon_sym_class] = ACTIONS(858), + [anon_sym_extends] = ACTIONS(858), + [anon_sym_implements] = ACTIONS(858), + [anon_sym_interface] = ACTIONS(858), + [anon_sym_typedef] = ACTIONS(858), + [anon_sym_function] = ACTIONS(858), + [anon_sym_var] = ACTIONS(858), + [aux_sym_integer_token1] = ACTIONS(858), + [aux_sym_integer_token2] = ACTIONS(856), + [aux_sym_float_token1] = ACTIONS(858), + [aux_sym_float_token2] = ACTIONS(856), + [anon_sym_true] = ACTIONS(858), + [anon_sym_false] = ACTIONS(858), + [aux_sym_string_token1] = ACTIONS(856), + [aux_sym_string_token3] = ACTIONS(856), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(858), + [anon_sym_catch] = ACTIONS(858), + [anon_sym_continue] = ACTIONS(858), + [anon_sym_do] = ACTIONS(858), + [anon_sym_enum] = ACTIONS(858), + [anon_sym_extern] = ACTIONS(858), + [anon_sym_for] = ACTIONS(858), + [anon_sym_inline] = ACTIONS(858), + [anon_sym_macro] = ACTIONS(858), + [anon_sym_operator] = ACTIONS(858), + [anon_sym_overload] = ACTIONS(858), + [anon_sym_override] = ACTIONS(858), + [anon_sym_private] = ACTIONS(858), + [anon_sym_public] = ACTIONS(858), + [anon_sym_return] = ACTIONS(858), + [anon_sym_static] = ACTIONS(858), + [anon_sym_try] = ACTIONS(858), + [anon_sym_untyped] = ACTIONS(858), + [anon_sym_while] = ACTIONS(858), + [sym__semicolon] = ACTIONS(856), + }, + [176] = { + [ts_builtin_sym_end] = ACTIONS(860), + [sym_identifier] = ACTIONS(862), + [anon_sym_POUND] = ACTIONS(860), + [anon_sym_package] = ACTIONS(862), + [anon_sym_import] = ACTIONS(862), + [anon_sym_using] = ACTIONS(862), + [anon_sym_throw] = ACTIONS(862), + [anon_sym_LPAREN] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_LBRACE] = ACTIONS(860), + [anon_sym_RBRACE] = ACTIONS(860), + [anon_sym_case] = ACTIONS(862), + [anon_sym_default] = ACTIONS(862), + [anon_sym_cast] = ACTIONS(862), + [anon_sym_DOLLARtype] = ACTIONS(860), + [anon_sym_in] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_this] = ACTIONS(862), + [anon_sym_AT] = ACTIONS(862), + [anon_sym_AT_COLON] = ACTIONS(860), + [anon_sym_if] = ACTIONS(862), + [anon_sym_else] = ACTIONS(862), + [anon_sym_new] = ACTIONS(862), + [sym__prefixUnaryOperator] = ACTIONS(862), + [sym__eitherUnaryOperator] = ACTIONS(860), + [anon_sym_null] = ACTIONS(862), + [anon_sym_dynamic] = ACTIONS(862), + [anon_sym_final] = ACTIONS(862), + [anon_sym_abstract] = ACTIONS(862), + [anon_sym_class] = ACTIONS(862), + [anon_sym_extends] = ACTIONS(862), + [anon_sym_implements] = ACTIONS(862), + [anon_sym_interface] = ACTIONS(862), + [anon_sym_typedef] = ACTIONS(862), + [anon_sym_function] = ACTIONS(862), + [anon_sym_var] = ACTIONS(862), + [aux_sym_integer_token1] = ACTIONS(862), + [aux_sym_integer_token2] = ACTIONS(860), + [aux_sym_float_token1] = ACTIONS(862), + [aux_sym_float_token2] = ACTIONS(860), + [anon_sym_true] = ACTIONS(862), + [anon_sym_false] = ACTIONS(862), + [aux_sym_string_token1] = ACTIONS(860), + [aux_sym_string_token3] = ACTIONS(860), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(862), + [anon_sym_catch] = ACTIONS(862), + [anon_sym_continue] = ACTIONS(862), + [anon_sym_do] = ACTIONS(862), + [anon_sym_enum] = ACTIONS(862), + [anon_sym_extern] = ACTIONS(862), + [anon_sym_for] = ACTIONS(862), + [anon_sym_inline] = ACTIONS(862), + [anon_sym_macro] = ACTIONS(862), + [anon_sym_operator] = ACTIONS(862), + [anon_sym_overload] = ACTIONS(862), + [anon_sym_override] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_return] = ACTIONS(862), + [anon_sym_static] = ACTIONS(862), + [anon_sym_try] = ACTIONS(862), + [anon_sym_untyped] = ACTIONS(862), + [anon_sym_while] = ACTIONS(862), + [sym__semicolon] = ACTIONS(860), + }, + [177] = { + [ts_builtin_sym_end] = ACTIONS(864), + [sym_identifier] = ACTIONS(866), + [anon_sym_POUND] = ACTIONS(864), + [anon_sym_package] = ACTIONS(866), + [anon_sym_import] = ACTIONS(866), + [anon_sym_using] = ACTIONS(866), + [anon_sym_throw] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(864), + [anon_sym_switch] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(864), + [anon_sym_RBRACE] = ACTIONS(864), + [anon_sym_case] = ACTIONS(866), + [anon_sym_default] = ACTIONS(866), + [anon_sym_cast] = ACTIONS(866), + [anon_sym_DOLLARtype] = ACTIONS(864), + [anon_sym_in] = ACTIONS(866), + [anon_sym_LBRACK] = ACTIONS(864), + [anon_sym_this] = ACTIONS(866), + [anon_sym_AT] = ACTIONS(866), + [anon_sym_AT_COLON] = ACTIONS(864), + [anon_sym_if] = ACTIONS(866), + [anon_sym_else] = ACTIONS(866), + [anon_sym_new] = ACTIONS(866), + [sym__prefixUnaryOperator] = ACTIONS(866), + [sym__eitherUnaryOperator] = ACTIONS(864), + [anon_sym_null] = ACTIONS(866), + [anon_sym_dynamic] = ACTIONS(866), + [anon_sym_final] = ACTIONS(866), + [anon_sym_abstract] = ACTIONS(866), + [anon_sym_class] = ACTIONS(866), + [anon_sym_extends] = ACTIONS(866), + [anon_sym_implements] = ACTIONS(866), + [anon_sym_interface] = ACTIONS(866), + [anon_sym_typedef] = ACTIONS(866), + [anon_sym_function] = ACTIONS(866), + [anon_sym_var] = ACTIONS(866), + [aux_sym_integer_token1] = ACTIONS(866), + [aux_sym_integer_token2] = ACTIONS(864), + [aux_sym_float_token1] = ACTIONS(866), + [aux_sym_float_token2] = ACTIONS(864), + [anon_sym_true] = ACTIONS(866), + [anon_sym_false] = ACTIONS(866), + [aux_sym_string_token1] = ACTIONS(864), + [aux_sym_string_token3] = ACTIONS(864), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(866), + [anon_sym_catch] = ACTIONS(866), + [anon_sym_continue] = ACTIONS(866), + [anon_sym_do] = ACTIONS(866), + [anon_sym_enum] = ACTIONS(866), + [anon_sym_extern] = ACTIONS(866), + [anon_sym_for] = ACTIONS(866), + [anon_sym_inline] = ACTIONS(866), + [anon_sym_macro] = ACTIONS(866), + [anon_sym_operator] = ACTIONS(866), + [anon_sym_overload] = ACTIONS(866), + [anon_sym_override] = ACTIONS(866), + [anon_sym_private] = ACTIONS(866), + [anon_sym_public] = ACTIONS(866), + [anon_sym_return] = ACTIONS(866), + [anon_sym_static] = ACTIONS(866), + [anon_sym_try] = ACTIONS(866), + [anon_sym_untyped] = ACTIONS(866), + [anon_sym_while] = ACTIONS(866), + [sym__semicolon] = ACTIONS(864), + }, + [178] = { [ts_builtin_sym_end] = ACTIONS(868), [sym_identifier] = ACTIONS(870), [anon_sym_POUND] = ACTIONS(868), @@ -22816,7 +20674,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(870), [anon_sym_LPAREN] = ACTIONS(868), [anon_sym_switch] = ACTIONS(870), - [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(868), [anon_sym_RBRACE] = ACTIONS(868), [anon_sym_case] = ACTIONS(870), [anon_sym_default] = ACTIONS(870), @@ -22825,39 +20683,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(870), [anon_sym_LBRACK] = ACTIONS(868), [anon_sym_this] = ACTIONS(870), - [anon_sym_DASH_GT] = ACTIONS(671), [anon_sym_AT] = ACTIONS(870), [anon_sym_AT_COLON] = ACTIONS(868), [anon_sym_if] = ACTIONS(870), [anon_sym_else] = ACTIONS(870), [anon_sym_new] = ACTIONS(870), - [anon_sym_TILDE] = ACTIONS(868), - [anon_sym_BANG] = ACTIONS(870), - [anon_sym_DASH] = ACTIONS(870), - [anon_sym_PLUS_PLUS] = ACTIONS(868), - [anon_sym_DASH_DASH] = ACTIONS(868), - [anon_sym_PERCENT] = ACTIONS(868), - [anon_sym_STAR] = ACTIONS(868), - [anon_sym_SLASH] = ACTIONS(870), - [anon_sym_PLUS] = ACTIONS(870), - [anon_sym_LT_LT] = ACTIONS(868), - [anon_sym_GT_GT] = ACTIONS(870), - [anon_sym_GT_GT_GT] = ACTIONS(868), - [anon_sym_AMP] = ACTIONS(870), - [anon_sym_PIPE] = ACTIONS(870), - [anon_sym_CARET] = ACTIONS(868), - [anon_sym_AMP_AMP] = ACTIONS(868), - [anon_sym_PIPE_PIPE] = ACTIONS(868), - [anon_sym_EQ_EQ] = ACTIONS(868), - [anon_sym_BANG_EQ] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(870), - [anon_sym_LT_EQ] = ACTIONS(868), - [anon_sym_GT] = ACTIONS(870), - [anon_sym_GT_EQ] = ACTIONS(868), - [anon_sym_EQ_GT] = ACTIONS(868), - [anon_sym_QMARK_QMARK] = ACTIONS(868), - [anon_sym_EQ] = ACTIONS(870), - [sym__rangeOperator] = ACTIONS(868), + [sym__prefixUnaryOperator] = ACTIONS(870), + [sym__eitherUnaryOperator] = ACTIONS(868), [anon_sym_null] = ACTIONS(870), [anon_sym_dynamic] = ACTIONS(870), [anon_sym_final] = ACTIONS(870), @@ -22899,102 +20731,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(870), [sym__semicolon] = ACTIONS(868), }, - [154] = { - [sym_block] = STATE(170), - [ts_builtin_sym_end] = ACTIONS(875), - [sym_identifier] = ACTIONS(877), - [anon_sym_POUND] = ACTIONS(875), - [anon_sym_package] = ACTIONS(877), - [anon_sym_import] = ACTIONS(877), - [anon_sym_using] = ACTIONS(877), - [anon_sym_throw] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(875), - [anon_sym_switch] = ACTIONS(877), - [anon_sym_LBRACE] = ACTIONS(879), - [anon_sym_RBRACE] = ACTIONS(875), - [anon_sym_case] = ACTIONS(877), - [anon_sym_COLON] = ACTIONS(882), - [anon_sym_default] = ACTIONS(877), - [anon_sym_cast] = ACTIONS(877), - [anon_sym_DOLLARtype] = ACTIONS(875), - [anon_sym_in] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(875), - [anon_sym_this] = ACTIONS(877), - [anon_sym_AT] = ACTIONS(877), - [anon_sym_AT_COLON] = ACTIONS(875), - [anon_sym_if] = ACTIONS(877), - [anon_sym_else] = ACTIONS(877), - [anon_sym_new] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(875), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(875), - [anon_sym_DASH_DASH] = ACTIONS(875), - [anon_sym_PERCENT] = ACTIONS(875), - [anon_sym_STAR] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(877), - [anon_sym_PLUS] = ACTIONS(877), - [anon_sym_LT_LT] = ACTIONS(875), - [anon_sym_GT_GT] = ACTIONS(877), - [anon_sym_GT_GT_GT] = ACTIONS(875), - [anon_sym_AMP] = ACTIONS(877), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_CARET] = ACTIONS(875), - [anon_sym_AMP_AMP] = ACTIONS(875), - [anon_sym_PIPE_PIPE] = ACTIONS(875), - [anon_sym_EQ_EQ] = ACTIONS(875), - [anon_sym_BANG_EQ] = ACTIONS(875), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_LT_EQ] = ACTIONS(875), - [anon_sym_GT] = ACTIONS(877), - [anon_sym_GT_EQ] = ACTIONS(875), - [anon_sym_EQ_GT] = ACTIONS(875), - [anon_sym_QMARK_QMARK] = ACTIONS(875), - [anon_sym_EQ] = ACTIONS(877), - [sym__rangeOperator] = ACTIONS(875), - [anon_sym_null] = ACTIONS(877), - [anon_sym_dynamic] = ACTIONS(877), - [anon_sym_final] = ACTIONS(877), - [anon_sym_abstract] = ACTIONS(877), - [anon_sym_class] = ACTIONS(877), - [anon_sym_extends] = ACTIONS(877), - [anon_sym_implements] = ACTIONS(877), - [anon_sym_interface] = ACTIONS(877), - [anon_sym_typedef] = ACTIONS(877), - [anon_sym_function] = ACTIONS(877), - [anon_sym_var] = ACTIONS(877), - [aux_sym_integer_token1] = ACTIONS(877), - [aux_sym_integer_token2] = ACTIONS(875), - [aux_sym_float_token1] = ACTIONS(877), - [aux_sym_float_token2] = ACTIONS(875), - [anon_sym_true] = ACTIONS(877), - [anon_sym_false] = ACTIONS(877), - [aux_sym_string_token1] = ACTIONS(875), - [aux_sym_string_token3] = ACTIONS(875), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(877), - [anon_sym_catch] = ACTIONS(877), - [anon_sym_continue] = ACTIONS(877), - [anon_sym_do] = ACTIONS(877), - [anon_sym_enum] = ACTIONS(877), - [anon_sym_extern] = ACTIONS(877), - [anon_sym_for] = ACTIONS(877), - [anon_sym_inline] = ACTIONS(877), - [anon_sym_macro] = ACTIONS(877), - [anon_sym_operator] = ACTIONS(877), - [anon_sym_overload] = ACTIONS(877), - [anon_sym_override] = ACTIONS(877), - [anon_sym_private] = ACTIONS(877), - [anon_sym_public] = ACTIONS(877), - [anon_sym_return] = ACTIONS(877), - [anon_sym_static] = ACTIONS(877), - [anon_sym_try] = ACTIONS(877), - [anon_sym_untyped] = ACTIONS(877), - [anon_sym_while] = ACTIONS(877), - [sym__semicolon] = ACTIONS(875), + [179] = { + [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_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_RBRACE] = ACTIONS(872), + [anon_sym_case] = ACTIONS(874), + [anon_sym_default] = ACTIONS(874), + [anon_sym_cast] = ACTIONS(874), + [anon_sym_DOLLARtype] = ACTIONS(872), + [anon_sym_in] = 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_if] = ACTIONS(874), + [anon_sym_else] = ACTIONS(874), + [anon_sym_new] = ACTIONS(874), + [sym__prefixUnaryOperator] = ACTIONS(874), + [sym__eitherUnaryOperator] = ACTIONS(872), + [anon_sym_null] = ACTIONS(874), + [anon_sym_dynamic] = ACTIONS(874), + [anon_sym_final] = ACTIONS(874), + [anon_sym_abstract] = ACTIONS(874), + [anon_sym_class] = ACTIONS(874), + [anon_sym_extends] = ACTIONS(874), + [anon_sym_implements] = ACTIONS(874), + [anon_sym_interface] = 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), + [anon_sym_break] = ACTIONS(874), + [anon_sym_catch] = ACTIONS(874), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_do] = ACTIONS(874), + [anon_sym_enum] = ACTIONS(874), + [anon_sym_extern] = ACTIONS(874), + [anon_sym_for] = ACTIONS(874), + [anon_sym_inline] = ACTIONS(874), + [anon_sym_macro] = ACTIONS(874), + [anon_sym_operator] = ACTIONS(874), + [anon_sym_overload] = ACTIONS(874), + [anon_sym_override] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_return] = ACTIONS(874), + [anon_sym_static] = ACTIONS(874), + [anon_sym_try] = ACTIONS(874), + [anon_sym_untyped] = ACTIONS(874), + [anon_sym_while] = ACTIONS(874), + [sym__semicolon] = ACTIONS(872), }, - [155] = { - [sym_block] = STATE(317), + [180] = { + [ts_builtin_sym_end] = ACTIONS(876), + [sym_identifier] = ACTIONS(878), + [anon_sym_POUND] = ACTIONS(876), + [anon_sym_package] = ACTIONS(878), + [anon_sym_import] = ACTIONS(878), + [anon_sym_using] = ACTIONS(878), + [anon_sym_throw] = ACTIONS(878), + [anon_sym_LPAREN] = ACTIONS(876), + [anon_sym_switch] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(876), + [anon_sym_RBRACE] = ACTIONS(876), + [anon_sym_case] = ACTIONS(878), + [anon_sym_default] = ACTIONS(878), + [anon_sym_cast] = ACTIONS(878), + [anon_sym_DOLLARtype] = ACTIONS(876), + [anon_sym_in] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_this] = ACTIONS(878), + [anon_sym_AT] = ACTIONS(878), + [anon_sym_AT_COLON] = ACTIONS(876), + [anon_sym_if] = ACTIONS(878), + [anon_sym_else] = ACTIONS(878), + [anon_sym_new] = ACTIONS(878), + [sym__prefixUnaryOperator] = ACTIONS(878), + [sym__eitherUnaryOperator] = ACTIONS(876), + [anon_sym_null] = ACTIONS(878), + [anon_sym_dynamic] = ACTIONS(878), + [anon_sym_final] = ACTIONS(878), + [anon_sym_abstract] = ACTIONS(878), + [anon_sym_class] = ACTIONS(878), + [anon_sym_extends] = ACTIONS(878), + [anon_sym_implements] = ACTIONS(878), + [anon_sym_interface] = ACTIONS(878), + [anon_sym_typedef] = ACTIONS(878), + [anon_sym_function] = ACTIONS(878), + [anon_sym_var] = ACTIONS(878), + [aux_sym_integer_token1] = ACTIONS(878), + [aux_sym_integer_token2] = ACTIONS(876), + [aux_sym_float_token1] = ACTIONS(878), + [aux_sym_float_token2] = ACTIONS(876), + [anon_sym_true] = ACTIONS(878), + [anon_sym_false] = ACTIONS(878), + [aux_sym_string_token1] = ACTIONS(876), + [aux_sym_string_token3] = ACTIONS(876), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(878), + [anon_sym_catch] = ACTIONS(878), + [anon_sym_continue] = ACTIONS(878), + [anon_sym_do] = ACTIONS(878), + [anon_sym_enum] = ACTIONS(878), + [anon_sym_extern] = ACTIONS(878), + [anon_sym_for] = ACTIONS(878), + [anon_sym_inline] = ACTIONS(878), + [anon_sym_macro] = ACTIONS(878), + [anon_sym_operator] = ACTIONS(878), + [anon_sym_overload] = ACTIONS(878), + [anon_sym_override] = ACTIONS(878), + [anon_sym_private] = ACTIONS(878), + [anon_sym_public] = ACTIONS(878), + [anon_sym_return] = ACTIONS(878), + [anon_sym_static] = ACTIONS(878), + [anon_sym_try] = ACTIONS(878), + [anon_sym_untyped] = ACTIONS(878), + [anon_sym_while] = ACTIONS(878), + [sym__semicolon] = ACTIONS(876), + }, + [181] = { + [ts_builtin_sym_end] = ACTIONS(880), + [sym_identifier] = ACTIONS(882), + [anon_sym_POUND] = ACTIONS(880), + [anon_sym_package] = ACTIONS(882), + [anon_sym_import] = ACTIONS(882), + [anon_sym_using] = ACTIONS(882), + [anon_sym_throw] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_switch] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(880), + [anon_sym_RBRACE] = ACTIONS(880), + [anon_sym_case] = ACTIONS(882), + [anon_sym_default] = ACTIONS(882), + [anon_sym_cast] = ACTIONS(882), + [anon_sym_DOLLARtype] = ACTIONS(880), + [anon_sym_in] = ACTIONS(882), + [anon_sym_LBRACK] = ACTIONS(880), + [anon_sym_this] = ACTIONS(882), + [anon_sym_AT] = ACTIONS(882), + [anon_sym_AT_COLON] = ACTIONS(880), + [anon_sym_if] = ACTIONS(882), + [anon_sym_else] = ACTIONS(882), + [anon_sym_new] = ACTIONS(882), + [sym__prefixUnaryOperator] = ACTIONS(882), + [sym__eitherUnaryOperator] = ACTIONS(880), + [anon_sym_null] = ACTIONS(882), + [anon_sym_dynamic] = ACTIONS(882), + [anon_sym_final] = ACTIONS(882), + [anon_sym_abstract] = ACTIONS(882), + [anon_sym_class] = ACTIONS(882), + [anon_sym_extends] = ACTIONS(882), + [anon_sym_implements] = ACTIONS(882), + [anon_sym_interface] = ACTIONS(882), + [anon_sym_typedef] = ACTIONS(882), + [anon_sym_function] = ACTIONS(882), + [anon_sym_var] = ACTIONS(882), + [aux_sym_integer_token1] = ACTIONS(882), + [aux_sym_integer_token2] = ACTIONS(880), + [aux_sym_float_token1] = ACTIONS(882), + [aux_sym_float_token2] = ACTIONS(880), + [anon_sym_true] = ACTIONS(882), + [anon_sym_false] = ACTIONS(882), + [aux_sym_string_token1] = ACTIONS(880), + [aux_sym_string_token3] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(882), + [anon_sym_catch] = ACTIONS(882), + [anon_sym_continue] = ACTIONS(882), + [anon_sym_do] = ACTIONS(882), + [anon_sym_enum] = ACTIONS(882), + [anon_sym_extern] = ACTIONS(882), + [anon_sym_for] = ACTIONS(882), + [anon_sym_inline] = ACTIONS(882), + [anon_sym_macro] = ACTIONS(882), + [anon_sym_operator] = ACTIONS(882), + [anon_sym_overload] = ACTIONS(882), + [anon_sym_override] = ACTIONS(882), + [anon_sym_private] = ACTIONS(882), + [anon_sym_public] = ACTIONS(882), + [anon_sym_return] = ACTIONS(882), + [anon_sym_static] = ACTIONS(882), + [anon_sym_try] = ACTIONS(882), + [anon_sym_untyped] = ACTIONS(882), + [anon_sym_while] = ACTIONS(882), + [sym__semicolon] = ACTIONS(880), + }, + [182] = { [ts_builtin_sym_end] = ACTIONS(884), [sym_identifier] = ACTIONS(886), [anon_sym_POUND] = ACTIONS(884), @@ -23004,7 +20942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(886), [anon_sym_LPAREN] = ACTIONS(884), [anon_sym_switch] = ACTIONS(886), - [anon_sym_LBRACE] = ACTIONS(888), + [anon_sym_LBRACE] = ACTIONS(884), [anon_sym_RBRACE] = ACTIONS(884), [anon_sym_case] = ACTIONS(886), [anon_sym_default] = ACTIONS(886), @@ -23013,39 +20951,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(886), [anon_sym_LBRACK] = ACTIONS(884), [anon_sym_this] = ACTIONS(886), - [anon_sym_DASH_GT] = ACTIONS(671), [anon_sym_AT] = ACTIONS(886), [anon_sym_AT_COLON] = ACTIONS(884), [anon_sym_if] = ACTIONS(886), [anon_sym_else] = ACTIONS(886), [anon_sym_new] = ACTIONS(886), - [anon_sym_TILDE] = ACTIONS(884), - [anon_sym_BANG] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(884), - [anon_sym_DASH_DASH] = ACTIONS(884), - [anon_sym_PERCENT] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_SLASH] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(886), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(886), - [anon_sym_GT_GT_GT] = ACTIONS(884), - [anon_sym_AMP] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(886), - [anon_sym_CARET] = ACTIONS(884), - [anon_sym_AMP_AMP] = ACTIONS(884), - [anon_sym_PIPE_PIPE] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(884), - [anon_sym_BANG_EQ] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(884), - [anon_sym_EQ_GT] = ACTIONS(884), - [anon_sym_QMARK_QMARK] = ACTIONS(884), - [anon_sym_EQ] = ACTIONS(886), - [sym__rangeOperator] = ACTIONS(884), + [sym__prefixUnaryOperator] = ACTIONS(886), + [sym__eitherUnaryOperator] = ACTIONS(884), [anon_sym_null] = ACTIONS(886), [anon_sym_dynamic] = ACTIONS(886), [anon_sym_final] = ACTIONS(886), @@ -23087,102 +20999,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(886), [sym__semicolon] = ACTIONS(884), }, - [156] = { - [sym_block] = STATE(279), - [ts_builtin_sym_end] = ACTIONS(891), - [sym_identifier] = ACTIONS(893), - [anon_sym_POUND] = ACTIONS(891), - [anon_sym_package] = ACTIONS(893), - [anon_sym_import] = ACTIONS(893), - [anon_sym_using] = ACTIONS(893), - [anon_sym_throw] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(891), - [anon_sym_switch] = ACTIONS(893), - [anon_sym_LBRACE] = ACTIONS(895), - [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym_case] = ACTIONS(893), - [anon_sym_COLON] = ACTIONS(898), - [anon_sym_default] = ACTIONS(893), - [anon_sym_cast] = ACTIONS(893), - [anon_sym_DOLLARtype] = ACTIONS(891), - [anon_sym_in] = ACTIONS(893), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_this] = ACTIONS(893), - [anon_sym_AT] = ACTIONS(893), - [anon_sym_AT_COLON] = ACTIONS(891), - [anon_sym_if] = ACTIONS(893), - [anon_sym_else] = ACTIONS(893), - [anon_sym_new] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(893), - [anon_sym_DASH] = ACTIONS(893), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_PERCENT] = ACTIONS(891), - [anon_sym_STAR] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(893), - [anon_sym_PLUS] = ACTIONS(893), - [anon_sym_LT_LT] = ACTIONS(891), - [anon_sym_GT_GT] = ACTIONS(893), - [anon_sym_GT_GT_GT] = ACTIONS(891), - [anon_sym_AMP] = ACTIONS(893), - [anon_sym_PIPE] = ACTIONS(893), - [anon_sym_CARET] = ACTIONS(891), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_EQ_EQ] = ACTIONS(891), - [anon_sym_BANG_EQ] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(893), - [anon_sym_LT_EQ] = ACTIONS(891), - [anon_sym_GT] = ACTIONS(893), - [anon_sym_GT_EQ] = ACTIONS(891), - [anon_sym_EQ_GT] = ACTIONS(891), - [anon_sym_QMARK_QMARK] = ACTIONS(891), - [anon_sym_EQ] = ACTIONS(893), - [sym__rangeOperator] = ACTIONS(891), - [anon_sym_null] = ACTIONS(893), - [anon_sym_dynamic] = ACTIONS(893), - [anon_sym_final] = ACTIONS(893), - [anon_sym_abstract] = ACTIONS(893), - [anon_sym_class] = ACTIONS(893), - [anon_sym_extends] = ACTIONS(893), - [anon_sym_implements] = ACTIONS(893), - [anon_sym_interface] = ACTIONS(893), - [anon_sym_typedef] = ACTIONS(893), - [anon_sym_function] = ACTIONS(893), - [anon_sym_var] = ACTIONS(893), - [aux_sym_integer_token1] = ACTIONS(893), - [aux_sym_integer_token2] = ACTIONS(891), - [aux_sym_float_token1] = ACTIONS(893), - [aux_sym_float_token2] = ACTIONS(891), - [anon_sym_true] = ACTIONS(893), - [anon_sym_false] = ACTIONS(893), - [aux_sym_string_token1] = ACTIONS(891), - [aux_sym_string_token3] = ACTIONS(891), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(893), - [anon_sym_catch] = ACTIONS(893), - [anon_sym_continue] = ACTIONS(893), - [anon_sym_do] = ACTIONS(893), - [anon_sym_enum] = ACTIONS(893), - [anon_sym_extern] = ACTIONS(893), - [anon_sym_for] = ACTIONS(893), - [anon_sym_inline] = ACTIONS(893), - [anon_sym_macro] = ACTIONS(893), - [anon_sym_operator] = ACTIONS(893), - [anon_sym_overload] = ACTIONS(893), - [anon_sym_override] = ACTIONS(893), - [anon_sym_private] = ACTIONS(893), - [anon_sym_public] = ACTIONS(893), - [anon_sym_return] = ACTIONS(893), - [anon_sym_static] = ACTIONS(893), - [anon_sym_try] = ACTIONS(893), - [anon_sym_untyped] = ACTIONS(893), - [anon_sym_while] = ACTIONS(893), - [sym__semicolon] = ACTIONS(891), + [183] = { + [ts_builtin_sym_end] = ACTIONS(888), + [sym_identifier] = ACTIONS(890), + [anon_sym_POUND] = ACTIONS(888), + [anon_sym_package] = ACTIONS(890), + [anon_sym_import] = ACTIONS(890), + [anon_sym_using] = ACTIONS(890), + [anon_sym_throw] = ACTIONS(890), + [anon_sym_LPAREN] = ACTIONS(888), + [anon_sym_switch] = ACTIONS(890), + [anon_sym_LBRACE] = ACTIONS(888), + [anon_sym_RBRACE] = ACTIONS(888), + [anon_sym_case] = ACTIONS(890), + [anon_sym_default] = ACTIONS(890), + [anon_sym_cast] = ACTIONS(890), + [anon_sym_DOLLARtype] = ACTIONS(888), + [anon_sym_in] = ACTIONS(890), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_this] = ACTIONS(890), + [anon_sym_AT] = ACTIONS(890), + [anon_sym_AT_COLON] = ACTIONS(888), + [anon_sym_if] = ACTIONS(890), + [anon_sym_else] = ACTIONS(890), + [anon_sym_new] = ACTIONS(890), + [sym__prefixUnaryOperator] = ACTIONS(890), + [sym__eitherUnaryOperator] = ACTIONS(888), + [anon_sym_null] = ACTIONS(890), + [anon_sym_dynamic] = ACTIONS(890), + [anon_sym_final] = ACTIONS(890), + [anon_sym_abstract] = ACTIONS(890), + [anon_sym_class] = ACTIONS(890), + [anon_sym_extends] = ACTIONS(890), + [anon_sym_implements] = ACTIONS(890), + [anon_sym_interface] = ACTIONS(890), + [anon_sym_typedef] = ACTIONS(890), + [anon_sym_function] = ACTIONS(890), + [anon_sym_var] = ACTIONS(890), + [aux_sym_integer_token1] = ACTIONS(890), + [aux_sym_integer_token2] = ACTIONS(888), + [aux_sym_float_token1] = ACTIONS(890), + [aux_sym_float_token2] = ACTIONS(888), + [anon_sym_true] = ACTIONS(890), + [anon_sym_false] = ACTIONS(890), + [aux_sym_string_token1] = ACTIONS(888), + [aux_sym_string_token3] = ACTIONS(888), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(890), + [anon_sym_catch] = ACTIONS(890), + [anon_sym_continue] = ACTIONS(890), + [anon_sym_do] = ACTIONS(890), + [anon_sym_enum] = ACTIONS(890), + [anon_sym_extern] = ACTIONS(890), + [anon_sym_for] = ACTIONS(890), + [anon_sym_inline] = ACTIONS(890), + [anon_sym_macro] = ACTIONS(890), + [anon_sym_operator] = ACTIONS(890), + [anon_sym_overload] = ACTIONS(890), + [anon_sym_override] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_return] = ACTIONS(890), + [anon_sym_static] = ACTIONS(890), + [anon_sym_try] = ACTIONS(890), + [anon_sym_untyped] = ACTIONS(890), + [anon_sym_while] = ACTIONS(890), + [sym__semicolon] = ACTIONS(888), }, - [157] = { - [sym_block] = STATE(238), + [184] = { + [ts_builtin_sym_end] = ACTIONS(892), + [sym_identifier] = ACTIONS(894), + [anon_sym_POUND] = ACTIONS(892), + [anon_sym_package] = ACTIONS(894), + [anon_sym_import] = ACTIONS(894), + [anon_sym_using] = ACTIONS(894), + [anon_sym_throw] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(892), + [anon_sym_switch] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_RBRACE] = ACTIONS(892), + [anon_sym_case] = ACTIONS(894), + [anon_sym_default] = ACTIONS(894), + [anon_sym_cast] = ACTIONS(894), + [anon_sym_DOLLARtype] = ACTIONS(892), + [anon_sym_in] = ACTIONS(894), + [anon_sym_LBRACK] = ACTIONS(892), + [anon_sym_this] = ACTIONS(894), + [anon_sym_AT] = ACTIONS(894), + [anon_sym_AT_COLON] = ACTIONS(892), + [anon_sym_if] = ACTIONS(894), + [anon_sym_else] = ACTIONS(894), + [anon_sym_new] = ACTIONS(894), + [sym__prefixUnaryOperator] = ACTIONS(894), + [sym__eitherUnaryOperator] = ACTIONS(892), + [anon_sym_null] = ACTIONS(894), + [anon_sym_dynamic] = ACTIONS(894), + [anon_sym_final] = ACTIONS(894), + [anon_sym_abstract] = ACTIONS(894), + [anon_sym_class] = ACTIONS(894), + [anon_sym_extends] = ACTIONS(894), + [anon_sym_implements] = ACTIONS(894), + [anon_sym_interface] = ACTIONS(894), + [anon_sym_typedef] = ACTIONS(894), + [anon_sym_function] = ACTIONS(894), + [anon_sym_var] = ACTIONS(894), + [aux_sym_integer_token1] = ACTIONS(894), + [aux_sym_integer_token2] = ACTIONS(892), + [aux_sym_float_token1] = ACTIONS(894), + [aux_sym_float_token2] = ACTIONS(892), + [anon_sym_true] = ACTIONS(894), + [anon_sym_false] = ACTIONS(894), + [aux_sym_string_token1] = ACTIONS(892), + [aux_sym_string_token3] = ACTIONS(892), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(894), + [anon_sym_catch] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_do] = ACTIONS(894), + [anon_sym_enum] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_inline] = ACTIONS(894), + [anon_sym_macro] = ACTIONS(894), + [anon_sym_operator] = ACTIONS(894), + [anon_sym_overload] = ACTIONS(894), + [anon_sym_override] = ACTIONS(894), + [anon_sym_private] = ACTIONS(894), + [anon_sym_public] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_static] = ACTIONS(894), + [anon_sym_try] = ACTIONS(894), + [anon_sym_untyped] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [sym__semicolon] = ACTIONS(892), + }, + [185] = { + [ts_builtin_sym_end] = ACTIONS(896), + [sym_identifier] = ACTIONS(898), + [anon_sym_POUND] = ACTIONS(896), + [anon_sym_package] = ACTIONS(898), + [anon_sym_import] = ACTIONS(898), + [anon_sym_using] = ACTIONS(898), + [anon_sym_throw] = ACTIONS(898), + [anon_sym_LPAREN] = ACTIONS(896), + [anon_sym_switch] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(896), + [anon_sym_RBRACE] = ACTIONS(896), + [anon_sym_case] = ACTIONS(898), + [anon_sym_default] = ACTIONS(898), + [anon_sym_cast] = ACTIONS(898), + [anon_sym_DOLLARtype] = ACTIONS(896), + [anon_sym_in] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(896), + [anon_sym_this] = ACTIONS(898), + [anon_sym_AT] = ACTIONS(898), + [anon_sym_AT_COLON] = ACTIONS(896), + [anon_sym_if] = ACTIONS(898), + [anon_sym_else] = ACTIONS(898), + [anon_sym_new] = ACTIONS(898), + [sym__prefixUnaryOperator] = ACTIONS(898), + [sym__eitherUnaryOperator] = ACTIONS(896), + [anon_sym_null] = ACTIONS(898), + [anon_sym_dynamic] = ACTIONS(898), + [anon_sym_final] = ACTIONS(898), + [anon_sym_abstract] = ACTIONS(898), + [anon_sym_class] = ACTIONS(898), + [anon_sym_extends] = ACTIONS(898), + [anon_sym_implements] = ACTIONS(898), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_typedef] = ACTIONS(898), + [anon_sym_function] = ACTIONS(898), + [anon_sym_var] = ACTIONS(898), + [aux_sym_integer_token1] = ACTIONS(898), + [aux_sym_integer_token2] = ACTIONS(896), + [aux_sym_float_token1] = ACTIONS(898), + [aux_sym_float_token2] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [aux_sym_string_token1] = ACTIONS(896), + [aux_sym_string_token3] = ACTIONS(896), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(898), + [anon_sym_catch] = ACTIONS(898), + [anon_sym_continue] = ACTIONS(898), + [anon_sym_do] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(898), + [anon_sym_extern] = ACTIONS(898), + [anon_sym_for] = ACTIONS(898), + [anon_sym_inline] = ACTIONS(898), + [anon_sym_macro] = ACTIONS(898), + [anon_sym_operator] = ACTIONS(898), + [anon_sym_overload] = ACTIONS(898), + [anon_sym_override] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_return] = ACTIONS(898), + [anon_sym_static] = ACTIONS(898), + [anon_sym_try] = ACTIONS(898), + [anon_sym_untyped] = ACTIONS(898), + [anon_sym_while] = ACTIONS(898), + [sym__semicolon] = ACTIONS(896), + }, + [186] = { [ts_builtin_sym_end] = ACTIONS(900), [sym_identifier] = ACTIONS(902), [anon_sym_POUND] = ACTIONS(900), @@ -23192,10 +21210,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(902), [anon_sym_LPAREN] = ACTIONS(900), [anon_sym_switch] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(904), + [anon_sym_LBRACE] = ACTIONS(900), [anon_sym_RBRACE] = ACTIONS(900), [anon_sym_case] = ACTIONS(902), - [anon_sym_COLON] = ACTIONS(907), [anon_sym_default] = ACTIONS(902), [anon_sym_cast] = ACTIONS(902), [anon_sym_DOLLARtype] = ACTIONS(900), @@ -23207,33 +21224,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(902), [anon_sym_else] = ACTIONS(902), [anon_sym_new] = ACTIONS(902), - [anon_sym_TILDE] = ACTIONS(900), - [anon_sym_BANG] = ACTIONS(902), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_PLUS_PLUS] = ACTIONS(900), - [anon_sym_DASH_DASH] = ACTIONS(900), - [anon_sym_PERCENT] = ACTIONS(900), - [anon_sym_STAR] = ACTIONS(900), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_PLUS] = ACTIONS(902), - [anon_sym_LT_LT] = ACTIONS(900), - [anon_sym_GT_GT] = ACTIONS(902), - [anon_sym_GT_GT_GT] = ACTIONS(900), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(900), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE_PIPE] = ACTIONS(900), - [anon_sym_EQ_EQ] = ACTIONS(900), - [anon_sym_BANG_EQ] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(902), - [anon_sym_LT_EQ] = ACTIONS(900), - [anon_sym_GT] = ACTIONS(902), - [anon_sym_GT_EQ] = ACTIONS(900), - [anon_sym_EQ_GT] = ACTIONS(900), - [anon_sym_QMARK_QMARK] = ACTIONS(900), - [anon_sym_EQ] = ACTIONS(902), - [sym__rangeOperator] = ACTIONS(900), + [sym__prefixUnaryOperator] = ACTIONS(902), + [sym__eitherUnaryOperator] = ACTIONS(900), [anon_sym_null] = ACTIONS(902), [anon_sym_dynamic] = ACTIONS(902), [anon_sym_final] = ACTIONS(902), @@ -23275,1951 +21267,1883 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(902), [sym__semicolon] = ACTIONS(900), }, - [158] = { - [sym_block] = STATE(235), - [ts_builtin_sym_end] = ACTIONS(909), - [sym_identifier] = ACTIONS(911), - [anon_sym_POUND] = ACTIONS(909), - [anon_sym_package] = ACTIONS(911), - [anon_sym_import] = ACTIONS(911), - [anon_sym_using] = ACTIONS(911), - [anon_sym_throw] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_switch] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_case] = ACTIONS(911), - [anon_sym_COLON] = ACTIONS(916), - [anon_sym_default] = ACTIONS(911), - [anon_sym_cast] = ACTIONS(911), - [anon_sym_DOLLARtype] = ACTIONS(909), - [anon_sym_in] = ACTIONS(911), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_this] = ACTIONS(911), - [anon_sym_AT] = ACTIONS(911), - [anon_sym_AT_COLON] = ACTIONS(909), - [anon_sym_if] = ACTIONS(911), - [anon_sym_else] = ACTIONS(911), - [anon_sym_new] = ACTIONS(911), - [anon_sym_TILDE] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(909), - [anon_sym_DASH_DASH] = ACTIONS(909), - [anon_sym_PERCENT] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_LT_LT] = ACTIONS(909), - [anon_sym_GT_GT] = ACTIONS(911), - [anon_sym_GT_GT_GT] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(911), - [anon_sym_CARET] = ACTIONS(909), - [anon_sym_AMP_AMP] = ACTIONS(909), - [anon_sym_PIPE_PIPE] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_EQ_GT] = ACTIONS(909), - [anon_sym_QMARK_QMARK] = ACTIONS(909), - [anon_sym_EQ] = ACTIONS(911), - [sym__rangeOperator] = ACTIONS(909), - [anon_sym_null] = ACTIONS(911), - [anon_sym_dynamic] = ACTIONS(911), - [anon_sym_final] = ACTIONS(911), - [anon_sym_abstract] = ACTIONS(911), - [anon_sym_class] = ACTIONS(911), - [anon_sym_extends] = ACTIONS(911), - [anon_sym_implements] = ACTIONS(911), - [anon_sym_interface] = ACTIONS(911), - [anon_sym_typedef] = ACTIONS(911), - [anon_sym_function] = ACTIONS(911), - [anon_sym_var] = ACTIONS(911), - [aux_sym_integer_token1] = ACTIONS(911), - [aux_sym_integer_token2] = ACTIONS(909), - [aux_sym_float_token1] = ACTIONS(911), - [aux_sym_float_token2] = ACTIONS(909), - [anon_sym_true] = ACTIONS(911), - [anon_sym_false] = ACTIONS(911), - [aux_sym_string_token1] = ACTIONS(909), - [aux_sym_string_token3] = ACTIONS(909), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(911), - [anon_sym_catch] = ACTIONS(911), - [anon_sym_continue] = ACTIONS(911), - [anon_sym_do] = ACTIONS(911), - [anon_sym_enum] = ACTIONS(911), - [anon_sym_extern] = ACTIONS(911), - [anon_sym_for] = ACTIONS(911), - [anon_sym_inline] = ACTIONS(911), - [anon_sym_macro] = ACTIONS(911), - [anon_sym_operator] = ACTIONS(911), - [anon_sym_overload] = ACTIONS(911), - [anon_sym_override] = ACTIONS(911), - [anon_sym_private] = ACTIONS(911), - [anon_sym_public] = ACTIONS(911), - [anon_sym_return] = ACTIONS(911), - [anon_sym_static] = ACTIONS(911), - [anon_sym_try] = ACTIONS(911), - [anon_sym_untyped] = ACTIONS(911), - [anon_sym_while] = ACTIONS(911), - [sym__semicolon] = ACTIONS(909), + [187] = { + [ts_builtin_sym_end] = ACTIONS(904), + [sym_identifier] = ACTIONS(906), + [anon_sym_POUND] = ACTIONS(904), + [anon_sym_package] = ACTIONS(906), + [anon_sym_import] = ACTIONS(906), + [anon_sym_using] = ACTIONS(906), + [anon_sym_throw] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_switch] = ACTIONS(906), + [anon_sym_LBRACE] = ACTIONS(904), + [anon_sym_RBRACE] = ACTIONS(904), + [anon_sym_case] = ACTIONS(906), + [anon_sym_default] = ACTIONS(906), + [anon_sym_cast] = ACTIONS(906), + [anon_sym_DOLLARtype] = ACTIONS(904), + [anon_sym_in] = ACTIONS(906), + [anon_sym_LBRACK] = ACTIONS(904), + [anon_sym_this] = ACTIONS(906), + [anon_sym_AT] = ACTIONS(906), + [anon_sym_AT_COLON] = ACTIONS(904), + [anon_sym_if] = ACTIONS(906), + [anon_sym_else] = ACTIONS(906), + [anon_sym_new] = ACTIONS(906), + [sym__prefixUnaryOperator] = ACTIONS(906), + [sym__eitherUnaryOperator] = ACTIONS(904), + [anon_sym_null] = ACTIONS(906), + [anon_sym_dynamic] = ACTIONS(906), + [anon_sym_final] = ACTIONS(906), + [anon_sym_abstract] = ACTIONS(906), + [anon_sym_class] = ACTIONS(906), + [anon_sym_extends] = ACTIONS(906), + [anon_sym_implements] = ACTIONS(906), + [anon_sym_interface] = ACTIONS(906), + [anon_sym_typedef] = ACTIONS(906), + [anon_sym_function] = ACTIONS(906), + [anon_sym_var] = ACTIONS(906), + [aux_sym_integer_token1] = ACTIONS(906), + [aux_sym_integer_token2] = ACTIONS(904), + [aux_sym_float_token1] = ACTIONS(906), + [aux_sym_float_token2] = ACTIONS(904), + [anon_sym_true] = ACTIONS(906), + [anon_sym_false] = ACTIONS(906), + [aux_sym_string_token1] = ACTIONS(904), + [aux_sym_string_token3] = ACTIONS(904), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(906), + [anon_sym_catch] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(906), + [anon_sym_do] = ACTIONS(906), + [anon_sym_enum] = ACTIONS(906), + [anon_sym_extern] = ACTIONS(906), + [anon_sym_for] = ACTIONS(906), + [anon_sym_inline] = ACTIONS(906), + [anon_sym_macro] = ACTIONS(906), + [anon_sym_operator] = ACTIONS(906), + [anon_sym_overload] = ACTIONS(906), + [anon_sym_override] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_return] = ACTIONS(906), + [anon_sym_static] = ACTIONS(906), + [anon_sym_try] = ACTIONS(906), + [anon_sym_untyped] = ACTIONS(906), + [anon_sym_while] = ACTIONS(906), + [sym__semicolon] = ACTIONS(904), }, - [159] = { - [ts_builtin_sym_end] = ACTIONS(918), - [sym_identifier] = ACTIONS(920), - [anon_sym_POUND] = ACTIONS(918), - [anon_sym_package] = ACTIONS(920), - [anon_sym_import] = ACTIONS(920), - [anon_sym_using] = ACTIONS(920), - [anon_sym_throw] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_switch] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(918), - [anon_sym_RBRACE] = ACTIONS(918), - [anon_sym_case] = ACTIONS(920), - [anon_sym_default] = ACTIONS(920), - [anon_sym_cast] = ACTIONS(920), - [anon_sym_DOLLARtype] = ACTIONS(918), - [anon_sym_in] = ACTIONS(920), - [anon_sym_LBRACK] = ACTIONS(918), - [anon_sym_this] = ACTIONS(920), - [anon_sym_DASH_GT] = ACTIONS(671), - [anon_sym_AT] = ACTIONS(920), - [anon_sym_AT_COLON] = ACTIONS(918), - [anon_sym_if] = ACTIONS(920), - [anon_sym_else] = ACTIONS(920), - [anon_sym_new] = ACTIONS(920), - [anon_sym_TILDE] = ACTIONS(918), - [anon_sym_BANG] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), - [anon_sym_PERCENT] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(918), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_LT_LT] = ACTIONS(918), - [anon_sym_GT_GT] = ACTIONS(920), - [anon_sym_GT_GT_GT] = ACTIONS(918), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_CARET] = ACTIONS(918), - [anon_sym_AMP_AMP] = ACTIONS(918), - [anon_sym_PIPE_PIPE] = ACTIONS(918), - [anon_sym_EQ_EQ] = ACTIONS(918), - [anon_sym_BANG_EQ] = ACTIONS(918), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_LT_EQ] = ACTIONS(918), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_GT_EQ] = ACTIONS(918), - [anon_sym_EQ_GT] = ACTIONS(918), - [anon_sym_QMARK_QMARK] = ACTIONS(918), - [anon_sym_EQ] = ACTIONS(920), - [sym__rangeOperator] = ACTIONS(918), - [anon_sym_null] = ACTIONS(920), - [anon_sym_dynamic] = ACTIONS(920), - [anon_sym_final] = ACTIONS(920), - [anon_sym_abstract] = ACTIONS(920), - [anon_sym_class] = ACTIONS(920), - [anon_sym_extends] = ACTIONS(920), - [anon_sym_implements] = ACTIONS(920), - [anon_sym_interface] = ACTIONS(920), - [anon_sym_typedef] = ACTIONS(920), - [anon_sym_function] = ACTIONS(920), - [anon_sym_var] = ACTIONS(920), - [aux_sym_integer_token1] = ACTIONS(920), - [aux_sym_integer_token2] = ACTIONS(918), - [aux_sym_float_token1] = ACTIONS(920), - [aux_sym_float_token2] = ACTIONS(918), - [anon_sym_true] = ACTIONS(920), - [anon_sym_false] = ACTIONS(920), - [aux_sym_string_token1] = ACTIONS(918), - [aux_sym_string_token3] = ACTIONS(918), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(920), - [anon_sym_catch] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_enum] = ACTIONS(920), - [anon_sym_extern] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_inline] = ACTIONS(920), - [anon_sym_macro] = ACTIONS(920), - [anon_sym_operator] = ACTIONS(920), - [anon_sym_overload] = ACTIONS(920), - [anon_sym_override] = ACTIONS(920), - [anon_sym_private] = ACTIONS(920), - [anon_sym_public] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_static] = ACTIONS(920), - [anon_sym_try] = ACTIONS(920), - [anon_sym_untyped] = ACTIONS(920), - [anon_sym_while] = ACTIONS(920), - [sym__semicolon] = ACTIONS(918), + [188] = { + [ts_builtin_sym_end] = ACTIONS(908), + [sym_identifier] = ACTIONS(910), + [anon_sym_POUND] = ACTIONS(908), + [anon_sym_package] = ACTIONS(910), + [anon_sym_import] = ACTIONS(910), + [anon_sym_using] = ACTIONS(910), + [anon_sym_throw] = ACTIONS(910), + [anon_sym_LPAREN] = ACTIONS(908), + [anon_sym_switch] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_RBRACE] = ACTIONS(908), + [anon_sym_case] = ACTIONS(910), + [anon_sym_default] = ACTIONS(910), + [anon_sym_cast] = ACTIONS(910), + [anon_sym_DOLLARtype] = ACTIONS(908), + [anon_sym_in] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(908), + [anon_sym_this] = ACTIONS(910), + [anon_sym_AT] = ACTIONS(910), + [anon_sym_AT_COLON] = ACTIONS(908), + [anon_sym_if] = ACTIONS(910), + [anon_sym_else] = ACTIONS(910), + [anon_sym_new] = ACTIONS(910), + [sym__prefixUnaryOperator] = ACTIONS(910), + [sym__eitherUnaryOperator] = ACTIONS(908), + [anon_sym_null] = ACTIONS(910), + [anon_sym_dynamic] = ACTIONS(910), + [anon_sym_final] = ACTIONS(910), + [anon_sym_abstract] = ACTIONS(910), + [anon_sym_class] = ACTIONS(910), + [anon_sym_extends] = ACTIONS(910), + [anon_sym_implements] = ACTIONS(910), + [anon_sym_interface] = ACTIONS(910), + [anon_sym_typedef] = ACTIONS(910), + [anon_sym_function] = ACTIONS(910), + [anon_sym_var] = ACTIONS(910), + [aux_sym_integer_token1] = ACTIONS(910), + [aux_sym_integer_token2] = ACTIONS(908), + [aux_sym_float_token1] = ACTIONS(910), + [aux_sym_float_token2] = ACTIONS(908), + [anon_sym_true] = ACTIONS(910), + [anon_sym_false] = ACTIONS(910), + [aux_sym_string_token1] = ACTIONS(908), + [aux_sym_string_token3] = ACTIONS(908), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(910), + [anon_sym_catch] = ACTIONS(910), + [anon_sym_continue] = ACTIONS(910), + [anon_sym_do] = ACTIONS(910), + [anon_sym_enum] = ACTIONS(910), + [anon_sym_extern] = ACTIONS(910), + [anon_sym_for] = ACTIONS(910), + [anon_sym_inline] = ACTIONS(910), + [anon_sym_macro] = ACTIONS(910), + [anon_sym_operator] = ACTIONS(910), + [anon_sym_overload] = ACTIONS(910), + [anon_sym_override] = ACTIONS(910), + [anon_sym_private] = ACTIONS(910), + [anon_sym_public] = ACTIONS(910), + [anon_sym_return] = ACTIONS(910), + [anon_sym_static] = ACTIONS(910), + [anon_sym_try] = ACTIONS(910), + [anon_sym_untyped] = ACTIONS(910), + [anon_sym_while] = ACTIONS(910), + [sym__semicolon] = ACTIONS(908), }, - [160] = { - [ts_builtin_sym_end] = ACTIONS(922), - [sym_identifier] = ACTIONS(924), - [anon_sym_POUND] = ACTIONS(922), - [anon_sym_package] = ACTIONS(924), - [anon_sym_import] = ACTIONS(924), - [anon_sym_using] = ACTIONS(924), - [anon_sym_throw] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(922), - [anon_sym_switch] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(922), - [anon_sym_RBRACE] = ACTIONS(922), - [anon_sym_case] = ACTIONS(924), - [anon_sym_COLON] = ACTIONS(922), - [anon_sym_default] = ACTIONS(924), - [anon_sym_cast] = ACTIONS(924), - [anon_sym_DOLLARtype] = ACTIONS(922), - [anon_sym_in] = ACTIONS(924), - [anon_sym_LBRACK] = ACTIONS(922), - [anon_sym_this] = ACTIONS(924), - [anon_sym_AT] = ACTIONS(924), - [anon_sym_AT_COLON] = ACTIONS(922), - [anon_sym_if] = ACTIONS(924), - [anon_sym_else] = ACTIONS(924), - [anon_sym_new] = ACTIONS(924), - [anon_sym_TILDE] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_PLUS_PLUS] = ACTIONS(922), - [anon_sym_DASH_DASH] = ACTIONS(922), - [anon_sym_PERCENT] = ACTIONS(922), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_SLASH] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_LT_LT] = ACTIONS(922), - [anon_sym_GT_GT] = ACTIONS(924), - [anon_sym_GT_GT_GT] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_PIPE] = ACTIONS(924), - [anon_sym_CARET] = ACTIONS(922), - [anon_sym_AMP_AMP] = ACTIONS(922), - [anon_sym_PIPE_PIPE] = ACTIONS(922), - [anon_sym_EQ_EQ] = ACTIONS(922), - [anon_sym_BANG_EQ] = ACTIONS(922), - [anon_sym_LT] = ACTIONS(924), - [anon_sym_LT_EQ] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_GT_EQ] = ACTIONS(922), - [anon_sym_EQ_GT] = ACTIONS(922), - [anon_sym_QMARK_QMARK] = ACTIONS(922), - [anon_sym_EQ] = ACTIONS(924), - [sym__rangeOperator] = ACTIONS(922), - [anon_sym_null] = ACTIONS(924), - [anon_sym_dynamic] = ACTIONS(924), - [anon_sym_final] = ACTIONS(924), - [anon_sym_abstract] = ACTIONS(924), - [anon_sym_class] = ACTIONS(924), - [anon_sym_extends] = ACTIONS(924), - [anon_sym_implements] = ACTIONS(924), - [anon_sym_interface] = ACTIONS(924), - [anon_sym_typedef] = ACTIONS(924), - [anon_sym_function] = ACTIONS(924), - [anon_sym_var] = ACTIONS(924), - [aux_sym_integer_token1] = ACTIONS(924), - [aux_sym_integer_token2] = ACTIONS(922), - [aux_sym_float_token1] = ACTIONS(924), - [aux_sym_float_token2] = ACTIONS(922), - [anon_sym_true] = ACTIONS(924), - [anon_sym_false] = ACTIONS(924), - [aux_sym_string_token1] = ACTIONS(922), - [aux_sym_string_token3] = ACTIONS(922), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(924), - [anon_sym_catch] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_do] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_inline] = ACTIONS(924), - [anon_sym_macro] = ACTIONS(924), - [anon_sym_operator] = ACTIONS(924), - [anon_sym_overload] = ACTIONS(924), - [anon_sym_override] = ACTIONS(924), - [anon_sym_private] = ACTIONS(924), - [anon_sym_public] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_static] = ACTIONS(924), - [anon_sym_try] = ACTIONS(924), - [anon_sym_untyped] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [sym__semicolon] = ACTIONS(922), + [189] = { + [ts_builtin_sym_end] = ACTIONS(912), + [sym_identifier] = ACTIONS(914), + [anon_sym_POUND] = ACTIONS(912), + [anon_sym_package] = ACTIONS(914), + [anon_sym_import] = ACTIONS(914), + [anon_sym_using] = ACTIONS(914), + [anon_sym_throw] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(912), + [anon_sym_RBRACE] = ACTIONS(912), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_cast] = ACTIONS(914), + [anon_sym_DOLLARtype] = ACTIONS(912), + [anon_sym_in] = ACTIONS(914), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_this] = ACTIONS(914), + [anon_sym_AT] = ACTIONS(914), + [anon_sym_AT_COLON] = ACTIONS(912), + [anon_sym_if] = ACTIONS(914), + [anon_sym_else] = ACTIONS(914), + [anon_sym_new] = ACTIONS(914), + [sym__prefixUnaryOperator] = ACTIONS(914), + [sym__eitherUnaryOperator] = ACTIONS(912), + [anon_sym_null] = ACTIONS(914), + [anon_sym_dynamic] = ACTIONS(914), + [anon_sym_final] = ACTIONS(914), + [anon_sym_abstract] = ACTIONS(914), + [anon_sym_class] = ACTIONS(914), + [anon_sym_extends] = ACTIONS(914), + [anon_sym_implements] = ACTIONS(914), + [anon_sym_interface] = ACTIONS(914), + [anon_sym_typedef] = ACTIONS(914), + [anon_sym_function] = ACTIONS(914), + [anon_sym_var] = ACTIONS(914), + [aux_sym_integer_token1] = ACTIONS(914), + [aux_sym_integer_token2] = ACTIONS(912), + [aux_sym_float_token1] = ACTIONS(914), + [aux_sym_float_token2] = ACTIONS(912), + [anon_sym_true] = ACTIONS(914), + [anon_sym_false] = ACTIONS(914), + [aux_sym_string_token1] = ACTIONS(912), + [aux_sym_string_token3] = ACTIONS(912), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(914), + [anon_sym_catch] = ACTIONS(914), + [anon_sym_continue] = ACTIONS(914), + [anon_sym_do] = ACTIONS(914), + [anon_sym_enum] = ACTIONS(914), + [anon_sym_extern] = ACTIONS(914), + [anon_sym_for] = ACTIONS(914), + [anon_sym_inline] = ACTIONS(914), + [anon_sym_macro] = ACTIONS(914), + [anon_sym_operator] = ACTIONS(914), + [anon_sym_overload] = ACTIONS(914), + [anon_sym_override] = ACTIONS(914), + [anon_sym_private] = ACTIONS(914), + [anon_sym_public] = ACTIONS(914), + [anon_sym_return] = ACTIONS(914), + [anon_sym_static] = ACTIONS(914), + [anon_sym_try] = ACTIONS(914), + [anon_sym_untyped] = ACTIONS(914), + [anon_sym_while] = ACTIONS(914), + [sym__semicolon] = ACTIONS(912), }, - [161] = { - [ts_builtin_sym_end] = ACTIONS(926), - [sym_identifier] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(926), - [anon_sym_package] = ACTIONS(928), - [anon_sym_import] = ACTIONS(928), - [anon_sym_using] = ACTIONS(928), - [anon_sym_throw] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(926), - [anon_sym_switch] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_case] = ACTIONS(928), - [anon_sym_default] = ACTIONS(928), - [anon_sym_cast] = ACTIONS(928), - [anon_sym_DOLLARtype] = ACTIONS(926), - [anon_sym_in] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_this] = ACTIONS(928), - [anon_sym_DASH_GT] = ACTIONS(671), - [anon_sym_AT] = ACTIONS(928), - [anon_sym_AT_COLON] = ACTIONS(926), - [anon_sym_if] = ACTIONS(928), - [anon_sym_else] = ACTIONS(928), - [anon_sym_new] = ACTIONS(928), - [anon_sym_TILDE] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_PERCENT] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(926), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(926), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(926), - [anon_sym_AMP_AMP] = ACTIONS(926), - [anon_sym_PIPE_PIPE] = ACTIONS(926), - [anon_sym_EQ_EQ] = ACTIONS(926), - [anon_sym_BANG_EQ] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(926), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(926), - [anon_sym_EQ_GT] = ACTIONS(926), - [anon_sym_QMARK_QMARK] = ACTIONS(926), - [anon_sym_EQ] = ACTIONS(928), - [sym__rangeOperator] = ACTIONS(926), - [anon_sym_null] = ACTIONS(928), - [anon_sym_dynamic] = ACTIONS(928), - [anon_sym_final] = ACTIONS(928), - [anon_sym_abstract] = ACTIONS(928), - [anon_sym_class] = ACTIONS(928), - [anon_sym_extends] = ACTIONS(928), - [anon_sym_implements] = ACTIONS(928), - [anon_sym_interface] = ACTIONS(928), - [anon_sym_typedef] = ACTIONS(928), - [anon_sym_function] = ACTIONS(928), - [anon_sym_var] = ACTIONS(928), - [aux_sym_integer_token1] = ACTIONS(928), - [aux_sym_integer_token2] = ACTIONS(926), - [aux_sym_float_token1] = ACTIONS(928), - [aux_sym_float_token2] = ACTIONS(926), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_string_token1] = ACTIONS(926), - [aux_sym_string_token3] = ACTIONS(926), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(928), - [anon_sym_catch] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_enum] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_inline] = ACTIONS(928), - [anon_sym_macro] = ACTIONS(928), - [anon_sym_operator] = ACTIONS(928), - [anon_sym_overload] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_static] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_untyped] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [sym__semicolon] = ACTIONS(926), + [190] = { + [ts_builtin_sym_end] = ACTIONS(820), + [sym_identifier] = ACTIONS(822), + [anon_sym_POUND] = ACTIONS(820), + [anon_sym_package] = ACTIONS(822), + [anon_sym_import] = ACTIONS(822), + [anon_sym_using] = ACTIONS(822), + [anon_sym_throw] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_switch] = ACTIONS(822), + [anon_sym_LBRACE] = ACTIONS(820), + [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_case] = ACTIONS(822), + [anon_sym_default] = ACTIONS(822), + [anon_sym_cast] = ACTIONS(822), + [anon_sym_DOLLARtype] = ACTIONS(820), + [anon_sym_in] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_this] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(822), + [anon_sym_AT_COLON] = ACTIONS(820), + [anon_sym_if] = ACTIONS(822), + [anon_sym_else] = ACTIONS(822), + [anon_sym_new] = ACTIONS(822), + [sym__prefixUnaryOperator] = ACTIONS(822), + [sym__eitherUnaryOperator] = ACTIONS(820), + [anon_sym_null] = ACTIONS(822), + [anon_sym_dynamic] = ACTIONS(822), + [anon_sym_final] = ACTIONS(822), + [anon_sym_abstract] = ACTIONS(822), + [anon_sym_class] = ACTIONS(822), + [anon_sym_extends] = ACTIONS(822), + [anon_sym_implements] = ACTIONS(822), + [anon_sym_interface] = ACTIONS(822), + [anon_sym_typedef] = ACTIONS(822), + [anon_sym_function] = ACTIONS(822), + [anon_sym_var] = ACTIONS(822), + [aux_sym_integer_token1] = ACTIONS(822), + [aux_sym_integer_token2] = ACTIONS(820), + [aux_sym_float_token1] = ACTIONS(822), + [aux_sym_float_token2] = ACTIONS(820), + [anon_sym_true] = ACTIONS(822), + [anon_sym_false] = ACTIONS(822), + [aux_sym_string_token1] = ACTIONS(820), + [aux_sym_string_token3] = ACTIONS(820), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(822), + [anon_sym_catch] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_do] = ACTIONS(822), + [anon_sym_enum] = ACTIONS(822), + [anon_sym_extern] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_inline] = ACTIONS(822), + [anon_sym_macro] = ACTIONS(822), + [anon_sym_operator] = ACTIONS(822), + [anon_sym_overload] = ACTIONS(822), + [anon_sym_override] = ACTIONS(822), + [anon_sym_private] = ACTIONS(822), + [anon_sym_public] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_static] = ACTIONS(822), + [anon_sym_try] = ACTIONS(822), + [anon_sym_untyped] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [sym__semicolon] = ACTIONS(820), }, - [162] = { - [ts_builtin_sym_end] = ACTIONS(930), - [sym_identifier] = ACTIONS(932), - [anon_sym_POUND] = ACTIONS(930), - [anon_sym_package] = ACTIONS(932), - [anon_sym_import] = ACTIONS(932), - [anon_sym_using] = ACTIONS(932), - [anon_sym_throw] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_switch] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(930), - [anon_sym_RBRACE] = ACTIONS(930), - [anon_sym_case] = ACTIONS(932), - [anon_sym_default] = ACTIONS(932), - [anon_sym_cast] = ACTIONS(932), - [anon_sym_DOLLARtype] = ACTIONS(930), - [anon_sym_in] = ACTIONS(932), - [anon_sym_LBRACK] = ACTIONS(930), - [anon_sym_this] = ACTIONS(932), - [anon_sym_AT] = ACTIONS(932), - [anon_sym_AT_COLON] = ACTIONS(930), - [anon_sym_if] = ACTIONS(932), + [191] = { + [ts_builtin_sym_end] = ACTIONS(916), + [sym_identifier] = ACTIONS(918), + [anon_sym_POUND] = ACTIONS(916), + [anon_sym_package] = ACTIONS(918), + [anon_sym_import] = ACTIONS(918), + [anon_sym_using] = ACTIONS(918), + [anon_sym_throw] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(916), + [anon_sym_switch] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(916), + [anon_sym_RBRACE] = ACTIONS(916), + [anon_sym_case] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), + [anon_sym_cast] = ACTIONS(918), + [anon_sym_DOLLARtype] = ACTIONS(916), + [anon_sym_in] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(916), + [anon_sym_this] = ACTIONS(918), + [anon_sym_AT] = ACTIONS(918), + [anon_sym_AT_COLON] = ACTIONS(916), + [anon_sym_if] = ACTIONS(918), + [anon_sym_else] = ACTIONS(918), + [anon_sym_new] = ACTIONS(918), + [sym__prefixUnaryOperator] = ACTIONS(918), + [sym__eitherUnaryOperator] = ACTIONS(916), + [anon_sym_null] = ACTIONS(918), + [anon_sym_dynamic] = ACTIONS(918), + [anon_sym_final] = ACTIONS(918), + [anon_sym_abstract] = ACTIONS(918), + [anon_sym_class] = ACTIONS(918), + [anon_sym_extends] = ACTIONS(918), + [anon_sym_implements] = ACTIONS(918), + [anon_sym_interface] = ACTIONS(918), + [anon_sym_typedef] = ACTIONS(918), + [anon_sym_function] = ACTIONS(918), + [anon_sym_var] = ACTIONS(918), + [aux_sym_integer_token1] = ACTIONS(918), + [aux_sym_integer_token2] = ACTIONS(916), + [aux_sym_float_token1] = ACTIONS(918), + [aux_sym_float_token2] = ACTIONS(916), + [anon_sym_true] = ACTIONS(918), + [anon_sym_false] = ACTIONS(918), + [aux_sym_string_token1] = ACTIONS(916), + [aux_sym_string_token3] = ACTIONS(916), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(918), + [anon_sym_catch] = ACTIONS(918), + [anon_sym_continue] = ACTIONS(918), + [anon_sym_do] = ACTIONS(918), + [anon_sym_enum] = ACTIONS(918), + [anon_sym_extern] = ACTIONS(918), + [anon_sym_for] = ACTIONS(918), + [anon_sym_inline] = ACTIONS(918), + [anon_sym_macro] = ACTIONS(918), + [anon_sym_operator] = ACTIONS(918), + [anon_sym_overload] = ACTIONS(918), + [anon_sym_override] = ACTIONS(918), + [anon_sym_private] = ACTIONS(918), + [anon_sym_public] = ACTIONS(918), + [anon_sym_return] = ACTIONS(918), + [anon_sym_static] = ACTIONS(918), + [anon_sym_try] = ACTIONS(918), + [anon_sym_untyped] = ACTIONS(918), + [anon_sym_while] = ACTIONS(918), + [sym__semicolon] = ACTIONS(916), + }, + [192] = { + [ts_builtin_sym_end] = ACTIONS(920), + [sym_identifier] = ACTIONS(922), + [anon_sym_POUND] = ACTIONS(920), + [anon_sym_package] = ACTIONS(922), + [anon_sym_import] = ACTIONS(922), + [anon_sym_using] = ACTIONS(922), + [anon_sym_throw] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_switch] = ACTIONS(922), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_case] = ACTIONS(922), + [anon_sym_default] = ACTIONS(922), + [anon_sym_cast] = ACTIONS(922), + [anon_sym_DOLLARtype] = ACTIONS(920), + [anon_sym_in] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_this] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(922), + [anon_sym_AT_COLON] = ACTIONS(920), + [anon_sym_if] = ACTIONS(922), + [anon_sym_else] = ACTIONS(922), + [anon_sym_new] = ACTIONS(922), + [sym__prefixUnaryOperator] = ACTIONS(922), + [sym__eitherUnaryOperator] = ACTIONS(920), + [anon_sym_null] = ACTIONS(922), + [anon_sym_dynamic] = ACTIONS(922), + [anon_sym_final] = ACTIONS(922), + [anon_sym_abstract] = ACTIONS(922), + [anon_sym_class] = ACTIONS(922), + [anon_sym_extends] = ACTIONS(922), + [anon_sym_implements] = ACTIONS(922), + [anon_sym_interface] = ACTIONS(922), + [anon_sym_typedef] = ACTIONS(922), + [anon_sym_function] = ACTIONS(922), + [anon_sym_var] = ACTIONS(922), + [aux_sym_integer_token1] = ACTIONS(922), + [aux_sym_integer_token2] = ACTIONS(920), + [aux_sym_float_token1] = ACTIONS(922), + [aux_sym_float_token2] = ACTIONS(920), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [aux_sym_string_token1] = ACTIONS(920), + [aux_sym_string_token3] = ACTIONS(920), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(922), + [anon_sym_catch] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(922), + [anon_sym_do] = ACTIONS(922), + [anon_sym_enum] = ACTIONS(922), + [anon_sym_extern] = ACTIONS(922), + [anon_sym_for] = ACTIONS(922), + [anon_sym_inline] = ACTIONS(922), + [anon_sym_macro] = ACTIONS(922), + [anon_sym_operator] = ACTIONS(922), + [anon_sym_overload] = ACTIONS(922), + [anon_sym_override] = ACTIONS(922), + [anon_sym_private] = ACTIONS(922), + [anon_sym_public] = ACTIONS(922), + [anon_sym_return] = ACTIONS(922), + [anon_sym_static] = ACTIONS(922), + [anon_sym_try] = ACTIONS(922), + [anon_sym_untyped] = ACTIONS(922), + [anon_sym_while] = ACTIONS(922), + [sym__semicolon] = ACTIONS(920), + }, + [193] = { + [ts_builtin_sym_end] = ACTIONS(924), + [sym_identifier] = ACTIONS(926), + [anon_sym_POUND] = ACTIONS(924), + [anon_sym_package] = ACTIONS(926), + [anon_sym_import] = ACTIONS(926), + [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_RBRACE] = ACTIONS(924), + [anon_sym_case] = ACTIONS(926), + [anon_sym_default] = ACTIONS(926), + [anon_sym_cast] = ACTIONS(926), + [anon_sym_DOLLARtype] = ACTIONS(924), + [anon_sym_in] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(924), + [anon_sym_this] = ACTIONS(926), + [anon_sym_AT] = ACTIONS(926), + [anon_sym_AT_COLON] = ACTIONS(924), + [anon_sym_if] = ACTIONS(926), + [anon_sym_else] = ACTIONS(926), + [anon_sym_new] = ACTIONS(926), + [sym__prefixUnaryOperator] = ACTIONS(926), + [sym__eitherUnaryOperator] = ACTIONS(924), + [anon_sym_null] = ACTIONS(926), + [anon_sym_dynamic] = ACTIONS(926), + [anon_sym_final] = ACTIONS(926), + [anon_sym_abstract] = ACTIONS(926), + [anon_sym_class] = ACTIONS(926), + [anon_sym_extends] = ACTIONS(926), + [anon_sym_implements] = ACTIONS(926), + [anon_sym_interface] = 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), + [anon_sym_break] = ACTIONS(926), + [anon_sym_catch] = ACTIONS(926), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_do] = ACTIONS(926), + [anon_sym_enum] = ACTIONS(926), + [anon_sym_extern] = ACTIONS(926), + [anon_sym_for] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(926), + [anon_sym_macro] = ACTIONS(926), + [anon_sym_operator] = ACTIONS(926), + [anon_sym_overload] = ACTIONS(926), + [anon_sym_override] = ACTIONS(926), + [anon_sym_private] = ACTIONS(926), + [anon_sym_public] = ACTIONS(926), + [anon_sym_return] = ACTIONS(926), + [anon_sym_static] = ACTIONS(926), + [anon_sym_try] = ACTIONS(926), + [anon_sym_untyped] = ACTIONS(926), + [anon_sym_while] = ACTIONS(926), + [sym__semicolon] = ACTIONS(924), + }, + [194] = { + [ts_builtin_sym_end] = ACTIONS(928), + [sym_identifier] = ACTIONS(930), + [anon_sym_POUND] = ACTIONS(928), + [anon_sym_package] = ACTIONS(930), + [anon_sym_import] = ACTIONS(930), + [anon_sym_using] = ACTIONS(930), + [anon_sym_throw] = ACTIONS(930), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_switch] = ACTIONS(930), + [anon_sym_LBRACE] = ACTIONS(928), + [anon_sym_RBRACE] = ACTIONS(928), + [anon_sym_case] = ACTIONS(930), + [anon_sym_default] = ACTIONS(930), + [anon_sym_cast] = ACTIONS(930), + [anon_sym_DOLLARtype] = ACTIONS(928), + [anon_sym_in] = ACTIONS(930), + [anon_sym_LBRACK] = ACTIONS(928), + [anon_sym_this] = ACTIONS(930), + [anon_sym_AT] = ACTIONS(930), + [anon_sym_AT_COLON] = ACTIONS(928), + [anon_sym_if] = ACTIONS(930), + [anon_sym_else] = ACTIONS(930), + [anon_sym_new] = ACTIONS(930), + [sym__prefixUnaryOperator] = ACTIONS(930), + [sym__eitherUnaryOperator] = ACTIONS(928), + [anon_sym_null] = ACTIONS(930), + [anon_sym_dynamic] = ACTIONS(930), + [anon_sym_final] = ACTIONS(930), + [anon_sym_abstract] = ACTIONS(930), + [anon_sym_class] = ACTIONS(930), + [anon_sym_extends] = ACTIONS(930), + [anon_sym_implements] = ACTIONS(930), + [anon_sym_interface] = ACTIONS(930), + [anon_sym_typedef] = ACTIONS(930), + [anon_sym_function] = ACTIONS(930), + [anon_sym_var] = ACTIONS(930), + [aux_sym_integer_token1] = ACTIONS(930), + [aux_sym_integer_token2] = ACTIONS(928), + [aux_sym_float_token1] = ACTIONS(930), + [aux_sym_float_token2] = ACTIONS(928), + [anon_sym_true] = ACTIONS(930), + [anon_sym_false] = ACTIONS(930), + [aux_sym_string_token1] = ACTIONS(928), + [aux_sym_string_token3] = ACTIONS(928), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(930), + [anon_sym_catch] = ACTIONS(930), + [anon_sym_continue] = ACTIONS(930), + [anon_sym_do] = ACTIONS(930), + [anon_sym_enum] = ACTIONS(930), + [anon_sym_extern] = ACTIONS(930), + [anon_sym_for] = ACTIONS(930), + [anon_sym_inline] = ACTIONS(930), + [anon_sym_macro] = ACTIONS(930), + [anon_sym_operator] = ACTIONS(930), + [anon_sym_overload] = ACTIONS(930), + [anon_sym_override] = ACTIONS(930), + [anon_sym_private] = ACTIONS(930), + [anon_sym_public] = ACTIONS(930), + [anon_sym_return] = ACTIONS(930), + [anon_sym_static] = ACTIONS(930), + [anon_sym_try] = ACTIONS(930), + [anon_sym_untyped] = ACTIONS(930), + [anon_sym_while] = ACTIONS(930), + [sym__semicolon] = ACTIONS(928), + }, + [195] = { + [ts_builtin_sym_end] = ACTIONS(844), + [sym_identifier] = ACTIONS(846), + [anon_sym_POUND] = ACTIONS(844), + [anon_sym_package] = ACTIONS(846), + [anon_sym_import] = ACTIONS(846), + [anon_sym_using] = ACTIONS(846), + [anon_sym_throw] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(844), + [anon_sym_switch] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(844), + [anon_sym_RBRACE] = ACTIONS(844), + [anon_sym_case] = ACTIONS(846), + [anon_sym_default] = ACTIONS(846), + [anon_sym_cast] = ACTIONS(846), + [anon_sym_DOLLARtype] = ACTIONS(844), + [anon_sym_in] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(844), + [anon_sym_this] = ACTIONS(846), + [anon_sym_AT] = ACTIONS(846), + [anon_sym_AT_COLON] = ACTIONS(844), + [anon_sym_if] = ACTIONS(846), + [anon_sym_else] = ACTIONS(846), + [anon_sym_new] = ACTIONS(846), + [sym__prefixUnaryOperator] = ACTIONS(846), + [sym__eitherUnaryOperator] = ACTIONS(844), + [anon_sym_null] = ACTIONS(846), + [anon_sym_dynamic] = ACTIONS(846), + [anon_sym_final] = ACTIONS(846), + [anon_sym_abstract] = ACTIONS(846), + [anon_sym_class] = ACTIONS(846), + [anon_sym_extends] = ACTIONS(846), + [anon_sym_implements] = ACTIONS(846), + [anon_sym_interface] = ACTIONS(846), + [anon_sym_typedef] = ACTIONS(846), + [anon_sym_function] = ACTIONS(846), + [anon_sym_var] = ACTIONS(846), + [aux_sym_integer_token1] = ACTIONS(846), + [aux_sym_integer_token2] = ACTIONS(844), + [aux_sym_float_token1] = ACTIONS(846), + [aux_sym_float_token2] = ACTIONS(844), + [anon_sym_true] = ACTIONS(846), + [anon_sym_false] = ACTIONS(846), + [aux_sym_string_token1] = ACTIONS(844), + [aux_sym_string_token3] = ACTIONS(844), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(846), + [anon_sym_catch] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(846), + [anon_sym_do] = ACTIONS(846), + [anon_sym_enum] = ACTIONS(846), + [anon_sym_extern] = ACTIONS(846), + [anon_sym_for] = ACTIONS(846), + [anon_sym_inline] = ACTIONS(846), + [anon_sym_macro] = ACTIONS(846), + [anon_sym_operator] = ACTIONS(846), + [anon_sym_overload] = ACTIONS(846), + [anon_sym_override] = ACTIONS(846), + [anon_sym_private] = ACTIONS(846), + [anon_sym_public] = ACTIONS(846), + [anon_sym_return] = ACTIONS(846), + [anon_sym_static] = ACTIONS(846), + [anon_sym_try] = ACTIONS(846), + [anon_sym_untyped] = ACTIONS(846), + [anon_sym_while] = ACTIONS(846), + [sym__semicolon] = ACTIONS(844), + }, + [196] = { + [ts_builtin_sym_end] = ACTIONS(932), + [sym_identifier] = ACTIONS(934), + [anon_sym_POUND] = ACTIONS(932), + [anon_sym_package] = ACTIONS(934), + [anon_sym_import] = ACTIONS(934), + [anon_sym_using] = ACTIONS(934), + [anon_sym_throw] = ACTIONS(934), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_switch] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(932), + [anon_sym_RBRACE] = ACTIONS(932), + [anon_sym_case] = ACTIONS(934), + [anon_sym_default] = ACTIONS(934), + [anon_sym_cast] = ACTIONS(934), + [anon_sym_DOLLARtype] = ACTIONS(932), + [anon_sym_in] = ACTIONS(934), + [anon_sym_LBRACK] = ACTIONS(932), + [anon_sym_this] = ACTIONS(934), + [anon_sym_AT] = ACTIONS(934), + [anon_sym_AT_COLON] = ACTIONS(932), + [anon_sym_if] = ACTIONS(934), [anon_sym_else] = ACTIONS(934), - [anon_sym_elseif] = ACTIONS(936), - [anon_sym_new] = ACTIONS(932), - [anon_sym_TILDE] = ACTIONS(930), - [anon_sym_BANG] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(932), - [anon_sym_PLUS_PLUS] = ACTIONS(930), - [anon_sym_DASH_DASH] = ACTIONS(930), - [anon_sym_PERCENT] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(930), - [anon_sym_SLASH] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(932), - [anon_sym_LT_LT] = ACTIONS(930), - [anon_sym_GT_GT] = ACTIONS(932), - [anon_sym_GT_GT_GT] = ACTIONS(930), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_PIPE] = ACTIONS(932), - [anon_sym_CARET] = ACTIONS(930), - [anon_sym_AMP_AMP] = ACTIONS(930), - [anon_sym_PIPE_PIPE] = ACTIONS(930), - [anon_sym_EQ_EQ] = ACTIONS(930), - [anon_sym_BANG_EQ] = ACTIONS(930), - [anon_sym_LT] = ACTIONS(932), - [anon_sym_LT_EQ] = ACTIONS(930), - [anon_sym_GT] = ACTIONS(932), - [anon_sym_GT_EQ] = ACTIONS(930), - [anon_sym_EQ_GT] = ACTIONS(930), - [anon_sym_QMARK_QMARK] = ACTIONS(930), - [anon_sym_EQ] = ACTIONS(932), - [sym__rangeOperator] = ACTIONS(930), - [anon_sym_null] = ACTIONS(932), - [anon_sym_dynamic] = ACTIONS(932), - [anon_sym_final] = ACTIONS(932), - [anon_sym_abstract] = ACTIONS(932), - [anon_sym_class] = ACTIONS(932), - [anon_sym_extends] = ACTIONS(932), - [anon_sym_implements] = ACTIONS(932), - [anon_sym_interface] = ACTIONS(932), - [anon_sym_typedef] = ACTIONS(932), - [anon_sym_function] = ACTIONS(932), - [anon_sym_var] = ACTIONS(932), - [aux_sym_integer_token1] = ACTIONS(932), - [aux_sym_integer_token2] = ACTIONS(930), - [aux_sym_float_token1] = ACTIONS(932), - [aux_sym_float_token2] = ACTIONS(930), - [anon_sym_true] = ACTIONS(932), - [anon_sym_false] = ACTIONS(932), - [aux_sym_string_token1] = ACTIONS(930), - [aux_sym_string_token3] = ACTIONS(930), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(932), - [anon_sym_catch] = ACTIONS(932), - [anon_sym_continue] = ACTIONS(932), - [anon_sym_do] = ACTIONS(932), - [anon_sym_enum] = ACTIONS(932), - [anon_sym_extern] = ACTIONS(932), - [anon_sym_for] = ACTIONS(932), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_macro] = ACTIONS(932), - [anon_sym_operator] = ACTIONS(932), - [anon_sym_overload] = ACTIONS(932), - [anon_sym_override] = ACTIONS(932), - [anon_sym_private] = ACTIONS(932), - [anon_sym_public] = ACTIONS(932), - [anon_sym_return] = ACTIONS(932), - [anon_sym_static] = ACTIONS(932), - [anon_sym_try] = ACTIONS(932), - [anon_sym_untyped] = ACTIONS(932), - [anon_sym_while] = ACTIONS(932), - [sym__semicolon] = ACTIONS(930), + [anon_sym_new] = ACTIONS(934), + [sym__prefixUnaryOperator] = ACTIONS(934), + [sym__eitherUnaryOperator] = ACTIONS(932), + [anon_sym_null] = ACTIONS(934), + [anon_sym_dynamic] = ACTIONS(934), + [anon_sym_final] = ACTIONS(934), + [anon_sym_abstract] = ACTIONS(934), + [anon_sym_class] = ACTIONS(934), + [anon_sym_extends] = ACTIONS(934), + [anon_sym_implements] = ACTIONS(934), + [anon_sym_interface] = ACTIONS(934), + [anon_sym_typedef] = ACTIONS(934), + [anon_sym_function] = ACTIONS(934), + [anon_sym_var] = ACTIONS(934), + [aux_sym_integer_token1] = ACTIONS(934), + [aux_sym_integer_token2] = ACTIONS(932), + [aux_sym_float_token1] = ACTIONS(934), + [aux_sym_float_token2] = ACTIONS(932), + [anon_sym_true] = ACTIONS(934), + [anon_sym_false] = ACTIONS(934), + [aux_sym_string_token1] = ACTIONS(932), + [aux_sym_string_token3] = ACTIONS(932), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(934), + [anon_sym_catch] = ACTIONS(934), + [anon_sym_continue] = ACTIONS(934), + [anon_sym_do] = ACTIONS(934), + [anon_sym_enum] = ACTIONS(934), + [anon_sym_extern] = ACTIONS(934), + [anon_sym_for] = ACTIONS(934), + [anon_sym_inline] = ACTIONS(934), + [anon_sym_macro] = ACTIONS(934), + [anon_sym_operator] = ACTIONS(934), + [anon_sym_overload] = ACTIONS(934), + [anon_sym_override] = ACTIONS(934), + [anon_sym_private] = ACTIONS(934), + [anon_sym_public] = ACTIONS(934), + [anon_sym_return] = ACTIONS(934), + [anon_sym_static] = ACTIONS(934), + [anon_sym_try] = ACTIONS(934), + [anon_sym_untyped] = ACTIONS(934), + [anon_sym_while] = ACTIONS(934), + [sym__semicolon] = ACTIONS(932), }, - [163] = { - [ts_builtin_sym_end] = ACTIONS(938), - [sym_identifier] = ACTIONS(940), - [anon_sym_POUND] = ACTIONS(938), - [anon_sym_package] = ACTIONS(940), - [anon_sym_import] = ACTIONS(940), - [anon_sym_using] = ACTIONS(940), - [anon_sym_throw] = ACTIONS(940), - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_switch] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym_case] = ACTIONS(940), - [anon_sym_COLON] = ACTIONS(938), - [anon_sym_default] = ACTIONS(940), - [anon_sym_cast] = ACTIONS(940), - [anon_sym_DOLLARtype] = ACTIONS(938), - [anon_sym_in] = ACTIONS(940), - [anon_sym_LBRACK] = ACTIONS(938), - [anon_sym_this] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(940), - [anon_sym_AT_COLON] = ACTIONS(938), - [anon_sym_if] = ACTIONS(940), - [anon_sym_else] = ACTIONS(940), - [anon_sym_new] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(938), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(938), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_STAR] = ACTIONS(938), - [anon_sym_SLASH] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_LT_LT] = ACTIONS(938), - [anon_sym_GT_GT] = ACTIONS(940), - [anon_sym_GT_GT_GT] = ACTIONS(938), - [anon_sym_AMP] = ACTIONS(940), - [anon_sym_PIPE] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(938), - [anon_sym_AMP_AMP] = ACTIONS(938), - [anon_sym_PIPE_PIPE] = ACTIONS(938), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_LT] = ACTIONS(940), - [anon_sym_LT_EQ] = ACTIONS(938), - [anon_sym_GT] = ACTIONS(940), - [anon_sym_GT_EQ] = ACTIONS(938), - [anon_sym_EQ_GT] = ACTIONS(938), - [anon_sym_QMARK_QMARK] = ACTIONS(938), - [anon_sym_EQ] = ACTIONS(940), - [sym__rangeOperator] = ACTIONS(938), - [anon_sym_null] = ACTIONS(940), - [anon_sym_dynamic] = ACTIONS(940), - [anon_sym_final] = ACTIONS(940), - [anon_sym_abstract] = ACTIONS(940), - [anon_sym_class] = ACTIONS(940), - [anon_sym_extends] = ACTIONS(940), - [anon_sym_implements] = ACTIONS(940), - [anon_sym_interface] = ACTIONS(940), - [anon_sym_typedef] = ACTIONS(940), - [anon_sym_function] = ACTIONS(940), - [anon_sym_var] = ACTIONS(940), - [aux_sym_integer_token1] = ACTIONS(940), - [aux_sym_integer_token2] = ACTIONS(938), - [aux_sym_float_token1] = ACTIONS(940), - [aux_sym_float_token2] = ACTIONS(938), - [anon_sym_true] = ACTIONS(940), - [anon_sym_false] = ACTIONS(940), - [aux_sym_string_token1] = ACTIONS(938), - [aux_sym_string_token3] = ACTIONS(938), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(940), - [anon_sym_catch] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_do] = ACTIONS(940), - [anon_sym_enum] = ACTIONS(940), - [anon_sym_extern] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_macro] = ACTIONS(940), - [anon_sym_operator] = ACTIONS(940), - [anon_sym_overload] = ACTIONS(940), - [anon_sym_override] = ACTIONS(940), - [anon_sym_private] = ACTIONS(940), - [anon_sym_public] = ACTIONS(940), - [anon_sym_return] = ACTIONS(940), - [anon_sym_static] = ACTIONS(940), - [anon_sym_try] = ACTIONS(940), - [anon_sym_untyped] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [sym__semicolon] = ACTIONS(938), + [197] = { + [ts_builtin_sym_end] = ACTIONS(936), + [sym_identifier] = ACTIONS(938), + [anon_sym_POUND] = ACTIONS(936), + [anon_sym_package] = ACTIONS(938), + [anon_sym_import] = ACTIONS(938), + [anon_sym_using] = ACTIONS(938), + [anon_sym_throw] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_switch] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(936), + [anon_sym_RBRACE] = ACTIONS(936), + [anon_sym_case] = ACTIONS(938), + [anon_sym_default] = ACTIONS(938), + [anon_sym_cast] = ACTIONS(938), + [anon_sym_DOLLARtype] = ACTIONS(936), + [anon_sym_in] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_this] = ACTIONS(938), + [anon_sym_AT] = ACTIONS(938), + [anon_sym_AT_COLON] = ACTIONS(936), + [anon_sym_if] = ACTIONS(938), + [anon_sym_else] = ACTIONS(938), + [anon_sym_new] = ACTIONS(938), + [sym__prefixUnaryOperator] = ACTIONS(938), + [sym__eitherUnaryOperator] = ACTIONS(936), + [anon_sym_null] = ACTIONS(938), + [anon_sym_dynamic] = ACTIONS(938), + [anon_sym_final] = ACTIONS(938), + [anon_sym_abstract] = ACTIONS(938), + [anon_sym_class] = ACTIONS(938), + [anon_sym_extends] = ACTIONS(938), + [anon_sym_implements] = ACTIONS(938), + [anon_sym_interface] = ACTIONS(938), + [anon_sym_typedef] = ACTIONS(938), + [anon_sym_function] = ACTIONS(938), + [anon_sym_var] = ACTIONS(938), + [aux_sym_integer_token1] = ACTIONS(938), + [aux_sym_integer_token2] = ACTIONS(936), + [aux_sym_float_token1] = ACTIONS(938), + [aux_sym_float_token2] = ACTIONS(936), + [anon_sym_true] = ACTIONS(938), + [anon_sym_false] = ACTIONS(938), + [aux_sym_string_token1] = ACTIONS(936), + [aux_sym_string_token3] = ACTIONS(936), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(938), + [anon_sym_catch] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_enum] = ACTIONS(938), + [anon_sym_extern] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_inline] = ACTIONS(938), + [anon_sym_macro] = ACTIONS(938), + [anon_sym_operator] = ACTIONS(938), + [anon_sym_overload] = ACTIONS(938), + [anon_sym_override] = ACTIONS(938), + [anon_sym_private] = ACTIONS(938), + [anon_sym_public] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_static] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_untyped] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [sym__semicolon] = ACTIONS(936), }, - [164] = { - [ts_builtin_sym_end] = ACTIONS(942), - [sym_identifier] = ACTIONS(944), - [anon_sym_POUND] = ACTIONS(942), - [anon_sym_package] = ACTIONS(944), - [anon_sym_import] = ACTIONS(944), - [anon_sym_using] = ACTIONS(944), - [anon_sym_throw] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_switch] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_RBRACE] = ACTIONS(942), - [anon_sym_case] = ACTIONS(944), - [anon_sym_COLON] = ACTIONS(942), - [anon_sym_default] = ACTIONS(944), - [anon_sym_cast] = ACTIONS(944), - [anon_sym_DOLLARtype] = ACTIONS(942), - [anon_sym_in] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_this] = ACTIONS(944), - [anon_sym_AT] = ACTIONS(944), - [anon_sym_AT_COLON] = ACTIONS(942), - [anon_sym_if] = ACTIONS(944), - [anon_sym_else] = ACTIONS(944), - [anon_sym_new] = ACTIONS(944), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_BANG] = ACTIONS(944), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_SLASH] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_LT_LT] = ACTIONS(942), - [anon_sym_GT_GT] = ACTIONS(944), - [anon_sym_GT_GT_GT] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(944), - [anon_sym_CARET] = ACTIONS(942), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_EQ_EQ] = ACTIONS(942), - [anon_sym_BANG_EQ] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(944), - [anon_sym_LT_EQ] = ACTIONS(942), - [anon_sym_GT] = ACTIONS(944), - [anon_sym_GT_EQ] = ACTIONS(942), - [anon_sym_EQ_GT] = ACTIONS(942), - [anon_sym_QMARK_QMARK] = ACTIONS(942), - [anon_sym_EQ] = ACTIONS(944), - [sym__rangeOperator] = ACTIONS(942), - [anon_sym_null] = ACTIONS(944), - [anon_sym_dynamic] = ACTIONS(944), - [anon_sym_final] = ACTIONS(944), - [anon_sym_abstract] = ACTIONS(944), - [anon_sym_class] = ACTIONS(944), - [anon_sym_extends] = ACTIONS(944), - [anon_sym_implements] = ACTIONS(944), - [anon_sym_interface] = ACTIONS(944), - [anon_sym_typedef] = ACTIONS(944), - [anon_sym_function] = ACTIONS(944), - [anon_sym_var] = ACTIONS(944), - [aux_sym_integer_token1] = ACTIONS(944), - [aux_sym_integer_token2] = ACTIONS(942), - [aux_sym_float_token1] = ACTIONS(944), - [aux_sym_float_token2] = ACTIONS(942), - [anon_sym_true] = ACTIONS(944), - [anon_sym_false] = ACTIONS(944), - [aux_sym_string_token1] = ACTIONS(942), - [aux_sym_string_token3] = ACTIONS(942), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(944), - [anon_sym_catch] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_do] = ACTIONS(944), - [anon_sym_enum] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_inline] = ACTIONS(944), - [anon_sym_macro] = ACTIONS(944), - [anon_sym_operator] = ACTIONS(944), - [anon_sym_overload] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_public] = ACTIONS(944), - [anon_sym_return] = ACTIONS(944), - [anon_sym_static] = ACTIONS(944), - [anon_sym_try] = ACTIONS(944), - [anon_sym_untyped] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [sym__semicolon] = ACTIONS(942), + [198] = { + [ts_builtin_sym_end] = ACTIONS(940), + [sym_identifier] = ACTIONS(942), + [anon_sym_POUND] = ACTIONS(940), + [anon_sym_package] = ACTIONS(942), + [anon_sym_import] = ACTIONS(942), + [anon_sym_using] = ACTIONS(942), + [anon_sym_throw] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_switch] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_RBRACE] = ACTIONS(940), + [anon_sym_case] = ACTIONS(942), + [anon_sym_default] = ACTIONS(942), + [anon_sym_cast] = ACTIONS(942), + [anon_sym_DOLLARtype] = ACTIONS(940), + [anon_sym_in] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(940), + [anon_sym_this] = ACTIONS(942), + [anon_sym_AT] = ACTIONS(942), + [anon_sym_AT_COLON] = ACTIONS(940), + [anon_sym_if] = ACTIONS(942), + [anon_sym_else] = ACTIONS(942), + [anon_sym_new] = ACTIONS(942), + [sym__prefixUnaryOperator] = ACTIONS(942), + [sym__eitherUnaryOperator] = ACTIONS(940), + [anon_sym_null] = ACTIONS(942), + [anon_sym_dynamic] = ACTIONS(942), + [anon_sym_final] = ACTIONS(942), + [anon_sym_abstract] = ACTIONS(942), + [anon_sym_class] = ACTIONS(942), + [anon_sym_extends] = ACTIONS(942), + [anon_sym_implements] = ACTIONS(942), + [anon_sym_interface] = ACTIONS(942), + [anon_sym_typedef] = ACTIONS(942), + [anon_sym_function] = ACTIONS(942), + [anon_sym_var] = ACTIONS(942), + [aux_sym_integer_token1] = ACTIONS(942), + [aux_sym_integer_token2] = ACTIONS(940), + [aux_sym_float_token1] = ACTIONS(942), + [aux_sym_float_token2] = ACTIONS(940), + [anon_sym_true] = ACTIONS(942), + [anon_sym_false] = ACTIONS(942), + [aux_sym_string_token1] = ACTIONS(940), + [aux_sym_string_token3] = ACTIONS(940), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(942), + [anon_sym_catch] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_enum] = ACTIONS(942), + [anon_sym_extern] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_macro] = ACTIONS(942), + [anon_sym_operator] = ACTIONS(942), + [anon_sym_overload] = ACTIONS(942), + [anon_sym_override] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_static] = ACTIONS(942), + [anon_sym_try] = ACTIONS(942), + [anon_sym_untyped] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [sym__semicolon] = ACTIONS(940), }, - [165] = { - [ts_builtin_sym_end] = ACTIONS(946), - [sym_identifier] = ACTIONS(948), - [anon_sym_POUND] = ACTIONS(946), - [anon_sym_package] = ACTIONS(948), - [anon_sym_import] = ACTIONS(948), - [anon_sym_using] = ACTIONS(948), - [anon_sym_throw] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(946), - [anon_sym_switch] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(946), - [anon_sym_RBRACE] = ACTIONS(946), - [anon_sym_case] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_cast] = ACTIONS(948), - [anon_sym_DOLLARtype] = ACTIONS(946), - [anon_sym_in] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(946), - [anon_sym_this] = ACTIONS(948), - [anon_sym_DASH_GT] = ACTIONS(671), - [anon_sym_AT] = ACTIONS(948), - [anon_sym_AT_COLON] = ACTIONS(946), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_new] = ACTIONS(948), - [anon_sym_TILDE] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_PLUS_PLUS] = ACTIONS(946), - [anon_sym_DASH_DASH] = ACTIONS(946), - [anon_sym_PERCENT] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(946), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_LT_LT] = ACTIONS(946), - [anon_sym_GT_GT] = ACTIONS(948), - [anon_sym_GT_GT_GT] = ACTIONS(946), - [anon_sym_AMP] = ACTIONS(948), - [anon_sym_PIPE] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(946), - [anon_sym_AMP_AMP] = ACTIONS(946), - [anon_sym_PIPE_PIPE] = ACTIONS(946), - [anon_sym_EQ_EQ] = ACTIONS(946), - [anon_sym_BANG_EQ] = ACTIONS(946), - [anon_sym_LT] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(946), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_GT_EQ] = ACTIONS(946), - [anon_sym_EQ_GT] = ACTIONS(946), - [anon_sym_QMARK_QMARK] = ACTIONS(946), - [anon_sym_EQ] = ACTIONS(948), - [sym__rangeOperator] = ACTIONS(946), - [anon_sym_null] = ACTIONS(948), - [anon_sym_dynamic] = ACTIONS(948), - [anon_sym_final] = ACTIONS(948), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_class] = ACTIONS(948), - [anon_sym_extends] = ACTIONS(948), - [anon_sym_implements] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(948), - [anon_sym_typedef] = ACTIONS(948), - [anon_sym_function] = ACTIONS(948), - [anon_sym_var] = ACTIONS(948), - [aux_sym_integer_token1] = ACTIONS(948), - [aux_sym_integer_token2] = ACTIONS(946), - [aux_sym_float_token1] = ACTIONS(948), - [aux_sym_float_token2] = ACTIONS(946), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [aux_sym_string_token1] = ACTIONS(946), - [aux_sym_string_token3] = ACTIONS(946), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(948), - [anon_sym_catch] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_inline] = ACTIONS(948), - [anon_sym_macro] = ACTIONS(948), - [anon_sym_operator] = ACTIONS(948), - [anon_sym_overload] = ACTIONS(948), - [anon_sym_override] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_static] = ACTIONS(948), - [anon_sym_try] = ACTIONS(948), - [anon_sym_untyped] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [sym__semicolon] = ACTIONS(946), + [199] = { + [ts_builtin_sym_end] = ACTIONS(418), + [sym_identifier] = ACTIONS(420), + [anon_sym_POUND] = ACTIONS(418), + [anon_sym_package] = ACTIONS(420), + [anon_sym_import] = ACTIONS(420), + [anon_sym_using] = ACTIONS(420), + [anon_sym_throw] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(418), + [anon_sym_switch] = ACTIONS(420), + [anon_sym_LBRACE] = ACTIONS(418), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_case] = ACTIONS(420), + [anon_sym_default] = ACTIONS(420), + [anon_sym_cast] = ACTIONS(420), + [anon_sym_DOLLARtype] = ACTIONS(418), + [anon_sym_in] = ACTIONS(420), + [anon_sym_LBRACK] = ACTIONS(418), + [anon_sym_this] = ACTIONS(420), + [anon_sym_AT] = ACTIONS(420), + [anon_sym_AT_COLON] = ACTIONS(418), + [anon_sym_if] = ACTIONS(420), + [anon_sym_else] = ACTIONS(420), + [anon_sym_new] = ACTIONS(420), + [sym__prefixUnaryOperator] = ACTIONS(420), + [sym__eitherUnaryOperator] = ACTIONS(418), + [anon_sym_null] = ACTIONS(420), + [anon_sym_dynamic] = ACTIONS(420), + [anon_sym_final] = ACTIONS(420), + [anon_sym_abstract] = ACTIONS(420), + [anon_sym_class] = ACTIONS(420), + [anon_sym_extends] = ACTIONS(420), + [anon_sym_implements] = ACTIONS(420), + [anon_sym_interface] = ACTIONS(420), + [anon_sym_typedef] = ACTIONS(420), + [anon_sym_function] = ACTIONS(420), + [anon_sym_var] = ACTIONS(420), + [aux_sym_integer_token1] = ACTIONS(420), + [aux_sym_integer_token2] = ACTIONS(418), + [aux_sym_float_token1] = ACTIONS(420), + [aux_sym_float_token2] = ACTIONS(418), + [anon_sym_true] = ACTIONS(420), + [anon_sym_false] = ACTIONS(420), + [aux_sym_string_token1] = ACTIONS(418), + [aux_sym_string_token3] = ACTIONS(418), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(420), + [anon_sym_catch] = ACTIONS(420), + [anon_sym_continue] = ACTIONS(420), + [anon_sym_do] = ACTIONS(420), + [anon_sym_enum] = ACTIONS(420), + [anon_sym_extern] = ACTIONS(420), + [anon_sym_for] = ACTIONS(420), + [anon_sym_inline] = ACTIONS(420), + [anon_sym_macro] = ACTIONS(420), + [anon_sym_operator] = ACTIONS(420), + [anon_sym_overload] = ACTIONS(420), + [anon_sym_override] = ACTIONS(420), + [anon_sym_private] = ACTIONS(420), + [anon_sym_public] = ACTIONS(420), + [anon_sym_return] = ACTIONS(420), + [anon_sym_static] = ACTIONS(420), + [anon_sym_try] = ACTIONS(420), + [anon_sym_untyped] = ACTIONS(420), + [anon_sym_while] = ACTIONS(420), + [sym__semicolon] = ACTIONS(418), }, - [166] = { - [ts_builtin_sym_end] = ACTIONS(950), - [sym_identifier] = ACTIONS(952), - [anon_sym_POUND] = ACTIONS(950), - [anon_sym_package] = ACTIONS(952), - [anon_sym_import] = ACTIONS(952), - [anon_sym_using] = ACTIONS(952), - [anon_sym_throw] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_switch] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_case] = ACTIONS(952), - [anon_sym_default] = ACTIONS(952), - [anon_sym_cast] = ACTIONS(952), - [anon_sym_DOLLARtype] = ACTIONS(950), - [anon_sym_in] = ACTIONS(952), - [anon_sym_LBRACK] = ACTIONS(950), - [anon_sym_this] = ACTIONS(952), - [anon_sym_AT] = ACTIONS(952), - [anon_sym_AT_COLON] = ACTIONS(950), - [anon_sym_if] = ACTIONS(952), - [anon_sym_else] = ACTIONS(952), - [anon_sym_elseif] = ACTIONS(950), - [anon_sym_new] = ACTIONS(952), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(952), - [anon_sym_DASH] = ACTIONS(952), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_PERCENT] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_SLASH] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(952), - [anon_sym_LT_LT] = ACTIONS(950), - [anon_sym_GT_GT] = ACTIONS(952), - [anon_sym_GT_GT_GT] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(952), - [anon_sym_PIPE] = ACTIONS(952), - [anon_sym_CARET] = ACTIONS(950), - [anon_sym_AMP_AMP] = ACTIONS(950), - [anon_sym_PIPE_PIPE] = ACTIONS(950), - [anon_sym_EQ_EQ] = ACTIONS(950), - [anon_sym_BANG_EQ] = ACTIONS(950), - [anon_sym_LT] = ACTIONS(952), - [anon_sym_LT_EQ] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(952), - [anon_sym_GT_EQ] = ACTIONS(950), - [anon_sym_EQ_GT] = ACTIONS(950), - [anon_sym_QMARK_QMARK] = ACTIONS(950), - [anon_sym_EQ] = ACTIONS(952), - [sym__rangeOperator] = ACTIONS(950), - [anon_sym_null] = ACTIONS(952), - [anon_sym_dynamic] = ACTIONS(952), - [anon_sym_final] = ACTIONS(952), - [anon_sym_abstract] = ACTIONS(952), - [anon_sym_class] = ACTIONS(952), - [anon_sym_extends] = ACTIONS(952), - [anon_sym_implements] = ACTIONS(952), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_typedef] = ACTIONS(952), - [anon_sym_function] = ACTIONS(952), - [anon_sym_var] = ACTIONS(952), - [aux_sym_integer_token1] = ACTIONS(952), - [aux_sym_integer_token2] = ACTIONS(950), - [aux_sym_float_token1] = ACTIONS(952), - [aux_sym_float_token2] = ACTIONS(950), - [anon_sym_true] = ACTIONS(952), - [anon_sym_false] = ACTIONS(952), - [aux_sym_string_token1] = ACTIONS(950), - [aux_sym_string_token3] = ACTIONS(950), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(952), - [anon_sym_catch] = ACTIONS(952), - [anon_sym_continue] = ACTIONS(952), - [anon_sym_do] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_for] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(952), - [anon_sym_macro] = ACTIONS(952), - [anon_sym_operator] = ACTIONS(952), - [anon_sym_overload] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_return] = ACTIONS(952), - [anon_sym_static] = ACTIONS(952), - [anon_sym_try] = ACTIONS(952), - [anon_sym_untyped] = ACTIONS(952), - [anon_sym_while] = ACTIONS(952), - [sym__semicolon] = ACTIONS(950), + [200] = { + [ts_builtin_sym_end] = ACTIONS(944), + [sym_identifier] = ACTIONS(946), + [anon_sym_POUND] = ACTIONS(944), + [anon_sym_package] = ACTIONS(946), + [anon_sym_import] = ACTIONS(946), + [anon_sym_using] = ACTIONS(946), + [anon_sym_throw] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_switch] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(944), + [anon_sym_case] = ACTIONS(946), + [anon_sym_default] = ACTIONS(946), + [anon_sym_cast] = ACTIONS(946), + [anon_sym_DOLLARtype] = ACTIONS(944), + [anon_sym_in] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_this] = ACTIONS(946), + [anon_sym_AT] = ACTIONS(946), + [anon_sym_AT_COLON] = ACTIONS(944), + [anon_sym_if] = ACTIONS(946), + [anon_sym_else] = ACTIONS(946), + [anon_sym_new] = ACTIONS(946), + [sym__prefixUnaryOperator] = ACTIONS(946), + [sym__eitherUnaryOperator] = ACTIONS(944), + [anon_sym_null] = ACTIONS(946), + [anon_sym_dynamic] = ACTIONS(946), + [anon_sym_final] = ACTIONS(946), + [anon_sym_abstract] = ACTIONS(946), + [anon_sym_class] = ACTIONS(946), + [anon_sym_extends] = ACTIONS(946), + [anon_sym_implements] = ACTIONS(946), + [anon_sym_interface] = ACTIONS(946), + [anon_sym_typedef] = ACTIONS(946), + [anon_sym_function] = ACTIONS(946), + [anon_sym_var] = ACTIONS(946), + [aux_sym_integer_token1] = ACTIONS(946), + [aux_sym_integer_token2] = ACTIONS(944), + [aux_sym_float_token1] = ACTIONS(946), + [aux_sym_float_token2] = ACTIONS(944), + [anon_sym_true] = ACTIONS(946), + [anon_sym_false] = ACTIONS(946), + [aux_sym_string_token1] = ACTIONS(944), + [aux_sym_string_token3] = ACTIONS(944), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(946), + [anon_sym_catch] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_enum] = ACTIONS(946), + [anon_sym_extern] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_inline] = ACTIONS(946), + [anon_sym_macro] = ACTIONS(946), + [anon_sym_operator] = ACTIONS(946), + [anon_sym_overload] = ACTIONS(946), + [anon_sym_override] = ACTIONS(946), + [anon_sym_private] = ACTIONS(946), + [anon_sym_public] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_static] = ACTIONS(946), + [anon_sym_try] = ACTIONS(946), + [anon_sym_untyped] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [sym__semicolon] = ACTIONS(944), }, - [167] = { - [ts_builtin_sym_end] = ACTIONS(769), - [sym_identifier] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(769), - [anon_sym_package] = ACTIONS(771), - [anon_sym_import] = ACTIONS(771), - [anon_sym_using] = ACTIONS(771), - [anon_sym_throw] = ACTIONS(771), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_switch] = ACTIONS(771), - [anon_sym_LBRACE] = ACTIONS(769), - [anon_sym_RBRACE] = ACTIONS(769), - [anon_sym_case] = ACTIONS(771), - [anon_sym_default] = ACTIONS(771), - [anon_sym_cast] = ACTIONS(771), - [anon_sym_DOLLARtype] = ACTIONS(769), - [anon_sym_in] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_this] = ACTIONS(771), - [anon_sym_AT] = ACTIONS(771), - [anon_sym_AT_COLON] = ACTIONS(769), - [anon_sym_if] = ACTIONS(771), - [anon_sym_else] = ACTIONS(771), - [anon_sym_elseif] = ACTIONS(769), - [anon_sym_new] = ACTIONS(771), - [anon_sym_TILDE] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_PERCENT] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_LT_LT] = ACTIONS(769), - [anon_sym_GT_GT] = ACTIONS(771), - [anon_sym_GT_GT_GT] = ACTIONS(769), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(769), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(769), - [anon_sym_EQ_GT] = ACTIONS(769), - [anon_sym_QMARK_QMARK] = ACTIONS(769), - [anon_sym_EQ] = ACTIONS(771), - [sym__rangeOperator] = ACTIONS(769), - [anon_sym_null] = ACTIONS(771), - [anon_sym_dynamic] = ACTIONS(771), - [anon_sym_final] = ACTIONS(771), - [anon_sym_abstract] = ACTIONS(771), - [anon_sym_class] = ACTIONS(771), - [anon_sym_extends] = ACTIONS(771), - [anon_sym_implements] = ACTIONS(771), - [anon_sym_interface] = ACTIONS(771), - [anon_sym_typedef] = ACTIONS(771), - [anon_sym_function] = ACTIONS(771), - [anon_sym_var] = ACTIONS(771), - [aux_sym_integer_token1] = ACTIONS(771), - [aux_sym_integer_token2] = ACTIONS(769), - [aux_sym_float_token1] = ACTIONS(771), - [aux_sym_float_token2] = ACTIONS(769), - [anon_sym_true] = ACTIONS(771), - [anon_sym_false] = ACTIONS(771), - [aux_sym_string_token1] = ACTIONS(769), - [aux_sym_string_token3] = ACTIONS(769), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(771), - [anon_sym_catch] = ACTIONS(771), - [anon_sym_continue] = ACTIONS(771), - [anon_sym_do] = ACTIONS(771), - [anon_sym_enum] = ACTIONS(771), - [anon_sym_extern] = ACTIONS(771), - [anon_sym_for] = ACTIONS(771), - [anon_sym_inline] = ACTIONS(771), - [anon_sym_macro] = ACTIONS(771), - [anon_sym_operator] = ACTIONS(771), - [anon_sym_overload] = ACTIONS(771), - [anon_sym_override] = ACTIONS(771), - [anon_sym_private] = ACTIONS(771), - [anon_sym_public] = ACTIONS(771), - [anon_sym_return] = ACTIONS(771), - [anon_sym_static] = ACTIONS(771), - [anon_sym_try] = ACTIONS(771), - [anon_sym_untyped] = ACTIONS(771), - [anon_sym_while] = ACTIONS(771), - [sym__semicolon] = ACTIONS(769), + [201] = { + [ts_builtin_sym_end] = ACTIONS(948), + [sym_identifier] = ACTIONS(950), + [anon_sym_POUND] = ACTIONS(948), + [anon_sym_package] = ACTIONS(950), + [anon_sym_import] = ACTIONS(950), + [anon_sym_using] = ACTIONS(950), + [anon_sym_throw] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_switch] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_case] = ACTIONS(950), + [anon_sym_default] = ACTIONS(950), + [anon_sym_cast] = ACTIONS(950), + [anon_sym_DOLLARtype] = ACTIONS(948), + [anon_sym_in] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(948), + [anon_sym_this] = ACTIONS(950), + [anon_sym_AT] = ACTIONS(950), + [anon_sym_AT_COLON] = ACTIONS(948), + [anon_sym_if] = ACTIONS(950), + [anon_sym_else] = ACTIONS(950), + [anon_sym_new] = ACTIONS(950), + [sym__prefixUnaryOperator] = ACTIONS(950), + [sym__eitherUnaryOperator] = ACTIONS(948), + [anon_sym_null] = ACTIONS(950), + [anon_sym_dynamic] = ACTIONS(950), + [anon_sym_final] = ACTIONS(950), + [anon_sym_abstract] = ACTIONS(950), + [anon_sym_class] = ACTIONS(950), + [anon_sym_extends] = ACTIONS(950), + [anon_sym_implements] = ACTIONS(950), + [anon_sym_interface] = ACTIONS(950), + [anon_sym_typedef] = ACTIONS(950), + [anon_sym_function] = ACTIONS(950), + [anon_sym_var] = ACTIONS(950), + [aux_sym_integer_token1] = ACTIONS(950), + [aux_sym_integer_token2] = ACTIONS(948), + [aux_sym_float_token1] = ACTIONS(950), + [aux_sym_float_token2] = ACTIONS(948), + [anon_sym_true] = ACTIONS(950), + [anon_sym_false] = ACTIONS(950), + [aux_sym_string_token1] = ACTIONS(948), + [aux_sym_string_token3] = ACTIONS(948), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(950), + [anon_sym_catch] = ACTIONS(950), + [anon_sym_continue] = ACTIONS(950), + [anon_sym_do] = ACTIONS(950), + [anon_sym_enum] = ACTIONS(950), + [anon_sym_extern] = ACTIONS(950), + [anon_sym_for] = ACTIONS(950), + [anon_sym_inline] = ACTIONS(950), + [anon_sym_macro] = ACTIONS(950), + [anon_sym_operator] = ACTIONS(950), + [anon_sym_overload] = ACTIONS(950), + [anon_sym_override] = ACTIONS(950), + [anon_sym_private] = ACTIONS(950), + [anon_sym_public] = ACTIONS(950), + [anon_sym_return] = ACTIONS(950), + [anon_sym_static] = ACTIONS(950), + [anon_sym_try] = ACTIONS(950), + [anon_sym_untyped] = ACTIONS(950), + [anon_sym_while] = ACTIONS(950), + [sym__semicolon] = ACTIONS(948), }, - [168] = { - [ts_builtin_sym_end] = ACTIONS(954), - [sym_identifier] = ACTIONS(956), - [anon_sym_POUND] = ACTIONS(954), - [anon_sym_package] = ACTIONS(956), - [anon_sym_import] = ACTIONS(956), - [anon_sym_using] = ACTIONS(956), - [anon_sym_throw] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(954), - [anon_sym_switch] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_RBRACE] = ACTIONS(954), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), - [anon_sym_cast] = ACTIONS(956), - [anon_sym_DOLLARtype] = ACTIONS(954), - [anon_sym_in] = ACTIONS(956), - [anon_sym_LBRACK] = ACTIONS(954), - [anon_sym_this] = ACTIONS(956), - [anon_sym_DASH_GT] = ACTIONS(671), - [anon_sym_AT] = ACTIONS(956), - [anon_sym_AT_COLON] = ACTIONS(954), - [anon_sym_if] = ACTIONS(956), - [anon_sym_else] = ACTIONS(956), - [anon_sym_new] = ACTIONS(956), - [anon_sym_TILDE] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_DASH] = ACTIONS(956), - [anon_sym_PLUS_PLUS] = ACTIONS(954), - [anon_sym_DASH_DASH] = ACTIONS(954), - [anon_sym_PERCENT] = ACTIONS(954), - [anon_sym_STAR] = ACTIONS(954), - [anon_sym_SLASH] = ACTIONS(956), - [anon_sym_PLUS] = ACTIONS(956), - [anon_sym_LT_LT] = ACTIONS(954), - [anon_sym_GT_GT] = ACTIONS(956), - [anon_sym_GT_GT_GT] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(956), - [anon_sym_PIPE] = ACTIONS(956), - [anon_sym_CARET] = ACTIONS(954), - [anon_sym_AMP_AMP] = ACTIONS(954), - [anon_sym_PIPE_PIPE] = ACTIONS(954), - [anon_sym_EQ_EQ] = ACTIONS(954), - [anon_sym_BANG_EQ] = ACTIONS(954), - [anon_sym_LT] = ACTIONS(956), - [anon_sym_LT_EQ] = ACTIONS(954), - [anon_sym_GT] = ACTIONS(956), - [anon_sym_GT_EQ] = ACTIONS(954), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_QMARK] = ACTIONS(954), - [anon_sym_EQ] = ACTIONS(956), - [sym__rangeOperator] = ACTIONS(954), - [anon_sym_null] = ACTIONS(956), - [anon_sym_dynamic] = ACTIONS(956), - [anon_sym_final] = ACTIONS(956), - [anon_sym_abstract] = ACTIONS(956), - [anon_sym_class] = ACTIONS(956), - [anon_sym_extends] = ACTIONS(956), - [anon_sym_implements] = ACTIONS(956), - [anon_sym_interface] = ACTIONS(956), - [anon_sym_typedef] = ACTIONS(956), - [anon_sym_function] = ACTIONS(956), - [anon_sym_var] = ACTIONS(956), - [aux_sym_integer_token1] = ACTIONS(956), - [aux_sym_integer_token2] = ACTIONS(954), - [aux_sym_float_token1] = ACTIONS(956), - [aux_sym_float_token2] = ACTIONS(954), - [anon_sym_true] = ACTIONS(956), - [anon_sym_false] = ACTIONS(956), - [aux_sym_string_token1] = ACTIONS(954), - [aux_sym_string_token3] = ACTIONS(954), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(956), - [anon_sym_catch] = ACTIONS(956), - [anon_sym_continue] = ACTIONS(956), - [anon_sym_do] = ACTIONS(956), - [anon_sym_enum] = ACTIONS(956), - [anon_sym_extern] = ACTIONS(956), - [anon_sym_for] = ACTIONS(956), - [anon_sym_inline] = ACTIONS(956), - [anon_sym_macro] = ACTIONS(956), - [anon_sym_operator] = ACTIONS(956), - [anon_sym_overload] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_return] = ACTIONS(956), - [anon_sym_static] = ACTIONS(956), - [anon_sym_try] = ACTIONS(956), - [anon_sym_untyped] = ACTIONS(956), - [anon_sym_while] = ACTIONS(956), - [sym__semicolon] = ACTIONS(954), + [202] = { + [ts_builtin_sym_end] = ACTIONS(952), + [sym_identifier] = ACTIONS(954), + [anon_sym_POUND] = ACTIONS(952), + [anon_sym_package] = ACTIONS(954), + [anon_sym_import] = ACTIONS(954), + [anon_sym_using] = ACTIONS(954), + [anon_sym_throw] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_switch] = ACTIONS(954), + [anon_sym_LBRACE] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_case] = ACTIONS(954), + [anon_sym_default] = ACTIONS(954), + [anon_sym_cast] = ACTIONS(954), + [anon_sym_DOLLARtype] = ACTIONS(952), + [anon_sym_in] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_this] = ACTIONS(954), + [anon_sym_AT] = ACTIONS(954), + [anon_sym_AT_COLON] = ACTIONS(952), + [anon_sym_if] = ACTIONS(954), + [anon_sym_else] = ACTIONS(954), + [anon_sym_new] = ACTIONS(954), + [sym__prefixUnaryOperator] = ACTIONS(954), + [sym__eitherUnaryOperator] = ACTIONS(952), + [anon_sym_null] = ACTIONS(954), + [anon_sym_dynamic] = ACTIONS(954), + [anon_sym_final] = ACTIONS(954), + [anon_sym_abstract] = ACTIONS(954), + [anon_sym_class] = ACTIONS(954), + [anon_sym_extends] = ACTIONS(954), + [anon_sym_implements] = ACTIONS(954), + [anon_sym_interface] = ACTIONS(954), + [anon_sym_typedef] = ACTIONS(954), + [anon_sym_function] = ACTIONS(954), + [anon_sym_var] = ACTIONS(954), + [aux_sym_integer_token1] = ACTIONS(954), + [aux_sym_integer_token2] = ACTIONS(952), + [aux_sym_float_token1] = ACTIONS(954), + [aux_sym_float_token2] = ACTIONS(952), + [anon_sym_true] = ACTIONS(954), + [anon_sym_false] = ACTIONS(954), + [aux_sym_string_token1] = ACTIONS(952), + [aux_sym_string_token3] = ACTIONS(952), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(954), + [anon_sym_catch] = ACTIONS(954), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_do] = ACTIONS(954), + [anon_sym_enum] = ACTIONS(954), + [anon_sym_extern] = ACTIONS(954), + [anon_sym_for] = ACTIONS(954), + [anon_sym_inline] = ACTIONS(954), + [anon_sym_macro] = ACTIONS(954), + [anon_sym_operator] = ACTIONS(954), + [anon_sym_overload] = ACTIONS(954), + [anon_sym_override] = ACTIONS(954), + [anon_sym_private] = ACTIONS(954), + [anon_sym_public] = ACTIONS(954), + [anon_sym_return] = ACTIONS(954), + [anon_sym_static] = ACTIONS(954), + [anon_sym_try] = ACTIONS(954), + [anon_sym_untyped] = ACTIONS(954), + [anon_sym_while] = ACTIONS(954), + [sym__semicolon] = ACTIONS(952), }, - [169] = { - [ts_builtin_sym_end] = ACTIONS(958), - [sym_identifier] = ACTIONS(960), - [anon_sym_POUND] = ACTIONS(958), - [anon_sym_package] = ACTIONS(960), - [anon_sym_import] = ACTIONS(960), - [anon_sym_using] = ACTIONS(960), - [anon_sym_throw] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(958), - [anon_sym_switch] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(958), - [anon_sym_RBRACE] = ACTIONS(958), - [anon_sym_case] = ACTIONS(960), - [anon_sym_default] = ACTIONS(960), - [anon_sym_cast] = ACTIONS(960), - [anon_sym_DOLLARtype] = ACTIONS(958), - [anon_sym_in] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(958), - [anon_sym_this] = ACTIONS(960), - [anon_sym_AT] = ACTIONS(960), - [anon_sym_AT_COLON] = ACTIONS(958), - [anon_sym_if] = ACTIONS(960), - [anon_sym_else] = ACTIONS(960), - [anon_sym_new] = ACTIONS(960), - [anon_sym_TILDE] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(960), - [anon_sym_DASH] = ACTIONS(960), - [anon_sym_PLUS_PLUS] = ACTIONS(958), - [anon_sym_DASH_DASH] = ACTIONS(958), - [anon_sym_PERCENT] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(958), - [anon_sym_SLASH] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(960), - [anon_sym_LT_LT] = ACTIONS(958), - [anon_sym_GT_GT] = ACTIONS(960), - [anon_sym_GT_GT_GT] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_CARET] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(958), - [anon_sym_PIPE_PIPE] = ACTIONS(958), - [anon_sym_EQ_EQ] = ACTIONS(958), - [anon_sym_BANG_EQ] = ACTIONS(958), - [anon_sym_LT] = ACTIONS(960), - [anon_sym_LT_EQ] = ACTIONS(958), - [anon_sym_GT] = ACTIONS(960), - [anon_sym_GT_EQ] = ACTIONS(958), - [anon_sym_EQ_GT] = ACTIONS(958), - [anon_sym_QMARK_QMARK] = ACTIONS(958), - [anon_sym_EQ] = ACTIONS(960), - [sym__rangeOperator] = ACTIONS(958), - [anon_sym_null] = ACTIONS(960), - [anon_sym_dynamic] = ACTIONS(960), - [anon_sym_final] = ACTIONS(960), - [anon_sym_abstract] = ACTIONS(960), - [anon_sym_class] = ACTIONS(960), - [anon_sym_extends] = ACTIONS(960), - [anon_sym_implements] = ACTIONS(960), - [anon_sym_interface] = ACTIONS(960), - [anon_sym_typedef] = ACTIONS(960), - [anon_sym_function] = ACTIONS(960), - [anon_sym_var] = ACTIONS(960), - [aux_sym_integer_token1] = ACTIONS(960), - [aux_sym_integer_token2] = ACTIONS(958), - [aux_sym_float_token1] = ACTIONS(960), - [aux_sym_float_token2] = ACTIONS(958), - [anon_sym_true] = ACTIONS(960), - [anon_sym_false] = ACTIONS(960), - [aux_sym_string_token1] = ACTIONS(958), - [aux_sym_string_token3] = ACTIONS(958), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(960), - [anon_sym_catch] = ACTIONS(960), - [anon_sym_continue] = ACTIONS(960), - [anon_sym_do] = ACTIONS(960), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_extern] = ACTIONS(960), - [anon_sym_for] = ACTIONS(960), - [anon_sym_inline] = ACTIONS(960), - [anon_sym_macro] = ACTIONS(960), - [anon_sym_operator] = ACTIONS(960), - [anon_sym_overload] = ACTIONS(960), - [anon_sym_override] = ACTIONS(960), - [anon_sym_private] = ACTIONS(960), - [anon_sym_public] = ACTIONS(960), - [anon_sym_return] = ACTIONS(960), - [anon_sym_static] = ACTIONS(960), - [anon_sym_try] = ACTIONS(960), - [anon_sym_untyped] = ACTIONS(960), - [anon_sym_while] = ACTIONS(960), - [sym__semicolon] = ACTIONS(958), + [203] = { + [ts_builtin_sym_end] = ACTIONS(956), + [sym_identifier] = ACTIONS(958), + [anon_sym_POUND] = ACTIONS(956), + [anon_sym_package] = ACTIONS(958), + [anon_sym_import] = ACTIONS(958), + [anon_sym_using] = ACTIONS(958), + [anon_sym_throw] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_switch] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_case] = ACTIONS(958), + [anon_sym_default] = ACTIONS(958), + [anon_sym_cast] = ACTIONS(958), + [anon_sym_DOLLARtype] = ACTIONS(956), + [anon_sym_in] = ACTIONS(958), + [anon_sym_LBRACK] = ACTIONS(956), + [anon_sym_this] = ACTIONS(958), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_AT_COLON] = ACTIONS(956), + [anon_sym_if] = ACTIONS(958), + [anon_sym_else] = ACTIONS(958), + [anon_sym_new] = ACTIONS(958), + [sym__prefixUnaryOperator] = ACTIONS(958), + [sym__eitherUnaryOperator] = ACTIONS(956), + [anon_sym_null] = ACTIONS(958), + [anon_sym_dynamic] = ACTIONS(958), + [anon_sym_final] = ACTIONS(958), + [anon_sym_abstract] = ACTIONS(958), + [anon_sym_class] = ACTIONS(958), + [anon_sym_extends] = ACTIONS(958), + [anon_sym_implements] = ACTIONS(958), + [anon_sym_interface] = ACTIONS(958), + [anon_sym_typedef] = ACTIONS(958), + [anon_sym_function] = ACTIONS(958), + [anon_sym_var] = ACTIONS(958), + [aux_sym_integer_token1] = ACTIONS(958), + [aux_sym_integer_token2] = ACTIONS(956), + [aux_sym_float_token1] = ACTIONS(958), + [aux_sym_float_token2] = ACTIONS(956), + [anon_sym_true] = ACTIONS(958), + [anon_sym_false] = ACTIONS(958), + [aux_sym_string_token1] = ACTIONS(956), + [aux_sym_string_token3] = ACTIONS(956), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(958), + [anon_sym_catch] = ACTIONS(958), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_do] = ACTIONS(958), + [anon_sym_enum] = ACTIONS(958), + [anon_sym_extern] = ACTIONS(958), + [anon_sym_for] = ACTIONS(958), + [anon_sym_inline] = ACTIONS(958), + [anon_sym_macro] = ACTIONS(958), + [anon_sym_operator] = ACTIONS(958), + [anon_sym_overload] = ACTIONS(958), + [anon_sym_override] = ACTIONS(958), + [anon_sym_private] = ACTIONS(958), + [anon_sym_public] = ACTIONS(958), + [anon_sym_return] = ACTIONS(958), + [anon_sym_static] = ACTIONS(958), + [anon_sym_try] = ACTIONS(958), + [anon_sym_untyped] = ACTIONS(958), + [anon_sym_while] = ACTIONS(958), + [sym__semicolon] = ACTIONS(956), }, - [170] = { - [ts_builtin_sym_end] = ACTIONS(962), - [sym_identifier] = ACTIONS(964), - [anon_sym_POUND] = ACTIONS(962), - [anon_sym_package] = ACTIONS(964), - [anon_sym_import] = ACTIONS(964), - [anon_sym_using] = ACTIONS(964), - [anon_sym_throw] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(962), - [anon_sym_switch] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(962), - [anon_sym_case] = ACTIONS(964), - [anon_sym_default] = ACTIONS(964), - [anon_sym_cast] = ACTIONS(964), - [anon_sym_DOLLARtype] = ACTIONS(962), - [anon_sym_in] = ACTIONS(964), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_this] = ACTIONS(964), - [anon_sym_AT] = ACTIONS(964), - [anon_sym_AT_COLON] = ACTIONS(962), - [anon_sym_if] = ACTIONS(964), - [anon_sym_else] = ACTIONS(964), - [anon_sym_new] = ACTIONS(964), - [anon_sym_TILDE] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_PLUS_PLUS] = ACTIONS(962), - [anon_sym_DASH_DASH] = ACTIONS(962), - [anon_sym_PERCENT] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_SLASH] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(962), - [anon_sym_GT_GT] = ACTIONS(964), - [anon_sym_GT_GT_GT] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(964), - [anon_sym_CARET] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(962), - [anon_sym_PIPE_PIPE] = ACTIONS(962), - [anon_sym_EQ_EQ] = ACTIONS(962), - [anon_sym_BANG_EQ] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(964), - [anon_sym_LT_EQ] = ACTIONS(962), - [anon_sym_GT] = ACTIONS(964), - [anon_sym_GT_EQ] = ACTIONS(962), - [anon_sym_EQ_GT] = ACTIONS(962), - [anon_sym_QMARK_QMARK] = ACTIONS(962), - [anon_sym_EQ] = ACTIONS(964), - [sym__rangeOperator] = ACTIONS(962), - [anon_sym_null] = ACTIONS(964), - [anon_sym_dynamic] = ACTIONS(964), - [anon_sym_final] = ACTIONS(964), - [anon_sym_abstract] = ACTIONS(964), - [anon_sym_class] = ACTIONS(964), - [anon_sym_extends] = ACTIONS(964), - [anon_sym_implements] = ACTIONS(964), - [anon_sym_interface] = ACTIONS(964), - [anon_sym_typedef] = ACTIONS(964), - [anon_sym_function] = ACTIONS(964), - [anon_sym_var] = ACTIONS(964), - [aux_sym_integer_token1] = ACTIONS(964), - [aux_sym_integer_token2] = ACTIONS(962), - [aux_sym_float_token1] = ACTIONS(964), - [aux_sym_float_token2] = ACTIONS(962), - [anon_sym_true] = ACTIONS(964), - [anon_sym_false] = ACTIONS(964), - [aux_sym_string_token1] = ACTIONS(962), - [aux_sym_string_token3] = ACTIONS(962), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(964), - [anon_sym_catch] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_do] = ACTIONS(964), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(964), - [anon_sym_macro] = ACTIONS(964), - [anon_sym_operator] = ACTIONS(964), - [anon_sym_overload] = ACTIONS(964), - [anon_sym_override] = ACTIONS(964), - [anon_sym_private] = ACTIONS(964), - [anon_sym_public] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_static] = ACTIONS(964), - [anon_sym_try] = ACTIONS(964), - [anon_sym_untyped] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [sym__semicolon] = ACTIONS(962), + [204] = { + [ts_builtin_sym_end] = ACTIONS(960), + [sym_identifier] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(960), + [anon_sym_package] = ACTIONS(962), + [anon_sym_import] = ACTIONS(962), + [anon_sym_using] = ACTIONS(962), + [anon_sym_throw] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_switch] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_case] = ACTIONS(962), + [anon_sym_default] = ACTIONS(962), + [anon_sym_cast] = ACTIONS(962), + [anon_sym_DOLLARtype] = ACTIONS(960), + [anon_sym_in] = ACTIONS(962), + [anon_sym_LBRACK] = ACTIONS(960), + [anon_sym_this] = ACTIONS(962), + [anon_sym_AT] = ACTIONS(962), + [anon_sym_AT_COLON] = ACTIONS(960), + [anon_sym_if] = ACTIONS(962), + [anon_sym_else] = ACTIONS(962), + [anon_sym_new] = ACTIONS(962), + [sym__prefixUnaryOperator] = ACTIONS(962), + [sym__eitherUnaryOperator] = ACTIONS(960), + [anon_sym_null] = ACTIONS(962), + [anon_sym_dynamic] = ACTIONS(962), + [anon_sym_final] = ACTIONS(962), + [anon_sym_abstract] = ACTIONS(962), + [anon_sym_class] = ACTIONS(962), + [anon_sym_extends] = ACTIONS(962), + [anon_sym_implements] = ACTIONS(962), + [anon_sym_interface] = ACTIONS(962), + [anon_sym_typedef] = ACTIONS(962), + [anon_sym_function] = ACTIONS(962), + [anon_sym_var] = ACTIONS(962), + [aux_sym_integer_token1] = ACTIONS(962), + [aux_sym_integer_token2] = ACTIONS(960), + [aux_sym_float_token1] = ACTIONS(962), + [aux_sym_float_token2] = ACTIONS(960), + [anon_sym_true] = ACTIONS(962), + [anon_sym_false] = ACTIONS(962), + [aux_sym_string_token1] = ACTIONS(960), + [aux_sym_string_token3] = ACTIONS(960), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(962), + [anon_sym_catch] = ACTIONS(962), + [anon_sym_continue] = ACTIONS(962), + [anon_sym_do] = ACTIONS(962), + [anon_sym_enum] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(962), + [anon_sym_for] = ACTIONS(962), + [anon_sym_inline] = ACTIONS(962), + [anon_sym_macro] = ACTIONS(962), + [anon_sym_operator] = ACTIONS(962), + [anon_sym_overload] = ACTIONS(962), + [anon_sym_override] = ACTIONS(962), + [anon_sym_private] = ACTIONS(962), + [anon_sym_public] = ACTIONS(962), + [anon_sym_return] = ACTIONS(962), + [anon_sym_static] = ACTIONS(962), + [anon_sym_try] = ACTIONS(962), + [anon_sym_untyped] = ACTIONS(962), + [anon_sym_while] = ACTIONS(962), + [sym__semicolon] = ACTIONS(960), }, - [171] = { - [ts_builtin_sym_end] = ACTIONS(966), - [sym_identifier] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(966), - [anon_sym_package] = ACTIONS(968), - [anon_sym_import] = ACTIONS(968), - [anon_sym_using] = ACTIONS(968), - [anon_sym_throw] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(966), - [anon_sym_switch] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_case] = ACTIONS(968), - [anon_sym_default] = ACTIONS(968), - [anon_sym_cast] = ACTIONS(968), - [anon_sym_DOLLARtype] = ACTIONS(966), - [anon_sym_in] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(966), - [anon_sym_this] = ACTIONS(968), - [anon_sym_AT] = ACTIONS(968), - [anon_sym_AT_COLON] = ACTIONS(966), - [anon_sym_if] = ACTIONS(968), - [anon_sym_else] = ACTIONS(968), - [anon_sym_new] = ACTIONS(968), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(966), - [anon_sym_DASH_DASH] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(966), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_GT_GT] = ACTIONS(968), - [anon_sym_GT_GT_GT] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_CARET] = ACTIONS(966), - [anon_sym_AMP_AMP] = ACTIONS(966), - [anon_sym_PIPE_PIPE] = ACTIONS(966), - [anon_sym_EQ_EQ] = ACTIONS(966), - [anon_sym_BANG_EQ] = ACTIONS(966), - [anon_sym_LT] = ACTIONS(968), - [anon_sym_LT_EQ] = ACTIONS(966), - [anon_sym_GT] = ACTIONS(968), - [anon_sym_GT_EQ] = ACTIONS(966), - [anon_sym_EQ_GT] = ACTIONS(966), - [anon_sym_QMARK_QMARK] = ACTIONS(966), - [anon_sym_EQ] = ACTIONS(968), - [sym__rangeOperator] = ACTIONS(966), - [anon_sym_null] = ACTIONS(968), - [anon_sym_dynamic] = ACTIONS(968), - [anon_sym_final] = ACTIONS(968), - [anon_sym_abstract] = ACTIONS(968), - [anon_sym_class] = ACTIONS(968), - [anon_sym_extends] = ACTIONS(968), - [anon_sym_implements] = ACTIONS(968), - [anon_sym_interface] = ACTIONS(968), - [anon_sym_typedef] = ACTIONS(968), - [anon_sym_function] = ACTIONS(968), - [anon_sym_var] = ACTIONS(968), - [aux_sym_integer_token1] = ACTIONS(968), - [aux_sym_integer_token2] = ACTIONS(966), - [aux_sym_float_token1] = ACTIONS(968), - [aux_sym_float_token2] = ACTIONS(966), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = ACTIONS(968), - [aux_sym_string_token1] = ACTIONS(966), - [aux_sym_string_token3] = ACTIONS(966), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(968), - [anon_sym_catch] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_enum] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_inline] = ACTIONS(968), - [anon_sym_macro] = ACTIONS(968), - [anon_sym_operator] = ACTIONS(968), - [anon_sym_overload] = ACTIONS(968), - [anon_sym_override] = ACTIONS(968), - [anon_sym_private] = ACTIONS(968), - [anon_sym_public] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_static] = ACTIONS(968), - [anon_sym_try] = ACTIONS(968), - [anon_sym_untyped] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [sym__semicolon] = ACTIONS(966), + [205] = { + [ts_builtin_sym_end] = ACTIONS(964), + [sym_identifier] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(964), + [anon_sym_package] = ACTIONS(966), + [anon_sym_import] = ACTIONS(966), + [anon_sym_using] = ACTIONS(966), + [anon_sym_throw] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_switch] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_case] = ACTIONS(966), + [anon_sym_default] = ACTIONS(966), + [anon_sym_cast] = ACTIONS(966), + [anon_sym_DOLLARtype] = ACTIONS(964), + [anon_sym_in] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(964), + [anon_sym_this] = ACTIONS(966), + [anon_sym_AT] = ACTIONS(966), + [anon_sym_AT_COLON] = ACTIONS(964), + [anon_sym_if] = ACTIONS(966), + [anon_sym_else] = ACTIONS(966), + [anon_sym_new] = ACTIONS(966), + [sym__prefixUnaryOperator] = ACTIONS(966), + [sym__eitherUnaryOperator] = ACTIONS(964), + [anon_sym_null] = ACTIONS(966), + [anon_sym_dynamic] = ACTIONS(966), + [anon_sym_final] = ACTIONS(966), + [anon_sym_abstract] = ACTIONS(966), + [anon_sym_class] = ACTIONS(966), + [anon_sym_extends] = ACTIONS(966), + [anon_sym_implements] = ACTIONS(966), + [anon_sym_interface] = ACTIONS(966), + [anon_sym_typedef] = ACTIONS(966), + [anon_sym_function] = ACTIONS(966), + [anon_sym_var] = ACTIONS(966), + [aux_sym_integer_token1] = ACTIONS(966), + [aux_sym_integer_token2] = ACTIONS(964), + [aux_sym_float_token1] = ACTIONS(966), + [aux_sym_float_token2] = ACTIONS(964), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym_string_token1] = ACTIONS(964), + [aux_sym_string_token3] = ACTIONS(964), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(966), + [anon_sym_catch] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_enum] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_inline] = ACTIONS(966), + [anon_sym_macro] = ACTIONS(966), + [anon_sym_operator] = ACTIONS(966), + [anon_sym_overload] = ACTIONS(966), + [anon_sym_override] = ACTIONS(966), + [anon_sym_private] = ACTIONS(966), + [anon_sym_public] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_static] = ACTIONS(966), + [anon_sym_try] = ACTIONS(966), + [anon_sym_untyped] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [sym__semicolon] = ACTIONS(964), }, - [172] = { - [ts_builtin_sym_end] = ACTIONS(970), - [sym_identifier] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(970), - [anon_sym_package] = ACTIONS(972), - [anon_sym_import] = ACTIONS(972), - [anon_sym_using] = ACTIONS(972), - [anon_sym_throw] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(970), - [anon_sym_RBRACE] = ACTIONS(970), - [anon_sym_case] = ACTIONS(972), - [anon_sym_default] = ACTIONS(972), - [anon_sym_cast] = ACTIONS(972), - [anon_sym_DOLLARtype] = ACTIONS(970), - [anon_sym_in] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_this] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(972), - [anon_sym_AT_COLON] = ACTIONS(970), - [anon_sym_if] = ACTIONS(972), - [anon_sym_else] = ACTIONS(972), - [anon_sym_new] = ACTIONS(972), - [anon_sym_TILDE] = ACTIONS(970), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(970), - [anon_sym_DASH_DASH] = ACTIONS(970), - [anon_sym_PERCENT] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_LT_LT] = ACTIONS(970), - [anon_sym_GT_GT] = ACTIONS(972), - [anon_sym_GT_GT_GT] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(970), - [anon_sym_AMP_AMP] = ACTIONS(970), - [anon_sym_PIPE_PIPE] = ACTIONS(970), - [anon_sym_EQ_EQ] = ACTIONS(970), - [anon_sym_BANG_EQ] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(972), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_GT] = ACTIONS(972), - [anon_sym_GT_EQ] = ACTIONS(970), - [anon_sym_EQ_GT] = ACTIONS(970), - [anon_sym_QMARK_QMARK] = ACTIONS(970), - [anon_sym_EQ] = ACTIONS(972), - [sym__rangeOperator] = ACTIONS(970), - [anon_sym_null] = ACTIONS(972), - [anon_sym_dynamic] = ACTIONS(972), - [anon_sym_final] = ACTIONS(972), - [anon_sym_abstract] = ACTIONS(972), - [anon_sym_class] = ACTIONS(972), - [anon_sym_extends] = ACTIONS(972), - [anon_sym_implements] = ACTIONS(972), - [anon_sym_interface] = ACTIONS(972), - [anon_sym_typedef] = ACTIONS(972), - [anon_sym_function] = ACTIONS(972), - [anon_sym_var] = ACTIONS(972), - [aux_sym_integer_token1] = ACTIONS(972), - [aux_sym_integer_token2] = ACTIONS(970), - [aux_sym_float_token1] = ACTIONS(972), - [aux_sym_float_token2] = ACTIONS(970), - [anon_sym_true] = ACTIONS(972), - [anon_sym_false] = ACTIONS(972), - [aux_sym_string_token1] = ACTIONS(970), - [aux_sym_string_token3] = ACTIONS(970), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(972), - [anon_sym_catch] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_do] = ACTIONS(972), - [anon_sym_enum] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_inline] = ACTIONS(972), - [anon_sym_macro] = ACTIONS(972), - [anon_sym_operator] = ACTIONS(972), - [anon_sym_overload] = ACTIONS(972), - [anon_sym_override] = ACTIONS(972), - [anon_sym_private] = ACTIONS(972), - [anon_sym_public] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_static] = ACTIONS(972), - [anon_sym_try] = ACTIONS(972), - [anon_sym_untyped] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [sym__semicolon] = ACTIONS(970), + [206] = { + [ts_builtin_sym_end] = ACTIONS(968), + [sym_identifier] = ACTIONS(970), + [anon_sym_POUND] = ACTIONS(968), + [anon_sym_package] = ACTIONS(970), + [anon_sym_import] = ACTIONS(970), + [anon_sym_using] = ACTIONS(970), + [anon_sym_throw] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_switch] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_case] = ACTIONS(970), + [anon_sym_default] = ACTIONS(970), + [anon_sym_cast] = ACTIONS(970), + [anon_sym_DOLLARtype] = ACTIONS(968), + [anon_sym_in] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(968), + [anon_sym_this] = ACTIONS(970), + [anon_sym_AT] = ACTIONS(970), + [anon_sym_AT_COLON] = ACTIONS(968), + [anon_sym_if] = ACTIONS(970), + [anon_sym_else] = ACTIONS(970), + [anon_sym_new] = ACTIONS(970), + [sym__prefixUnaryOperator] = ACTIONS(970), + [sym__eitherUnaryOperator] = ACTIONS(968), + [anon_sym_null] = ACTIONS(970), + [anon_sym_dynamic] = ACTIONS(970), + [anon_sym_final] = ACTIONS(970), + [anon_sym_abstract] = ACTIONS(970), + [anon_sym_class] = ACTIONS(970), + [anon_sym_extends] = ACTIONS(970), + [anon_sym_implements] = ACTIONS(970), + [anon_sym_interface] = ACTIONS(970), + [anon_sym_typedef] = ACTIONS(970), + [anon_sym_function] = ACTIONS(970), + [anon_sym_var] = ACTIONS(970), + [aux_sym_integer_token1] = ACTIONS(970), + [aux_sym_integer_token2] = ACTIONS(968), + [aux_sym_float_token1] = ACTIONS(970), + [aux_sym_float_token2] = ACTIONS(968), + [anon_sym_true] = ACTIONS(970), + [anon_sym_false] = ACTIONS(970), + [aux_sym_string_token1] = ACTIONS(968), + [aux_sym_string_token3] = ACTIONS(968), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(970), + [anon_sym_catch] = ACTIONS(970), + [anon_sym_continue] = ACTIONS(970), + [anon_sym_do] = ACTIONS(970), + [anon_sym_enum] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(970), + [anon_sym_for] = ACTIONS(970), + [anon_sym_inline] = ACTIONS(970), + [anon_sym_macro] = ACTIONS(970), + [anon_sym_operator] = ACTIONS(970), + [anon_sym_overload] = ACTIONS(970), + [anon_sym_override] = ACTIONS(970), + [anon_sym_private] = ACTIONS(970), + [anon_sym_public] = ACTIONS(970), + [anon_sym_return] = ACTIONS(970), + [anon_sym_static] = ACTIONS(970), + [anon_sym_try] = ACTIONS(970), + [anon_sym_untyped] = ACTIONS(970), + [anon_sym_while] = ACTIONS(970), + [sym__semicolon] = ACTIONS(968), }, - [173] = { - [ts_builtin_sym_end] = ACTIONS(974), - [sym_identifier] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(974), - [anon_sym_package] = ACTIONS(976), - [anon_sym_import] = ACTIONS(976), - [anon_sym_using] = ACTIONS(976), - [anon_sym_throw] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_switch] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_RBRACE] = ACTIONS(974), - [anon_sym_case] = ACTIONS(976), - [anon_sym_default] = ACTIONS(976), - [anon_sym_cast] = ACTIONS(976), - [anon_sym_DOLLARtype] = ACTIONS(974), - [anon_sym_in] = ACTIONS(976), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_this] = ACTIONS(976), - [anon_sym_AT] = ACTIONS(976), - [anon_sym_AT_COLON] = ACTIONS(974), - [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(976), - [anon_sym_new] = ACTIONS(976), - [anon_sym_TILDE] = ACTIONS(974), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), - [anon_sym_PERCENT] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(974), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(974), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_GT_GT_GT] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(974), - [anon_sym_AMP_AMP] = ACTIONS(974), - [anon_sym_PIPE_PIPE] = ACTIONS(974), - [anon_sym_EQ_EQ] = ACTIONS(974), - [anon_sym_BANG_EQ] = ACTIONS(974), - [anon_sym_LT] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(974), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_GT_EQ] = ACTIONS(974), - [anon_sym_EQ_GT] = ACTIONS(974), - [anon_sym_QMARK_QMARK] = ACTIONS(974), - [anon_sym_EQ] = ACTIONS(976), - [sym__rangeOperator] = ACTIONS(974), - [anon_sym_null] = ACTIONS(976), - [anon_sym_dynamic] = ACTIONS(976), - [anon_sym_final] = ACTIONS(976), - [anon_sym_abstract] = ACTIONS(976), - [anon_sym_class] = ACTIONS(976), - [anon_sym_extends] = ACTIONS(976), - [anon_sym_implements] = ACTIONS(976), - [anon_sym_interface] = ACTIONS(976), - [anon_sym_typedef] = ACTIONS(976), - [anon_sym_function] = ACTIONS(976), - [anon_sym_var] = ACTIONS(976), - [aux_sym_integer_token1] = ACTIONS(976), - [aux_sym_integer_token2] = ACTIONS(974), - [aux_sym_float_token1] = ACTIONS(976), - [aux_sym_float_token2] = ACTIONS(974), - [anon_sym_true] = ACTIONS(976), - [anon_sym_false] = ACTIONS(976), - [aux_sym_string_token1] = ACTIONS(974), - [aux_sym_string_token3] = ACTIONS(974), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(976), - [anon_sym_catch] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_enum] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_inline] = ACTIONS(976), - [anon_sym_macro] = ACTIONS(976), - [anon_sym_operator] = ACTIONS(976), - [anon_sym_overload] = ACTIONS(976), - [anon_sym_override] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_static] = ACTIONS(976), - [anon_sym_try] = ACTIONS(976), - [anon_sym_untyped] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [sym__semicolon] = ACTIONS(974), + [207] = { + [ts_builtin_sym_end] = ACTIONS(972), + [sym_identifier] = ACTIONS(974), + [anon_sym_POUND] = ACTIONS(972), + [anon_sym_package] = ACTIONS(974), + [anon_sym_import] = ACTIONS(974), + [anon_sym_using] = ACTIONS(974), + [anon_sym_throw] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(972), + [anon_sym_switch] = ACTIONS(974), + [anon_sym_LBRACE] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym_case] = ACTIONS(974), + [anon_sym_default] = ACTIONS(974), + [anon_sym_cast] = ACTIONS(974), + [anon_sym_DOLLARtype] = ACTIONS(972), + [anon_sym_in] = ACTIONS(974), + [anon_sym_LBRACK] = ACTIONS(972), + [anon_sym_this] = ACTIONS(974), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_AT_COLON] = ACTIONS(972), + [anon_sym_if] = ACTIONS(974), + [anon_sym_else] = ACTIONS(974), + [anon_sym_new] = ACTIONS(974), + [sym__prefixUnaryOperator] = ACTIONS(974), + [sym__eitherUnaryOperator] = ACTIONS(972), + [anon_sym_null] = ACTIONS(974), + [anon_sym_dynamic] = ACTIONS(974), + [anon_sym_final] = ACTIONS(974), + [anon_sym_abstract] = ACTIONS(974), + [anon_sym_class] = ACTIONS(974), + [anon_sym_extends] = ACTIONS(974), + [anon_sym_implements] = ACTIONS(974), + [anon_sym_interface] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(974), + [anon_sym_function] = ACTIONS(974), + [anon_sym_var] = ACTIONS(974), + [aux_sym_integer_token1] = ACTIONS(974), + [aux_sym_integer_token2] = ACTIONS(972), + [aux_sym_float_token1] = ACTIONS(974), + [aux_sym_float_token2] = ACTIONS(972), + [anon_sym_true] = ACTIONS(974), + [anon_sym_false] = ACTIONS(974), + [aux_sym_string_token1] = ACTIONS(972), + [aux_sym_string_token3] = ACTIONS(972), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(974), + [anon_sym_catch] = ACTIONS(974), + [anon_sym_continue] = ACTIONS(974), + [anon_sym_do] = ACTIONS(974), + [anon_sym_enum] = ACTIONS(974), + [anon_sym_extern] = ACTIONS(974), + [anon_sym_for] = ACTIONS(974), + [anon_sym_inline] = ACTIONS(974), + [anon_sym_macro] = ACTIONS(974), + [anon_sym_operator] = ACTIONS(974), + [anon_sym_overload] = ACTIONS(974), + [anon_sym_override] = ACTIONS(974), + [anon_sym_private] = ACTIONS(974), + [anon_sym_public] = ACTIONS(974), + [anon_sym_return] = ACTIONS(974), + [anon_sym_static] = ACTIONS(974), + [anon_sym_try] = ACTIONS(974), + [anon_sym_untyped] = ACTIONS(974), + [anon_sym_while] = ACTIONS(974), + [sym__semicolon] = ACTIONS(972), }, - [174] = { - [ts_builtin_sym_end] = ACTIONS(978), - [sym_identifier] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(978), - [anon_sym_package] = ACTIONS(980), - [anon_sym_import] = ACTIONS(980), - [anon_sym_using] = ACTIONS(980), - [anon_sym_throw] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(978), - [anon_sym_switch] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_case] = ACTIONS(980), - [anon_sym_default] = ACTIONS(980), - [anon_sym_cast] = ACTIONS(980), - [anon_sym_DOLLARtype] = ACTIONS(978), - [anon_sym_in] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(978), - [anon_sym_this] = ACTIONS(980), - [anon_sym_AT] = ACTIONS(980), - [anon_sym_AT_COLON] = ACTIONS(978), - [anon_sym_if] = ACTIONS(980), - [anon_sym_else] = ACTIONS(980), - [anon_sym_new] = ACTIONS(980), - [anon_sym_TILDE] = ACTIONS(978), - [anon_sym_BANG] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_PLUS_PLUS] = ACTIONS(978), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_PERCENT] = ACTIONS(978), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_SLASH] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_LT_LT] = ACTIONS(978), - [anon_sym_GT_GT] = ACTIONS(980), - [anon_sym_GT_GT_GT] = ACTIONS(978), - [anon_sym_AMP] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(980), - [anon_sym_CARET] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_EQ_EQ] = ACTIONS(978), - [anon_sym_BANG_EQ] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(980), - [anon_sym_LT_EQ] = ACTIONS(978), - [anon_sym_GT] = ACTIONS(980), - [anon_sym_GT_EQ] = ACTIONS(978), - [anon_sym_EQ_GT] = ACTIONS(978), - [anon_sym_QMARK_QMARK] = ACTIONS(978), - [anon_sym_EQ] = ACTIONS(980), - [sym__rangeOperator] = ACTIONS(978), - [anon_sym_null] = ACTIONS(980), - [anon_sym_dynamic] = ACTIONS(980), - [anon_sym_final] = ACTIONS(980), - [anon_sym_abstract] = ACTIONS(980), - [anon_sym_class] = ACTIONS(980), - [anon_sym_extends] = ACTIONS(980), - [anon_sym_implements] = ACTIONS(980), - [anon_sym_interface] = ACTIONS(980), - [anon_sym_typedef] = ACTIONS(980), - [anon_sym_function] = ACTIONS(980), - [anon_sym_var] = ACTIONS(980), - [aux_sym_integer_token1] = ACTIONS(980), - [aux_sym_integer_token2] = ACTIONS(978), - [aux_sym_float_token1] = ACTIONS(980), - [aux_sym_float_token2] = ACTIONS(978), - [anon_sym_true] = ACTIONS(980), - [anon_sym_false] = ACTIONS(980), - [aux_sym_string_token1] = ACTIONS(978), - [aux_sym_string_token3] = ACTIONS(978), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(980), - [anon_sym_catch] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [anon_sym_enum] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_inline] = ACTIONS(980), - [anon_sym_macro] = ACTIONS(980), - [anon_sym_operator] = ACTIONS(980), - [anon_sym_overload] = ACTIONS(980), - [anon_sym_override] = ACTIONS(980), - [anon_sym_private] = ACTIONS(980), - [anon_sym_public] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_static] = ACTIONS(980), - [anon_sym_try] = ACTIONS(980), - [anon_sym_untyped] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [sym__semicolon] = ACTIONS(978), + [208] = { + [ts_builtin_sym_end] = ACTIONS(976), + [sym_identifier] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(976), + [anon_sym_package] = ACTIONS(978), + [anon_sym_import] = ACTIONS(978), + [anon_sym_using] = ACTIONS(978), + [anon_sym_throw] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_switch] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_case] = ACTIONS(978), + [anon_sym_default] = ACTIONS(978), + [anon_sym_cast] = ACTIONS(978), + [anon_sym_DOLLARtype] = ACTIONS(976), + [anon_sym_in] = ACTIONS(978), + [anon_sym_LBRACK] = ACTIONS(976), + [anon_sym_this] = ACTIONS(978), + [anon_sym_AT] = ACTIONS(978), + [anon_sym_AT_COLON] = ACTIONS(976), + [anon_sym_if] = ACTIONS(978), + [anon_sym_else] = ACTIONS(978), + [anon_sym_new] = ACTIONS(978), + [sym__prefixUnaryOperator] = ACTIONS(978), + [sym__eitherUnaryOperator] = ACTIONS(976), + [anon_sym_null] = ACTIONS(978), + [anon_sym_dynamic] = ACTIONS(978), + [anon_sym_final] = ACTIONS(978), + [anon_sym_abstract] = ACTIONS(978), + [anon_sym_class] = ACTIONS(978), + [anon_sym_extends] = ACTIONS(978), + [anon_sym_implements] = ACTIONS(978), + [anon_sym_interface] = ACTIONS(978), + [anon_sym_typedef] = ACTIONS(978), + [anon_sym_function] = ACTIONS(978), + [anon_sym_var] = ACTIONS(978), + [aux_sym_integer_token1] = ACTIONS(978), + [aux_sym_integer_token2] = ACTIONS(976), + [aux_sym_float_token1] = ACTIONS(978), + [aux_sym_float_token2] = ACTIONS(976), + [anon_sym_true] = ACTIONS(978), + [anon_sym_false] = ACTIONS(978), + [aux_sym_string_token1] = ACTIONS(976), + [aux_sym_string_token3] = ACTIONS(976), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(978), + [anon_sym_catch] = ACTIONS(978), + [anon_sym_continue] = ACTIONS(978), + [anon_sym_do] = ACTIONS(978), + [anon_sym_enum] = ACTIONS(978), + [anon_sym_extern] = ACTIONS(978), + [anon_sym_for] = ACTIONS(978), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_macro] = ACTIONS(978), + [anon_sym_operator] = ACTIONS(978), + [anon_sym_overload] = ACTIONS(978), + [anon_sym_override] = ACTIONS(978), + [anon_sym_private] = ACTIONS(978), + [anon_sym_public] = ACTIONS(978), + [anon_sym_return] = ACTIONS(978), + [anon_sym_static] = ACTIONS(978), + [anon_sym_try] = ACTIONS(978), + [anon_sym_untyped] = ACTIONS(978), + [anon_sym_while] = ACTIONS(978), + [sym__semicolon] = ACTIONS(976), }, - [175] = { - [ts_builtin_sym_end] = ACTIONS(982), - [sym_identifier] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(982), - [anon_sym_package] = ACTIONS(984), - [anon_sym_import] = ACTIONS(984), - [anon_sym_using] = ACTIONS(984), - [anon_sym_throw] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(982), - [anon_sym_switch] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_case] = ACTIONS(984), - [anon_sym_default] = ACTIONS(984), - [anon_sym_cast] = ACTIONS(984), - [anon_sym_DOLLARtype] = ACTIONS(982), - [anon_sym_in] = ACTIONS(984), - [anon_sym_LBRACK] = ACTIONS(982), - [anon_sym_this] = ACTIONS(984), - [anon_sym_AT] = ACTIONS(984), - [anon_sym_AT_COLON] = ACTIONS(982), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_new] = ACTIONS(984), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_BANG] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(982), - [anon_sym_PERCENT] = ACTIONS(982), - [anon_sym_STAR] = ACTIONS(982), - [anon_sym_SLASH] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_LT_LT] = ACTIONS(982), - [anon_sym_GT_GT] = ACTIONS(984), - [anon_sym_GT_GT_GT] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_CARET] = ACTIONS(982), - [anon_sym_AMP_AMP] = ACTIONS(982), - [anon_sym_PIPE_PIPE] = ACTIONS(982), - [anon_sym_EQ_EQ] = ACTIONS(982), - [anon_sym_BANG_EQ] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_LT_EQ] = ACTIONS(982), - [anon_sym_GT] = ACTIONS(984), - [anon_sym_GT_EQ] = ACTIONS(982), - [anon_sym_EQ_GT] = ACTIONS(982), - [anon_sym_QMARK_QMARK] = ACTIONS(982), - [anon_sym_EQ] = ACTIONS(984), - [sym__rangeOperator] = ACTIONS(982), - [anon_sym_null] = ACTIONS(984), - [anon_sym_dynamic] = ACTIONS(984), - [anon_sym_final] = ACTIONS(984), - [anon_sym_abstract] = ACTIONS(984), - [anon_sym_class] = ACTIONS(984), - [anon_sym_extends] = ACTIONS(984), - [anon_sym_implements] = ACTIONS(984), - [anon_sym_interface] = ACTIONS(984), - [anon_sym_typedef] = ACTIONS(984), - [anon_sym_function] = ACTIONS(984), - [anon_sym_var] = ACTIONS(984), - [aux_sym_integer_token1] = ACTIONS(984), - [aux_sym_integer_token2] = ACTIONS(982), - [aux_sym_float_token1] = ACTIONS(984), - [aux_sym_float_token2] = ACTIONS(982), - [anon_sym_true] = ACTIONS(984), - [anon_sym_false] = ACTIONS(984), - [aux_sym_string_token1] = ACTIONS(982), - [aux_sym_string_token3] = ACTIONS(982), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(984), - [anon_sym_catch] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_enum] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_inline] = ACTIONS(984), - [anon_sym_macro] = ACTIONS(984), - [anon_sym_operator] = ACTIONS(984), - [anon_sym_overload] = ACTIONS(984), - [anon_sym_override] = ACTIONS(984), - [anon_sym_private] = ACTIONS(984), - [anon_sym_public] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_static] = ACTIONS(984), - [anon_sym_try] = ACTIONS(984), - [anon_sym_untyped] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [sym__semicolon] = ACTIONS(982), + [209] = { + [ts_builtin_sym_end] = ACTIONS(980), + [sym_identifier] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_package] = ACTIONS(982), + [anon_sym_import] = ACTIONS(982), + [anon_sym_using] = ACTIONS(982), + [anon_sym_throw] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_switch] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_case] = ACTIONS(982), + [anon_sym_default] = ACTIONS(982), + [anon_sym_cast] = ACTIONS(982), + [anon_sym_DOLLARtype] = ACTIONS(980), + [anon_sym_in] = ACTIONS(982), + [anon_sym_LBRACK] = ACTIONS(980), + [anon_sym_this] = ACTIONS(982), + [anon_sym_AT] = ACTIONS(982), + [anon_sym_AT_COLON] = ACTIONS(980), + [anon_sym_if] = ACTIONS(982), + [anon_sym_else] = ACTIONS(982), + [anon_sym_new] = ACTIONS(982), + [sym__prefixUnaryOperator] = ACTIONS(982), + [sym__eitherUnaryOperator] = ACTIONS(980), + [anon_sym_null] = ACTIONS(982), + [anon_sym_dynamic] = ACTIONS(982), + [anon_sym_final] = ACTIONS(982), + [anon_sym_abstract] = ACTIONS(982), + [anon_sym_class] = ACTIONS(982), + [anon_sym_extends] = ACTIONS(982), + [anon_sym_implements] = ACTIONS(982), + [anon_sym_interface] = ACTIONS(982), + [anon_sym_typedef] = ACTIONS(982), + [anon_sym_function] = ACTIONS(982), + [anon_sym_var] = ACTIONS(982), + [aux_sym_integer_token1] = ACTIONS(982), + [aux_sym_integer_token2] = ACTIONS(980), + [aux_sym_float_token1] = ACTIONS(982), + [aux_sym_float_token2] = ACTIONS(980), + [anon_sym_true] = ACTIONS(982), + [anon_sym_false] = ACTIONS(982), + [aux_sym_string_token1] = ACTIONS(980), + [aux_sym_string_token3] = ACTIONS(980), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(982), + [anon_sym_catch] = ACTIONS(982), + [anon_sym_continue] = ACTIONS(982), + [anon_sym_do] = ACTIONS(982), + [anon_sym_enum] = ACTIONS(982), + [anon_sym_extern] = ACTIONS(982), + [anon_sym_for] = ACTIONS(982), + [anon_sym_inline] = ACTIONS(982), + [anon_sym_macro] = ACTIONS(982), + [anon_sym_operator] = ACTIONS(982), + [anon_sym_overload] = ACTIONS(982), + [anon_sym_override] = ACTIONS(982), + [anon_sym_private] = ACTIONS(982), + [anon_sym_public] = ACTIONS(982), + [anon_sym_return] = ACTIONS(982), + [anon_sym_static] = ACTIONS(982), + [anon_sym_try] = ACTIONS(982), + [anon_sym_untyped] = ACTIONS(982), + [anon_sym_while] = ACTIONS(982), + [sym__semicolon] = ACTIONS(980), }, - [176] = { - [ts_builtin_sym_end] = ACTIONS(986), - [sym_identifier] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(986), - [anon_sym_package] = ACTIONS(988), - [anon_sym_import] = ACTIONS(988), - [anon_sym_using] = ACTIONS(988), - [anon_sym_throw] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_switch] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_case] = ACTIONS(988), - [anon_sym_default] = ACTIONS(988), - [anon_sym_cast] = ACTIONS(988), - [anon_sym_DOLLARtype] = ACTIONS(986), - [anon_sym_in] = ACTIONS(988), - [anon_sym_LBRACK] = ACTIONS(986), - [anon_sym_this] = ACTIONS(988), - [anon_sym_AT] = ACTIONS(988), - [anon_sym_AT_COLON] = ACTIONS(986), - [anon_sym_if] = ACTIONS(988), - [anon_sym_else] = ACTIONS(988), - [anon_sym_new] = ACTIONS(988), - [anon_sym_TILDE] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(988), - [anon_sym_PLUS_PLUS] = ACTIONS(986), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(988), - [anon_sym_LT_LT] = ACTIONS(986), - [anon_sym_GT_GT] = ACTIONS(988), - [anon_sym_GT_GT_GT] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_CARET] = ACTIONS(986), - [anon_sym_AMP_AMP] = ACTIONS(986), - [anon_sym_PIPE_PIPE] = ACTIONS(986), - [anon_sym_EQ_EQ] = ACTIONS(986), - [anon_sym_BANG_EQ] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(988), - [anon_sym_LT_EQ] = ACTIONS(986), - [anon_sym_GT] = ACTIONS(988), - [anon_sym_GT_EQ] = ACTIONS(986), - [anon_sym_EQ_GT] = ACTIONS(986), - [anon_sym_QMARK_QMARK] = ACTIONS(986), - [anon_sym_EQ] = ACTIONS(988), - [sym__rangeOperator] = ACTIONS(986), - [anon_sym_null] = ACTIONS(988), - [anon_sym_dynamic] = ACTIONS(988), - [anon_sym_final] = ACTIONS(988), - [anon_sym_abstract] = ACTIONS(988), - [anon_sym_class] = ACTIONS(988), - [anon_sym_extends] = ACTIONS(988), - [anon_sym_implements] = ACTIONS(988), - [anon_sym_interface] = ACTIONS(988), - [anon_sym_typedef] = ACTIONS(988), - [anon_sym_function] = ACTIONS(988), - [anon_sym_var] = ACTIONS(988), - [aux_sym_integer_token1] = ACTIONS(988), - [aux_sym_integer_token2] = ACTIONS(986), - [aux_sym_float_token1] = ACTIONS(988), - [aux_sym_float_token2] = ACTIONS(986), - [anon_sym_true] = ACTIONS(988), - [anon_sym_false] = ACTIONS(988), - [aux_sym_string_token1] = ACTIONS(986), - [aux_sym_string_token3] = ACTIONS(986), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(988), - [anon_sym_catch] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_do] = ACTIONS(988), - [anon_sym_enum] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_inline] = ACTIONS(988), - [anon_sym_macro] = ACTIONS(988), - [anon_sym_operator] = ACTIONS(988), - [anon_sym_overload] = ACTIONS(988), - [anon_sym_override] = ACTIONS(988), - [anon_sym_private] = ACTIONS(988), - [anon_sym_public] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_static] = ACTIONS(988), - [anon_sym_try] = ACTIONS(988), - [anon_sym_untyped] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [sym__semicolon] = ACTIONS(986), + [210] = { + [ts_builtin_sym_end] = ACTIONS(984), + [sym_identifier] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(984), + [anon_sym_package] = ACTIONS(986), + [anon_sym_import] = ACTIONS(986), + [anon_sym_using] = ACTIONS(986), + [anon_sym_throw] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_switch] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_case] = ACTIONS(986), + [anon_sym_default] = ACTIONS(986), + [anon_sym_cast] = ACTIONS(986), + [anon_sym_DOLLARtype] = ACTIONS(984), + [anon_sym_in] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(984), + [anon_sym_this] = ACTIONS(986), + [anon_sym_AT] = ACTIONS(986), + [anon_sym_AT_COLON] = ACTIONS(984), + [anon_sym_if] = ACTIONS(986), + [anon_sym_else] = ACTIONS(986), + [anon_sym_new] = ACTIONS(986), + [sym__prefixUnaryOperator] = ACTIONS(986), + [sym__eitherUnaryOperator] = ACTIONS(984), + [anon_sym_null] = ACTIONS(986), + [anon_sym_dynamic] = ACTIONS(986), + [anon_sym_final] = ACTIONS(986), + [anon_sym_abstract] = ACTIONS(986), + [anon_sym_class] = ACTIONS(986), + [anon_sym_extends] = ACTIONS(986), + [anon_sym_implements] = ACTIONS(986), + [anon_sym_interface] = ACTIONS(986), + [anon_sym_typedef] = ACTIONS(986), + [anon_sym_function] = ACTIONS(986), + [anon_sym_var] = ACTIONS(986), + [aux_sym_integer_token1] = ACTIONS(986), + [aux_sym_integer_token2] = ACTIONS(984), + [aux_sym_float_token1] = ACTIONS(986), + [aux_sym_float_token2] = ACTIONS(984), + [anon_sym_true] = ACTIONS(986), + [anon_sym_false] = ACTIONS(986), + [aux_sym_string_token1] = ACTIONS(984), + [aux_sym_string_token3] = ACTIONS(984), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(986), + [anon_sym_catch] = ACTIONS(986), + [anon_sym_continue] = ACTIONS(986), + [anon_sym_do] = ACTIONS(986), + [anon_sym_enum] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(986), + [anon_sym_for] = ACTIONS(986), + [anon_sym_inline] = ACTIONS(986), + [anon_sym_macro] = ACTIONS(986), + [anon_sym_operator] = ACTIONS(986), + [anon_sym_overload] = ACTIONS(986), + [anon_sym_override] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_return] = ACTIONS(986), + [anon_sym_static] = ACTIONS(986), + [anon_sym_try] = ACTIONS(986), + [anon_sym_untyped] = ACTIONS(986), + [anon_sym_while] = ACTIONS(986), + [sym__semicolon] = ACTIONS(984), }, - [177] = { - [ts_builtin_sym_end] = ACTIONS(990), - [sym_identifier] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(990), - [anon_sym_package] = ACTIONS(992), - [anon_sym_import] = ACTIONS(992), - [anon_sym_using] = ACTIONS(992), - [anon_sym_throw] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_switch] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_case] = ACTIONS(992), - [anon_sym_default] = ACTIONS(992), - [anon_sym_cast] = ACTIONS(992), - [anon_sym_DOLLARtype] = ACTIONS(990), - [anon_sym_in] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_this] = ACTIONS(992), - [anon_sym_AT] = ACTIONS(992), - [anon_sym_AT_COLON] = ACTIONS(990), - [anon_sym_if] = ACTIONS(992), - [anon_sym_else] = ACTIONS(992), - [anon_sym_new] = ACTIONS(992), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_BANG] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_PERCENT] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_SLASH] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_LT_LT] = ACTIONS(990), - [anon_sym_GT_GT] = ACTIONS(992), - [anon_sym_GT_GT_GT] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_CARET] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(992), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT] = ACTIONS(992), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_EQ_GT] = ACTIONS(990), - [anon_sym_QMARK_QMARK] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(992), - [sym__rangeOperator] = ACTIONS(990), - [anon_sym_null] = ACTIONS(992), - [anon_sym_dynamic] = ACTIONS(992), - [anon_sym_final] = ACTIONS(992), - [anon_sym_abstract] = ACTIONS(992), - [anon_sym_class] = ACTIONS(992), - [anon_sym_extends] = ACTIONS(992), - [anon_sym_implements] = ACTIONS(992), - [anon_sym_interface] = ACTIONS(992), - [anon_sym_typedef] = ACTIONS(992), - [anon_sym_function] = ACTIONS(992), - [anon_sym_var] = ACTIONS(992), - [aux_sym_integer_token1] = ACTIONS(992), - [aux_sym_integer_token2] = ACTIONS(990), - [aux_sym_float_token1] = ACTIONS(992), - [aux_sym_float_token2] = ACTIONS(990), - [anon_sym_true] = ACTIONS(992), - [anon_sym_false] = ACTIONS(992), - [aux_sym_string_token1] = ACTIONS(990), - [aux_sym_string_token3] = ACTIONS(990), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(992), - [anon_sym_catch] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_enum] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_inline] = ACTIONS(992), - [anon_sym_macro] = ACTIONS(992), - [anon_sym_operator] = ACTIONS(992), - [anon_sym_overload] = ACTIONS(992), - [anon_sym_override] = ACTIONS(992), - [anon_sym_private] = ACTIONS(992), - [anon_sym_public] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_static] = ACTIONS(992), - [anon_sym_try] = ACTIONS(992), - [anon_sym_untyped] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [sym__semicolon] = ACTIONS(990), + [211] = { + [ts_builtin_sym_end] = ACTIONS(988), + [sym_identifier] = ACTIONS(990), + [anon_sym_POUND] = ACTIONS(988), + [anon_sym_package] = ACTIONS(990), + [anon_sym_import] = ACTIONS(990), + [anon_sym_using] = ACTIONS(990), + [anon_sym_throw] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_case] = ACTIONS(990), + [anon_sym_default] = ACTIONS(990), + [anon_sym_cast] = ACTIONS(990), + [anon_sym_DOLLARtype] = ACTIONS(988), + [anon_sym_in] = ACTIONS(990), + [anon_sym_LBRACK] = ACTIONS(988), + [anon_sym_this] = ACTIONS(990), + [anon_sym_AT] = ACTIONS(990), + [anon_sym_AT_COLON] = ACTIONS(988), + [anon_sym_if] = ACTIONS(990), + [anon_sym_else] = ACTIONS(990), + [anon_sym_new] = ACTIONS(990), + [sym__prefixUnaryOperator] = ACTIONS(990), + [sym__eitherUnaryOperator] = ACTIONS(988), + [anon_sym_null] = ACTIONS(990), + [anon_sym_dynamic] = ACTIONS(990), + [anon_sym_final] = ACTIONS(990), + [anon_sym_abstract] = ACTIONS(990), + [anon_sym_class] = ACTIONS(990), + [anon_sym_extends] = ACTIONS(990), + [anon_sym_implements] = ACTIONS(990), + [anon_sym_interface] = ACTIONS(990), + [anon_sym_typedef] = ACTIONS(990), + [anon_sym_function] = ACTIONS(990), + [anon_sym_var] = ACTIONS(990), + [aux_sym_integer_token1] = ACTIONS(990), + [aux_sym_integer_token2] = ACTIONS(988), + [aux_sym_float_token1] = ACTIONS(990), + [aux_sym_float_token2] = ACTIONS(988), + [anon_sym_true] = ACTIONS(990), + [anon_sym_false] = ACTIONS(990), + [aux_sym_string_token1] = ACTIONS(988), + [aux_sym_string_token3] = ACTIONS(988), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(990), + [anon_sym_catch] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_do] = ACTIONS(990), + [anon_sym_enum] = ACTIONS(990), + [anon_sym_extern] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_macro] = ACTIONS(990), + [anon_sym_operator] = ACTIONS(990), + [anon_sym_overload] = ACTIONS(990), + [anon_sym_override] = ACTIONS(990), + [anon_sym_private] = ACTIONS(990), + [anon_sym_public] = ACTIONS(990), + [anon_sym_return] = ACTIONS(990), + [anon_sym_static] = ACTIONS(990), + [anon_sym_try] = ACTIONS(990), + [anon_sym_untyped] = ACTIONS(990), + [anon_sym_while] = ACTIONS(990), + [sym__semicolon] = ACTIONS(988), }, - [178] = { - [sym__rhs_expression] = STATE(431), - [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(65), - [sym_range_expression] = STATE(66), - [sym_subscript_expression] = STATE(66), - [sym_member_expression] = STATE(457), - [sym__lhs_expression] = STATE(981), - [sym_builtin_type] = STATE(1008), - [sym_function_type] = STATE(118), - [sym_type] = STATE(1105), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(431), - [sym_operator] = STATE(803), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(467), - [sym_integer] = STATE(467), - [sym_float] = STATE(467), - [sym_bool] = STATE(467), - [sym_string] = STATE(462), - [sym_null] = STATE(467), - [sym_array] = STATE(467), - [sym_map] = STATE(467), - [sym_object] = STATE(467), - [sym_pair] = STATE(467), + [212] = { + [ts_builtin_sym_end] = ACTIONS(452), + [sym_identifier] = ACTIONS(454), + [anon_sym_POUND] = ACTIONS(452), + [anon_sym_package] = ACTIONS(454), + [anon_sym_import] = ACTIONS(454), + [anon_sym_using] = ACTIONS(454), + [anon_sym_throw] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(452), + [anon_sym_switch] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(452), + [anon_sym_RBRACE] = ACTIONS(452), + [anon_sym_case] = ACTIONS(454), + [anon_sym_default] = ACTIONS(454), + [anon_sym_cast] = ACTIONS(454), + [anon_sym_DOLLARtype] = ACTIONS(452), + [anon_sym_in] = ACTIONS(454), + [anon_sym_LBRACK] = ACTIONS(452), + [anon_sym_this] = ACTIONS(454), + [anon_sym_AT] = ACTIONS(454), + [anon_sym_AT_COLON] = ACTIONS(452), + [anon_sym_if] = ACTIONS(454), + [anon_sym_else] = ACTIONS(454), + [anon_sym_new] = ACTIONS(454), + [sym__prefixUnaryOperator] = ACTIONS(454), + [sym__eitherUnaryOperator] = ACTIONS(452), + [anon_sym_null] = ACTIONS(454), + [anon_sym_dynamic] = ACTIONS(454), + [anon_sym_final] = ACTIONS(454), + [anon_sym_abstract] = ACTIONS(454), + [anon_sym_class] = ACTIONS(454), + [anon_sym_extends] = ACTIONS(454), + [anon_sym_implements] = ACTIONS(454), + [anon_sym_interface] = ACTIONS(454), + [anon_sym_typedef] = ACTIONS(454), + [anon_sym_function] = ACTIONS(454), + [anon_sym_var] = ACTIONS(454), + [aux_sym_integer_token1] = ACTIONS(454), + [aux_sym_integer_token2] = ACTIONS(452), + [aux_sym_float_token1] = ACTIONS(454), + [aux_sym_float_token2] = ACTIONS(452), + [anon_sym_true] = ACTIONS(454), + [anon_sym_false] = ACTIONS(454), + [aux_sym_string_token1] = ACTIONS(452), + [aux_sym_string_token3] = ACTIONS(452), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(454), + [anon_sym_catch] = ACTIONS(454), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_do] = ACTIONS(454), + [anon_sym_enum] = ACTIONS(454), + [anon_sym_extern] = ACTIONS(454), + [anon_sym_for] = ACTIONS(454), + [anon_sym_inline] = ACTIONS(454), + [anon_sym_macro] = ACTIONS(454), + [anon_sym_operator] = ACTIONS(454), + [anon_sym_overload] = ACTIONS(454), + [anon_sym_override] = ACTIONS(454), + [anon_sym_private] = ACTIONS(454), + [anon_sym_public] = ACTIONS(454), + [anon_sym_return] = ACTIONS(454), + [anon_sym_static] = ACTIONS(454), + [anon_sym_try] = ACTIONS(454), + [anon_sym_untyped] = ACTIONS(454), + [anon_sym_while] = ACTIONS(454), + [sym__semicolon] = ACTIONS(456), + }, + [213] = { + [ts_builtin_sym_end] = ACTIONS(992), [sym_identifier] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(996), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), + [anon_sym_POUND] = ACTIONS(992), + [anon_sym_package] = ACTIONS(994), + [anon_sym_import] = ACTIONS(994), + [anon_sym_using] = ACTIONS(994), + [anon_sym_throw] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_switch] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_RBRACE] = ACTIONS(992), + [anon_sym_case] = ACTIONS(994), + [anon_sym_default] = ACTIONS(994), + [anon_sym_cast] = ACTIONS(994), + [anon_sym_DOLLARtype] = ACTIONS(992), + [anon_sym_in] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(992), + [anon_sym_this] = ACTIONS(994), + [anon_sym_AT] = ACTIONS(994), + [anon_sym_AT_COLON] = ACTIONS(992), + [anon_sym_if] = ACTIONS(994), + [anon_sym_else] = ACTIONS(994), + [anon_sym_new] = ACTIONS(994), + [sym__prefixUnaryOperator] = ACTIONS(994), + [sym__eitherUnaryOperator] = ACTIONS(992), + [anon_sym_null] = ACTIONS(994), + [anon_sym_dynamic] = ACTIONS(994), + [anon_sym_final] = ACTIONS(994), + [anon_sym_abstract] = ACTIONS(994), + [anon_sym_class] = ACTIONS(994), + [anon_sym_extends] = ACTIONS(994), + [anon_sym_implements] = ACTIONS(994), + [anon_sym_interface] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(994), + [anon_sym_function] = ACTIONS(994), + [anon_sym_var] = ACTIONS(994), + [aux_sym_integer_token1] = ACTIONS(994), + [aux_sym_integer_token2] = ACTIONS(992), + [aux_sym_float_token1] = ACTIONS(994), + [aux_sym_float_token2] = ACTIONS(992), + [anon_sym_true] = ACTIONS(994), + [anon_sym_false] = ACTIONS(994), + [aux_sym_string_token1] = ACTIONS(992), + [aux_sym_string_token3] = ACTIONS(992), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(994), + [anon_sym_catch] = ACTIONS(994), + [anon_sym_continue] = ACTIONS(994), + [anon_sym_do] = ACTIONS(994), + [anon_sym_enum] = ACTIONS(994), + [anon_sym_extern] = ACTIONS(994), + [anon_sym_for] = ACTIONS(994), + [anon_sym_inline] = ACTIONS(994), + [anon_sym_macro] = ACTIONS(994), + [anon_sym_operator] = ACTIONS(994), + [anon_sym_overload] = ACTIONS(994), + [anon_sym_override] = ACTIONS(994), + [anon_sym_private] = ACTIONS(994), + [anon_sym_public] = ACTIONS(994), + [anon_sym_return] = ACTIONS(994), + [anon_sym_static] = ACTIONS(994), + [anon_sym_try] = ACTIONS(994), + [anon_sym_untyped] = ACTIONS(994), + [anon_sym_while] = ACTIONS(994), + [sym__semicolon] = ACTIONS(992), + }, + [214] = { + [ts_builtin_sym_end] = ACTIONS(996), + [sym_identifier] = ACTIONS(998), + [anon_sym_POUND] = ACTIONS(996), + [anon_sym_package] = ACTIONS(998), + [anon_sym_import] = ACTIONS(998), + [anon_sym_using] = ACTIONS(998), + [anon_sym_throw] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(996), + [anon_sym_RBRACE] = ACTIONS(996), + [anon_sym_case] = ACTIONS(998), + [anon_sym_default] = ACTIONS(998), + [anon_sym_cast] = ACTIONS(998), + [anon_sym_DOLLARtype] = ACTIONS(996), + [anon_sym_in] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(996), [anon_sym_this] = ACTIONS(998), - [anon_sym_Void] = ACTIONS(606), - [anon_sym_Int] = ACTIONS(606), - [anon_sym_Float] = ACTIONS(606), - [anon_sym_Bool] = ACTIONS(606), - [anon_sym_Null] = ACTIONS(606), - [anon_sym_new] = ACTIONS(238), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), + [anon_sym_AT] = ACTIONS(998), + [anon_sym_AT_COLON] = ACTIONS(996), + [anon_sym_if] = ACTIONS(998), + [anon_sym_else] = ACTIONS(998), + [anon_sym_new] = ACTIONS(998), + [sym__prefixUnaryOperator] = ACTIONS(998), + [sym__eitherUnaryOperator] = ACTIONS(996), + [anon_sym_null] = ACTIONS(998), + [anon_sym_dynamic] = ACTIONS(998), + [anon_sym_final] = ACTIONS(998), + [anon_sym_abstract] = ACTIONS(998), + [anon_sym_class] = ACTIONS(998), + [anon_sym_extends] = ACTIONS(998), + [anon_sym_implements] = ACTIONS(998), + [anon_sym_interface] = ACTIONS(998), + [anon_sym_typedef] = ACTIONS(998), + [anon_sym_function] = ACTIONS(998), + [anon_sym_var] = ACTIONS(998), + [aux_sym_integer_token1] = ACTIONS(998), + [aux_sym_integer_token2] = ACTIONS(996), + [aux_sym_float_token1] = ACTIONS(998), + [aux_sym_float_token2] = ACTIONS(996), + [anon_sym_true] = ACTIONS(998), + [anon_sym_false] = ACTIONS(998), + [aux_sym_string_token1] = ACTIONS(996), + [aux_sym_string_token3] = ACTIONS(996), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(998), + [anon_sym_catch] = ACTIONS(998), + [anon_sym_continue] = ACTIONS(998), + [anon_sym_do] = ACTIONS(998), + [anon_sym_enum] = ACTIONS(998), + [anon_sym_extern] = ACTIONS(998), + [anon_sym_for] = ACTIONS(998), + [anon_sym_inline] = ACTIONS(998), + [anon_sym_macro] = ACTIONS(998), + [anon_sym_operator] = ACTIONS(998), + [anon_sym_overload] = ACTIONS(998), + [anon_sym_override] = ACTIONS(998), + [anon_sym_private] = ACTIONS(998), + [anon_sym_public] = ACTIONS(998), + [anon_sym_return] = ACTIONS(998), + [anon_sym_static] = ACTIONS(998), + [anon_sym_try] = ACTIONS(998), + [anon_sym_untyped] = ACTIONS(998), + [anon_sym_while] = ACTIONS(998), + [sym__semicolon] = ACTIONS(996), }, - [179] = { + [215] = { [ts_builtin_sym_end] = ACTIONS(1000), [sym_identifier] = ACTIONS(1002), [anon_sym_POUND] = ACTIONS(1000), @@ -25243,33 +23167,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1002), [anon_sym_else] = ACTIONS(1002), [anon_sym_new] = ACTIONS(1002), - [anon_sym_TILDE] = ACTIONS(1000), - [anon_sym_BANG] = ACTIONS(1002), - [anon_sym_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1000), - [anon_sym_DASH_DASH] = ACTIONS(1000), - [anon_sym_PERCENT] = ACTIONS(1000), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_SLASH] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1002), - [anon_sym_LT_LT] = ACTIONS(1000), - [anon_sym_GT_GT] = ACTIONS(1002), - [anon_sym_GT_GT_GT] = ACTIONS(1000), - [anon_sym_AMP] = ACTIONS(1002), - [anon_sym_PIPE] = ACTIONS(1002), - [anon_sym_CARET] = ACTIONS(1000), - [anon_sym_AMP_AMP] = ACTIONS(1000), - [anon_sym_PIPE_PIPE] = ACTIONS(1000), - [anon_sym_EQ_EQ] = ACTIONS(1000), - [anon_sym_BANG_EQ] = ACTIONS(1000), - [anon_sym_LT] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(1000), - [anon_sym_GT] = ACTIONS(1002), - [anon_sym_GT_EQ] = ACTIONS(1000), - [anon_sym_EQ_GT] = ACTIONS(1000), - [anon_sym_QMARK_QMARK] = ACTIONS(1000), - [anon_sym_EQ] = ACTIONS(1002), - [sym__rangeOperator] = ACTIONS(1000), + [sym__prefixUnaryOperator] = ACTIONS(1002), + [sym__eitherUnaryOperator] = ACTIONS(1000), [anon_sym_null] = ACTIONS(1002), [anon_sym_dynamic] = ACTIONS(1002), [anon_sym_final] = ACTIONS(1002), @@ -25311,7 +23210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1002), [sym__semicolon] = ACTIONS(1000), }, - [180] = { + [216] = { [ts_builtin_sym_end] = ACTIONS(1004), [sym_identifier] = ACTIONS(1006), [anon_sym_POUND] = ACTIONS(1004), @@ -25335,33 +23234,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(1006), [anon_sym_new] = ACTIONS(1006), - [anon_sym_TILDE] = ACTIONS(1004), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_PLUS_PLUS] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1004), - [anon_sym_PERCENT] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1004), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_LT_LT] = ACTIONS(1004), - [anon_sym_GT_GT] = ACTIONS(1006), - [anon_sym_GT_GT_GT] = ACTIONS(1004), - [anon_sym_AMP] = ACTIONS(1006), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1004), - [anon_sym_AMP_AMP] = ACTIONS(1004), - [anon_sym_PIPE_PIPE] = ACTIONS(1004), - [anon_sym_EQ_EQ] = ACTIONS(1004), - [anon_sym_BANG_EQ] = ACTIONS(1004), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1004), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1004), - [anon_sym_EQ_GT] = ACTIONS(1004), - [anon_sym_QMARK_QMARK] = ACTIONS(1004), - [anon_sym_EQ] = ACTIONS(1006), - [sym__rangeOperator] = ACTIONS(1004), + [sym__prefixUnaryOperator] = ACTIONS(1006), + [sym__eitherUnaryOperator] = ACTIONS(1004), [anon_sym_null] = ACTIONS(1006), [anon_sym_dynamic] = ACTIONS(1006), [anon_sym_final] = ACTIONS(1006), @@ -25403,7 +23277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1006), [sym__semicolon] = ACTIONS(1004), }, - [181] = { + [217] = { [ts_builtin_sym_end] = ACTIONS(1008), [sym_identifier] = ACTIONS(1010), [anon_sym_POUND] = ACTIONS(1008), @@ -25427,33 +23301,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1010), [anon_sym_else] = ACTIONS(1010), [anon_sym_new] = ACTIONS(1010), - [anon_sym_TILDE] = ACTIONS(1008), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_PLUS_PLUS] = ACTIONS(1008), - [anon_sym_DASH_DASH] = ACTIONS(1008), - [anon_sym_PERCENT] = ACTIONS(1008), - [anon_sym_STAR] = ACTIONS(1008), - [anon_sym_SLASH] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_LT_LT] = ACTIONS(1008), - [anon_sym_GT_GT] = ACTIONS(1010), - [anon_sym_GT_GT_GT] = ACTIONS(1008), - [anon_sym_AMP] = ACTIONS(1010), - [anon_sym_PIPE] = ACTIONS(1010), - [anon_sym_CARET] = ACTIONS(1008), - [anon_sym_AMP_AMP] = ACTIONS(1008), - [anon_sym_PIPE_PIPE] = ACTIONS(1008), - [anon_sym_EQ_EQ] = ACTIONS(1008), - [anon_sym_BANG_EQ] = ACTIONS(1008), - [anon_sym_LT] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1008), - [anon_sym_GT] = ACTIONS(1010), - [anon_sym_GT_EQ] = ACTIONS(1008), - [anon_sym_EQ_GT] = ACTIONS(1008), - [anon_sym_QMARK_QMARK] = ACTIONS(1008), - [anon_sym_EQ] = ACTIONS(1010), - [sym__rangeOperator] = ACTIONS(1008), + [sym__prefixUnaryOperator] = ACTIONS(1010), + [sym__eitherUnaryOperator] = ACTIONS(1008), [anon_sym_null] = ACTIONS(1010), [anon_sym_dynamic] = ACTIONS(1010), [anon_sym_final] = ACTIONS(1010), @@ -25495,7 +23344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1010), [sym__semicolon] = ACTIONS(1008), }, - [182] = { + [218] = { [ts_builtin_sym_end] = ACTIONS(1012), [sym_identifier] = ACTIONS(1014), [anon_sym_POUND] = ACTIONS(1012), @@ -25519,33 +23368,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1014), [anon_sym_else] = ACTIONS(1014), [anon_sym_new] = ACTIONS(1014), - [anon_sym_TILDE] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(1014), - [anon_sym_DASH] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1012), - [anon_sym_DASH_DASH] = ACTIONS(1012), - [anon_sym_PERCENT] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1014), - [anon_sym_LT_LT] = ACTIONS(1012), - [anon_sym_GT_GT] = ACTIONS(1014), - [anon_sym_GT_GT_GT] = ACTIONS(1012), - [anon_sym_AMP] = ACTIONS(1014), - [anon_sym_PIPE] = ACTIONS(1014), - [anon_sym_CARET] = ACTIONS(1012), - [anon_sym_AMP_AMP] = ACTIONS(1012), - [anon_sym_PIPE_PIPE] = ACTIONS(1012), - [anon_sym_EQ_EQ] = ACTIONS(1012), - [anon_sym_BANG_EQ] = ACTIONS(1012), - [anon_sym_LT] = ACTIONS(1014), - [anon_sym_LT_EQ] = ACTIONS(1012), - [anon_sym_GT] = ACTIONS(1014), - [anon_sym_GT_EQ] = ACTIONS(1012), - [anon_sym_EQ_GT] = ACTIONS(1012), - [anon_sym_QMARK_QMARK] = ACTIONS(1012), - [anon_sym_EQ] = ACTIONS(1014), - [sym__rangeOperator] = ACTIONS(1012), + [sym__prefixUnaryOperator] = ACTIONS(1014), + [sym__eitherUnaryOperator] = ACTIONS(1012), [anon_sym_null] = ACTIONS(1014), [anon_sym_dynamic] = ACTIONS(1014), [anon_sym_final] = ACTIONS(1014), @@ -25587,7 +23411,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1014), [sym__semicolon] = ACTIONS(1012), }, - [183] = { + [219] = { + [ts_builtin_sym_end] = ACTIONS(466), + [sym_identifier] = ACTIONS(468), + [anon_sym_POUND] = ACTIONS(466), + [anon_sym_package] = ACTIONS(468), + [anon_sym_import] = ACTIONS(468), + [anon_sym_using] = ACTIONS(468), + [anon_sym_throw] = ACTIONS(468), + [anon_sym_LPAREN] = ACTIONS(466), + [anon_sym_switch] = ACTIONS(468), + [anon_sym_LBRACE] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(468), + [anon_sym_cast] = ACTIONS(468), + [anon_sym_DOLLARtype] = ACTIONS(466), + [anon_sym_in] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_this] = ACTIONS(468), + [anon_sym_AT] = ACTIONS(468), + [anon_sym_AT_COLON] = ACTIONS(466), + [anon_sym_if] = ACTIONS(468), + [anon_sym_else] = ACTIONS(468), + [anon_sym_new] = ACTIONS(468), + [sym__prefixUnaryOperator] = ACTIONS(468), + [sym__eitherUnaryOperator] = ACTIONS(466), + [anon_sym_null] = ACTIONS(468), + [anon_sym_dynamic] = ACTIONS(468), + [anon_sym_final] = ACTIONS(468), + [anon_sym_abstract] = ACTIONS(468), + [anon_sym_class] = ACTIONS(468), + [anon_sym_extends] = ACTIONS(468), + [anon_sym_implements] = ACTIONS(468), + [anon_sym_interface] = ACTIONS(468), + [anon_sym_typedef] = ACTIONS(468), + [anon_sym_function] = ACTIONS(468), + [anon_sym_var] = ACTIONS(468), + [aux_sym_integer_token1] = ACTIONS(468), + [aux_sym_integer_token2] = ACTIONS(466), + [aux_sym_float_token1] = ACTIONS(468), + [aux_sym_float_token2] = ACTIONS(466), + [anon_sym_true] = ACTIONS(468), + [anon_sym_false] = ACTIONS(468), + [aux_sym_string_token1] = ACTIONS(466), + [aux_sym_string_token3] = ACTIONS(466), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(468), + [anon_sym_catch] = ACTIONS(468), + [anon_sym_continue] = ACTIONS(468), + [anon_sym_do] = ACTIONS(468), + [anon_sym_enum] = ACTIONS(468), + [anon_sym_extern] = ACTIONS(468), + [anon_sym_for] = ACTIONS(468), + [anon_sym_inline] = ACTIONS(468), + [anon_sym_macro] = ACTIONS(468), + [anon_sym_operator] = ACTIONS(468), + [anon_sym_overload] = ACTIONS(468), + [anon_sym_override] = ACTIONS(468), + [anon_sym_private] = ACTIONS(468), + [anon_sym_public] = ACTIONS(468), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(468), + [anon_sym_try] = ACTIONS(468), + [anon_sym_untyped] = ACTIONS(468), + [anon_sym_while] = ACTIONS(468), + [sym__semicolon] = ACTIONS(466), + }, + [220] = { [ts_builtin_sym_end] = ACTIONS(1016), [sym_identifier] = ACTIONS(1018), [anon_sym_POUND] = ACTIONS(1016), @@ -25611,33 +23502,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1018), [anon_sym_else] = ACTIONS(1018), [anon_sym_new] = ACTIONS(1018), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_BANG] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1018), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), - [anon_sym_PERCENT] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_SLASH] = ACTIONS(1018), - [anon_sym_PLUS] = ACTIONS(1018), - [anon_sym_LT_LT] = ACTIONS(1016), - [anon_sym_GT_GT] = ACTIONS(1018), - [anon_sym_GT_GT_GT] = ACTIONS(1016), - [anon_sym_AMP] = ACTIONS(1018), - [anon_sym_PIPE] = ACTIONS(1018), - [anon_sym_CARET] = ACTIONS(1016), - [anon_sym_AMP_AMP] = ACTIONS(1016), - [anon_sym_PIPE_PIPE] = ACTIONS(1016), - [anon_sym_EQ_EQ] = ACTIONS(1016), - [anon_sym_BANG_EQ] = ACTIONS(1016), - [anon_sym_LT] = ACTIONS(1018), - [anon_sym_LT_EQ] = ACTIONS(1016), - [anon_sym_GT] = ACTIONS(1018), - [anon_sym_GT_EQ] = ACTIONS(1016), - [anon_sym_EQ_GT] = ACTIONS(1016), - [anon_sym_QMARK_QMARK] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(1018), - [sym__rangeOperator] = ACTIONS(1016), + [sym__prefixUnaryOperator] = ACTIONS(1018), + [sym__eitherUnaryOperator] = ACTIONS(1016), [anon_sym_null] = ACTIONS(1018), [anon_sym_dynamic] = ACTIONS(1018), [anon_sym_final] = ACTIONS(1018), @@ -25679,7 +23545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1018), [sym__semicolon] = ACTIONS(1016), }, - [184] = { + [221] = { [ts_builtin_sym_end] = ACTIONS(1020), [sym_identifier] = ACTIONS(1022), [anon_sym_POUND] = ACTIONS(1020), @@ -25703,33 +23569,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1022), [anon_sym_else] = ACTIONS(1022), [anon_sym_new] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1020), - [anon_sym_BANG] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1020), - [anon_sym_DASH_DASH] = ACTIONS(1020), - [anon_sym_PERCENT] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_SLASH] = ACTIONS(1022), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_LT_LT] = ACTIONS(1020), - [anon_sym_GT_GT] = ACTIONS(1022), - [anon_sym_GT_GT_GT] = ACTIONS(1020), - [anon_sym_AMP] = ACTIONS(1022), - [anon_sym_PIPE] = ACTIONS(1022), - [anon_sym_CARET] = ACTIONS(1020), - [anon_sym_AMP_AMP] = ACTIONS(1020), - [anon_sym_PIPE_PIPE] = ACTIONS(1020), - [anon_sym_EQ_EQ] = ACTIONS(1020), - [anon_sym_BANG_EQ] = ACTIONS(1020), - [anon_sym_LT] = ACTIONS(1022), - [anon_sym_LT_EQ] = ACTIONS(1020), - [anon_sym_GT] = ACTIONS(1022), - [anon_sym_GT_EQ] = ACTIONS(1020), - [anon_sym_EQ_GT] = ACTIONS(1020), - [anon_sym_QMARK_QMARK] = ACTIONS(1020), - [anon_sym_EQ] = ACTIONS(1022), - [sym__rangeOperator] = ACTIONS(1020), + [sym__prefixUnaryOperator] = ACTIONS(1022), + [sym__eitherUnaryOperator] = ACTIONS(1020), [anon_sym_null] = ACTIONS(1022), [anon_sym_dynamic] = ACTIONS(1022), [anon_sym_final] = ACTIONS(1022), @@ -25771,7 +23612,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1022), [sym__semicolon] = ACTIONS(1020), }, - [185] = { + [222] = { + [ts_builtin_sym_end] = ACTIONS(816), + [sym_identifier] = ACTIONS(818), + [anon_sym_POUND] = ACTIONS(816), + [anon_sym_package] = ACTIONS(818), + [anon_sym_import] = ACTIONS(818), + [anon_sym_using] = ACTIONS(818), + [anon_sym_throw] = ACTIONS(818), + [anon_sym_LPAREN] = ACTIONS(816), + [anon_sym_switch] = ACTIONS(818), + [anon_sym_LBRACE] = ACTIONS(816), + [anon_sym_RBRACE] = ACTIONS(816), + [anon_sym_case] = ACTIONS(818), + [anon_sym_default] = ACTIONS(818), + [anon_sym_cast] = ACTIONS(818), + [anon_sym_DOLLARtype] = ACTIONS(816), + [anon_sym_in] = ACTIONS(818), + [anon_sym_LBRACK] = ACTIONS(816), + [anon_sym_this] = ACTIONS(818), + [anon_sym_AT] = ACTIONS(818), + [anon_sym_AT_COLON] = ACTIONS(816), + [anon_sym_if] = ACTIONS(818), + [anon_sym_else] = ACTIONS(818), + [anon_sym_new] = ACTIONS(818), + [sym__prefixUnaryOperator] = ACTIONS(818), + [sym__eitherUnaryOperator] = ACTIONS(816), + [anon_sym_null] = ACTIONS(818), + [anon_sym_dynamic] = ACTIONS(818), + [anon_sym_final] = ACTIONS(818), + [anon_sym_abstract] = ACTIONS(818), + [anon_sym_class] = ACTIONS(818), + [anon_sym_extends] = ACTIONS(818), + [anon_sym_implements] = ACTIONS(818), + [anon_sym_interface] = ACTIONS(818), + [anon_sym_typedef] = ACTIONS(818), + [anon_sym_function] = ACTIONS(818), + [anon_sym_var] = ACTIONS(818), + [aux_sym_integer_token1] = ACTIONS(818), + [aux_sym_integer_token2] = ACTIONS(816), + [aux_sym_float_token1] = ACTIONS(818), + [aux_sym_float_token2] = ACTIONS(816), + [anon_sym_true] = ACTIONS(818), + [anon_sym_false] = ACTIONS(818), + [aux_sym_string_token1] = ACTIONS(816), + [aux_sym_string_token3] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(818), + [anon_sym_catch] = ACTIONS(818), + [anon_sym_continue] = ACTIONS(818), + [anon_sym_do] = ACTIONS(818), + [anon_sym_enum] = ACTIONS(818), + [anon_sym_extern] = ACTIONS(818), + [anon_sym_for] = ACTIONS(818), + [anon_sym_inline] = ACTIONS(818), + [anon_sym_macro] = ACTIONS(818), + [anon_sym_operator] = ACTIONS(818), + [anon_sym_overload] = ACTIONS(818), + [anon_sym_override] = ACTIONS(818), + [anon_sym_private] = ACTIONS(818), + [anon_sym_public] = ACTIONS(818), + [anon_sym_return] = ACTIONS(818), + [anon_sym_static] = ACTIONS(818), + [anon_sym_try] = ACTIONS(818), + [anon_sym_untyped] = ACTIONS(818), + [anon_sym_while] = ACTIONS(818), + [sym__semicolon] = ACTIONS(816), + }, + [223] = { [ts_builtin_sym_end] = ACTIONS(1024), [sym_identifier] = ACTIONS(1026), [anon_sym_POUND] = ACTIONS(1024), @@ -25795,33 +23703,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1026), [anon_sym_else] = ACTIONS(1026), [anon_sym_new] = ACTIONS(1026), - [anon_sym_TILDE] = ACTIONS(1024), - [anon_sym_BANG] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_PERCENT] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1024), - [anon_sym_SLASH] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(1026), - [anon_sym_LT_LT] = ACTIONS(1024), - [anon_sym_GT_GT] = ACTIONS(1026), - [anon_sym_GT_GT_GT] = ACTIONS(1024), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_PIPE] = ACTIONS(1026), - [anon_sym_CARET] = ACTIONS(1024), - [anon_sym_AMP_AMP] = ACTIONS(1024), - [anon_sym_PIPE_PIPE] = ACTIONS(1024), - [anon_sym_EQ_EQ] = ACTIONS(1024), - [anon_sym_BANG_EQ] = ACTIONS(1024), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_LT_EQ] = ACTIONS(1024), - [anon_sym_GT] = ACTIONS(1026), - [anon_sym_GT_EQ] = ACTIONS(1024), - [anon_sym_EQ_GT] = ACTIONS(1024), - [anon_sym_QMARK_QMARK] = ACTIONS(1024), - [anon_sym_EQ] = ACTIONS(1026), - [sym__rangeOperator] = ACTIONS(1024), + [sym__prefixUnaryOperator] = ACTIONS(1026), + [sym__eitherUnaryOperator] = ACTIONS(1024), [anon_sym_null] = ACTIONS(1026), [anon_sym_dynamic] = ACTIONS(1026), [anon_sym_final] = ACTIONS(1026), @@ -25863,7 +23746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1026), [sym__semicolon] = ACTIONS(1024), }, - [186] = { + [224] = { [ts_builtin_sym_end] = ACTIONS(1028), [sym_identifier] = ACTIONS(1030), [anon_sym_POUND] = ACTIONS(1028), @@ -25887,33 +23770,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1030), [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1028), + [sym__prefixUnaryOperator] = ACTIONS(1030), + [sym__eitherUnaryOperator] = ACTIONS(1028), [anon_sym_null] = ACTIONS(1030), [anon_sym_dynamic] = ACTIONS(1030), [anon_sym_final] = ACTIONS(1030), @@ -25955,7 +23813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1030), [sym__semicolon] = ACTIONS(1028), }, - [187] = { + [225] = { [ts_builtin_sym_end] = ACTIONS(1032), [sym_identifier] = ACTIONS(1034), [anon_sym_POUND] = ACTIONS(1032), @@ -25979,33 +23837,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1034), [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1032), + [sym__prefixUnaryOperator] = ACTIONS(1034), + [sym__eitherUnaryOperator] = ACTIONS(1032), [anon_sym_null] = ACTIONS(1034), [anon_sym_dynamic] = ACTIONS(1034), [anon_sym_final] = ACTIONS(1034), @@ -26047,7 +23880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1034), [sym__semicolon] = ACTIONS(1032), }, - [188] = { + [226] = { [ts_builtin_sym_end] = ACTIONS(1036), [sym_identifier] = ACTIONS(1038), [anon_sym_POUND] = ACTIONS(1036), @@ -26071,33 +23904,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1038), [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1036), + [sym__prefixUnaryOperator] = ACTIONS(1038), + [sym__eitherUnaryOperator] = ACTIONS(1036), [anon_sym_null] = ACTIONS(1038), [anon_sym_dynamic] = ACTIONS(1038), [anon_sym_final] = ACTIONS(1038), @@ -26139,7 +23947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1038), [sym__semicolon] = ACTIONS(1036), }, - [189] = { + [227] = { [ts_builtin_sym_end] = ACTIONS(1040), [sym_identifier] = ACTIONS(1042), [anon_sym_POUND] = ACTIONS(1040), @@ -26163,33 +23971,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1042), [anon_sym_else] = ACTIONS(1042), [anon_sym_new] = ACTIONS(1042), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_PLUS_PLUS] = ACTIONS(1040), - [anon_sym_DASH_DASH] = ACTIONS(1040), - [anon_sym_PERCENT] = ACTIONS(1040), - [anon_sym_STAR] = ACTIONS(1040), - [anon_sym_SLASH] = ACTIONS(1042), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_LT_LT] = ACTIONS(1040), - [anon_sym_GT_GT] = ACTIONS(1042), - [anon_sym_GT_GT_GT] = ACTIONS(1040), - [anon_sym_AMP] = ACTIONS(1042), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_CARET] = ACTIONS(1040), - [anon_sym_AMP_AMP] = ACTIONS(1040), - [anon_sym_PIPE_PIPE] = ACTIONS(1040), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_LT] = ACTIONS(1042), - [anon_sym_LT_EQ] = ACTIONS(1040), - [anon_sym_GT] = ACTIONS(1042), - [anon_sym_GT_EQ] = ACTIONS(1040), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_QMARK_QMARK] = ACTIONS(1040), - [anon_sym_EQ] = ACTIONS(1042), - [sym__rangeOperator] = ACTIONS(1040), + [sym__prefixUnaryOperator] = ACTIONS(1042), + [sym__eitherUnaryOperator] = ACTIONS(1040), [anon_sym_null] = ACTIONS(1042), [anon_sym_dynamic] = ACTIONS(1042), [anon_sym_final] = ACTIONS(1042), @@ -26231,7 +24014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1042), [sym__semicolon] = ACTIONS(1040), }, - [190] = { + [228] = { [ts_builtin_sym_end] = ACTIONS(1044), [sym_identifier] = ACTIONS(1046), [anon_sym_POUND] = ACTIONS(1044), @@ -26255,33 +24038,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1046), [anon_sym_else] = ACTIONS(1046), [anon_sym_new] = ACTIONS(1046), - [anon_sym_TILDE] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PERCENT] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1044), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_LT_LT] = ACTIONS(1044), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_GT_GT_GT] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_EQ_GT] = ACTIONS(1044), - [anon_sym_QMARK_QMARK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), - [sym__rangeOperator] = ACTIONS(1044), + [sym__prefixUnaryOperator] = ACTIONS(1046), + [sym__eitherUnaryOperator] = ACTIONS(1044), [anon_sym_null] = ACTIONS(1046), [anon_sym_dynamic] = ACTIONS(1046), [anon_sym_final] = ACTIONS(1046), @@ -26323,7 +24081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1046), [sym__semicolon] = ACTIONS(1044), }, - [191] = { + [229] = { [ts_builtin_sym_end] = ACTIONS(1048), [sym_identifier] = ACTIONS(1050), [anon_sym_POUND] = ACTIONS(1048), @@ -26347,33 +24105,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1050), [anon_sym_else] = ACTIONS(1050), [anon_sym_new] = ACTIONS(1050), - [anon_sym_TILDE] = ACTIONS(1048), - [anon_sym_BANG] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_PLUS_PLUS] = ACTIONS(1048), - [anon_sym_DASH_DASH] = ACTIONS(1048), - [anon_sym_PERCENT] = ACTIONS(1048), - [anon_sym_STAR] = ACTIONS(1048), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(1050), - [anon_sym_LT_LT] = ACTIONS(1048), - [anon_sym_GT_GT] = ACTIONS(1050), - [anon_sym_GT_GT_GT] = ACTIONS(1048), - [anon_sym_AMP] = ACTIONS(1050), - [anon_sym_PIPE] = ACTIONS(1050), - [anon_sym_CARET] = ACTIONS(1048), - [anon_sym_AMP_AMP] = ACTIONS(1048), - [anon_sym_PIPE_PIPE] = ACTIONS(1048), - [anon_sym_EQ_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1048), - [anon_sym_LT] = ACTIONS(1050), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_GT] = ACTIONS(1050), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_EQ_GT] = ACTIONS(1048), - [anon_sym_QMARK_QMARK] = ACTIONS(1048), - [anon_sym_EQ] = ACTIONS(1050), - [sym__rangeOperator] = ACTIONS(1048), + [sym__prefixUnaryOperator] = ACTIONS(1050), + [sym__eitherUnaryOperator] = ACTIONS(1048), [anon_sym_null] = ACTIONS(1050), [anon_sym_dynamic] = ACTIONS(1050), [anon_sym_final] = ACTIONS(1050), @@ -26415,7 +24148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1050), [sym__semicolon] = ACTIONS(1048), }, - [192] = { + [230] = { [ts_builtin_sym_end] = ACTIONS(1052), [sym_identifier] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(1052), @@ -26439,33 +24172,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1054), [anon_sym_else] = ACTIONS(1054), [anon_sym_new] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1052), - [anon_sym_DASH_DASH] = ACTIONS(1052), - [anon_sym_PERCENT] = ACTIONS(1052), - [anon_sym_STAR] = ACTIONS(1052), - [anon_sym_SLASH] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_LT_LT] = ACTIONS(1052), - [anon_sym_GT_GT] = ACTIONS(1054), - [anon_sym_GT_GT_GT] = ACTIONS(1052), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_CARET] = ACTIONS(1052), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_PIPE_PIPE] = ACTIONS(1052), - [anon_sym_EQ_EQ] = ACTIONS(1052), - [anon_sym_BANG_EQ] = ACTIONS(1052), - [anon_sym_LT] = ACTIONS(1054), - [anon_sym_LT_EQ] = ACTIONS(1052), - [anon_sym_GT] = ACTIONS(1054), - [anon_sym_GT_EQ] = ACTIONS(1052), - [anon_sym_EQ_GT] = ACTIONS(1052), - [anon_sym_QMARK_QMARK] = ACTIONS(1052), - [anon_sym_EQ] = ACTIONS(1054), - [sym__rangeOperator] = ACTIONS(1052), + [sym__prefixUnaryOperator] = ACTIONS(1054), + [sym__eitherUnaryOperator] = ACTIONS(1052), [anon_sym_null] = ACTIONS(1054), [anon_sym_dynamic] = ACTIONS(1054), [anon_sym_final] = ACTIONS(1054), @@ -26507,7 +24215,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1054), [sym__semicolon] = ACTIONS(1052), }, - [193] = { + [231] = { [ts_builtin_sym_end] = ACTIONS(1056), [sym_identifier] = ACTIONS(1058), [anon_sym_POUND] = ACTIONS(1056), @@ -26531,33 +24239,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1058), [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1056), + [sym__prefixUnaryOperator] = ACTIONS(1058), + [sym__eitherUnaryOperator] = ACTIONS(1056), [anon_sym_null] = ACTIONS(1058), [anon_sym_dynamic] = ACTIONS(1058), [anon_sym_final] = ACTIONS(1058), @@ -26599,7 +24282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1058), [sym__semicolon] = ACTIONS(1056), }, - [194] = { + [232] = { [ts_builtin_sym_end] = ACTIONS(1060), [sym_identifier] = ACTIONS(1062), [anon_sym_POUND] = ACTIONS(1060), @@ -26623,33 +24306,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1062), [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1060), + [sym__prefixUnaryOperator] = ACTIONS(1062), + [sym__eitherUnaryOperator] = ACTIONS(1060), [anon_sym_null] = ACTIONS(1062), [anon_sym_dynamic] = ACTIONS(1062), [anon_sym_final] = ACTIONS(1062), @@ -26691,7 +24349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1062), [sym__semicolon] = ACTIONS(1060), }, - [195] = { + [233] = { [ts_builtin_sym_end] = ACTIONS(1064), [sym_identifier] = ACTIONS(1066), [anon_sym_POUND] = ACTIONS(1064), @@ -26715,33 +24373,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1066), [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1064), + [sym__prefixUnaryOperator] = ACTIONS(1066), + [sym__eitherUnaryOperator] = ACTIONS(1064), [anon_sym_null] = ACTIONS(1066), [anon_sym_dynamic] = ACTIONS(1066), [anon_sym_final] = ACTIONS(1066), @@ -26783,7 +24416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1066), [sym__semicolon] = ACTIONS(1064), }, - [196] = { + [234] = { [ts_builtin_sym_end] = ACTIONS(1068), [sym_identifier] = ACTIONS(1070), [anon_sym_POUND] = ACTIONS(1068), @@ -26807,33 +24440,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1070), [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1068), + [sym__prefixUnaryOperator] = ACTIONS(1070), + [sym__eitherUnaryOperator] = ACTIONS(1068), [anon_sym_null] = ACTIONS(1070), [anon_sym_dynamic] = ACTIONS(1070), [anon_sym_final] = ACTIONS(1070), @@ -26875,7 +24483,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1070), [sym__semicolon] = ACTIONS(1068), }, - [197] = { + [235] = { [ts_builtin_sym_end] = ACTIONS(1072), [sym_identifier] = ACTIONS(1074), [anon_sym_POUND] = ACTIONS(1072), @@ -26899,33 +24507,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1074), [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1072), + [sym__prefixUnaryOperator] = ACTIONS(1074), + [sym__eitherUnaryOperator] = ACTIONS(1072), [anon_sym_null] = ACTIONS(1074), [anon_sym_dynamic] = ACTIONS(1074), [anon_sym_final] = ACTIONS(1074), @@ -26967,7 +24550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1074), [sym__semicolon] = ACTIONS(1072), }, - [198] = { + [236] = { [ts_builtin_sym_end] = ACTIONS(1076), [sym_identifier] = ACTIONS(1078), [anon_sym_POUND] = ACTIONS(1076), @@ -26991,33 +24574,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1078), [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1076), + [sym__prefixUnaryOperator] = ACTIONS(1078), + [sym__eitherUnaryOperator] = ACTIONS(1076), [anon_sym_null] = ACTIONS(1078), [anon_sym_dynamic] = ACTIONS(1078), [anon_sym_final] = ACTIONS(1078), @@ -27059,7 +24617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1078), [sym__semicolon] = ACTIONS(1076), }, - [199] = { + [237] = { [ts_builtin_sym_end] = ACTIONS(1080), [sym_identifier] = ACTIONS(1082), [anon_sym_POUND] = ACTIONS(1080), @@ -27083,33 +24641,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1082), [anon_sym_else] = ACTIONS(1082), [anon_sym_new] = ACTIONS(1082), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1082), - [anon_sym_PLUS_PLUS] = ACTIONS(1080), - [anon_sym_DASH_DASH] = ACTIONS(1080), - [anon_sym_PERCENT] = ACTIONS(1080), - [anon_sym_STAR] = ACTIONS(1080), - [anon_sym_SLASH] = ACTIONS(1082), - [anon_sym_PLUS] = ACTIONS(1082), - [anon_sym_LT_LT] = ACTIONS(1080), - [anon_sym_GT_GT] = ACTIONS(1082), - [anon_sym_GT_GT_GT] = ACTIONS(1080), - [anon_sym_AMP] = ACTIONS(1082), - [anon_sym_PIPE] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1080), - [anon_sym_AMP_AMP] = ACTIONS(1080), - [anon_sym_PIPE_PIPE] = ACTIONS(1080), - [anon_sym_EQ_EQ] = ACTIONS(1080), - [anon_sym_BANG_EQ] = ACTIONS(1080), - [anon_sym_LT] = ACTIONS(1082), - [anon_sym_LT_EQ] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1082), - [anon_sym_GT_EQ] = ACTIONS(1080), - [anon_sym_EQ_GT] = ACTIONS(1080), - [anon_sym_QMARK_QMARK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1082), - [sym__rangeOperator] = ACTIONS(1080), + [sym__prefixUnaryOperator] = ACTIONS(1082), + [sym__eitherUnaryOperator] = ACTIONS(1080), [anon_sym_null] = ACTIONS(1082), [anon_sym_dynamic] = ACTIONS(1082), [anon_sym_final] = ACTIONS(1082), @@ -27151,99 +24684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1082), [sym__semicolon] = ACTIONS(1080), }, - [200] = { - [ts_builtin_sym_end] = ACTIONS(918), - [sym_identifier] = ACTIONS(920), - [anon_sym_POUND] = ACTIONS(918), - [anon_sym_package] = ACTIONS(920), - [anon_sym_import] = ACTIONS(920), - [anon_sym_using] = ACTIONS(920), - [anon_sym_throw] = ACTIONS(920), - [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_switch] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(918), - [anon_sym_RBRACE] = ACTIONS(918), - [anon_sym_case] = ACTIONS(920), - [anon_sym_default] = ACTIONS(920), - [anon_sym_cast] = ACTIONS(920), - [anon_sym_DOLLARtype] = ACTIONS(918), - [anon_sym_in] = ACTIONS(920), - [anon_sym_LBRACK] = ACTIONS(918), - [anon_sym_this] = ACTIONS(920), - [anon_sym_AT] = ACTIONS(920), - [anon_sym_AT_COLON] = ACTIONS(918), - [anon_sym_if] = ACTIONS(920), - [anon_sym_else] = ACTIONS(920), - [anon_sym_new] = ACTIONS(920), - [anon_sym_TILDE] = ACTIONS(918), - [anon_sym_BANG] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), - [anon_sym_PERCENT] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(918), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(920), - [anon_sym_LT_LT] = ACTIONS(918), - [anon_sym_GT_GT] = ACTIONS(920), - [anon_sym_GT_GT_GT] = ACTIONS(918), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_CARET] = ACTIONS(918), - [anon_sym_AMP_AMP] = ACTIONS(918), - [anon_sym_PIPE_PIPE] = ACTIONS(918), - [anon_sym_EQ_EQ] = ACTIONS(918), - [anon_sym_BANG_EQ] = ACTIONS(918), - [anon_sym_LT] = ACTIONS(920), - [anon_sym_LT_EQ] = ACTIONS(918), - [anon_sym_GT] = ACTIONS(920), - [anon_sym_GT_EQ] = ACTIONS(918), - [anon_sym_EQ_GT] = ACTIONS(918), - [anon_sym_QMARK_QMARK] = ACTIONS(918), - [anon_sym_EQ] = ACTIONS(920), - [sym__rangeOperator] = ACTIONS(918), - [anon_sym_null] = ACTIONS(920), - [anon_sym_dynamic] = ACTIONS(920), - [anon_sym_final] = ACTIONS(920), - [anon_sym_abstract] = ACTIONS(920), - [anon_sym_class] = ACTIONS(920), - [anon_sym_extends] = ACTIONS(920), - [anon_sym_implements] = ACTIONS(920), - [anon_sym_interface] = ACTIONS(920), - [anon_sym_typedef] = ACTIONS(920), - [anon_sym_function] = ACTIONS(920), - [anon_sym_var] = ACTIONS(920), - [aux_sym_integer_token1] = ACTIONS(920), - [aux_sym_integer_token2] = ACTIONS(918), - [aux_sym_float_token1] = ACTIONS(920), - [aux_sym_float_token2] = ACTIONS(918), - [anon_sym_true] = ACTIONS(920), - [anon_sym_false] = ACTIONS(920), - [aux_sym_string_token1] = ACTIONS(918), - [aux_sym_string_token3] = ACTIONS(918), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(920), - [anon_sym_catch] = ACTIONS(920), - [anon_sym_continue] = ACTIONS(920), - [anon_sym_do] = ACTIONS(920), - [anon_sym_enum] = ACTIONS(920), - [anon_sym_extern] = ACTIONS(920), - [anon_sym_for] = ACTIONS(920), - [anon_sym_inline] = ACTIONS(920), - [anon_sym_macro] = ACTIONS(920), - [anon_sym_operator] = ACTIONS(920), - [anon_sym_overload] = ACTIONS(920), - [anon_sym_override] = ACTIONS(920), - [anon_sym_private] = ACTIONS(920), - [anon_sym_public] = ACTIONS(920), - [anon_sym_return] = ACTIONS(920), - [anon_sym_static] = ACTIONS(920), - [anon_sym_try] = ACTIONS(920), - [anon_sym_untyped] = ACTIONS(920), - [anon_sym_while] = ACTIONS(920), - [sym__semicolon] = ACTIONS(918), - }, - [201] = { + [238] = { [ts_builtin_sym_end] = ACTIONS(1084), [sym_identifier] = ACTIONS(1086), [anon_sym_POUND] = ACTIONS(1084), @@ -27267,33 +24708,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1086), [anon_sym_else] = ACTIONS(1086), [anon_sym_new] = ACTIONS(1086), - [anon_sym_TILDE] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1086), - [anon_sym_DASH] = ACTIONS(1086), - [anon_sym_PLUS_PLUS] = ACTIONS(1084), - [anon_sym_DASH_DASH] = ACTIONS(1084), - [anon_sym_PERCENT] = ACTIONS(1084), - [anon_sym_STAR] = ACTIONS(1084), - [anon_sym_SLASH] = ACTIONS(1086), - [anon_sym_PLUS] = ACTIONS(1086), - [anon_sym_LT_LT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1086), - [anon_sym_GT_GT_GT] = ACTIONS(1084), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_PIPE] = ACTIONS(1086), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_AMP_AMP] = ACTIONS(1084), - [anon_sym_PIPE_PIPE] = ACTIONS(1084), - [anon_sym_EQ_EQ] = ACTIONS(1084), - [anon_sym_BANG_EQ] = ACTIONS(1084), - [anon_sym_LT] = ACTIONS(1086), - [anon_sym_LT_EQ] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1086), - [anon_sym_GT_EQ] = ACTIONS(1084), - [anon_sym_EQ_GT] = ACTIONS(1084), - [anon_sym_QMARK_QMARK] = ACTIONS(1084), - [anon_sym_EQ] = ACTIONS(1086), - [sym__rangeOperator] = ACTIONS(1084), + [sym__prefixUnaryOperator] = ACTIONS(1086), + [sym__eitherUnaryOperator] = ACTIONS(1084), [anon_sym_null] = ACTIONS(1086), [anon_sym_dynamic] = ACTIONS(1086), [anon_sym_final] = ACTIONS(1086), @@ -27335,19179 +24751,8313 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1086), [sym__semicolon] = ACTIONS(1084), }, - [202] = { - [sym__rhs_expression] = STATE(471), - [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(65), - [sym_range_expression] = STATE(66), - [sym_subscript_expression] = STATE(66), - [sym_member_expression] = STATE(457), - [sym__lhs_expression] = STATE(979), - [sym_builtin_type] = STATE(1008), - [sym_function_type] = STATE(118), - [sym_type] = STATE(1050), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(471), - [sym_operator] = STATE(804), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(825), - [sym_integer] = STATE(825), - [sym_float] = STATE(825), - [sym_bool] = STATE(825), - [sym_string] = STATE(675), - [sym_null] = STATE(825), - [sym_array] = STATE(825), - [sym_map] = STATE(825), - [sym_object] = STATE(825), - [sym_pair] = STATE(825), - [sym_identifier] = ACTIONS(1088), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), + [239] = { + [ts_builtin_sym_end] = ACTIONS(1088), + [sym_identifier] = ACTIONS(1090), + [anon_sym_POUND] = ACTIONS(1088), + [anon_sym_package] = ACTIONS(1090), + [anon_sym_import] = ACTIONS(1090), + [anon_sym_using] = ACTIONS(1090), + [anon_sym_throw] = ACTIONS(1090), + [anon_sym_LPAREN] = ACTIONS(1088), + [anon_sym_switch] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(1088), + [anon_sym_RBRACE] = ACTIONS(1088), + [anon_sym_case] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1090), [anon_sym_cast] = ACTIONS(1090), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(998), - [anon_sym_Void] = ACTIONS(606), - [anon_sym_Int] = ACTIONS(606), - [anon_sym_Float] = ACTIONS(606), - [anon_sym_Bool] = ACTIONS(606), - [anon_sym_Null] = ACTIONS(606), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), + [anon_sym_DOLLARtype] = ACTIONS(1088), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1088), + [anon_sym_this] = ACTIONS(1090), + [anon_sym_AT] = ACTIONS(1090), + [anon_sym_AT_COLON] = ACTIONS(1088), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_else] = ACTIONS(1090), + [anon_sym_new] = ACTIONS(1090), + [sym__prefixUnaryOperator] = ACTIONS(1090), + [sym__eitherUnaryOperator] = ACTIONS(1088), + [anon_sym_null] = ACTIONS(1090), + [anon_sym_dynamic] = ACTIONS(1090), + [anon_sym_final] = ACTIONS(1090), + [anon_sym_abstract] = ACTIONS(1090), + [anon_sym_class] = ACTIONS(1090), + [anon_sym_extends] = ACTIONS(1090), + [anon_sym_implements] = ACTIONS(1090), + [anon_sym_interface] = ACTIONS(1090), + [anon_sym_typedef] = ACTIONS(1090), + [anon_sym_function] = ACTIONS(1090), + [anon_sym_var] = ACTIONS(1090), + [aux_sym_integer_token1] = ACTIONS(1090), + [aux_sym_integer_token2] = ACTIONS(1088), + [aux_sym_float_token1] = ACTIONS(1090), + [aux_sym_float_token2] = ACTIONS(1088), + [anon_sym_true] = ACTIONS(1090), + [anon_sym_false] = ACTIONS(1090), + [aux_sym_string_token1] = ACTIONS(1088), + [aux_sym_string_token3] = ACTIONS(1088), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_catch] = ACTIONS(1090), + [anon_sym_continue] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1090), + [anon_sym_extern] = ACTIONS(1090), + [anon_sym_for] = ACTIONS(1090), + [anon_sym_inline] = ACTIONS(1090), + [anon_sym_macro] = ACTIONS(1090), + [anon_sym_operator] = ACTIONS(1090), + [anon_sym_overload] = ACTIONS(1090), + [anon_sym_override] = ACTIONS(1090), + [anon_sym_private] = ACTIONS(1090), + [anon_sym_public] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1090), + [anon_sym_static] = ACTIONS(1090), + [anon_sym_try] = ACTIONS(1090), + [anon_sym_untyped] = ACTIONS(1090), + [anon_sym_while] = ACTIONS(1090), + [sym__semicolon] = ACTIONS(1088), }, - [203] = { - [ts_builtin_sym_end] = ACTIONS(1094), - [sym_identifier] = ACTIONS(1096), - [anon_sym_POUND] = ACTIONS(1094), - [anon_sym_package] = ACTIONS(1096), - [anon_sym_import] = ACTIONS(1096), - [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_RBRACE] = ACTIONS(1094), - [anon_sym_case] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1096), - [anon_sym_cast] = ACTIONS(1096), - [anon_sym_DOLLARtype] = ACTIONS(1094), - [anon_sym_in] = ACTIONS(1096), - [anon_sym_LBRACK] = ACTIONS(1094), - [anon_sym_this] = ACTIONS(1096), - [anon_sym_AT] = ACTIONS(1096), - [anon_sym_AT_COLON] = ACTIONS(1094), - [anon_sym_if] = ACTIONS(1096), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1094), - [anon_sym_null] = ACTIONS(1096), - [anon_sym_dynamic] = ACTIONS(1096), - [anon_sym_final] = ACTIONS(1096), - [anon_sym_abstract] = ACTIONS(1096), - [anon_sym_class] = ACTIONS(1096), - [anon_sym_extends] = ACTIONS(1096), - [anon_sym_implements] = ACTIONS(1096), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1096), - [anon_sym_catch] = ACTIONS(1096), - [anon_sym_continue] = ACTIONS(1096), - [anon_sym_do] = ACTIONS(1096), - [anon_sym_enum] = ACTIONS(1096), - [anon_sym_extern] = ACTIONS(1096), - [anon_sym_for] = ACTIONS(1096), - [anon_sym_inline] = ACTIONS(1096), - [anon_sym_macro] = ACTIONS(1096), - [anon_sym_operator] = ACTIONS(1096), - [anon_sym_overload] = ACTIONS(1096), - [anon_sym_override] = ACTIONS(1096), - [anon_sym_private] = ACTIONS(1096), - [anon_sym_public] = ACTIONS(1096), - [anon_sym_return] = ACTIONS(1096), - [anon_sym_static] = ACTIONS(1096), - [anon_sym_try] = ACTIONS(1096), - [anon_sym_untyped] = ACTIONS(1096), - [anon_sym_while] = ACTIONS(1096), - [sym__semicolon] = ACTIONS(1094), + [240] = { + [ts_builtin_sym_end] = ACTIONS(1092), + [sym_identifier] = ACTIONS(1094), + [anon_sym_POUND] = ACTIONS(1092), + [anon_sym_package] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(1094), + [anon_sym_using] = ACTIONS(1094), + [anon_sym_throw] = ACTIONS(1094), + [anon_sym_LPAREN] = ACTIONS(1092), + [anon_sym_switch] = ACTIONS(1094), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_RBRACE] = ACTIONS(1092), + [anon_sym_case] = ACTIONS(1094), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_cast] = ACTIONS(1094), + [anon_sym_DOLLARtype] = ACTIONS(1092), + [anon_sym_in] = ACTIONS(1094), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_this] = ACTIONS(1094), + [anon_sym_AT] = ACTIONS(1094), + [anon_sym_AT_COLON] = ACTIONS(1092), + [anon_sym_if] = ACTIONS(1094), + [anon_sym_else] = ACTIONS(1094), + [anon_sym_new] = ACTIONS(1094), + [sym__prefixUnaryOperator] = ACTIONS(1094), + [sym__eitherUnaryOperator] = ACTIONS(1092), + [anon_sym_null] = ACTIONS(1094), + [anon_sym_dynamic] = ACTIONS(1094), + [anon_sym_final] = ACTIONS(1094), + [anon_sym_abstract] = ACTIONS(1094), + [anon_sym_class] = ACTIONS(1094), + [anon_sym_extends] = ACTIONS(1094), + [anon_sym_implements] = ACTIONS(1094), + [anon_sym_interface] = ACTIONS(1094), + [anon_sym_typedef] = ACTIONS(1094), + [anon_sym_function] = ACTIONS(1094), + [anon_sym_var] = ACTIONS(1094), + [aux_sym_integer_token1] = ACTIONS(1094), + [aux_sym_integer_token2] = ACTIONS(1092), + [aux_sym_float_token1] = ACTIONS(1094), + [aux_sym_float_token2] = ACTIONS(1092), + [anon_sym_true] = ACTIONS(1094), + [anon_sym_false] = ACTIONS(1094), + [aux_sym_string_token1] = ACTIONS(1092), + [aux_sym_string_token3] = ACTIONS(1092), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1094), + [anon_sym_catch] = ACTIONS(1094), + [anon_sym_continue] = ACTIONS(1094), + [anon_sym_do] = ACTIONS(1094), + [anon_sym_enum] = ACTIONS(1094), + [anon_sym_extern] = ACTIONS(1094), + [anon_sym_for] = ACTIONS(1094), + [anon_sym_inline] = ACTIONS(1094), + [anon_sym_macro] = ACTIONS(1094), + [anon_sym_operator] = ACTIONS(1094), + [anon_sym_overload] = ACTIONS(1094), + [anon_sym_override] = ACTIONS(1094), + [anon_sym_private] = ACTIONS(1094), + [anon_sym_public] = ACTIONS(1094), + [anon_sym_return] = ACTIONS(1094), + [anon_sym_static] = ACTIONS(1094), + [anon_sym_try] = ACTIONS(1094), + [anon_sym_untyped] = ACTIONS(1094), + [anon_sym_while] = ACTIONS(1094), + [sym__semicolon] = ACTIONS(1092), }, - [204] = { - [ts_builtin_sym_end] = ACTIONS(1098), - [sym_identifier] = ACTIONS(1100), - [anon_sym_POUND] = ACTIONS(1098), - [anon_sym_package] = ACTIONS(1100), - [anon_sym_import] = ACTIONS(1100), - [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_RBRACE] = ACTIONS(1098), - [anon_sym_case] = ACTIONS(1100), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_cast] = ACTIONS(1100), - [anon_sym_DOLLARtype] = ACTIONS(1098), - [anon_sym_in] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1098), - [anon_sym_this] = ACTIONS(1100), - [anon_sym_AT] = ACTIONS(1100), - [anon_sym_AT_COLON] = ACTIONS(1098), - [anon_sym_if] = ACTIONS(1100), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1098), - [anon_sym_null] = ACTIONS(1100), - [anon_sym_dynamic] = ACTIONS(1100), - [anon_sym_final] = ACTIONS(1100), - [anon_sym_abstract] = ACTIONS(1100), - [anon_sym_class] = ACTIONS(1100), - [anon_sym_extends] = ACTIONS(1100), - [anon_sym_implements] = ACTIONS(1100), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1100), - [anon_sym_catch] = ACTIONS(1100), - [anon_sym_continue] = ACTIONS(1100), - [anon_sym_do] = ACTIONS(1100), - [anon_sym_enum] = ACTIONS(1100), - [anon_sym_extern] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1100), - [anon_sym_inline] = ACTIONS(1100), - [anon_sym_macro] = ACTIONS(1100), - [anon_sym_operator] = ACTIONS(1100), - [anon_sym_overload] = ACTIONS(1100), - [anon_sym_override] = ACTIONS(1100), - [anon_sym_private] = ACTIONS(1100), - [anon_sym_public] = ACTIONS(1100), - [anon_sym_return] = ACTIONS(1100), - [anon_sym_static] = ACTIONS(1100), - [anon_sym_try] = ACTIONS(1100), - [anon_sym_untyped] = ACTIONS(1100), - [anon_sym_while] = ACTIONS(1100), - [sym__semicolon] = ACTIONS(1098), + [241] = { + [ts_builtin_sym_end] = ACTIONS(1096), + [sym_identifier] = ACTIONS(1098), + [anon_sym_POUND] = ACTIONS(1096), + [anon_sym_package] = ACTIONS(1098), + [anon_sym_import] = ACTIONS(1098), + [anon_sym_using] = ACTIONS(1098), + [anon_sym_throw] = ACTIONS(1098), + [anon_sym_LPAREN] = ACTIONS(1096), + [anon_sym_switch] = ACTIONS(1098), + [anon_sym_LBRACE] = ACTIONS(1096), + [anon_sym_RBRACE] = ACTIONS(1096), + [anon_sym_case] = ACTIONS(1098), + [anon_sym_default] = ACTIONS(1098), + [anon_sym_cast] = ACTIONS(1098), + [anon_sym_DOLLARtype] = ACTIONS(1096), + [anon_sym_in] = ACTIONS(1098), + [anon_sym_LBRACK] = ACTIONS(1096), + [anon_sym_this] = ACTIONS(1098), + [anon_sym_AT] = ACTIONS(1098), + [anon_sym_AT_COLON] = ACTIONS(1096), + [anon_sym_if] = ACTIONS(1098), + [anon_sym_else] = ACTIONS(1098), + [anon_sym_new] = ACTIONS(1098), + [sym__prefixUnaryOperator] = ACTIONS(1098), + [sym__eitherUnaryOperator] = ACTIONS(1096), + [anon_sym_null] = ACTIONS(1098), + [anon_sym_dynamic] = ACTIONS(1098), + [anon_sym_final] = ACTIONS(1098), + [anon_sym_abstract] = ACTIONS(1098), + [anon_sym_class] = ACTIONS(1098), + [anon_sym_extends] = ACTIONS(1098), + [anon_sym_implements] = ACTIONS(1098), + [anon_sym_interface] = ACTIONS(1098), + [anon_sym_typedef] = ACTIONS(1098), + [anon_sym_function] = ACTIONS(1098), + [anon_sym_var] = ACTIONS(1098), + [aux_sym_integer_token1] = ACTIONS(1098), + [aux_sym_integer_token2] = ACTIONS(1096), + [aux_sym_float_token1] = ACTIONS(1098), + [aux_sym_float_token2] = ACTIONS(1096), + [anon_sym_true] = ACTIONS(1098), + [anon_sym_false] = ACTIONS(1098), + [aux_sym_string_token1] = ACTIONS(1096), + [aux_sym_string_token3] = ACTIONS(1096), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1098), + [anon_sym_catch] = ACTIONS(1098), + [anon_sym_continue] = ACTIONS(1098), + [anon_sym_do] = ACTIONS(1098), + [anon_sym_enum] = ACTIONS(1098), + [anon_sym_extern] = ACTIONS(1098), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_inline] = ACTIONS(1098), + [anon_sym_macro] = ACTIONS(1098), + [anon_sym_operator] = ACTIONS(1098), + [anon_sym_overload] = ACTIONS(1098), + [anon_sym_override] = ACTIONS(1098), + [anon_sym_private] = ACTIONS(1098), + [anon_sym_public] = ACTIONS(1098), + [anon_sym_return] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(1098), + [anon_sym_try] = ACTIONS(1098), + [anon_sym_untyped] = ACTIONS(1098), + [anon_sym_while] = ACTIONS(1098), + [sym__semicolon] = ACTIONS(1096), }, - [205] = { - [ts_builtin_sym_end] = ACTIONS(1102), - [sym_identifier] = ACTIONS(1104), - [anon_sym_POUND] = ACTIONS(1102), - [anon_sym_package] = ACTIONS(1104), - [anon_sym_import] = ACTIONS(1104), - [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_RBRACE] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1104), - [anon_sym_default] = ACTIONS(1104), - [anon_sym_cast] = ACTIONS(1104), - [anon_sym_DOLLARtype] = ACTIONS(1102), - [anon_sym_in] = ACTIONS(1104), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_this] = ACTIONS(1104), - [anon_sym_AT] = ACTIONS(1104), - [anon_sym_AT_COLON] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1104), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1102), - [anon_sym_null] = ACTIONS(1104), - [anon_sym_dynamic] = ACTIONS(1104), - [anon_sym_final] = ACTIONS(1104), - [anon_sym_abstract] = ACTIONS(1104), - [anon_sym_class] = ACTIONS(1104), - [anon_sym_extends] = ACTIONS(1104), - [anon_sym_implements] = ACTIONS(1104), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1104), - [anon_sym_catch] = ACTIONS(1104), - [anon_sym_continue] = ACTIONS(1104), - [anon_sym_do] = ACTIONS(1104), - [anon_sym_enum] = ACTIONS(1104), - [anon_sym_extern] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_inline] = ACTIONS(1104), - [anon_sym_macro] = ACTIONS(1104), - [anon_sym_operator] = ACTIONS(1104), - [anon_sym_overload] = ACTIONS(1104), - [anon_sym_override] = ACTIONS(1104), - [anon_sym_private] = ACTIONS(1104), - [anon_sym_public] = ACTIONS(1104), - [anon_sym_return] = ACTIONS(1104), - [anon_sym_static] = ACTIONS(1104), - [anon_sym_try] = ACTIONS(1104), - [anon_sym_untyped] = ACTIONS(1104), - [anon_sym_while] = ACTIONS(1104), - [sym__semicolon] = ACTIONS(1102), + [242] = { + [ts_builtin_sym_end] = ACTIONS(1100), + [sym_identifier] = ACTIONS(1102), + [anon_sym_POUND] = ACTIONS(1100), + [anon_sym_package] = ACTIONS(1102), + [anon_sym_import] = ACTIONS(1102), + [anon_sym_using] = ACTIONS(1102), + [anon_sym_throw] = ACTIONS(1102), + [anon_sym_LPAREN] = ACTIONS(1100), + [anon_sym_switch] = ACTIONS(1102), + [anon_sym_LBRACE] = ACTIONS(1100), + [anon_sym_RBRACE] = ACTIONS(1100), + [anon_sym_case] = ACTIONS(1102), + [anon_sym_default] = ACTIONS(1102), + [anon_sym_cast] = ACTIONS(1102), + [anon_sym_DOLLARtype] = ACTIONS(1100), + [anon_sym_in] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1100), + [anon_sym_this] = ACTIONS(1102), + [anon_sym_AT] = ACTIONS(1102), + [anon_sym_AT_COLON] = ACTIONS(1100), + [anon_sym_if] = ACTIONS(1102), + [anon_sym_else] = ACTIONS(1102), + [anon_sym_new] = ACTIONS(1102), + [sym__prefixUnaryOperator] = ACTIONS(1102), + [sym__eitherUnaryOperator] = ACTIONS(1100), + [anon_sym_null] = ACTIONS(1102), + [anon_sym_dynamic] = ACTIONS(1102), + [anon_sym_final] = ACTIONS(1102), + [anon_sym_abstract] = ACTIONS(1102), + [anon_sym_class] = ACTIONS(1102), + [anon_sym_extends] = ACTIONS(1102), + [anon_sym_implements] = ACTIONS(1102), + [anon_sym_interface] = ACTIONS(1102), + [anon_sym_typedef] = ACTIONS(1102), + [anon_sym_function] = ACTIONS(1102), + [anon_sym_var] = ACTIONS(1102), + [aux_sym_integer_token1] = ACTIONS(1102), + [aux_sym_integer_token2] = ACTIONS(1100), + [aux_sym_float_token1] = ACTIONS(1102), + [aux_sym_float_token2] = ACTIONS(1100), + [anon_sym_true] = ACTIONS(1102), + [anon_sym_false] = ACTIONS(1102), + [aux_sym_string_token1] = ACTIONS(1100), + [aux_sym_string_token3] = ACTIONS(1100), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1102), + [anon_sym_catch] = ACTIONS(1102), + [anon_sym_continue] = ACTIONS(1102), + [anon_sym_do] = ACTIONS(1102), + [anon_sym_enum] = ACTIONS(1102), + [anon_sym_extern] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_inline] = ACTIONS(1102), + [anon_sym_macro] = ACTIONS(1102), + [anon_sym_operator] = ACTIONS(1102), + [anon_sym_overload] = ACTIONS(1102), + [anon_sym_override] = ACTIONS(1102), + [anon_sym_private] = ACTIONS(1102), + [anon_sym_public] = ACTIONS(1102), + [anon_sym_return] = ACTIONS(1102), + [anon_sym_static] = ACTIONS(1102), + [anon_sym_try] = ACTIONS(1102), + [anon_sym_untyped] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1102), + [sym__semicolon] = ACTIONS(1100), }, - [206] = { - [ts_builtin_sym_end] = ACTIONS(1106), - [sym_identifier] = ACTIONS(1108), - [anon_sym_POUND] = ACTIONS(1106), - [anon_sym_package] = ACTIONS(1108), - [anon_sym_import] = ACTIONS(1108), - [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_RBRACE] = ACTIONS(1106), - [anon_sym_case] = ACTIONS(1108), - [anon_sym_default] = ACTIONS(1108), - [anon_sym_cast] = ACTIONS(1108), - [anon_sym_DOLLARtype] = ACTIONS(1106), - [anon_sym_in] = ACTIONS(1108), - [anon_sym_LBRACK] = ACTIONS(1106), - [anon_sym_this] = ACTIONS(1108), - [anon_sym_AT] = ACTIONS(1108), - [anon_sym_AT_COLON] = ACTIONS(1106), - [anon_sym_if] = ACTIONS(1108), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1106), - [anon_sym_null] = ACTIONS(1108), - [anon_sym_dynamic] = ACTIONS(1108), - [anon_sym_final] = ACTIONS(1108), - [anon_sym_abstract] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1108), - [anon_sym_extends] = ACTIONS(1108), - [anon_sym_implements] = ACTIONS(1108), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1108), - [anon_sym_catch] = ACTIONS(1108), - [anon_sym_continue] = ACTIONS(1108), - [anon_sym_do] = ACTIONS(1108), - [anon_sym_enum] = ACTIONS(1108), - [anon_sym_extern] = ACTIONS(1108), - [anon_sym_for] = ACTIONS(1108), - [anon_sym_inline] = ACTIONS(1108), - [anon_sym_macro] = ACTIONS(1108), - [anon_sym_operator] = ACTIONS(1108), - [anon_sym_overload] = ACTIONS(1108), - [anon_sym_override] = ACTIONS(1108), - [anon_sym_private] = ACTIONS(1108), - [anon_sym_public] = ACTIONS(1108), - [anon_sym_return] = ACTIONS(1108), - [anon_sym_static] = ACTIONS(1108), - [anon_sym_try] = ACTIONS(1108), - [anon_sym_untyped] = ACTIONS(1108), - [anon_sym_while] = ACTIONS(1108), - [sym__semicolon] = ACTIONS(1106), + [243] = { + [ts_builtin_sym_end] = ACTIONS(1104), + [sym_identifier] = ACTIONS(1106), + [anon_sym_POUND] = ACTIONS(1104), + [anon_sym_package] = ACTIONS(1106), + [anon_sym_import] = ACTIONS(1106), + [anon_sym_using] = ACTIONS(1106), + [anon_sym_throw] = ACTIONS(1106), + [anon_sym_LPAREN] = ACTIONS(1104), + [anon_sym_switch] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_RBRACE] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1106), + [anon_sym_default] = ACTIONS(1106), + [anon_sym_cast] = ACTIONS(1106), + [anon_sym_DOLLARtype] = ACTIONS(1104), + [anon_sym_in] = ACTIONS(1106), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_this] = ACTIONS(1106), + [anon_sym_AT] = ACTIONS(1106), + [anon_sym_AT_COLON] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1106), + [anon_sym_else] = ACTIONS(1106), + [anon_sym_new] = ACTIONS(1106), + [sym__prefixUnaryOperator] = ACTIONS(1106), + [sym__eitherUnaryOperator] = ACTIONS(1104), + [anon_sym_null] = ACTIONS(1106), + [anon_sym_dynamic] = ACTIONS(1106), + [anon_sym_final] = ACTIONS(1106), + [anon_sym_abstract] = ACTIONS(1106), + [anon_sym_class] = ACTIONS(1106), + [anon_sym_extends] = ACTIONS(1106), + [anon_sym_implements] = ACTIONS(1106), + [anon_sym_interface] = ACTIONS(1106), + [anon_sym_typedef] = ACTIONS(1106), + [anon_sym_function] = ACTIONS(1106), + [anon_sym_var] = ACTIONS(1106), + [aux_sym_integer_token1] = ACTIONS(1106), + [aux_sym_integer_token2] = ACTIONS(1104), + [aux_sym_float_token1] = ACTIONS(1106), + [aux_sym_float_token2] = ACTIONS(1104), + [anon_sym_true] = ACTIONS(1106), + [anon_sym_false] = ACTIONS(1106), + [aux_sym_string_token1] = ACTIONS(1104), + [aux_sym_string_token3] = ACTIONS(1104), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1106), + [anon_sym_catch] = ACTIONS(1106), + [anon_sym_continue] = ACTIONS(1106), + [anon_sym_do] = ACTIONS(1106), + [anon_sym_enum] = ACTIONS(1106), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_for] = ACTIONS(1106), + [anon_sym_inline] = ACTIONS(1106), + [anon_sym_macro] = ACTIONS(1106), + [anon_sym_operator] = ACTIONS(1106), + [anon_sym_overload] = ACTIONS(1106), + [anon_sym_override] = ACTIONS(1106), + [anon_sym_private] = ACTIONS(1106), + [anon_sym_public] = ACTIONS(1106), + [anon_sym_return] = ACTIONS(1106), + [anon_sym_static] = ACTIONS(1106), + [anon_sym_try] = ACTIONS(1106), + [anon_sym_untyped] = ACTIONS(1106), + [anon_sym_while] = ACTIONS(1106), + [sym__semicolon] = ACTIONS(1104), }, - [207] = { - [ts_builtin_sym_end] = ACTIONS(950), - [sym_identifier] = ACTIONS(952), - [anon_sym_POUND] = ACTIONS(950), - [anon_sym_package] = ACTIONS(952), - [anon_sym_import] = ACTIONS(952), - [anon_sym_using] = ACTIONS(952), - [anon_sym_throw] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_switch] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_case] = ACTIONS(952), - [anon_sym_default] = ACTIONS(952), - [anon_sym_cast] = ACTIONS(952), - [anon_sym_DOLLARtype] = ACTIONS(950), - [anon_sym_in] = ACTIONS(952), - [anon_sym_LBRACK] = ACTIONS(950), - [anon_sym_this] = ACTIONS(952), - [anon_sym_AT] = ACTIONS(952), - [anon_sym_AT_COLON] = ACTIONS(950), - [anon_sym_if] = ACTIONS(952), - [anon_sym_else] = ACTIONS(952), - [anon_sym_new] = ACTIONS(952), - [anon_sym_TILDE] = ACTIONS(950), - [anon_sym_BANG] = ACTIONS(952), - [anon_sym_DASH] = ACTIONS(952), - [anon_sym_PLUS_PLUS] = ACTIONS(950), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_PERCENT] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_SLASH] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(952), - [anon_sym_LT_LT] = ACTIONS(950), - [anon_sym_GT_GT] = ACTIONS(952), - [anon_sym_GT_GT_GT] = ACTIONS(950), - [anon_sym_AMP] = ACTIONS(952), - [anon_sym_PIPE] = ACTIONS(952), - [anon_sym_CARET] = ACTIONS(950), - [anon_sym_AMP_AMP] = ACTIONS(950), - [anon_sym_PIPE_PIPE] = ACTIONS(950), - [anon_sym_EQ_EQ] = ACTIONS(950), - [anon_sym_BANG_EQ] = ACTIONS(950), - [anon_sym_LT] = ACTIONS(952), - [anon_sym_LT_EQ] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(952), - [anon_sym_GT_EQ] = ACTIONS(950), - [anon_sym_EQ_GT] = ACTIONS(950), - [anon_sym_QMARK_QMARK] = ACTIONS(950), - [anon_sym_EQ] = ACTIONS(952), - [sym__rangeOperator] = ACTIONS(950), - [anon_sym_null] = ACTIONS(952), - [anon_sym_dynamic] = ACTIONS(952), - [anon_sym_final] = ACTIONS(952), - [anon_sym_abstract] = ACTIONS(952), - [anon_sym_class] = ACTIONS(952), - [anon_sym_extends] = ACTIONS(952), - [anon_sym_implements] = ACTIONS(952), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_typedef] = ACTIONS(952), - [anon_sym_function] = ACTIONS(952), - [anon_sym_var] = ACTIONS(952), - [aux_sym_integer_token1] = ACTIONS(952), - [aux_sym_integer_token2] = ACTIONS(950), - [aux_sym_float_token1] = ACTIONS(952), - [aux_sym_float_token2] = ACTIONS(950), - [anon_sym_true] = ACTIONS(952), - [anon_sym_false] = ACTIONS(952), - [aux_sym_string_token1] = ACTIONS(950), - [aux_sym_string_token3] = ACTIONS(950), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(952), - [anon_sym_catch] = ACTIONS(952), - [anon_sym_continue] = ACTIONS(952), - [anon_sym_do] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_for] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(952), - [anon_sym_macro] = ACTIONS(952), - [anon_sym_operator] = ACTIONS(952), - [anon_sym_overload] = ACTIONS(952), - [anon_sym_override] = ACTIONS(952), - [anon_sym_private] = ACTIONS(952), - [anon_sym_public] = ACTIONS(952), - [anon_sym_return] = ACTIONS(952), - [anon_sym_static] = ACTIONS(952), - [anon_sym_try] = ACTIONS(952), - [anon_sym_untyped] = ACTIONS(952), - [anon_sym_while] = ACTIONS(952), - [sym__semicolon] = ACTIONS(950), + [244] = { + [ts_builtin_sym_end] = ACTIONS(1108), + [sym_identifier] = ACTIONS(1110), + [anon_sym_POUND] = ACTIONS(1108), + [anon_sym_package] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(1110), + [anon_sym_using] = ACTIONS(1110), + [anon_sym_throw] = ACTIONS(1110), + [anon_sym_LPAREN] = ACTIONS(1108), + [anon_sym_switch] = ACTIONS(1110), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_RBRACE] = ACTIONS(1108), + [anon_sym_case] = ACTIONS(1110), + [anon_sym_default] = ACTIONS(1110), + [anon_sym_cast] = ACTIONS(1110), + [anon_sym_DOLLARtype] = ACTIONS(1108), + [anon_sym_in] = ACTIONS(1110), + [anon_sym_LBRACK] = ACTIONS(1108), + [anon_sym_this] = ACTIONS(1110), + [anon_sym_AT] = ACTIONS(1110), + [anon_sym_AT_COLON] = ACTIONS(1108), + [anon_sym_if] = ACTIONS(1110), + [anon_sym_else] = ACTIONS(1110), + [anon_sym_new] = ACTIONS(1110), + [sym__prefixUnaryOperator] = ACTIONS(1110), + [sym__eitherUnaryOperator] = ACTIONS(1108), + [anon_sym_null] = ACTIONS(1110), + [anon_sym_dynamic] = ACTIONS(1110), + [anon_sym_final] = ACTIONS(1110), + [anon_sym_abstract] = ACTIONS(1110), + [anon_sym_class] = ACTIONS(1110), + [anon_sym_extends] = ACTIONS(1110), + [anon_sym_implements] = ACTIONS(1110), + [anon_sym_interface] = ACTIONS(1110), + [anon_sym_typedef] = ACTIONS(1110), + [anon_sym_function] = ACTIONS(1110), + [anon_sym_var] = ACTIONS(1110), + [aux_sym_integer_token1] = ACTIONS(1110), + [aux_sym_integer_token2] = ACTIONS(1108), + [aux_sym_float_token1] = ACTIONS(1110), + [aux_sym_float_token2] = ACTIONS(1108), + [anon_sym_true] = ACTIONS(1110), + [anon_sym_false] = ACTIONS(1110), + [aux_sym_string_token1] = ACTIONS(1108), + [aux_sym_string_token3] = ACTIONS(1108), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1110), + [anon_sym_catch] = ACTIONS(1110), + [anon_sym_continue] = ACTIONS(1110), + [anon_sym_do] = ACTIONS(1110), + [anon_sym_enum] = ACTIONS(1110), + [anon_sym_extern] = ACTIONS(1110), + [anon_sym_for] = ACTIONS(1110), + [anon_sym_inline] = ACTIONS(1110), + [anon_sym_macro] = ACTIONS(1110), + [anon_sym_operator] = ACTIONS(1110), + [anon_sym_overload] = ACTIONS(1110), + [anon_sym_override] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_return] = ACTIONS(1110), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_try] = ACTIONS(1110), + [anon_sym_untyped] = ACTIONS(1110), + [anon_sym_while] = ACTIONS(1110), + [sym__semicolon] = ACTIONS(1108), }, - [208] = { - [ts_builtin_sym_end] = ACTIONS(1110), - [sym_identifier] = ACTIONS(1112), - [anon_sym_POUND] = ACTIONS(1110), - [anon_sym_package] = ACTIONS(1112), - [anon_sym_import] = ACTIONS(1112), - [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_RBRACE] = ACTIONS(1110), - [anon_sym_case] = ACTIONS(1112), - [anon_sym_default] = ACTIONS(1112), - [anon_sym_cast] = ACTIONS(1112), - [anon_sym_DOLLARtype] = ACTIONS(1110), - [anon_sym_in] = ACTIONS(1112), - [anon_sym_LBRACK] = ACTIONS(1110), - [anon_sym_this] = ACTIONS(1112), - [anon_sym_AT] = ACTIONS(1112), - [anon_sym_AT_COLON] = ACTIONS(1110), - [anon_sym_if] = ACTIONS(1112), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1110), - [anon_sym_null] = ACTIONS(1112), - [anon_sym_dynamic] = ACTIONS(1112), - [anon_sym_final] = ACTIONS(1112), - [anon_sym_abstract] = ACTIONS(1112), - [anon_sym_class] = ACTIONS(1112), - [anon_sym_extends] = ACTIONS(1112), - [anon_sym_implements] = ACTIONS(1112), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1112), - [anon_sym_catch] = ACTIONS(1112), - [anon_sym_continue] = ACTIONS(1112), - [anon_sym_do] = ACTIONS(1112), - [anon_sym_enum] = ACTIONS(1112), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1112), - [anon_sym_inline] = ACTIONS(1112), - [anon_sym_macro] = ACTIONS(1112), - [anon_sym_operator] = ACTIONS(1112), - [anon_sym_overload] = ACTIONS(1112), - [anon_sym_override] = ACTIONS(1112), - [anon_sym_private] = ACTIONS(1112), - [anon_sym_public] = ACTIONS(1112), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_static] = ACTIONS(1112), - [anon_sym_try] = ACTIONS(1112), - [anon_sym_untyped] = ACTIONS(1112), - [anon_sym_while] = ACTIONS(1112), - [sym__semicolon] = ACTIONS(1110), + [245] = { + [ts_builtin_sym_end] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [anon_sym_POUND] = ACTIONS(444), + [anon_sym_package] = ACTIONS(446), + [anon_sym_import] = ACTIONS(446), + [anon_sym_using] = ACTIONS(446), + [anon_sym_throw] = ACTIONS(446), + [anon_sym_LPAREN] = ACTIONS(444), + [anon_sym_switch] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(444), + [anon_sym_RBRACE] = ACTIONS(444), + [anon_sym_case] = ACTIONS(446), + [anon_sym_default] = ACTIONS(446), + [anon_sym_cast] = ACTIONS(446), + [anon_sym_DOLLARtype] = ACTIONS(444), + [anon_sym_in] = ACTIONS(446), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_this] = ACTIONS(446), + [anon_sym_AT] = ACTIONS(446), + [anon_sym_AT_COLON] = ACTIONS(444), + [anon_sym_if] = ACTIONS(446), + [anon_sym_else] = ACTIONS(446), + [anon_sym_new] = ACTIONS(446), + [sym__prefixUnaryOperator] = ACTIONS(446), + [sym__eitherUnaryOperator] = ACTIONS(444), + [anon_sym_null] = ACTIONS(446), + [anon_sym_dynamic] = ACTIONS(446), + [anon_sym_final] = ACTIONS(446), + [anon_sym_abstract] = ACTIONS(446), + [anon_sym_class] = ACTIONS(446), + [anon_sym_extends] = ACTIONS(446), + [anon_sym_implements] = ACTIONS(446), + [anon_sym_interface] = ACTIONS(446), + [anon_sym_typedef] = ACTIONS(446), + [anon_sym_function] = ACTIONS(446), + [anon_sym_var] = ACTIONS(446), + [aux_sym_integer_token1] = ACTIONS(446), + [aux_sym_integer_token2] = ACTIONS(444), + [aux_sym_float_token1] = ACTIONS(446), + [aux_sym_float_token2] = ACTIONS(444), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [aux_sym_string_token1] = ACTIONS(444), + [aux_sym_string_token3] = ACTIONS(444), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(446), + [anon_sym_catch] = ACTIONS(446), + [anon_sym_continue] = ACTIONS(446), + [anon_sym_do] = ACTIONS(446), + [anon_sym_enum] = ACTIONS(446), + [anon_sym_extern] = ACTIONS(446), + [anon_sym_for] = ACTIONS(446), + [anon_sym_inline] = ACTIONS(446), + [anon_sym_macro] = ACTIONS(446), + [anon_sym_operator] = ACTIONS(446), + [anon_sym_overload] = ACTIONS(446), + [anon_sym_override] = ACTIONS(446), + [anon_sym_private] = ACTIONS(446), + [anon_sym_public] = ACTIONS(446), + [anon_sym_return] = ACTIONS(446), + [anon_sym_static] = ACTIONS(446), + [anon_sym_try] = ACTIONS(446), + [anon_sym_untyped] = ACTIONS(446), + [anon_sym_while] = ACTIONS(446), + [sym__semicolon] = ACTIONS(444), }, - [209] = { - [ts_builtin_sym_end] = ACTIONS(1114), - [sym_identifier] = ACTIONS(1116), - [anon_sym_POUND] = ACTIONS(1114), - [anon_sym_package] = ACTIONS(1116), - [anon_sym_import] = ACTIONS(1116), - [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_RBRACE] = ACTIONS(1114), - [anon_sym_case] = ACTIONS(1116), - [anon_sym_default] = ACTIONS(1116), - [anon_sym_cast] = ACTIONS(1116), - [anon_sym_DOLLARtype] = ACTIONS(1114), - [anon_sym_in] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_this] = ACTIONS(1116), - [anon_sym_AT] = ACTIONS(1116), - [anon_sym_AT_COLON] = ACTIONS(1114), - [anon_sym_if] = ACTIONS(1116), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1114), - [anon_sym_null] = ACTIONS(1116), - [anon_sym_dynamic] = ACTIONS(1116), - [anon_sym_final] = ACTIONS(1116), - [anon_sym_abstract] = ACTIONS(1116), - [anon_sym_class] = ACTIONS(1116), - [anon_sym_extends] = ACTIONS(1116), - [anon_sym_implements] = ACTIONS(1116), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1116), - [anon_sym_catch] = ACTIONS(1116), - [anon_sym_continue] = ACTIONS(1116), - [anon_sym_do] = ACTIONS(1116), - [anon_sym_enum] = ACTIONS(1116), - [anon_sym_extern] = ACTIONS(1116), - [anon_sym_for] = ACTIONS(1116), - [anon_sym_inline] = ACTIONS(1116), - [anon_sym_macro] = ACTIONS(1116), - [anon_sym_operator] = ACTIONS(1116), - [anon_sym_overload] = ACTIONS(1116), - [anon_sym_override] = ACTIONS(1116), - [anon_sym_private] = ACTIONS(1116), - [anon_sym_public] = ACTIONS(1116), - [anon_sym_return] = ACTIONS(1116), - [anon_sym_static] = ACTIONS(1116), - [anon_sym_try] = ACTIONS(1116), - [anon_sym_untyped] = ACTIONS(1116), - [anon_sym_while] = ACTIONS(1116), - [sym__semicolon] = ACTIONS(1114), + [246] = { + [ts_builtin_sym_end] = ACTIONS(1112), + [sym_identifier] = ACTIONS(1114), + [anon_sym_POUND] = ACTIONS(1112), + [anon_sym_package] = ACTIONS(1114), + [anon_sym_import] = ACTIONS(1114), + [anon_sym_using] = ACTIONS(1114), + [anon_sym_throw] = ACTIONS(1114), + [anon_sym_LPAREN] = ACTIONS(1112), + [anon_sym_switch] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_RBRACE] = ACTIONS(1112), + [anon_sym_case] = ACTIONS(1114), + [anon_sym_default] = ACTIONS(1114), + [anon_sym_cast] = ACTIONS(1114), + [anon_sym_DOLLARtype] = ACTIONS(1112), + [anon_sym_in] = ACTIONS(1114), + [anon_sym_LBRACK] = ACTIONS(1112), + [anon_sym_this] = ACTIONS(1114), + [anon_sym_AT] = ACTIONS(1114), + [anon_sym_AT_COLON] = ACTIONS(1112), + [anon_sym_if] = ACTIONS(1114), + [anon_sym_else] = ACTIONS(1114), + [anon_sym_new] = ACTIONS(1114), + [sym__prefixUnaryOperator] = ACTIONS(1114), + [sym__eitherUnaryOperator] = ACTIONS(1112), + [anon_sym_null] = ACTIONS(1114), + [anon_sym_dynamic] = ACTIONS(1114), + [anon_sym_final] = ACTIONS(1114), + [anon_sym_abstract] = ACTIONS(1114), + [anon_sym_class] = ACTIONS(1114), + [anon_sym_extends] = ACTIONS(1114), + [anon_sym_implements] = ACTIONS(1114), + [anon_sym_interface] = ACTIONS(1114), + [anon_sym_typedef] = ACTIONS(1114), + [anon_sym_function] = ACTIONS(1114), + [anon_sym_var] = ACTIONS(1114), + [aux_sym_integer_token1] = ACTIONS(1114), + [aux_sym_integer_token2] = ACTIONS(1112), + [aux_sym_float_token1] = ACTIONS(1114), + [aux_sym_float_token2] = ACTIONS(1112), + [anon_sym_true] = ACTIONS(1114), + [anon_sym_false] = ACTIONS(1114), + [aux_sym_string_token1] = ACTIONS(1112), + [aux_sym_string_token3] = ACTIONS(1112), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1114), + [anon_sym_catch] = ACTIONS(1114), + [anon_sym_continue] = ACTIONS(1114), + [anon_sym_do] = ACTIONS(1114), + [anon_sym_enum] = ACTIONS(1114), + [anon_sym_extern] = ACTIONS(1114), + [anon_sym_for] = ACTIONS(1114), + [anon_sym_inline] = ACTIONS(1114), + [anon_sym_macro] = ACTIONS(1114), + [anon_sym_operator] = ACTIONS(1114), + [anon_sym_overload] = ACTIONS(1114), + [anon_sym_override] = ACTIONS(1114), + [anon_sym_private] = ACTIONS(1114), + [anon_sym_public] = ACTIONS(1114), + [anon_sym_return] = ACTIONS(1114), + [anon_sym_static] = ACTIONS(1114), + [anon_sym_try] = ACTIONS(1114), + [anon_sym_untyped] = ACTIONS(1114), + [anon_sym_while] = ACTIONS(1114), + [sym__semicolon] = ACTIONS(1112), }, - [210] = { - [ts_builtin_sym_end] = ACTIONS(380), - [sym_identifier] = ACTIONS(382), - [anon_sym_POUND] = ACTIONS(380), - [anon_sym_package] = ACTIONS(382), - [anon_sym_import] = ACTIONS(382), - [anon_sym_using] = ACTIONS(382), - [anon_sym_throw] = ACTIONS(382), - [anon_sym_LPAREN] = ACTIONS(380), - [anon_sym_switch] = ACTIONS(382), - [anon_sym_LBRACE] = ACTIONS(380), - [anon_sym_RBRACE] = ACTIONS(380), - [anon_sym_case] = ACTIONS(382), - [anon_sym_default] = ACTIONS(382), - [anon_sym_cast] = ACTIONS(382), - [anon_sym_DOLLARtype] = ACTIONS(380), - [anon_sym_in] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(380), - [anon_sym_this] = ACTIONS(382), - [anon_sym_AT] = ACTIONS(382), - [anon_sym_AT_COLON] = ACTIONS(380), - [anon_sym_if] = ACTIONS(382), - [anon_sym_else] = ACTIONS(382), - [anon_sym_new] = ACTIONS(382), - [anon_sym_TILDE] = ACTIONS(380), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PLUS_PLUS] = ACTIONS(380), - [anon_sym_DASH_DASH] = ACTIONS(380), - [anon_sym_PERCENT] = ACTIONS(380), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(382), - [anon_sym_LT_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_GT_GT_GT] = ACTIONS(380), - [anon_sym_AMP] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(382), - [anon_sym_CARET] = ACTIONS(380), - [anon_sym_AMP_AMP] = ACTIONS(380), - [anon_sym_PIPE_PIPE] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(380), - [anon_sym_BANG_EQ] = ACTIONS(380), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_LT_EQ] = ACTIONS(380), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_EQ] = ACTIONS(380), - [anon_sym_EQ_GT] = ACTIONS(380), - [anon_sym_QMARK_QMARK] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(382), - [sym__rangeOperator] = ACTIONS(380), - [anon_sym_null] = ACTIONS(382), - [anon_sym_dynamic] = ACTIONS(382), - [anon_sym_final] = ACTIONS(382), - [anon_sym_abstract] = ACTIONS(382), - [anon_sym_class] = ACTIONS(382), - [anon_sym_extends] = ACTIONS(382), - [anon_sym_implements] = ACTIONS(382), - [anon_sym_interface] = ACTIONS(382), - [anon_sym_typedef] = ACTIONS(382), - [anon_sym_function] = ACTIONS(382), - [anon_sym_var] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(382), - [aux_sym_integer_token2] = ACTIONS(380), - [aux_sym_float_token1] = ACTIONS(382), - [aux_sym_float_token2] = ACTIONS(380), - [anon_sym_true] = ACTIONS(382), - [anon_sym_false] = ACTIONS(382), - [aux_sym_string_token1] = ACTIONS(380), - [aux_sym_string_token3] = ACTIONS(380), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(382), - [anon_sym_catch] = ACTIONS(382), - [anon_sym_continue] = ACTIONS(382), - [anon_sym_do] = ACTIONS(382), - [anon_sym_enum] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(382), - [anon_sym_for] = ACTIONS(382), - [anon_sym_inline] = ACTIONS(382), - [anon_sym_macro] = ACTIONS(382), - [anon_sym_operator] = ACTIONS(382), - [anon_sym_overload] = ACTIONS(382), - [anon_sym_override] = ACTIONS(382), - [anon_sym_private] = ACTIONS(382), - [anon_sym_public] = ACTIONS(382), - [anon_sym_return] = ACTIONS(382), - [anon_sym_static] = ACTIONS(382), - [anon_sym_try] = ACTIONS(382), - [anon_sym_untyped] = ACTIONS(382), - [anon_sym_while] = ACTIONS(382), - [sym__semicolon] = ACTIONS(380), + [247] = { + [ts_builtin_sym_end] = ACTIONS(1116), + [sym_identifier] = ACTIONS(1118), + [anon_sym_POUND] = ACTIONS(1116), + [anon_sym_package] = ACTIONS(1118), + [anon_sym_import] = ACTIONS(1118), + [anon_sym_using] = ACTIONS(1118), + [anon_sym_throw] = ACTIONS(1118), + [anon_sym_LPAREN] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_RBRACE] = ACTIONS(1116), + [anon_sym_case] = ACTIONS(1118), + [anon_sym_default] = ACTIONS(1118), + [anon_sym_cast] = ACTIONS(1118), + [anon_sym_DOLLARtype] = ACTIONS(1116), + [anon_sym_in] = ACTIONS(1118), + [anon_sym_LBRACK] = ACTIONS(1116), + [anon_sym_this] = ACTIONS(1118), + [anon_sym_AT] = ACTIONS(1118), + [anon_sym_AT_COLON] = ACTIONS(1116), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_else] = ACTIONS(1118), + [anon_sym_new] = ACTIONS(1118), + [sym__prefixUnaryOperator] = ACTIONS(1118), + [sym__eitherUnaryOperator] = ACTIONS(1116), + [anon_sym_null] = ACTIONS(1118), + [anon_sym_dynamic] = ACTIONS(1118), + [anon_sym_final] = ACTIONS(1118), + [anon_sym_abstract] = ACTIONS(1118), + [anon_sym_class] = ACTIONS(1118), + [anon_sym_extends] = ACTIONS(1118), + [anon_sym_implements] = ACTIONS(1118), + [anon_sym_interface] = ACTIONS(1118), + [anon_sym_typedef] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(1118), + [anon_sym_var] = ACTIONS(1118), + [aux_sym_integer_token1] = ACTIONS(1118), + [aux_sym_integer_token2] = ACTIONS(1116), + [aux_sym_float_token1] = ACTIONS(1118), + [aux_sym_float_token2] = ACTIONS(1116), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [aux_sym_string_token1] = ACTIONS(1116), + [aux_sym_string_token3] = ACTIONS(1116), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1118), + [anon_sym_catch] = ACTIONS(1118), + [anon_sym_continue] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_enum] = ACTIONS(1118), + [anon_sym_extern] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1118), + [anon_sym_inline] = ACTIONS(1118), + [anon_sym_macro] = ACTIONS(1118), + [anon_sym_operator] = ACTIONS(1118), + [anon_sym_overload] = ACTIONS(1118), + [anon_sym_override] = ACTIONS(1118), + [anon_sym_private] = ACTIONS(1118), + [anon_sym_public] = ACTIONS(1118), + [anon_sym_return] = ACTIONS(1118), + [anon_sym_static] = ACTIONS(1118), + [anon_sym_try] = ACTIONS(1118), + [anon_sym_untyped] = ACTIONS(1118), + [anon_sym_while] = ACTIONS(1118), + [sym__semicolon] = ACTIONS(1116), }, - [211] = { - [ts_builtin_sym_end] = ACTIONS(366), - [sym_identifier] = ACTIONS(368), - [anon_sym_POUND] = ACTIONS(366), - [anon_sym_package] = ACTIONS(368), - [anon_sym_import] = ACTIONS(368), - [anon_sym_using] = ACTIONS(368), - [anon_sym_throw] = ACTIONS(368), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_switch] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_RBRACE] = ACTIONS(366), - [anon_sym_case] = ACTIONS(368), - [anon_sym_default] = ACTIONS(368), - [anon_sym_cast] = ACTIONS(368), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_in] = ACTIONS(368), - [anon_sym_LBRACK] = ACTIONS(366), - [anon_sym_this] = ACTIONS(368), - [anon_sym_AT] = ACTIONS(368), - [anon_sym_AT_COLON] = ACTIONS(366), - [anon_sym_if] = ACTIONS(368), - [anon_sym_else] = ACTIONS(368), - [anon_sym_new] = ACTIONS(368), - [anon_sym_TILDE] = ACTIONS(366), - [anon_sym_BANG] = ACTIONS(368), - [anon_sym_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(366), - [anon_sym_DASH_DASH] = ACTIONS(366), - [anon_sym_PERCENT] = ACTIONS(366), - [anon_sym_STAR] = ACTIONS(366), - [anon_sym_SLASH] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(366), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_GT_GT_GT] = ACTIONS(366), - [anon_sym_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(368), - [anon_sym_CARET] = ACTIONS(366), - [anon_sym_AMP_AMP] = ACTIONS(366), - [anon_sym_PIPE_PIPE] = ACTIONS(366), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(366), - [anon_sym_GT] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(366), - [anon_sym_EQ_GT] = ACTIONS(366), - [anon_sym_QMARK_QMARK] = ACTIONS(366), - [anon_sym_EQ] = ACTIONS(368), - [sym__rangeOperator] = ACTIONS(366), - [anon_sym_null] = ACTIONS(368), - [anon_sym_dynamic] = ACTIONS(368), - [anon_sym_final] = ACTIONS(368), - [anon_sym_abstract] = ACTIONS(368), - [anon_sym_class] = ACTIONS(368), - [anon_sym_extends] = ACTIONS(368), - [anon_sym_implements] = ACTIONS(368), - [anon_sym_interface] = ACTIONS(368), - [anon_sym_typedef] = ACTIONS(368), - [anon_sym_function] = ACTIONS(368), - [anon_sym_var] = ACTIONS(368), - [aux_sym_integer_token1] = ACTIONS(368), - [aux_sym_integer_token2] = ACTIONS(366), - [aux_sym_float_token1] = ACTIONS(368), - [aux_sym_float_token2] = ACTIONS(366), - [anon_sym_true] = ACTIONS(368), - [anon_sym_false] = ACTIONS(368), - [aux_sym_string_token1] = ACTIONS(366), - [aux_sym_string_token3] = ACTIONS(366), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(368), - [anon_sym_catch] = ACTIONS(368), - [anon_sym_continue] = ACTIONS(368), - [anon_sym_do] = ACTIONS(368), - [anon_sym_enum] = ACTIONS(368), - [anon_sym_extern] = ACTIONS(368), - [anon_sym_for] = ACTIONS(368), - [anon_sym_inline] = ACTIONS(368), - [anon_sym_macro] = ACTIONS(368), - [anon_sym_operator] = ACTIONS(368), - [anon_sym_overload] = ACTIONS(368), - [anon_sym_override] = ACTIONS(368), - [anon_sym_private] = ACTIONS(368), - [anon_sym_public] = ACTIONS(368), - [anon_sym_return] = ACTIONS(368), - [anon_sym_static] = ACTIONS(368), - [anon_sym_try] = ACTIONS(368), - [anon_sym_untyped] = ACTIONS(368), - [anon_sym_while] = ACTIONS(368), - [sym__semicolon] = ACTIONS(366), + [248] = { + [ts_builtin_sym_end] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1122), + [anon_sym_POUND] = ACTIONS(1120), + [anon_sym_package] = ACTIONS(1122), + [anon_sym_import] = ACTIONS(1122), + [anon_sym_using] = ACTIONS(1122), + [anon_sym_throw] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(1120), + [anon_sym_switch] = ACTIONS(1122), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_RBRACE] = ACTIONS(1120), + [anon_sym_case] = ACTIONS(1122), + [anon_sym_default] = ACTIONS(1122), + [anon_sym_cast] = ACTIONS(1122), + [anon_sym_DOLLARtype] = ACTIONS(1120), + [anon_sym_in] = ACTIONS(1122), + [anon_sym_LBRACK] = ACTIONS(1120), + [anon_sym_this] = ACTIONS(1122), + [anon_sym_AT] = ACTIONS(1122), + [anon_sym_AT_COLON] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1122), + [anon_sym_else] = ACTIONS(1122), + [anon_sym_new] = ACTIONS(1122), + [sym__prefixUnaryOperator] = ACTIONS(1122), + [sym__eitherUnaryOperator] = ACTIONS(1120), + [anon_sym_null] = ACTIONS(1122), + [anon_sym_dynamic] = ACTIONS(1122), + [anon_sym_final] = ACTIONS(1122), + [anon_sym_abstract] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(1122), + [anon_sym_extends] = ACTIONS(1122), + [anon_sym_implements] = ACTIONS(1122), + [anon_sym_interface] = ACTIONS(1122), + [anon_sym_typedef] = ACTIONS(1122), + [anon_sym_function] = ACTIONS(1122), + [anon_sym_var] = ACTIONS(1122), + [aux_sym_integer_token1] = ACTIONS(1122), + [aux_sym_integer_token2] = ACTIONS(1120), + [aux_sym_float_token1] = ACTIONS(1122), + [aux_sym_float_token2] = ACTIONS(1120), + [anon_sym_true] = ACTIONS(1122), + [anon_sym_false] = ACTIONS(1122), + [aux_sym_string_token1] = ACTIONS(1120), + [aux_sym_string_token3] = ACTIONS(1120), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1122), + [anon_sym_catch] = ACTIONS(1122), + [anon_sym_continue] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1122), + [anon_sym_enum] = ACTIONS(1122), + [anon_sym_extern] = ACTIONS(1122), + [anon_sym_for] = ACTIONS(1122), + [anon_sym_inline] = ACTIONS(1122), + [anon_sym_macro] = ACTIONS(1122), + [anon_sym_operator] = ACTIONS(1122), + [anon_sym_overload] = ACTIONS(1122), + [anon_sym_override] = ACTIONS(1122), + [anon_sym_private] = ACTIONS(1122), + [anon_sym_public] = ACTIONS(1122), + [anon_sym_return] = ACTIONS(1122), + [anon_sym_static] = ACTIONS(1122), + [anon_sym_try] = ACTIONS(1122), + [anon_sym_untyped] = ACTIONS(1122), + [anon_sym_while] = ACTIONS(1122), + [sym__semicolon] = ACTIONS(1120), }, - [212] = { - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_identifier] = ACTIONS(1120), - [anon_sym_POUND] = ACTIONS(1118), - [anon_sym_package] = ACTIONS(1120), - [anon_sym_import] = ACTIONS(1120), - [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_RBRACE] = ACTIONS(1118), - [anon_sym_case] = ACTIONS(1120), - [anon_sym_default] = ACTIONS(1120), - [anon_sym_cast] = ACTIONS(1120), - [anon_sym_DOLLARtype] = ACTIONS(1118), - [anon_sym_in] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_this] = ACTIONS(1120), - [anon_sym_AT] = ACTIONS(1120), - [anon_sym_AT_COLON] = ACTIONS(1118), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1118), - [anon_sym_null] = ACTIONS(1120), - [anon_sym_dynamic] = ACTIONS(1120), - [anon_sym_final] = ACTIONS(1120), - [anon_sym_abstract] = ACTIONS(1120), - [anon_sym_class] = ACTIONS(1120), - [anon_sym_extends] = ACTIONS(1120), - [anon_sym_implements] = ACTIONS(1120), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1120), - [anon_sym_catch] = ACTIONS(1120), - [anon_sym_continue] = ACTIONS(1120), - [anon_sym_do] = ACTIONS(1120), - [anon_sym_enum] = ACTIONS(1120), - [anon_sym_extern] = ACTIONS(1120), - [anon_sym_for] = ACTIONS(1120), - [anon_sym_inline] = ACTIONS(1120), - [anon_sym_macro] = ACTIONS(1120), - [anon_sym_operator] = ACTIONS(1120), - [anon_sym_overload] = ACTIONS(1120), - [anon_sym_override] = ACTIONS(1120), - [anon_sym_private] = ACTIONS(1120), - [anon_sym_public] = ACTIONS(1120), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_static] = ACTIONS(1120), - [anon_sym_try] = ACTIONS(1120), - [anon_sym_untyped] = ACTIONS(1120), - [anon_sym_while] = ACTIONS(1120), - [sym__semicolon] = ACTIONS(1118), + [249] = { + [ts_builtin_sym_end] = ACTIONS(1124), + [sym_identifier] = ACTIONS(1126), + [anon_sym_POUND] = ACTIONS(1124), + [anon_sym_package] = ACTIONS(1126), + [anon_sym_import] = ACTIONS(1126), + [anon_sym_using] = ACTIONS(1126), + [anon_sym_throw] = ACTIONS(1126), + [anon_sym_LPAREN] = ACTIONS(1124), + [anon_sym_switch] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(1124), + [anon_sym_RBRACE] = ACTIONS(1124), + [anon_sym_case] = ACTIONS(1126), + [anon_sym_default] = ACTIONS(1126), + [anon_sym_cast] = ACTIONS(1126), + [anon_sym_DOLLARtype] = ACTIONS(1124), + [anon_sym_in] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1124), + [anon_sym_this] = ACTIONS(1126), + [anon_sym_AT] = ACTIONS(1126), + [anon_sym_AT_COLON] = ACTIONS(1124), + [anon_sym_if] = ACTIONS(1126), + [anon_sym_else] = ACTIONS(1126), + [anon_sym_new] = ACTIONS(1126), + [sym__prefixUnaryOperator] = ACTIONS(1126), + [sym__eitherUnaryOperator] = ACTIONS(1124), + [anon_sym_null] = ACTIONS(1126), + [anon_sym_dynamic] = ACTIONS(1126), + [anon_sym_final] = ACTIONS(1126), + [anon_sym_abstract] = ACTIONS(1126), + [anon_sym_class] = ACTIONS(1126), + [anon_sym_extends] = ACTIONS(1126), + [anon_sym_implements] = ACTIONS(1126), + [anon_sym_interface] = ACTIONS(1126), + [anon_sym_typedef] = ACTIONS(1126), + [anon_sym_function] = ACTIONS(1126), + [anon_sym_var] = ACTIONS(1126), + [aux_sym_integer_token1] = ACTIONS(1126), + [aux_sym_integer_token2] = ACTIONS(1124), + [aux_sym_float_token1] = ACTIONS(1126), + [aux_sym_float_token2] = ACTIONS(1124), + [anon_sym_true] = ACTIONS(1126), + [anon_sym_false] = ACTIONS(1126), + [aux_sym_string_token1] = ACTIONS(1124), + [aux_sym_string_token3] = ACTIONS(1124), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1126), + [anon_sym_catch] = ACTIONS(1126), + [anon_sym_continue] = ACTIONS(1126), + [anon_sym_do] = ACTIONS(1126), + [anon_sym_enum] = ACTIONS(1126), + [anon_sym_extern] = ACTIONS(1126), + [anon_sym_for] = ACTIONS(1126), + [anon_sym_inline] = ACTIONS(1126), + [anon_sym_macro] = ACTIONS(1126), + [anon_sym_operator] = ACTIONS(1126), + [anon_sym_overload] = ACTIONS(1126), + [anon_sym_override] = ACTIONS(1126), + [anon_sym_private] = ACTIONS(1126), + [anon_sym_public] = ACTIONS(1126), + [anon_sym_return] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1126), + [anon_sym_try] = ACTIONS(1126), + [anon_sym_untyped] = ACTIONS(1126), + [anon_sym_while] = ACTIONS(1126), + [sym__semicolon] = ACTIONS(1124), }, - [213] = { - [ts_builtin_sym_end] = ACTIONS(366), - [sym_identifier] = ACTIONS(368), - [anon_sym_POUND] = ACTIONS(366), - [anon_sym_package] = ACTIONS(368), - [anon_sym_import] = ACTIONS(368), - [anon_sym_using] = ACTIONS(368), - [anon_sym_throw] = ACTIONS(368), - [anon_sym_LPAREN] = ACTIONS(366), - [anon_sym_switch] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(366), - [anon_sym_RBRACE] = ACTIONS(366), - [anon_sym_case] = ACTIONS(368), - [anon_sym_default] = ACTIONS(368), - [anon_sym_cast] = ACTIONS(368), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_in] = ACTIONS(368), - [anon_sym_LBRACK] = ACTIONS(454), - [anon_sym_this] = ACTIONS(368), - [anon_sym_AT] = ACTIONS(368), - [anon_sym_AT_COLON] = ACTIONS(366), - [anon_sym_if] = ACTIONS(368), - [anon_sym_else] = ACTIONS(368), - [anon_sym_new] = ACTIONS(368), - [anon_sym_TILDE] = ACTIONS(366), - [anon_sym_BANG] = ACTIONS(368), - [anon_sym_DASH] = ACTIONS(368), - [anon_sym_PLUS_PLUS] = ACTIONS(366), - [anon_sym_DASH_DASH] = ACTIONS(366), - [anon_sym_PERCENT] = ACTIONS(366), - [anon_sym_STAR] = ACTIONS(366), - [anon_sym_SLASH] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(366), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_GT_GT_GT] = ACTIONS(366), - [anon_sym_AMP] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(368), - [anon_sym_CARET] = ACTIONS(366), - [anon_sym_AMP_AMP] = ACTIONS(366), - [anon_sym_PIPE_PIPE] = ACTIONS(366), - [anon_sym_EQ_EQ] = ACTIONS(366), - [anon_sym_BANG_EQ] = ACTIONS(366), - [anon_sym_LT] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(366), - [anon_sym_GT] = ACTIONS(368), - [anon_sym_GT_EQ] = ACTIONS(366), - [anon_sym_EQ_GT] = ACTIONS(366), - [anon_sym_QMARK_QMARK] = ACTIONS(366), - [anon_sym_EQ] = ACTIONS(368), - [sym__rangeOperator] = ACTIONS(366), - [anon_sym_null] = ACTIONS(368), - [anon_sym_dynamic] = ACTIONS(368), - [anon_sym_final] = ACTIONS(368), - [anon_sym_abstract] = ACTIONS(368), - [anon_sym_class] = ACTIONS(368), - [anon_sym_extends] = ACTIONS(368), - [anon_sym_implements] = ACTIONS(368), - [anon_sym_interface] = ACTIONS(368), - [anon_sym_typedef] = ACTIONS(368), - [anon_sym_function] = ACTIONS(368), - [anon_sym_var] = ACTIONS(368), - [aux_sym_integer_token1] = ACTIONS(368), - [aux_sym_integer_token2] = ACTIONS(366), - [aux_sym_float_token1] = ACTIONS(368), - [aux_sym_float_token2] = ACTIONS(366), - [anon_sym_true] = ACTIONS(368), - [anon_sym_false] = ACTIONS(368), - [aux_sym_string_token1] = ACTIONS(366), - [aux_sym_string_token3] = ACTIONS(366), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(368), - [anon_sym_catch] = ACTIONS(368), - [anon_sym_continue] = ACTIONS(368), - [anon_sym_do] = ACTIONS(368), - [anon_sym_enum] = ACTIONS(368), - [anon_sym_extern] = ACTIONS(368), - [anon_sym_for] = ACTIONS(368), - [anon_sym_inline] = ACTIONS(368), - [anon_sym_macro] = ACTIONS(368), - [anon_sym_operator] = ACTIONS(368), - [anon_sym_overload] = ACTIONS(368), - [anon_sym_override] = ACTIONS(368), - [anon_sym_private] = ACTIONS(368), - [anon_sym_public] = ACTIONS(368), - [anon_sym_return] = ACTIONS(368), - [anon_sym_static] = ACTIONS(368), - [anon_sym_try] = ACTIONS(368), - [anon_sym_untyped] = ACTIONS(368), - [anon_sym_while] = ACTIONS(368), - [sym__semicolon] = ACTIONS(366), + [250] = { + [ts_builtin_sym_end] = ACTIONS(1128), + [sym_identifier] = ACTIONS(1130), + [anon_sym_POUND] = ACTIONS(1128), + [anon_sym_package] = ACTIONS(1130), + [anon_sym_import] = ACTIONS(1130), + [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_RBRACE] = ACTIONS(1128), + [anon_sym_case] = ACTIONS(1130), + [anon_sym_default] = ACTIONS(1130), + [anon_sym_cast] = ACTIONS(1130), + [anon_sym_DOLLARtype] = ACTIONS(1128), + [anon_sym_in] = ACTIONS(1130), + [anon_sym_LBRACK] = ACTIONS(1128), + [anon_sym_this] = ACTIONS(1130), + [anon_sym_AT] = ACTIONS(1130), + [anon_sym_AT_COLON] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_else] = ACTIONS(1130), + [anon_sym_new] = ACTIONS(1130), + [sym__prefixUnaryOperator] = ACTIONS(1130), + [sym__eitherUnaryOperator] = ACTIONS(1128), + [anon_sym_null] = ACTIONS(1130), + [anon_sym_dynamic] = ACTIONS(1130), + [anon_sym_final] = ACTIONS(1130), + [anon_sym_abstract] = ACTIONS(1130), + [anon_sym_class] = ACTIONS(1130), + [anon_sym_extends] = ACTIONS(1130), + [anon_sym_implements] = ACTIONS(1130), + [anon_sym_interface] = 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), + [anon_sym_break] = ACTIONS(1130), + [anon_sym_catch] = ACTIONS(1130), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_do] = ACTIONS(1130), + [anon_sym_enum] = ACTIONS(1130), + [anon_sym_extern] = ACTIONS(1130), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_inline] = ACTIONS(1130), + [anon_sym_macro] = ACTIONS(1130), + [anon_sym_operator] = ACTIONS(1130), + [anon_sym_overload] = ACTIONS(1130), + [anon_sym_override] = ACTIONS(1130), + [anon_sym_private] = ACTIONS(1130), + [anon_sym_public] = ACTIONS(1130), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_try] = ACTIONS(1130), + [anon_sym_untyped] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1130), + [sym__semicolon] = ACTIONS(1128), }, - [214] = { - [ts_builtin_sym_end] = ACTIONS(1122), - [sym_identifier] = ACTIONS(1124), - [anon_sym_POUND] = ACTIONS(1122), - [anon_sym_package] = ACTIONS(1124), - [anon_sym_import] = ACTIONS(1124), - [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_RBRACE] = ACTIONS(1122), - [anon_sym_case] = ACTIONS(1124), - [anon_sym_default] = ACTIONS(1124), - [anon_sym_cast] = ACTIONS(1124), - [anon_sym_DOLLARtype] = ACTIONS(1122), - [anon_sym_in] = ACTIONS(1124), - [anon_sym_LBRACK] = ACTIONS(1122), - [anon_sym_this] = ACTIONS(1124), - [anon_sym_AT] = ACTIONS(1124), - [anon_sym_AT_COLON] = ACTIONS(1122), - [anon_sym_if] = ACTIONS(1124), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1122), - [anon_sym_null] = ACTIONS(1124), - [anon_sym_dynamic] = ACTIONS(1124), - [anon_sym_final] = ACTIONS(1124), - [anon_sym_abstract] = ACTIONS(1124), - [anon_sym_class] = ACTIONS(1124), - [anon_sym_extends] = ACTIONS(1124), - [anon_sym_implements] = ACTIONS(1124), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1124), - [anon_sym_catch] = ACTIONS(1124), - [anon_sym_continue] = ACTIONS(1124), - [anon_sym_do] = ACTIONS(1124), - [anon_sym_enum] = ACTIONS(1124), - [anon_sym_extern] = ACTIONS(1124), - [anon_sym_for] = ACTIONS(1124), - [anon_sym_inline] = ACTIONS(1124), - [anon_sym_macro] = ACTIONS(1124), - [anon_sym_operator] = ACTIONS(1124), - [anon_sym_overload] = ACTIONS(1124), - [anon_sym_override] = ACTIONS(1124), - [anon_sym_private] = ACTIONS(1124), - [anon_sym_public] = ACTIONS(1124), - [anon_sym_return] = ACTIONS(1124), - [anon_sym_static] = ACTIONS(1124), - [anon_sym_try] = ACTIONS(1124), - [anon_sym_untyped] = ACTIONS(1124), - [anon_sym_while] = ACTIONS(1124), - [sym__semicolon] = ACTIONS(1122), + [251] = { + [ts_builtin_sym_end] = ACTIONS(1132), + [sym_identifier] = ACTIONS(1134), + [anon_sym_POUND] = ACTIONS(1132), + [anon_sym_package] = ACTIONS(1134), + [anon_sym_import] = ACTIONS(1134), + [anon_sym_using] = ACTIONS(1134), + [anon_sym_throw] = ACTIONS(1134), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_switch] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_RBRACE] = ACTIONS(1132), + [anon_sym_case] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1134), + [anon_sym_cast] = ACTIONS(1134), + [anon_sym_DOLLARtype] = ACTIONS(1132), + [anon_sym_in] = ACTIONS(1134), + [anon_sym_LBRACK] = ACTIONS(1132), + [anon_sym_this] = ACTIONS(1134), + [anon_sym_AT] = ACTIONS(1134), + [anon_sym_AT_COLON] = ACTIONS(1132), + [anon_sym_if] = ACTIONS(1134), + [anon_sym_else] = ACTIONS(1134), + [anon_sym_new] = ACTIONS(1134), + [sym__prefixUnaryOperator] = ACTIONS(1134), + [sym__eitherUnaryOperator] = ACTIONS(1132), + [anon_sym_null] = ACTIONS(1134), + [anon_sym_dynamic] = ACTIONS(1134), + [anon_sym_final] = ACTIONS(1134), + [anon_sym_abstract] = ACTIONS(1134), + [anon_sym_class] = ACTIONS(1134), + [anon_sym_extends] = ACTIONS(1134), + [anon_sym_implements] = ACTIONS(1134), + [anon_sym_interface] = ACTIONS(1134), + [anon_sym_typedef] = ACTIONS(1134), + [anon_sym_function] = ACTIONS(1134), + [anon_sym_var] = ACTIONS(1134), + [aux_sym_integer_token1] = ACTIONS(1134), + [aux_sym_integer_token2] = ACTIONS(1132), + [aux_sym_float_token1] = ACTIONS(1134), + [aux_sym_float_token2] = ACTIONS(1132), + [anon_sym_true] = ACTIONS(1134), + [anon_sym_false] = ACTIONS(1134), + [aux_sym_string_token1] = ACTIONS(1132), + [aux_sym_string_token3] = ACTIONS(1132), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1134), + [anon_sym_catch] = ACTIONS(1134), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_do] = ACTIONS(1134), + [anon_sym_enum] = ACTIONS(1134), + [anon_sym_extern] = ACTIONS(1134), + [anon_sym_for] = ACTIONS(1134), + [anon_sym_inline] = ACTIONS(1134), + [anon_sym_macro] = ACTIONS(1134), + [anon_sym_operator] = ACTIONS(1134), + [anon_sym_overload] = ACTIONS(1134), + [anon_sym_override] = ACTIONS(1134), + [anon_sym_private] = ACTIONS(1134), + [anon_sym_public] = ACTIONS(1134), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1134), + [anon_sym_try] = ACTIONS(1134), + [anon_sym_untyped] = ACTIONS(1134), + [anon_sym_while] = ACTIONS(1134), + [sym__semicolon] = ACTIONS(1132), }, - [215] = { - [ts_builtin_sym_end] = ACTIONS(1126), - [sym_identifier] = ACTIONS(1128), - [anon_sym_POUND] = ACTIONS(1126), - [anon_sym_package] = ACTIONS(1128), - [anon_sym_import] = ACTIONS(1128), - [anon_sym_using] = ACTIONS(1128), - [anon_sym_throw] = ACTIONS(1128), - [anon_sym_LPAREN] = ACTIONS(1126), - [anon_sym_switch] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_RBRACE] = ACTIONS(1126), - [anon_sym_case] = ACTIONS(1128), - [anon_sym_default] = ACTIONS(1128), - [anon_sym_cast] = ACTIONS(1128), - [anon_sym_DOLLARtype] = ACTIONS(1126), - [anon_sym_in] = ACTIONS(1128), - [anon_sym_LBRACK] = ACTIONS(1126), - [anon_sym_this] = ACTIONS(1128), - [anon_sym_AT] = ACTIONS(1128), - [anon_sym_AT_COLON] = ACTIONS(1126), - [anon_sym_if] = ACTIONS(1128), - [anon_sym_else] = ACTIONS(1128), - [anon_sym_new] = ACTIONS(1128), - [anon_sym_TILDE] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1128), - [anon_sym_DASH] = ACTIONS(1128), - [anon_sym_PLUS_PLUS] = ACTIONS(1126), - [anon_sym_DASH_DASH] = ACTIONS(1126), - [anon_sym_PERCENT] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1128), - [anon_sym_PLUS] = ACTIONS(1128), - [anon_sym_LT_LT] = ACTIONS(1126), - [anon_sym_GT_GT] = ACTIONS(1128), - [anon_sym_GT_GT_GT] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1128), - [anon_sym_PIPE] = ACTIONS(1128), - [anon_sym_CARET] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_EQ_EQ] = ACTIONS(1126), - [anon_sym_BANG_EQ] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(1128), - [anon_sym_LT_EQ] = ACTIONS(1126), - [anon_sym_GT] = ACTIONS(1128), - [anon_sym_GT_EQ] = ACTIONS(1126), - [anon_sym_EQ_GT] = ACTIONS(1126), - [anon_sym_QMARK_QMARK] = ACTIONS(1126), - [anon_sym_EQ] = ACTIONS(1128), - [sym__rangeOperator] = ACTIONS(1126), - [anon_sym_null] = ACTIONS(1128), - [anon_sym_dynamic] = ACTIONS(1128), - [anon_sym_final] = ACTIONS(1128), - [anon_sym_abstract] = ACTIONS(1128), - [anon_sym_class] = ACTIONS(1128), - [anon_sym_extends] = ACTIONS(1128), - [anon_sym_implements] = ACTIONS(1128), - [anon_sym_interface] = ACTIONS(1128), - [anon_sym_typedef] = ACTIONS(1128), - [anon_sym_function] = ACTIONS(1128), - [anon_sym_var] = ACTIONS(1128), - [aux_sym_integer_token1] = ACTIONS(1128), - [aux_sym_integer_token2] = ACTIONS(1126), - [aux_sym_float_token1] = ACTIONS(1128), - [aux_sym_float_token2] = ACTIONS(1126), - [anon_sym_true] = ACTIONS(1128), - [anon_sym_false] = ACTIONS(1128), - [aux_sym_string_token1] = ACTIONS(1126), - [aux_sym_string_token3] = ACTIONS(1126), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1128), - [anon_sym_catch] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1128), - [anon_sym_do] = ACTIONS(1128), - [anon_sym_enum] = ACTIONS(1128), - [anon_sym_extern] = ACTIONS(1128), - [anon_sym_for] = ACTIONS(1128), - [anon_sym_inline] = ACTIONS(1128), - [anon_sym_macro] = ACTIONS(1128), - [anon_sym_operator] = ACTIONS(1128), - [anon_sym_overload] = ACTIONS(1128), - [anon_sym_override] = ACTIONS(1128), - [anon_sym_private] = ACTIONS(1128), - [anon_sym_public] = ACTIONS(1128), - [anon_sym_return] = ACTIONS(1128), - [anon_sym_static] = ACTIONS(1128), - [anon_sym_try] = ACTIONS(1128), - [anon_sym_untyped] = ACTIONS(1128), - [anon_sym_while] = ACTIONS(1128), - [sym__semicolon] = ACTIONS(1126), + [252] = { + [ts_builtin_sym_end] = ACTIONS(1136), + [sym_identifier] = ACTIONS(1138), + [anon_sym_POUND] = ACTIONS(1136), + [anon_sym_package] = ACTIONS(1138), + [anon_sym_import] = ACTIONS(1138), + [anon_sym_using] = ACTIONS(1138), + [anon_sym_throw] = ACTIONS(1138), + [anon_sym_LPAREN] = ACTIONS(1136), + [anon_sym_switch] = ACTIONS(1138), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_RBRACE] = ACTIONS(1136), + [anon_sym_case] = ACTIONS(1138), + [anon_sym_default] = ACTIONS(1138), + [anon_sym_cast] = ACTIONS(1138), + [anon_sym_DOLLARtype] = ACTIONS(1136), + [anon_sym_in] = ACTIONS(1138), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_this] = ACTIONS(1138), + [anon_sym_AT] = ACTIONS(1138), + [anon_sym_AT_COLON] = ACTIONS(1136), + [anon_sym_if] = ACTIONS(1138), + [anon_sym_else] = ACTIONS(1138), + [anon_sym_new] = ACTIONS(1138), + [sym__prefixUnaryOperator] = ACTIONS(1138), + [sym__eitherUnaryOperator] = ACTIONS(1136), + [anon_sym_null] = ACTIONS(1138), + [anon_sym_dynamic] = ACTIONS(1138), + [anon_sym_final] = ACTIONS(1138), + [anon_sym_abstract] = ACTIONS(1138), + [anon_sym_class] = ACTIONS(1138), + [anon_sym_extends] = ACTIONS(1138), + [anon_sym_implements] = ACTIONS(1138), + [anon_sym_interface] = ACTIONS(1138), + [anon_sym_typedef] = ACTIONS(1138), + [anon_sym_function] = ACTIONS(1138), + [anon_sym_var] = ACTIONS(1138), + [aux_sym_integer_token1] = ACTIONS(1138), + [aux_sym_integer_token2] = ACTIONS(1136), + [aux_sym_float_token1] = ACTIONS(1138), + [aux_sym_float_token2] = ACTIONS(1136), + [anon_sym_true] = ACTIONS(1138), + [anon_sym_false] = ACTIONS(1138), + [aux_sym_string_token1] = ACTIONS(1136), + [aux_sym_string_token3] = ACTIONS(1136), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_catch] = ACTIONS(1138), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1138), + [anon_sym_enum] = ACTIONS(1138), + [anon_sym_extern] = ACTIONS(1138), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_inline] = ACTIONS(1138), + [anon_sym_macro] = ACTIONS(1138), + [anon_sym_operator] = ACTIONS(1138), + [anon_sym_overload] = ACTIONS(1138), + [anon_sym_override] = ACTIONS(1138), + [anon_sym_private] = ACTIONS(1138), + [anon_sym_public] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1138), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_try] = ACTIONS(1138), + [anon_sym_untyped] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1138), + [sym__semicolon] = ACTIONS(1136), }, - [216] = { - [ts_builtin_sym_end] = ACTIONS(1130), - [sym_identifier] = ACTIONS(1132), - [anon_sym_POUND] = ACTIONS(1130), - [anon_sym_package] = ACTIONS(1132), - [anon_sym_import] = ACTIONS(1132), - [anon_sym_using] = ACTIONS(1132), - [anon_sym_throw] = ACTIONS(1132), - [anon_sym_LPAREN] = ACTIONS(1130), - [anon_sym_switch] = ACTIONS(1132), - [anon_sym_LBRACE] = ACTIONS(1130), - [anon_sym_RBRACE] = ACTIONS(1130), - [anon_sym_case] = ACTIONS(1132), - [anon_sym_default] = ACTIONS(1132), - [anon_sym_cast] = ACTIONS(1132), - [anon_sym_DOLLARtype] = ACTIONS(1130), - [anon_sym_in] = ACTIONS(1132), - [anon_sym_LBRACK] = ACTIONS(1130), - [anon_sym_this] = ACTIONS(1132), - [anon_sym_AT] = ACTIONS(1132), - [anon_sym_AT_COLON] = ACTIONS(1130), - [anon_sym_if] = ACTIONS(1132), - [anon_sym_else] = ACTIONS(1132), - [anon_sym_new] = ACTIONS(1132), - [anon_sym_TILDE] = ACTIONS(1130), - [anon_sym_BANG] = ACTIONS(1132), - [anon_sym_DASH] = ACTIONS(1132), - [anon_sym_PLUS_PLUS] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1130), - [anon_sym_PERCENT] = ACTIONS(1130), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_SLASH] = ACTIONS(1132), - [anon_sym_PLUS] = ACTIONS(1132), - [anon_sym_LT_LT] = ACTIONS(1130), - [anon_sym_GT_GT] = ACTIONS(1132), - [anon_sym_GT_GT_GT] = ACTIONS(1130), - [anon_sym_AMP] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1132), - [anon_sym_CARET] = ACTIONS(1130), - [anon_sym_AMP_AMP] = ACTIONS(1130), - [anon_sym_PIPE_PIPE] = ACTIONS(1130), - [anon_sym_EQ_EQ] = ACTIONS(1130), - [anon_sym_BANG_EQ] = ACTIONS(1130), - [anon_sym_LT] = ACTIONS(1132), - [anon_sym_LT_EQ] = ACTIONS(1130), - [anon_sym_GT] = ACTIONS(1132), - [anon_sym_GT_EQ] = ACTIONS(1130), - [anon_sym_EQ_GT] = ACTIONS(1130), - [anon_sym_QMARK_QMARK] = ACTIONS(1130), - [anon_sym_EQ] = ACTIONS(1132), - [sym__rangeOperator] = ACTIONS(1130), - [anon_sym_null] = ACTIONS(1132), - [anon_sym_dynamic] = ACTIONS(1132), - [anon_sym_final] = ACTIONS(1132), - [anon_sym_abstract] = ACTIONS(1132), - [anon_sym_class] = ACTIONS(1132), - [anon_sym_extends] = ACTIONS(1132), - [anon_sym_implements] = ACTIONS(1132), - [anon_sym_interface] = ACTIONS(1132), - [anon_sym_typedef] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(1132), - [anon_sym_var] = ACTIONS(1132), - [aux_sym_integer_token1] = ACTIONS(1132), - [aux_sym_integer_token2] = ACTIONS(1130), - [aux_sym_float_token1] = ACTIONS(1132), - [aux_sym_float_token2] = ACTIONS(1130), - [anon_sym_true] = ACTIONS(1132), - [anon_sym_false] = ACTIONS(1132), - [aux_sym_string_token1] = ACTIONS(1130), - [aux_sym_string_token3] = ACTIONS(1130), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1132), - [anon_sym_catch] = ACTIONS(1132), - [anon_sym_continue] = ACTIONS(1132), - [anon_sym_do] = ACTIONS(1132), - [anon_sym_enum] = ACTIONS(1132), - [anon_sym_extern] = ACTIONS(1132), - [anon_sym_for] = ACTIONS(1132), - [anon_sym_inline] = ACTIONS(1132), - [anon_sym_macro] = ACTIONS(1132), - [anon_sym_operator] = ACTIONS(1132), - [anon_sym_overload] = ACTIONS(1132), - [anon_sym_override] = ACTIONS(1132), - [anon_sym_private] = ACTIONS(1132), - [anon_sym_public] = ACTIONS(1132), - [anon_sym_return] = ACTIONS(1132), - [anon_sym_static] = ACTIONS(1132), - [anon_sym_try] = ACTIONS(1132), - [anon_sym_untyped] = ACTIONS(1132), - [anon_sym_while] = ACTIONS(1132), - [sym__semicolon] = ACTIONS(1130), + [253] = { + [ts_builtin_sym_end] = ACTIONS(1140), + [sym_identifier] = ACTIONS(1142), + [anon_sym_POUND] = ACTIONS(1140), + [anon_sym_package] = ACTIONS(1142), + [anon_sym_import] = ACTIONS(1142), + [anon_sym_using] = ACTIONS(1142), + [anon_sym_throw] = ACTIONS(1142), + [anon_sym_LPAREN] = ACTIONS(1140), + [anon_sym_switch] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(1140), + [anon_sym_RBRACE] = ACTIONS(1140), + [anon_sym_case] = ACTIONS(1142), + [anon_sym_default] = ACTIONS(1142), + [anon_sym_cast] = ACTIONS(1142), + [anon_sym_DOLLARtype] = ACTIONS(1140), + [anon_sym_in] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1140), + [anon_sym_this] = ACTIONS(1142), + [anon_sym_AT] = ACTIONS(1142), + [anon_sym_AT_COLON] = ACTIONS(1140), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_else] = ACTIONS(1142), + [anon_sym_new] = ACTIONS(1142), + [sym__prefixUnaryOperator] = ACTIONS(1142), + [sym__eitherUnaryOperator] = ACTIONS(1140), + [anon_sym_null] = ACTIONS(1142), + [anon_sym_dynamic] = ACTIONS(1142), + [anon_sym_final] = ACTIONS(1142), + [anon_sym_abstract] = ACTIONS(1142), + [anon_sym_class] = ACTIONS(1142), + [anon_sym_extends] = ACTIONS(1142), + [anon_sym_implements] = ACTIONS(1142), + [anon_sym_interface] = ACTIONS(1142), + [anon_sym_typedef] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(1142), + [anon_sym_var] = ACTIONS(1142), + [aux_sym_integer_token1] = ACTIONS(1142), + [aux_sym_integer_token2] = ACTIONS(1140), + [aux_sym_float_token1] = ACTIONS(1142), + [aux_sym_float_token2] = ACTIONS(1140), + [anon_sym_true] = ACTIONS(1142), + [anon_sym_false] = ACTIONS(1142), + [aux_sym_string_token1] = ACTIONS(1140), + [aux_sym_string_token3] = ACTIONS(1140), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1142), + [anon_sym_catch] = ACTIONS(1142), + [anon_sym_continue] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1142), + [anon_sym_enum] = ACTIONS(1142), + [anon_sym_extern] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1142), + [anon_sym_inline] = ACTIONS(1142), + [anon_sym_macro] = ACTIONS(1142), + [anon_sym_operator] = ACTIONS(1142), + [anon_sym_overload] = ACTIONS(1142), + [anon_sym_override] = ACTIONS(1142), + [anon_sym_private] = ACTIONS(1142), + [anon_sym_public] = ACTIONS(1142), + [anon_sym_return] = ACTIONS(1142), + [anon_sym_static] = ACTIONS(1142), + [anon_sym_try] = ACTIONS(1142), + [anon_sym_untyped] = ACTIONS(1142), + [anon_sym_while] = ACTIONS(1142), + [sym__semicolon] = ACTIONS(1140), }, - [217] = { - [ts_builtin_sym_end] = ACTIONS(380), - [sym_identifier] = ACTIONS(382), - [anon_sym_POUND] = ACTIONS(380), - [anon_sym_package] = ACTIONS(382), - [anon_sym_import] = ACTIONS(382), - [anon_sym_using] = ACTIONS(382), - [anon_sym_throw] = ACTIONS(382), - [anon_sym_LPAREN] = ACTIONS(380), - [anon_sym_switch] = ACTIONS(382), - [anon_sym_LBRACE] = ACTIONS(380), - [anon_sym_RBRACE] = ACTIONS(380), - [anon_sym_case] = ACTIONS(382), - [anon_sym_default] = ACTIONS(382), - [anon_sym_cast] = ACTIONS(382), - [anon_sym_DOLLARtype] = ACTIONS(380), - [anon_sym_in] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(454), - [anon_sym_this] = ACTIONS(382), - [anon_sym_AT] = ACTIONS(382), - [anon_sym_AT_COLON] = ACTIONS(380), - [anon_sym_if] = ACTIONS(382), - [anon_sym_else] = ACTIONS(382), - [anon_sym_new] = ACTIONS(382), - [anon_sym_TILDE] = ACTIONS(380), - [anon_sym_BANG] = ACTIONS(382), - [anon_sym_DASH] = ACTIONS(382), - [anon_sym_PLUS_PLUS] = ACTIONS(380), - [anon_sym_DASH_DASH] = ACTIONS(380), - [anon_sym_PERCENT] = ACTIONS(380), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(382), - [anon_sym_LT_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_GT_GT_GT] = ACTIONS(380), - [anon_sym_AMP] = ACTIONS(382), - [anon_sym_PIPE] = ACTIONS(382), - [anon_sym_CARET] = ACTIONS(380), - [anon_sym_AMP_AMP] = ACTIONS(380), - [anon_sym_PIPE_PIPE] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(380), - [anon_sym_BANG_EQ] = ACTIONS(380), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_LT_EQ] = ACTIONS(380), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_EQ] = ACTIONS(380), - [anon_sym_EQ_GT] = ACTIONS(380), - [anon_sym_QMARK_QMARK] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(382), - [sym__rangeOperator] = ACTIONS(380), - [anon_sym_null] = ACTIONS(382), - [anon_sym_dynamic] = ACTIONS(382), - [anon_sym_final] = ACTIONS(382), - [anon_sym_abstract] = ACTIONS(382), - [anon_sym_class] = ACTIONS(382), - [anon_sym_extends] = ACTIONS(382), - [anon_sym_implements] = ACTIONS(382), - [anon_sym_interface] = ACTIONS(382), - [anon_sym_typedef] = ACTIONS(382), - [anon_sym_function] = ACTIONS(382), - [anon_sym_var] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(382), - [aux_sym_integer_token2] = ACTIONS(380), - [aux_sym_float_token1] = ACTIONS(382), - [aux_sym_float_token2] = ACTIONS(380), - [anon_sym_true] = ACTIONS(382), - [anon_sym_false] = ACTIONS(382), - [aux_sym_string_token1] = ACTIONS(380), - [aux_sym_string_token3] = ACTIONS(380), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(382), - [anon_sym_catch] = ACTIONS(382), - [anon_sym_continue] = ACTIONS(382), - [anon_sym_do] = ACTIONS(382), - [anon_sym_enum] = ACTIONS(382), - [anon_sym_extern] = ACTIONS(382), - [anon_sym_for] = ACTIONS(382), - [anon_sym_inline] = ACTIONS(382), - [anon_sym_macro] = ACTIONS(382), - [anon_sym_operator] = ACTIONS(382), - [anon_sym_overload] = ACTIONS(382), - [anon_sym_override] = ACTIONS(382), - [anon_sym_private] = ACTIONS(382), - [anon_sym_public] = ACTIONS(382), - [anon_sym_return] = ACTIONS(382), - [anon_sym_static] = ACTIONS(382), - [anon_sym_try] = ACTIONS(382), - [anon_sym_untyped] = ACTIONS(382), - [anon_sym_while] = ACTIONS(382), - [sym__semicolon] = ACTIONS(380), + [254] = { + [ts_builtin_sym_end] = ACTIONS(1144), + [sym_identifier] = ACTIONS(1146), + [anon_sym_POUND] = ACTIONS(1144), + [anon_sym_package] = ACTIONS(1146), + [anon_sym_import] = ACTIONS(1146), + [anon_sym_using] = ACTIONS(1146), + [anon_sym_throw] = ACTIONS(1146), + [anon_sym_LPAREN] = ACTIONS(1144), + [anon_sym_switch] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1144), + [anon_sym_RBRACE] = ACTIONS(1144), + [anon_sym_case] = ACTIONS(1146), + [anon_sym_default] = ACTIONS(1146), + [anon_sym_cast] = ACTIONS(1146), + [anon_sym_DOLLARtype] = ACTIONS(1144), + [anon_sym_in] = ACTIONS(1146), + [anon_sym_LBRACK] = ACTIONS(1144), + [anon_sym_this] = ACTIONS(1146), + [anon_sym_AT] = ACTIONS(1146), + [anon_sym_AT_COLON] = ACTIONS(1144), + [anon_sym_if] = ACTIONS(1146), + [anon_sym_else] = ACTIONS(1146), + [anon_sym_new] = ACTIONS(1146), + [sym__prefixUnaryOperator] = ACTIONS(1146), + [sym__eitherUnaryOperator] = ACTIONS(1144), + [anon_sym_null] = ACTIONS(1146), + [anon_sym_dynamic] = ACTIONS(1146), + [anon_sym_final] = ACTIONS(1146), + [anon_sym_abstract] = ACTIONS(1146), + [anon_sym_class] = ACTIONS(1146), + [anon_sym_extends] = ACTIONS(1146), + [anon_sym_implements] = ACTIONS(1146), + [anon_sym_interface] = ACTIONS(1146), + [anon_sym_typedef] = ACTIONS(1146), + [anon_sym_function] = ACTIONS(1146), + [anon_sym_var] = ACTIONS(1146), + [aux_sym_integer_token1] = ACTIONS(1146), + [aux_sym_integer_token2] = ACTIONS(1144), + [aux_sym_float_token1] = ACTIONS(1146), + [aux_sym_float_token2] = ACTIONS(1144), + [anon_sym_true] = ACTIONS(1146), + [anon_sym_false] = ACTIONS(1146), + [aux_sym_string_token1] = ACTIONS(1144), + [aux_sym_string_token3] = ACTIONS(1144), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1146), + [anon_sym_catch] = ACTIONS(1146), + [anon_sym_continue] = ACTIONS(1146), + [anon_sym_do] = ACTIONS(1146), + [anon_sym_enum] = ACTIONS(1146), + [anon_sym_extern] = ACTIONS(1146), + [anon_sym_for] = ACTIONS(1146), + [anon_sym_inline] = ACTIONS(1146), + [anon_sym_macro] = ACTIONS(1146), + [anon_sym_operator] = ACTIONS(1146), + [anon_sym_overload] = ACTIONS(1146), + [anon_sym_override] = ACTIONS(1146), + [anon_sym_private] = ACTIONS(1146), + [anon_sym_public] = ACTIONS(1146), + [anon_sym_return] = ACTIONS(1146), + [anon_sym_static] = ACTIONS(1146), + [anon_sym_try] = ACTIONS(1146), + [anon_sym_untyped] = ACTIONS(1146), + [anon_sym_while] = ACTIONS(1146), + [sym__semicolon] = ACTIONS(1144), }, - [218] = { - [ts_builtin_sym_end] = ACTIONS(1134), - [sym_identifier] = ACTIONS(1136), - [anon_sym_POUND] = ACTIONS(1134), - [anon_sym_package] = ACTIONS(1136), - [anon_sym_import] = ACTIONS(1136), - [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_RBRACE] = ACTIONS(1134), - [anon_sym_case] = ACTIONS(1136), - [anon_sym_default] = ACTIONS(1136), - [anon_sym_cast] = ACTIONS(1136), - [anon_sym_DOLLARtype] = ACTIONS(1134), - [anon_sym_in] = ACTIONS(1136), - [anon_sym_LBRACK] = ACTIONS(1134), - [anon_sym_this] = ACTIONS(1136), - [anon_sym_AT] = ACTIONS(1136), - [anon_sym_AT_COLON] = ACTIONS(1134), - [anon_sym_if] = ACTIONS(1136), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1134), - [anon_sym_null] = ACTIONS(1136), - [anon_sym_dynamic] = ACTIONS(1136), - [anon_sym_final] = ACTIONS(1136), - [anon_sym_abstract] = ACTIONS(1136), - [anon_sym_class] = ACTIONS(1136), - [anon_sym_extends] = ACTIONS(1136), - [anon_sym_implements] = ACTIONS(1136), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1136), - [anon_sym_catch] = ACTIONS(1136), - [anon_sym_continue] = ACTIONS(1136), - [anon_sym_do] = ACTIONS(1136), - [anon_sym_enum] = ACTIONS(1136), - [anon_sym_extern] = ACTIONS(1136), - [anon_sym_for] = ACTIONS(1136), - [anon_sym_inline] = ACTIONS(1136), - [anon_sym_macro] = ACTIONS(1136), - [anon_sym_operator] = ACTIONS(1136), - [anon_sym_overload] = ACTIONS(1136), - [anon_sym_override] = ACTIONS(1136), - [anon_sym_private] = ACTIONS(1136), - [anon_sym_public] = ACTIONS(1136), - [anon_sym_return] = ACTIONS(1136), - [anon_sym_static] = ACTIONS(1136), - [anon_sym_try] = ACTIONS(1136), - [anon_sym_untyped] = ACTIONS(1136), - [anon_sym_while] = ACTIONS(1136), - [sym__semicolon] = ACTIONS(1134), + [255] = { + [ts_builtin_sym_end] = ACTIONS(1148), + [sym_identifier] = ACTIONS(1150), + [anon_sym_POUND] = ACTIONS(1148), + [anon_sym_package] = ACTIONS(1150), + [anon_sym_import] = ACTIONS(1150), + [anon_sym_using] = ACTIONS(1150), + [anon_sym_throw] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1148), + [anon_sym_switch] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_RBRACE] = ACTIONS(1148), + [anon_sym_case] = ACTIONS(1150), + [anon_sym_default] = ACTIONS(1150), + [anon_sym_cast] = ACTIONS(1150), + [anon_sym_DOLLARtype] = ACTIONS(1148), + [anon_sym_in] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(1148), + [anon_sym_this] = ACTIONS(1150), + [anon_sym_AT] = ACTIONS(1150), + [anon_sym_AT_COLON] = ACTIONS(1148), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_else] = ACTIONS(1150), + [anon_sym_new] = ACTIONS(1150), + [sym__prefixUnaryOperator] = ACTIONS(1150), + [sym__eitherUnaryOperator] = ACTIONS(1148), + [anon_sym_null] = ACTIONS(1150), + [anon_sym_dynamic] = ACTIONS(1150), + [anon_sym_final] = ACTIONS(1150), + [anon_sym_abstract] = ACTIONS(1150), + [anon_sym_class] = ACTIONS(1150), + [anon_sym_extends] = ACTIONS(1150), + [anon_sym_implements] = ACTIONS(1150), + [anon_sym_interface] = ACTIONS(1150), + [anon_sym_typedef] = ACTIONS(1150), + [anon_sym_function] = ACTIONS(1150), + [anon_sym_var] = ACTIONS(1150), + [aux_sym_integer_token1] = ACTIONS(1150), + [aux_sym_integer_token2] = ACTIONS(1148), + [aux_sym_float_token1] = ACTIONS(1150), + [aux_sym_float_token2] = ACTIONS(1148), + [anon_sym_true] = ACTIONS(1150), + [anon_sym_false] = ACTIONS(1150), + [aux_sym_string_token1] = ACTIONS(1148), + [aux_sym_string_token3] = ACTIONS(1148), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1150), + [anon_sym_catch] = ACTIONS(1150), + [anon_sym_continue] = ACTIONS(1150), + [anon_sym_do] = ACTIONS(1150), + [anon_sym_enum] = ACTIONS(1150), + [anon_sym_extern] = ACTIONS(1150), + [anon_sym_for] = ACTIONS(1150), + [anon_sym_inline] = ACTIONS(1150), + [anon_sym_macro] = ACTIONS(1150), + [anon_sym_operator] = ACTIONS(1150), + [anon_sym_overload] = ACTIONS(1150), + [anon_sym_override] = ACTIONS(1150), + [anon_sym_private] = ACTIONS(1150), + [anon_sym_public] = ACTIONS(1150), + [anon_sym_return] = ACTIONS(1150), + [anon_sym_static] = ACTIONS(1150), + [anon_sym_try] = ACTIONS(1150), + [anon_sym_untyped] = ACTIONS(1150), + [anon_sym_while] = ACTIONS(1150), + [sym__semicolon] = ACTIONS(1148), }, - [219] = { - [ts_builtin_sym_end] = ACTIONS(1138), - [sym_identifier] = ACTIONS(1140), - [anon_sym_POUND] = ACTIONS(1138), - [anon_sym_package] = ACTIONS(1140), - [anon_sym_import] = ACTIONS(1140), - [anon_sym_using] = ACTIONS(1140), - [anon_sym_throw] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(1138), - [anon_sym_RBRACE] = ACTIONS(1138), - [anon_sym_case] = ACTIONS(1140), - [anon_sym_default] = ACTIONS(1140), - [anon_sym_cast] = ACTIONS(1140), - [anon_sym_DOLLARtype] = ACTIONS(1138), - [anon_sym_in] = ACTIONS(1140), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_this] = ACTIONS(1140), - [anon_sym_AT] = ACTIONS(1140), - [anon_sym_AT_COLON] = ACTIONS(1138), - [anon_sym_if] = ACTIONS(1140), - [anon_sym_else] = ACTIONS(1140), - [anon_sym_new] = ACTIONS(1140), - [anon_sym_TILDE] = ACTIONS(1138), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_DASH] = ACTIONS(1140), - [anon_sym_PLUS_PLUS] = ACTIONS(1138), - [anon_sym_DASH_DASH] = ACTIONS(1138), - [anon_sym_PERCENT] = ACTIONS(1138), - [anon_sym_STAR] = ACTIONS(1138), - [anon_sym_SLASH] = ACTIONS(1140), - [anon_sym_PLUS] = ACTIONS(1140), - [anon_sym_LT_LT] = ACTIONS(1138), - [anon_sym_GT_GT] = ACTIONS(1140), - [anon_sym_GT_GT_GT] = ACTIONS(1138), - [anon_sym_AMP] = ACTIONS(1140), - [anon_sym_PIPE] = ACTIONS(1140), - [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(1140), - [anon_sym_LT_EQ] = ACTIONS(1138), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_GT_EQ] = ACTIONS(1138), - [anon_sym_EQ_GT] = ACTIONS(1138), - [anon_sym_QMARK_QMARK] = ACTIONS(1138), - [anon_sym_EQ] = ACTIONS(1140), - [sym__rangeOperator] = ACTIONS(1138), - [anon_sym_null] = ACTIONS(1140), - [anon_sym_dynamic] = ACTIONS(1140), - [anon_sym_final] = ACTIONS(1140), - [anon_sym_abstract] = ACTIONS(1140), - [anon_sym_class] = ACTIONS(1140), - [anon_sym_extends] = ACTIONS(1140), - [anon_sym_implements] = ACTIONS(1140), - [anon_sym_interface] = ACTIONS(1140), - [anon_sym_typedef] = ACTIONS(1140), - [anon_sym_function] = ACTIONS(1140), - [anon_sym_var] = ACTIONS(1140), - [aux_sym_integer_token1] = ACTIONS(1140), - [aux_sym_integer_token2] = ACTIONS(1138), - [aux_sym_float_token1] = ACTIONS(1140), - [aux_sym_float_token2] = ACTIONS(1138), - [anon_sym_true] = ACTIONS(1140), - [anon_sym_false] = ACTIONS(1140), - [aux_sym_string_token1] = ACTIONS(1138), - [aux_sym_string_token3] = ACTIONS(1138), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1140), - [anon_sym_catch] = ACTIONS(1140), - [anon_sym_continue] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(1140), - [anon_sym_enum] = ACTIONS(1140), - [anon_sym_extern] = ACTIONS(1140), - [anon_sym_for] = ACTIONS(1140), - [anon_sym_inline] = ACTIONS(1140), - [anon_sym_macro] = ACTIONS(1140), - [anon_sym_operator] = ACTIONS(1140), - [anon_sym_overload] = ACTIONS(1140), - [anon_sym_override] = ACTIONS(1140), - [anon_sym_private] = ACTIONS(1140), - [anon_sym_public] = ACTIONS(1140), - [anon_sym_return] = ACTIONS(1140), - [anon_sym_static] = ACTIONS(1140), - [anon_sym_try] = ACTIONS(1140), - [anon_sym_untyped] = ACTIONS(1140), - [anon_sym_while] = ACTIONS(1140), - [sym__semicolon] = ACTIONS(1138), + [256] = { + [ts_builtin_sym_end] = ACTIONS(1152), + [sym_identifier] = ACTIONS(1154), + [anon_sym_POUND] = ACTIONS(1152), + [anon_sym_package] = ACTIONS(1154), + [anon_sym_import] = ACTIONS(1154), + [anon_sym_using] = ACTIONS(1154), + [anon_sym_throw] = ACTIONS(1154), + [anon_sym_LPAREN] = ACTIONS(1152), + [anon_sym_switch] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1152), + [anon_sym_RBRACE] = ACTIONS(1152), + [anon_sym_case] = ACTIONS(1154), + [anon_sym_default] = ACTIONS(1154), + [anon_sym_cast] = ACTIONS(1154), + [anon_sym_DOLLARtype] = ACTIONS(1152), + [anon_sym_in] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1152), + [anon_sym_this] = ACTIONS(1154), + [anon_sym_AT] = ACTIONS(1154), + [anon_sym_AT_COLON] = ACTIONS(1152), + [anon_sym_if] = ACTIONS(1154), + [anon_sym_else] = ACTIONS(1154), + [anon_sym_new] = ACTIONS(1154), + [sym__prefixUnaryOperator] = ACTIONS(1154), + [sym__eitherUnaryOperator] = ACTIONS(1152), + [anon_sym_null] = ACTIONS(1154), + [anon_sym_dynamic] = ACTIONS(1154), + [anon_sym_final] = ACTIONS(1154), + [anon_sym_abstract] = ACTIONS(1154), + [anon_sym_class] = ACTIONS(1154), + [anon_sym_extends] = ACTIONS(1154), + [anon_sym_implements] = ACTIONS(1154), + [anon_sym_interface] = ACTIONS(1154), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_function] = ACTIONS(1154), + [anon_sym_var] = ACTIONS(1154), + [aux_sym_integer_token1] = ACTIONS(1154), + [aux_sym_integer_token2] = ACTIONS(1152), + [aux_sym_float_token1] = ACTIONS(1154), + [aux_sym_float_token2] = ACTIONS(1152), + [anon_sym_true] = ACTIONS(1154), + [anon_sym_false] = ACTIONS(1154), + [aux_sym_string_token1] = ACTIONS(1152), + [aux_sym_string_token3] = ACTIONS(1152), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1154), + [anon_sym_catch] = ACTIONS(1154), + [anon_sym_continue] = ACTIONS(1154), + [anon_sym_do] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_inline] = ACTIONS(1154), + [anon_sym_macro] = ACTIONS(1154), + [anon_sym_operator] = ACTIONS(1154), + [anon_sym_overload] = ACTIONS(1154), + [anon_sym_override] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1154), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_try] = ACTIONS(1154), + [anon_sym_untyped] = ACTIONS(1154), + [anon_sym_while] = ACTIONS(1154), + [sym__semicolon] = ACTIONS(1152), }, - [220] = { - [ts_builtin_sym_end] = ACTIONS(1142), - [sym_identifier] = ACTIONS(1144), - [anon_sym_POUND] = ACTIONS(1142), - [anon_sym_package] = ACTIONS(1144), - [anon_sym_import] = ACTIONS(1144), - [anon_sym_using] = ACTIONS(1144), - [anon_sym_throw] = ACTIONS(1144), - [anon_sym_LPAREN] = ACTIONS(1142), - [anon_sym_switch] = ACTIONS(1144), - [anon_sym_LBRACE] = ACTIONS(1142), - [anon_sym_RBRACE] = ACTIONS(1142), - [anon_sym_case] = ACTIONS(1144), - [anon_sym_default] = ACTIONS(1144), - [anon_sym_cast] = ACTIONS(1144), - [anon_sym_DOLLARtype] = ACTIONS(1142), - [anon_sym_in] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1142), - [anon_sym_this] = ACTIONS(1144), - [anon_sym_AT] = ACTIONS(1144), - [anon_sym_AT_COLON] = ACTIONS(1142), - [anon_sym_if] = ACTIONS(1144), - [anon_sym_else] = ACTIONS(1144), - [anon_sym_new] = ACTIONS(1144), - [anon_sym_TILDE] = ACTIONS(1142), - [anon_sym_BANG] = ACTIONS(1144), - [anon_sym_DASH] = ACTIONS(1144), - [anon_sym_PLUS_PLUS] = ACTIONS(1142), - [anon_sym_DASH_DASH] = ACTIONS(1142), - [anon_sym_PERCENT] = ACTIONS(1142), - [anon_sym_STAR] = ACTIONS(1142), - [anon_sym_SLASH] = ACTIONS(1144), - [anon_sym_PLUS] = ACTIONS(1144), - [anon_sym_LT_LT] = ACTIONS(1142), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_GT_GT_GT] = ACTIONS(1142), - [anon_sym_AMP] = ACTIONS(1144), - [anon_sym_PIPE] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1142), - [anon_sym_AMP_AMP] = ACTIONS(1142), - [anon_sym_PIPE_PIPE] = ACTIONS(1142), - [anon_sym_EQ_EQ] = ACTIONS(1142), - [anon_sym_BANG_EQ] = ACTIONS(1142), - [anon_sym_LT] = ACTIONS(1144), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT] = ACTIONS(1144), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_EQ_GT] = ACTIONS(1142), - [anon_sym_QMARK_QMARK] = ACTIONS(1142), - [anon_sym_EQ] = ACTIONS(1144), - [sym__rangeOperator] = ACTIONS(1142), - [anon_sym_null] = ACTIONS(1144), - [anon_sym_dynamic] = ACTIONS(1144), - [anon_sym_final] = ACTIONS(1144), - [anon_sym_abstract] = ACTIONS(1144), - [anon_sym_class] = ACTIONS(1144), - [anon_sym_extends] = ACTIONS(1144), - [anon_sym_implements] = ACTIONS(1144), - [anon_sym_interface] = ACTIONS(1144), - [anon_sym_typedef] = ACTIONS(1144), - [anon_sym_function] = ACTIONS(1144), - [anon_sym_var] = ACTIONS(1144), - [aux_sym_integer_token1] = ACTIONS(1144), - [aux_sym_integer_token2] = ACTIONS(1142), - [aux_sym_float_token1] = ACTIONS(1144), - [aux_sym_float_token2] = ACTIONS(1142), - [anon_sym_true] = ACTIONS(1144), - [anon_sym_false] = ACTIONS(1144), - [aux_sym_string_token1] = ACTIONS(1142), - [aux_sym_string_token3] = ACTIONS(1142), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1144), - [anon_sym_catch] = ACTIONS(1144), - [anon_sym_continue] = ACTIONS(1144), - [anon_sym_do] = ACTIONS(1144), - [anon_sym_enum] = ACTIONS(1144), - [anon_sym_extern] = ACTIONS(1144), - [anon_sym_for] = ACTIONS(1144), - [anon_sym_inline] = ACTIONS(1144), - [anon_sym_macro] = ACTIONS(1144), - [anon_sym_operator] = ACTIONS(1144), - [anon_sym_overload] = ACTIONS(1144), - [anon_sym_override] = ACTIONS(1144), - [anon_sym_private] = ACTIONS(1144), - [anon_sym_public] = ACTIONS(1144), - [anon_sym_return] = ACTIONS(1144), - [anon_sym_static] = ACTIONS(1144), - [anon_sym_try] = ACTIONS(1144), - [anon_sym_untyped] = ACTIONS(1144), - [anon_sym_while] = ACTIONS(1144), - [sym__semicolon] = ACTIONS(1142), + [257] = { + [ts_builtin_sym_end] = ACTIONS(1156), + [sym_identifier] = ACTIONS(1158), + [anon_sym_POUND] = ACTIONS(1156), + [anon_sym_package] = ACTIONS(1158), + [anon_sym_import] = ACTIONS(1158), + [anon_sym_using] = ACTIONS(1158), + [anon_sym_throw] = ACTIONS(1158), + [anon_sym_LPAREN] = ACTIONS(1156), + [anon_sym_switch] = ACTIONS(1158), + [anon_sym_LBRACE] = ACTIONS(1156), + [anon_sym_RBRACE] = ACTIONS(1156), + [anon_sym_case] = ACTIONS(1158), + [anon_sym_default] = ACTIONS(1158), + [anon_sym_cast] = ACTIONS(1158), + [anon_sym_DOLLARtype] = ACTIONS(1156), + [anon_sym_in] = ACTIONS(1158), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_this] = ACTIONS(1158), + [anon_sym_AT] = ACTIONS(1158), + [anon_sym_AT_COLON] = ACTIONS(1156), + [anon_sym_if] = ACTIONS(1158), + [anon_sym_else] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1158), + [sym__prefixUnaryOperator] = ACTIONS(1158), + [sym__eitherUnaryOperator] = ACTIONS(1156), + [anon_sym_null] = ACTIONS(1158), + [anon_sym_dynamic] = ACTIONS(1158), + [anon_sym_final] = ACTIONS(1158), + [anon_sym_abstract] = ACTIONS(1158), + [anon_sym_class] = ACTIONS(1158), + [anon_sym_extends] = ACTIONS(1158), + [anon_sym_implements] = ACTIONS(1158), + [anon_sym_interface] = ACTIONS(1158), + [anon_sym_typedef] = ACTIONS(1158), + [anon_sym_function] = ACTIONS(1158), + [anon_sym_var] = ACTIONS(1158), + [aux_sym_integer_token1] = ACTIONS(1158), + [aux_sym_integer_token2] = ACTIONS(1156), + [aux_sym_float_token1] = ACTIONS(1158), + [aux_sym_float_token2] = ACTIONS(1156), + [anon_sym_true] = ACTIONS(1158), + [anon_sym_false] = ACTIONS(1158), + [aux_sym_string_token1] = ACTIONS(1156), + [aux_sym_string_token3] = ACTIONS(1156), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1158), + [anon_sym_catch] = ACTIONS(1158), + [anon_sym_continue] = ACTIONS(1158), + [anon_sym_do] = ACTIONS(1158), + [anon_sym_enum] = ACTIONS(1158), + [anon_sym_extern] = ACTIONS(1158), + [anon_sym_for] = ACTIONS(1158), + [anon_sym_inline] = ACTIONS(1158), + [anon_sym_macro] = ACTIONS(1158), + [anon_sym_operator] = ACTIONS(1158), + [anon_sym_overload] = ACTIONS(1158), + [anon_sym_override] = ACTIONS(1158), + [anon_sym_private] = ACTIONS(1158), + [anon_sym_public] = ACTIONS(1158), + [anon_sym_return] = ACTIONS(1158), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_try] = ACTIONS(1158), + [anon_sym_untyped] = ACTIONS(1158), + [anon_sym_while] = ACTIONS(1158), + [sym__semicolon] = ACTIONS(1156), }, - [221] = { - [ts_builtin_sym_end] = ACTIONS(1146), - [sym_identifier] = ACTIONS(1148), - [anon_sym_POUND] = ACTIONS(1146), - [anon_sym_package] = ACTIONS(1148), - [anon_sym_import] = ACTIONS(1148), - [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_RBRACE] = ACTIONS(1146), - [anon_sym_case] = ACTIONS(1148), - [anon_sym_default] = ACTIONS(1148), - [anon_sym_cast] = ACTIONS(1148), - [anon_sym_DOLLARtype] = ACTIONS(1146), - [anon_sym_in] = ACTIONS(1148), - [anon_sym_LBRACK] = ACTIONS(1146), - [anon_sym_this] = ACTIONS(1148), - [anon_sym_AT] = ACTIONS(1148), - [anon_sym_AT_COLON] = ACTIONS(1146), - [anon_sym_if] = ACTIONS(1148), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1146), - [anon_sym_null] = ACTIONS(1148), - [anon_sym_dynamic] = ACTIONS(1148), - [anon_sym_final] = ACTIONS(1148), - [anon_sym_abstract] = ACTIONS(1148), - [anon_sym_class] = ACTIONS(1148), - [anon_sym_extends] = ACTIONS(1148), - [anon_sym_implements] = ACTIONS(1148), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_catch] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1148), - [anon_sym_do] = ACTIONS(1148), - [anon_sym_enum] = ACTIONS(1148), - [anon_sym_extern] = ACTIONS(1148), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_inline] = ACTIONS(1148), - [anon_sym_macro] = ACTIONS(1148), - [anon_sym_operator] = ACTIONS(1148), - [anon_sym_overload] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_untyped] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1148), - [sym__semicolon] = ACTIONS(1146), + [258] = { + [ts_builtin_sym_end] = ACTIONS(1160), + [sym_identifier] = ACTIONS(1162), + [anon_sym_POUND] = ACTIONS(1160), + [anon_sym_package] = ACTIONS(1162), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_using] = ACTIONS(1162), + [anon_sym_throw] = ACTIONS(1162), + [anon_sym_LPAREN] = ACTIONS(1160), + [anon_sym_switch] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(1160), + [anon_sym_RBRACE] = ACTIONS(1160), + [anon_sym_case] = ACTIONS(1162), + [anon_sym_default] = ACTIONS(1162), + [anon_sym_cast] = ACTIONS(1162), + [anon_sym_DOLLARtype] = ACTIONS(1160), + [anon_sym_in] = ACTIONS(1162), + [anon_sym_LBRACK] = ACTIONS(1160), + [anon_sym_this] = ACTIONS(1162), + [anon_sym_AT] = ACTIONS(1162), + [anon_sym_AT_COLON] = ACTIONS(1160), + [anon_sym_if] = ACTIONS(1162), + [anon_sym_else] = ACTIONS(1162), + [anon_sym_new] = ACTIONS(1162), + [sym__prefixUnaryOperator] = ACTIONS(1162), + [sym__eitherUnaryOperator] = ACTIONS(1160), + [anon_sym_null] = ACTIONS(1162), + [anon_sym_dynamic] = ACTIONS(1162), + [anon_sym_final] = ACTIONS(1162), + [anon_sym_abstract] = ACTIONS(1162), + [anon_sym_class] = ACTIONS(1162), + [anon_sym_extends] = ACTIONS(1162), + [anon_sym_implements] = ACTIONS(1162), + [anon_sym_interface] = ACTIONS(1162), + [anon_sym_typedef] = ACTIONS(1162), + [anon_sym_function] = ACTIONS(1162), + [anon_sym_var] = ACTIONS(1162), + [aux_sym_integer_token1] = ACTIONS(1162), + [aux_sym_integer_token2] = ACTIONS(1160), + [aux_sym_float_token1] = ACTIONS(1162), + [aux_sym_float_token2] = ACTIONS(1160), + [anon_sym_true] = ACTIONS(1162), + [anon_sym_false] = ACTIONS(1162), + [aux_sym_string_token1] = ACTIONS(1160), + [aux_sym_string_token3] = ACTIONS(1160), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1162), + [anon_sym_catch] = ACTIONS(1162), + [anon_sym_continue] = ACTIONS(1162), + [anon_sym_do] = ACTIONS(1162), + [anon_sym_enum] = ACTIONS(1162), + [anon_sym_extern] = ACTIONS(1162), + [anon_sym_for] = ACTIONS(1162), + [anon_sym_inline] = ACTIONS(1162), + [anon_sym_macro] = ACTIONS(1162), + [anon_sym_operator] = ACTIONS(1162), + [anon_sym_overload] = ACTIONS(1162), + [anon_sym_override] = ACTIONS(1162), + [anon_sym_private] = ACTIONS(1162), + [anon_sym_public] = ACTIONS(1162), + [anon_sym_return] = ACTIONS(1162), + [anon_sym_static] = ACTIONS(1162), + [anon_sym_try] = ACTIONS(1162), + [anon_sym_untyped] = ACTIONS(1162), + [anon_sym_while] = ACTIONS(1162), + [sym__semicolon] = ACTIONS(1160), }, - [222] = { - [ts_builtin_sym_end] = ACTIONS(1150), - [sym_identifier] = ACTIONS(1152), - [anon_sym_POUND] = ACTIONS(1150), - [anon_sym_package] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(1152), - [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_RBRACE] = ACTIONS(1150), - [anon_sym_case] = ACTIONS(1152), - [anon_sym_default] = ACTIONS(1152), - [anon_sym_cast] = ACTIONS(1152), - [anon_sym_DOLLARtype] = ACTIONS(1150), - [anon_sym_in] = ACTIONS(1152), - [anon_sym_LBRACK] = ACTIONS(1150), - [anon_sym_this] = ACTIONS(1152), - [anon_sym_AT] = ACTIONS(1152), - [anon_sym_AT_COLON] = ACTIONS(1150), - [anon_sym_if] = ACTIONS(1152), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1150), - [anon_sym_null] = ACTIONS(1152), - [anon_sym_dynamic] = ACTIONS(1152), - [anon_sym_final] = ACTIONS(1152), - [anon_sym_abstract] = ACTIONS(1152), - [anon_sym_class] = ACTIONS(1152), - [anon_sym_extends] = ACTIONS(1152), - [anon_sym_implements] = ACTIONS(1152), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1152), - [anon_sym_catch] = ACTIONS(1152), - [anon_sym_continue] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(1152), - [anon_sym_enum] = ACTIONS(1152), - [anon_sym_extern] = ACTIONS(1152), - [anon_sym_for] = ACTIONS(1152), - [anon_sym_inline] = ACTIONS(1152), - [anon_sym_macro] = ACTIONS(1152), - [anon_sym_operator] = ACTIONS(1152), - [anon_sym_overload] = ACTIONS(1152), - [anon_sym_override] = ACTIONS(1152), - [anon_sym_private] = ACTIONS(1152), - [anon_sym_public] = ACTIONS(1152), - [anon_sym_return] = ACTIONS(1152), - [anon_sym_static] = ACTIONS(1152), - [anon_sym_try] = ACTIONS(1152), - [anon_sym_untyped] = ACTIONS(1152), - [anon_sym_while] = ACTIONS(1152), - [sym__semicolon] = ACTIONS(1150), + [259] = { + [ts_builtin_sym_end] = ACTIONS(1164), + [sym_identifier] = ACTIONS(1166), + [anon_sym_POUND] = ACTIONS(1164), + [anon_sym_package] = ACTIONS(1166), + [anon_sym_import] = ACTIONS(1166), + [anon_sym_using] = ACTIONS(1166), + [anon_sym_throw] = ACTIONS(1166), + [anon_sym_LPAREN] = ACTIONS(1164), + [anon_sym_switch] = ACTIONS(1166), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_RBRACE] = ACTIONS(1164), + [anon_sym_case] = ACTIONS(1166), + [anon_sym_default] = ACTIONS(1166), + [anon_sym_cast] = ACTIONS(1166), + [anon_sym_DOLLARtype] = ACTIONS(1164), + [anon_sym_in] = ACTIONS(1166), + [anon_sym_LBRACK] = ACTIONS(1164), + [anon_sym_this] = ACTIONS(1166), + [anon_sym_AT] = ACTIONS(1166), + [anon_sym_AT_COLON] = ACTIONS(1164), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_else] = ACTIONS(1166), + [anon_sym_new] = ACTIONS(1166), + [sym__prefixUnaryOperator] = ACTIONS(1166), + [sym__eitherUnaryOperator] = ACTIONS(1164), + [anon_sym_null] = ACTIONS(1166), + [anon_sym_dynamic] = ACTIONS(1166), + [anon_sym_final] = ACTIONS(1166), + [anon_sym_abstract] = ACTIONS(1166), + [anon_sym_class] = ACTIONS(1166), + [anon_sym_extends] = ACTIONS(1166), + [anon_sym_implements] = ACTIONS(1166), + [anon_sym_interface] = ACTIONS(1166), + [anon_sym_typedef] = ACTIONS(1166), + [anon_sym_function] = ACTIONS(1166), + [anon_sym_var] = ACTIONS(1166), + [aux_sym_integer_token1] = ACTIONS(1166), + [aux_sym_integer_token2] = ACTIONS(1164), + [aux_sym_float_token1] = ACTIONS(1166), + [aux_sym_float_token2] = ACTIONS(1164), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [aux_sym_string_token1] = ACTIONS(1164), + [aux_sym_string_token3] = ACTIONS(1164), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1166), + [anon_sym_catch] = ACTIONS(1166), + [anon_sym_continue] = ACTIONS(1166), + [anon_sym_do] = ACTIONS(1166), + [anon_sym_enum] = ACTIONS(1166), + [anon_sym_extern] = ACTIONS(1166), + [anon_sym_for] = ACTIONS(1166), + [anon_sym_inline] = ACTIONS(1166), + [anon_sym_macro] = ACTIONS(1166), + [anon_sym_operator] = ACTIONS(1166), + [anon_sym_overload] = ACTIONS(1166), + [anon_sym_override] = ACTIONS(1166), + [anon_sym_private] = ACTIONS(1166), + [anon_sym_public] = ACTIONS(1166), + [anon_sym_return] = ACTIONS(1166), + [anon_sym_static] = ACTIONS(1166), + [anon_sym_try] = ACTIONS(1166), + [anon_sym_untyped] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1166), + [sym__semicolon] = ACTIONS(1164), }, - [223] = { - [ts_builtin_sym_end] = ACTIONS(1154), - [sym_identifier] = ACTIONS(1156), - [anon_sym_POUND] = ACTIONS(1154), - [anon_sym_package] = ACTIONS(1156), - [anon_sym_import] = ACTIONS(1156), - [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_RBRACE] = ACTIONS(1154), - [anon_sym_case] = ACTIONS(1156), - [anon_sym_default] = ACTIONS(1156), - [anon_sym_cast] = ACTIONS(1156), - [anon_sym_DOLLARtype] = ACTIONS(1154), - [anon_sym_in] = ACTIONS(1156), - [anon_sym_LBRACK] = ACTIONS(1154), - [anon_sym_this] = ACTIONS(1156), - [anon_sym_AT] = ACTIONS(1156), - [anon_sym_AT_COLON] = ACTIONS(1154), - [anon_sym_if] = ACTIONS(1156), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1154), - [anon_sym_null] = ACTIONS(1156), - [anon_sym_dynamic] = ACTIONS(1156), - [anon_sym_final] = ACTIONS(1156), - [anon_sym_abstract] = ACTIONS(1156), - [anon_sym_class] = ACTIONS(1156), - [anon_sym_extends] = ACTIONS(1156), - [anon_sym_implements] = ACTIONS(1156), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_catch] = ACTIONS(1156), - [anon_sym_continue] = ACTIONS(1156), - [anon_sym_do] = ACTIONS(1156), - [anon_sym_enum] = ACTIONS(1156), - [anon_sym_extern] = ACTIONS(1156), - [anon_sym_for] = ACTIONS(1156), - [anon_sym_inline] = ACTIONS(1156), - [anon_sym_macro] = ACTIONS(1156), - [anon_sym_operator] = ACTIONS(1156), - [anon_sym_overload] = ACTIONS(1156), - [anon_sym_override] = ACTIONS(1156), - [anon_sym_private] = ACTIONS(1156), - [anon_sym_public] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1156), - [anon_sym_static] = ACTIONS(1156), - [anon_sym_try] = ACTIONS(1156), - [anon_sym_untyped] = ACTIONS(1156), - [anon_sym_while] = ACTIONS(1156), - [sym__semicolon] = ACTIONS(1154), + [260] = { + [ts_builtin_sym_end] = ACTIONS(1168), + [sym_identifier] = ACTIONS(1170), + [anon_sym_POUND] = ACTIONS(1168), + [anon_sym_package] = ACTIONS(1170), + [anon_sym_import] = ACTIONS(1170), + [anon_sym_using] = ACTIONS(1170), + [anon_sym_throw] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_switch] = ACTIONS(1170), + [anon_sym_LBRACE] = ACTIONS(1168), + [anon_sym_RBRACE] = ACTIONS(1168), + [anon_sym_case] = ACTIONS(1170), + [anon_sym_default] = ACTIONS(1170), + [anon_sym_cast] = ACTIONS(1170), + [anon_sym_DOLLARtype] = ACTIONS(1168), + [anon_sym_in] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_this] = ACTIONS(1170), + [anon_sym_AT] = ACTIONS(1170), + [anon_sym_AT_COLON] = ACTIONS(1168), + [anon_sym_if] = ACTIONS(1170), + [anon_sym_else] = ACTIONS(1170), + [anon_sym_new] = ACTIONS(1170), + [sym__prefixUnaryOperator] = ACTIONS(1170), + [sym__eitherUnaryOperator] = ACTIONS(1168), + [anon_sym_null] = ACTIONS(1170), + [anon_sym_dynamic] = ACTIONS(1170), + [anon_sym_final] = ACTIONS(1170), + [anon_sym_abstract] = ACTIONS(1170), + [anon_sym_class] = ACTIONS(1170), + [anon_sym_extends] = ACTIONS(1170), + [anon_sym_implements] = ACTIONS(1170), + [anon_sym_interface] = ACTIONS(1170), + [anon_sym_typedef] = ACTIONS(1170), + [anon_sym_function] = ACTIONS(1170), + [anon_sym_var] = ACTIONS(1170), + [aux_sym_integer_token1] = ACTIONS(1170), + [aux_sym_integer_token2] = ACTIONS(1168), + [aux_sym_float_token1] = ACTIONS(1170), + [aux_sym_float_token2] = ACTIONS(1168), + [anon_sym_true] = ACTIONS(1170), + [anon_sym_false] = ACTIONS(1170), + [aux_sym_string_token1] = ACTIONS(1168), + [aux_sym_string_token3] = ACTIONS(1168), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1170), + [anon_sym_catch] = ACTIONS(1170), + [anon_sym_continue] = ACTIONS(1170), + [anon_sym_do] = ACTIONS(1170), + [anon_sym_enum] = ACTIONS(1170), + [anon_sym_extern] = ACTIONS(1170), + [anon_sym_for] = ACTIONS(1170), + [anon_sym_inline] = ACTIONS(1170), + [anon_sym_macro] = ACTIONS(1170), + [anon_sym_operator] = ACTIONS(1170), + [anon_sym_overload] = ACTIONS(1170), + [anon_sym_override] = ACTIONS(1170), + [anon_sym_private] = ACTIONS(1170), + [anon_sym_public] = ACTIONS(1170), + [anon_sym_return] = ACTIONS(1170), + [anon_sym_static] = ACTIONS(1170), + [anon_sym_try] = ACTIONS(1170), + [anon_sym_untyped] = ACTIONS(1170), + [anon_sym_while] = ACTIONS(1170), + [sym__semicolon] = ACTIONS(1168), }, - [224] = { - [sym__rhs_expression] = STATE(431), - [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(65), - [sym_range_expression] = STATE(66), - [sym_subscript_expression] = STATE(66), - [sym_member_expression] = STATE(457), - [sym__lhs_expression] = STATE(981), - [sym_builtin_type] = STATE(1008), - [sym_function_type] = STATE(118), - [sym_type] = STATE(1042), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(431), - [sym_operator] = STATE(803), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(467), - [sym_integer] = STATE(467), - [sym_float] = STATE(467), - [sym_bool] = STATE(467), - [sym_string] = STATE(462), - [sym_null] = STATE(467), - [sym_array] = STATE(467), - [sym_map] = STATE(467), - [sym_object] = STATE(467), - [sym_pair] = STATE(467), - [sym_identifier] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(996), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(998), - [anon_sym_Void] = ACTIONS(606), - [anon_sym_Int] = ACTIONS(606), - [anon_sym_Float] = ACTIONS(606), - [anon_sym_Bool] = ACTIONS(606), - [anon_sym_Null] = ACTIONS(606), - [anon_sym_new] = ACTIONS(238), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), + [261] = { + [ts_builtin_sym_end] = ACTIONS(1172), + [sym_identifier] = ACTIONS(1174), + [anon_sym_POUND] = ACTIONS(1172), + [anon_sym_package] = ACTIONS(1174), + [anon_sym_import] = ACTIONS(1174), + [anon_sym_using] = ACTIONS(1174), + [anon_sym_throw] = ACTIONS(1174), + [anon_sym_LPAREN] = ACTIONS(1172), + [anon_sym_switch] = ACTIONS(1174), + [anon_sym_LBRACE] = ACTIONS(1172), + [anon_sym_RBRACE] = ACTIONS(1172), + [anon_sym_case] = ACTIONS(1174), + [anon_sym_default] = ACTIONS(1174), + [anon_sym_cast] = ACTIONS(1174), + [anon_sym_DOLLARtype] = ACTIONS(1172), + [anon_sym_in] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_this] = ACTIONS(1174), + [anon_sym_AT] = ACTIONS(1174), + [anon_sym_AT_COLON] = ACTIONS(1172), + [anon_sym_if] = ACTIONS(1174), + [anon_sym_else] = ACTIONS(1174), + [anon_sym_new] = ACTIONS(1174), + [sym__prefixUnaryOperator] = ACTIONS(1174), + [sym__eitherUnaryOperator] = ACTIONS(1172), + [anon_sym_null] = ACTIONS(1174), + [anon_sym_dynamic] = ACTIONS(1174), + [anon_sym_final] = ACTIONS(1174), + [anon_sym_abstract] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1174), + [anon_sym_extends] = ACTIONS(1174), + [anon_sym_implements] = ACTIONS(1174), + [anon_sym_interface] = ACTIONS(1174), + [anon_sym_typedef] = ACTIONS(1174), + [anon_sym_function] = ACTIONS(1174), + [anon_sym_var] = ACTIONS(1174), + [aux_sym_integer_token1] = ACTIONS(1174), + [aux_sym_integer_token2] = ACTIONS(1172), + [aux_sym_float_token1] = ACTIONS(1174), + [aux_sym_float_token2] = ACTIONS(1172), + [anon_sym_true] = ACTIONS(1174), + [anon_sym_false] = ACTIONS(1174), + [aux_sym_string_token1] = ACTIONS(1172), + [aux_sym_string_token3] = ACTIONS(1172), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1174), + [anon_sym_catch] = ACTIONS(1174), + [anon_sym_continue] = ACTIONS(1174), + [anon_sym_do] = ACTIONS(1174), + [anon_sym_enum] = ACTIONS(1174), + [anon_sym_extern] = ACTIONS(1174), + [anon_sym_for] = ACTIONS(1174), + [anon_sym_inline] = ACTIONS(1174), + [anon_sym_macro] = ACTIONS(1174), + [anon_sym_operator] = ACTIONS(1174), + [anon_sym_overload] = ACTIONS(1174), + [anon_sym_override] = ACTIONS(1174), + [anon_sym_private] = ACTIONS(1174), + [anon_sym_public] = ACTIONS(1174), + [anon_sym_return] = ACTIONS(1174), + [anon_sym_static] = ACTIONS(1174), + [anon_sym_try] = ACTIONS(1174), + [anon_sym_untyped] = ACTIONS(1174), + [anon_sym_while] = ACTIONS(1174), + [sym__semicolon] = ACTIONS(1172), }, - [225] = { - [ts_builtin_sym_end] = ACTIONS(1158), - [sym_identifier] = ACTIONS(1160), - [anon_sym_POUND] = ACTIONS(1158), - [anon_sym_package] = ACTIONS(1160), - [anon_sym_import] = ACTIONS(1160), - [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_RBRACE] = ACTIONS(1158), - [anon_sym_case] = ACTIONS(1160), - [anon_sym_default] = ACTIONS(1160), - [anon_sym_cast] = ACTIONS(1160), - [anon_sym_DOLLARtype] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_this] = ACTIONS(1160), - [anon_sym_AT] = ACTIONS(1160), - [anon_sym_AT_COLON] = ACTIONS(1158), - [anon_sym_if] = ACTIONS(1160), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1158), - [anon_sym_null] = ACTIONS(1160), - [anon_sym_dynamic] = ACTIONS(1160), - [anon_sym_final] = ACTIONS(1160), - [anon_sym_abstract] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(1160), - [anon_sym_extends] = ACTIONS(1160), - [anon_sym_implements] = ACTIONS(1160), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1160), - [anon_sym_catch] = ACTIONS(1160), - [anon_sym_continue] = ACTIONS(1160), - [anon_sym_do] = ACTIONS(1160), - [anon_sym_enum] = ACTIONS(1160), - [anon_sym_extern] = ACTIONS(1160), - [anon_sym_for] = ACTIONS(1160), - [anon_sym_inline] = ACTIONS(1160), - [anon_sym_macro] = ACTIONS(1160), - [anon_sym_operator] = ACTIONS(1160), - [anon_sym_overload] = ACTIONS(1160), - [anon_sym_override] = ACTIONS(1160), - [anon_sym_private] = ACTIONS(1160), - [anon_sym_public] = ACTIONS(1160), - [anon_sym_return] = ACTIONS(1160), - [anon_sym_static] = ACTIONS(1160), - [anon_sym_try] = ACTIONS(1160), - [anon_sym_untyped] = ACTIONS(1160), - [anon_sym_while] = ACTIONS(1160), - [sym__semicolon] = ACTIONS(1158), + [262] = { + [ts_builtin_sym_end] = ACTIONS(1176), + [sym_identifier] = ACTIONS(1178), + [anon_sym_POUND] = ACTIONS(1176), + [anon_sym_package] = ACTIONS(1178), + [anon_sym_import] = ACTIONS(1178), + [anon_sym_using] = ACTIONS(1178), + [anon_sym_throw] = ACTIONS(1178), + [anon_sym_LPAREN] = ACTIONS(1176), + [anon_sym_switch] = ACTIONS(1178), + [anon_sym_LBRACE] = ACTIONS(1176), + [anon_sym_RBRACE] = ACTIONS(1176), + [anon_sym_case] = ACTIONS(1178), + [anon_sym_default] = ACTIONS(1178), + [anon_sym_cast] = ACTIONS(1178), + [anon_sym_DOLLARtype] = ACTIONS(1176), + [anon_sym_in] = ACTIONS(1178), + [anon_sym_LBRACK] = ACTIONS(1176), + [anon_sym_this] = ACTIONS(1178), + [anon_sym_AT] = ACTIONS(1178), + [anon_sym_AT_COLON] = ACTIONS(1176), + [anon_sym_if] = ACTIONS(1178), + [anon_sym_else] = ACTIONS(1178), + [anon_sym_new] = ACTIONS(1178), + [sym__prefixUnaryOperator] = ACTIONS(1178), + [sym__eitherUnaryOperator] = ACTIONS(1176), + [anon_sym_null] = ACTIONS(1178), + [anon_sym_dynamic] = ACTIONS(1178), + [anon_sym_final] = ACTIONS(1178), + [anon_sym_abstract] = ACTIONS(1178), + [anon_sym_class] = ACTIONS(1178), + [anon_sym_extends] = ACTIONS(1178), + [anon_sym_implements] = ACTIONS(1178), + [anon_sym_interface] = ACTIONS(1178), + [anon_sym_typedef] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1178), + [anon_sym_var] = ACTIONS(1178), + [aux_sym_integer_token1] = ACTIONS(1178), + [aux_sym_integer_token2] = ACTIONS(1176), + [aux_sym_float_token1] = ACTIONS(1178), + [aux_sym_float_token2] = ACTIONS(1176), + [anon_sym_true] = ACTIONS(1178), + [anon_sym_false] = ACTIONS(1178), + [aux_sym_string_token1] = ACTIONS(1176), + [aux_sym_string_token3] = ACTIONS(1176), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1178), + [anon_sym_catch] = ACTIONS(1178), + [anon_sym_continue] = ACTIONS(1178), + [anon_sym_do] = ACTIONS(1178), + [anon_sym_enum] = ACTIONS(1178), + [anon_sym_extern] = ACTIONS(1178), + [anon_sym_for] = ACTIONS(1178), + [anon_sym_inline] = ACTIONS(1178), + [anon_sym_macro] = ACTIONS(1178), + [anon_sym_operator] = ACTIONS(1178), + [anon_sym_overload] = ACTIONS(1178), + [anon_sym_override] = ACTIONS(1178), + [anon_sym_private] = ACTIONS(1178), + [anon_sym_public] = ACTIONS(1178), + [anon_sym_return] = ACTIONS(1178), + [anon_sym_static] = ACTIONS(1178), + [anon_sym_try] = ACTIONS(1178), + [anon_sym_untyped] = ACTIONS(1178), + [anon_sym_while] = ACTIONS(1178), + [sym__semicolon] = ACTIONS(1176), }, - [226] = { - [ts_builtin_sym_end] = ACTIONS(1162), - [sym_identifier] = ACTIONS(1164), - [anon_sym_POUND] = ACTIONS(1162), - [anon_sym_package] = ACTIONS(1164), - [anon_sym_import] = ACTIONS(1164), - [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_RBRACE] = ACTIONS(1162), - [anon_sym_case] = ACTIONS(1164), - [anon_sym_default] = ACTIONS(1164), - [anon_sym_cast] = ACTIONS(1164), - [anon_sym_DOLLARtype] = ACTIONS(1162), - [anon_sym_in] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1162), - [anon_sym_this] = ACTIONS(1164), - [anon_sym_AT] = ACTIONS(1164), - [anon_sym_AT_COLON] = ACTIONS(1162), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1162), - [anon_sym_null] = ACTIONS(1164), - [anon_sym_dynamic] = ACTIONS(1164), - [anon_sym_final] = ACTIONS(1164), - [anon_sym_abstract] = ACTIONS(1164), - [anon_sym_class] = ACTIONS(1164), - [anon_sym_extends] = ACTIONS(1164), - [anon_sym_implements] = ACTIONS(1164), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1164), - [anon_sym_catch] = ACTIONS(1164), - [anon_sym_continue] = ACTIONS(1164), - [anon_sym_do] = ACTIONS(1164), - [anon_sym_enum] = ACTIONS(1164), - [anon_sym_extern] = ACTIONS(1164), - [anon_sym_for] = ACTIONS(1164), - [anon_sym_inline] = ACTIONS(1164), - [anon_sym_macro] = ACTIONS(1164), - [anon_sym_operator] = ACTIONS(1164), - [anon_sym_overload] = ACTIONS(1164), - [anon_sym_override] = ACTIONS(1164), - [anon_sym_private] = ACTIONS(1164), - [anon_sym_public] = ACTIONS(1164), - [anon_sym_return] = ACTIONS(1164), - [anon_sym_static] = ACTIONS(1164), - [anon_sym_try] = ACTIONS(1164), - [anon_sym_untyped] = ACTIONS(1164), - [anon_sym_while] = ACTIONS(1164), - [sym__semicolon] = ACTIONS(1162), + [263] = { + [ts_builtin_sym_end] = ACTIONS(640), + [sym_identifier] = ACTIONS(642), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_package] = ACTIONS(642), + [anon_sym_import] = ACTIONS(642), + [anon_sym_using] = ACTIONS(642), + [anon_sym_throw] = ACTIONS(642), + [anon_sym_LPAREN] = ACTIONS(640), + [anon_sym_switch] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(640), + [anon_sym_RBRACE] = ACTIONS(640), + [anon_sym_case] = ACTIONS(642), + [anon_sym_default] = ACTIONS(642), + [anon_sym_cast] = ACTIONS(642), + [anon_sym_DOLLARtype] = ACTIONS(640), + [anon_sym_in] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(640), + [anon_sym_this] = ACTIONS(642), + [anon_sym_AT] = ACTIONS(642), + [anon_sym_AT_COLON] = ACTIONS(640), + [anon_sym_if] = ACTIONS(642), + [anon_sym_else] = ACTIONS(642), + [anon_sym_new] = ACTIONS(642), + [sym__prefixUnaryOperator] = ACTIONS(642), + [sym__eitherUnaryOperator] = ACTIONS(640), + [anon_sym_null] = ACTIONS(642), + [anon_sym_dynamic] = ACTIONS(642), + [anon_sym_final] = ACTIONS(642), + [anon_sym_abstract] = ACTIONS(642), + [anon_sym_class] = ACTIONS(642), + [anon_sym_extends] = ACTIONS(642), + [anon_sym_implements] = ACTIONS(642), + [anon_sym_interface] = ACTIONS(642), + [anon_sym_typedef] = ACTIONS(642), + [anon_sym_function] = ACTIONS(642), + [anon_sym_var] = ACTIONS(642), + [aux_sym_integer_token1] = ACTIONS(642), + [aux_sym_integer_token2] = ACTIONS(640), + [aux_sym_float_token1] = ACTIONS(642), + [aux_sym_float_token2] = ACTIONS(640), + [anon_sym_true] = ACTIONS(642), + [anon_sym_false] = ACTIONS(642), + [aux_sym_string_token1] = ACTIONS(640), + [aux_sym_string_token3] = ACTIONS(640), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(642), + [anon_sym_catch] = ACTIONS(642), + [anon_sym_continue] = ACTIONS(642), + [anon_sym_do] = ACTIONS(642), + [anon_sym_enum] = ACTIONS(642), + [anon_sym_extern] = ACTIONS(642), + [anon_sym_for] = ACTIONS(642), + [anon_sym_inline] = ACTIONS(642), + [anon_sym_macro] = ACTIONS(642), + [anon_sym_operator] = ACTIONS(642), + [anon_sym_overload] = ACTIONS(642), + [anon_sym_override] = ACTIONS(642), + [anon_sym_private] = ACTIONS(642), + [anon_sym_public] = ACTIONS(642), + [anon_sym_return] = ACTIONS(642), + [anon_sym_static] = ACTIONS(642), + [anon_sym_try] = ACTIONS(642), + [anon_sym_untyped] = ACTIONS(642), + [anon_sym_while] = ACTIONS(642), + [sym__semicolon] = ACTIONS(640), }, - [227] = { - [ts_builtin_sym_end] = ACTIONS(1166), - [sym_identifier] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(1166), - [anon_sym_package] = ACTIONS(1168), - [anon_sym_import] = ACTIONS(1168), - [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_RBRACE] = ACTIONS(1166), - [anon_sym_case] = ACTIONS(1168), - [anon_sym_default] = ACTIONS(1168), - [anon_sym_cast] = ACTIONS(1168), - [anon_sym_DOLLARtype] = ACTIONS(1166), - [anon_sym_in] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_this] = ACTIONS(1168), - [anon_sym_AT] = ACTIONS(1168), - [anon_sym_AT_COLON] = ACTIONS(1166), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1166), - [anon_sym_null] = ACTIONS(1168), - [anon_sym_dynamic] = ACTIONS(1168), - [anon_sym_final] = ACTIONS(1168), - [anon_sym_abstract] = ACTIONS(1168), - [anon_sym_class] = ACTIONS(1168), - [anon_sym_extends] = ACTIONS(1168), - [anon_sym_implements] = ACTIONS(1168), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_catch] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_do] = ACTIONS(1168), - [anon_sym_enum] = ACTIONS(1168), - [anon_sym_extern] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_inline] = ACTIONS(1168), - [anon_sym_macro] = ACTIONS(1168), - [anon_sym_operator] = ACTIONS(1168), - [anon_sym_overload] = ACTIONS(1168), - [anon_sym_override] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_try] = ACTIONS(1168), - [anon_sym_untyped] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [sym__semicolon] = ACTIONS(1166), + [264] = { + [ts_builtin_sym_end] = ACTIONS(1180), + [sym_identifier] = ACTIONS(1182), + [anon_sym_POUND] = ACTIONS(1180), + [anon_sym_package] = ACTIONS(1182), + [anon_sym_import] = ACTIONS(1182), + [anon_sym_using] = ACTIONS(1182), + [anon_sym_throw] = ACTIONS(1182), + [anon_sym_LPAREN] = ACTIONS(1180), + [anon_sym_switch] = ACTIONS(1182), + [anon_sym_LBRACE] = ACTIONS(1180), + [anon_sym_RBRACE] = ACTIONS(1180), + [anon_sym_case] = ACTIONS(1182), + [anon_sym_default] = ACTIONS(1182), + [anon_sym_cast] = ACTIONS(1182), + [anon_sym_DOLLARtype] = ACTIONS(1180), + [anon_sym_in] = ACTIONS(1182), + [anon_sym_LBRACK] = ACTIONS(1180), + [anon_sym_this] = ACTIONS(1182), + [anon_sym_AT] = ACTIONS(1182), + [anon_sym_AT_COLON] = ACTIONS(1180), + [anon_sym_if] = ACTIONS(1182), + [anon_sym_else] = ACTIONS(1182), + [anon_sym_new] = ACTIONS(1182), + [sym__prefixUnaryOperator] = ACTIONS(1182), + [sym__eitherUnaryOperator] = ACTIONS(1180), + [anon_sym_null] = ACTIONS(1182), + [anon_sym_dynamic] = ACTIONS(1182), + [anon_sym_final] = ACTIONS(1182), + [anon_sym_abstract] = ACTIONS(1182), + [anon_sym_class] = ACTIONS(1182), + [anon_sym_extends] = ACTIONS(1182), + [anon_sym_implements] = ACTIONS(1182), + [anon_sym_interface] = ACTIONS(1182), + [anon_sym_typedef] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1182), + [anon_sym_var] = ACTIONS(1182), + [aux_sym_integer_token1] = ACTIONS(1182), + [aux_sym_integer_token2] = ACTIONS(1180), + [aux_sym_float_token1] = ACTIONS(1182), + [aux_sym_float_token2] = ACTIONS(1180), + [anon_sym_true] = ACTIONS(1182), + [anon_sym_false] = ACTIONS(1182), + [aux_sym_string_token1] = ACTIONS(1180), + [aux_sym_string_token3] = ACTIONS(1180), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1182), + [anon_sym_catch] = ACTIONS(1182), + [anon_sym_continue] = ACTIONS(1182), + [anon_sym_do] = ACTIONS(1182), + [anon_sym_enum] = ACTIONS(1182), + [anon_sym_extern] = ACTIONS(1182), + [anon_sym_for] = ACTIONS(1182), + [anon_sym_inline] = ACTIONS(1182), + [anon_sym_macro] = ACTIONS(1182), + [anon_sym_operator] = ACTIONS(1182), + [anon_sym_overload] = ACTIONS(1182), + [anon_sym_override] = ACTIONS(1182), + [anon_sym_private] = ACTIONS(1182), + [anon_sym_public] = ACTIONS(1182), + [anon_sym_return] = ACTIONS(1182), + [anon_sym_static] = ACTIONS(1182), + [anon_sym_try] = ACTIONS(1182), + [anon_sym_untyped] = ACTIONS(1182), + [anon_sym_while] = ACTIONS(1182), + [sym__semicolon] = ACTIONS(1180), }, - [228] = { - [ts_builtin_sym_end] = ACTIONS(1170), - [sym_identifier] = ACTIONS(1172), - [anon_sym_POUND] = ACTIONS(1170), - [anon_sym_package] = ACTIONS(1172), - [anon_sym_import] = ACTIONS(1172), - [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_RBRACE] = ACTIONS(1170), - [anon_sym_case] = ACTIONS(1172), - [anon_sym_default] = ACTIONS(1172), - [anon_sym_cast] = ACTIONS(1172), - [anon_sym_DOLLARtype] = ACTIONS(1170), - [anon_sym_in] = ACTIONS(1172), - [anon_sym_LBRACK] = ACTIONS(1170), - [anon_sym_this] = ACTIONS(1172), - [anon_sym_AT] = ACTIONS(1172), - [anon_sym_AT_COLON] = ACTIONS(1170), - [anon_sym_if] = ACTIONS(1172), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1170), - [anon_sym_null] = ACTIONS(1172), - [anon_sym_dynamic] = ACTIONS(1172), - [anon_sym_final] = ACTIONS(1172), - [anon_sym_abstract] = ACTIONS(1172), - [anon_sym_class] = ACTIONS(1172), - [anon_sym_extends] = ACTIONS(1172), - [anon_sym_implements] = ACTIONS(1172), - [anon_sym_interface] = 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), + [265] = { + [ts_builtin_sym_end] = ACTIONS(840), + [sym_identifier] = ACTIONS(842), + [anon_sym_POUND] = ACTIONS(840), + [anon_sym_package] = ACTIONS(842), + [anon_sym_import] = ACTIONS(842), + [anon_sym_using] = ACTIONS(842), + [anon_sym_throw] = ACTIONS(842), + [anon_sym_LPAREN] = ACTIONS(840), + [anon_sym_switch] = ACTIONS(842), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_RBRACE] = ACTIONS(840), + [anon_sym_case] = ACTIONS(842), + [anon_sym_default] = ACTIONS(842), + [anon_sym_cast] = ACTIONS(842), + [anon_sym_DOLLARtype] = ACTIONS(840), + [anon_sym_in] = ACTIONS(842), + [anon_sym_LBRACK] = ACTIONS(840), + [anon_sym_this] = ACTIONS(842), + [anon_sym_AT] = ACTIONS(842), + [anon_sym_AT_COLON] = ACTIONS(840), + [anon_sym_if] = ACTIONS(842), + [anon_sym_else] = ACTIONS(842), + [anon_sym_new] = ACTIONS(842), + [sym__prefixUnaryOperator] = ACTIONS(842), + [sym__eitherUnaryOperator] = ACTIONS(840), + [anon_sym_null] = ACTIONS(842), + [anon_sym_dynamic] = ACTIONS(842), + [anon_sym_final] = ACTIONS(842), + [anon_sym_abstract] = ACTIONS(842), + [anon_sym_class] = ACTIONS(842), + [anon_sym_extends] = ACTIONS(842), + [anon_sym_implements] = ACTIONS(842), + [anon_sym_interface] = ACTIONS(842), + [anon_sym_typedef] = ACTIONS(842), + [anon_sym_function] = ACTIONS(842), + [anon_sym_var] = ACTIONS(842), + [aux_sym_integer_token1] = ACTIONS(842), + [aux_sym_integer_token2] = ACTIONS(840), + [aux_sym_float_token1] = ACTIONS(842), + [aux_sym_float_token2] = ACTIONS(840), + [anon_sym_true] = ACTIONS(842), + [anon_sym_false] = ACTIONS(842), + [aux_sym_string_token1] = ACTIONS(840), + [aux_sym_string_token3] = ACTIONS(840), [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1172), - [anon_sym_catch] = ACTIONS(1172), - [anon_sym_continue] = ACTIONS(1172), - [anon_sym_do] = ACTIONS(1172), - [anon_sym_enum] = ACTIONS(1172), - [anon_sym_extern] = ACTIONS(1172), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_inline] = ACTIONS(1172), - [anon_sym_macro] = ACTIONS(1172), - [anon_sym_operator] = ACTIONS(1172), - [anon_sym_overload] = ACTIONS(1172), - [anon_sym_override] = ACTIONS(1172), - [anon_sym_private] = ACTIONS(1172), - [anon_sym_public] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1172), - [anon_sym_static] = ACTIONS(1172), - [anon_sym_try] = ACTIONS(1172), - [anon_sym_untyped] = ACTIONS(1172), - [anon_sym_while] = ACTIONS(1172), - [sym__semicolon] = ACTIONS(1170), + [anon_sym_break] = ACTIONS(842), + [anon_sym_catch] = ACTIONS(842), + [anon_sym_continue] = ACTIONS(842), + [anon_sym_do] = ACTIONS(842), + [anon_sym_enum] = ACTIONS(842), + [anon_sym_extern] = ACTIONS(842), + [anon_sym_for] = ACTIONS(842), + [anon_sym_inline] = ACTIONS(842), + [anon_sym_macro] = ACTIONS(842), + [anon_sym_operator] = ACTIONS(842), + [anon_sym_overload] = ACTIONS(842), + [anon_sym_override] = ACTIONS(842), + [anon_sym_private] = ACTIONS(842), + [anon_sym_public] = ACTIONS(842), + [anon_sym_return] = ACTIONS(842), + [anon_sym_static] = ACTIONS(842), + [anon_sym_try] = ACTIONS(842), + [anon_sym_untyped] = ACTIONS(842), + [anon_sym_while] = ACTIONS(842), + [sym__semicolon] = ACTIONS(840), }, - [229] = { - [ts_builtin_sym_end] = ACTIONS(1174), - [sym_identifier] = ACTIONS(1176), - [anon_sym_POUND] = ACTIONS(1174), - [anon_sym_package] = ACTIONS(1176), - [anon_sym_import] = ACTIONS(1176), - [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_RBRACE] = ACTIONS(1174), - [anon_sym_case] = ACTIONS(1176), - [anon_sym_default] = ACTIONS(1176), - [anon_sym_cast] = ACTIONS(1176), - [anon_sym_DOLLARtype] = ACTIONS(1174), - [anon_sym_in] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1174), - [anon_sym_this] = ACTIONS(1176), - [anon_sym_AT] = ACTIONS(1176), - [anon_sym_AT_COLON] = ACTIONS(1174), - [anon_sym_if] = ACTIONS(1176), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1174), - [anon_sym_null] = ACTIONS(1176), - [anon_sym_dynamic] = ACTIONS(1176), - [anon_sym_final] = ACTIONS(1176), - [anon_sym_abstract] = ACTIONS(1176), - [anon_sym_class] = ACTIONS(1176), - [anon_sym_extends] = ACTIONS(1176), - [anon_sym_implements] = ACTIONS(1176), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1176), - [anon_sym_catch] = ACTIONS(1176), - [anon_sym_continue] = ACTIONS(1176), - [anon_sym_do] = ACTIONS(1176), - [anon_sym_enum] = ACTIONS(1176), - [anon_sym_extern] = ACTIONS(1176), - [anon_sym_for] = ACTIONS(1176), - [anon_sym_inline] = ACTIONS(1176), - [anon_sym_macro] = ACTIONS(1176), - [anon_sym_operator] = ACTIONS(1176), - [anon_sym_overload] = ACTIONS(1176), - [anon_sym_override] = ACTIONS(1176), - [anon_sym_private] = ACTIONS(1176), - [anon_sym_public] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1176), - [anon_sym_static] = ACTIONS(1176), - [anon_sym_try] = ACTIONS(1176), - [anon_sym_untyped] = ACTIONS(1176), - [anon_sym_while] = ACTIONS(1176), - [sym__semicolon] = ACTIONS(1174), + [266] = { + [ts_builtin_sym_end] = ACTIONS(1184), + [sym_identifier] = ACTIONS(1186), + [anon_sym_POUND] = ACTIONS(1184), + [anon_sym_package] = ACTIONS(1186), + [anon_sym_import] = ACTIONS(1186), + [anon_sym_using] = ACTIONS(1186), + [anon_sym_throw] = ACTIONS(1186), + [anon_sym_LPAREN] = ACTIONS(1184), + [anon_sym_switch] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1184), + [anon_sym_RBRACE] = ACTIONS(1184), + [anon_sym_case] = ACTIONS(1186), + [anon_sym_default] = ACTIONS(1186), + [anon_sym_cast] = ACTIONS(1186), + [anon_sym_DOLLARtype] = ACTIONS(1184), + [anon_sym_in] = ACTIONS(1186), + [anon_sym_LBRACK] = ACTIONS(1184), + [anon_sym_this] = ACTIONS(1186), + [anon_sym_AT] = ACTIONS(1186), + [anon_sym_AT_COLON] = ACTIONS(1184), + [anon_sym_if] = ACTIONS(1186), + [anon_sym_else] = ACTIONS(1186), + [anon_sym_new] = ACTIONS(1186), + [sym__prefixUnaryOperator] = ACTIONS(1186), + [sym__eitherUnaryOperator] = ACTIONS(1184), + [anon_sym_null] = ACTIONS(1186), + [anon_sym_dynamic] = ACTIONS(1186), + [anon_sym_final] = ACTIONS(1186), + [anon_sym_abstract] = ACTIONS(1186), + [anon_sym_class] = ACTIONS(1186), + [anon_sym_extends] = ACTIONS(1186), + [anon_sym_implements] = ACTIONS(1186), + [anon_sym_interface] = ACTIONS(1186), + [anon_sym_typedef] = ACTIONS(1186), + [anon_sym_function] = ACTIONS(1186), + [anon_sym_var] = ACTIONS(1186), + [aux_sym_integer_token1] = ACTIONS(1186), + [aux_sym_integer_token2] = ACTIONS(1184), + [aux_sym_float_token1] = ACTIONS(1186), + [aux_sym_float_token2] = ACTIONS(1184), + [anon_sym_true] = ACTIONS(1186), + [anon_sym_false] = ACTIONS(1186), + [aux_sym_string_token1] = ACTIONS(1184), + [aux_sym_string_token3] = ACTIONS(1184), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1186), + [anon_sym_catch] = ACTIONS(1186), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_do] = ACTIONS(1186), + [anon_sym_enum] = ACTIONS(1186), + [anon_sym_extern] = ACTIONS(1186), + [anon_sym_for] = ACTIONS(1186), + [anon_sym_inline] = ACTIONS(1186), + [anon_sym_macro] = ACTIONS(1186), + [anon_sym_operator] = ACTIONS(1186), + [anon_sym_overload] = ACTIONS(1186), + [anon_sym_override] = ACTIONS(1186), + [anon_sym_private] = ACTIONS(1186), + [anon_sym_public] = ACTIONS(1186), + [anon_sym_return] = ACTIONS(1186), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_try] = ACTIONS(1186), + [anon_sym_untyped] = ACTIONS(1186), + [anon_sym_while] = ACTIONS(1186), + [sym__semicolon] = ACTIONS(1184), }, - [230] = { - [ts_builtin_sym_end] = ACTIONS(1178), - [sym_identifier] = ACTIONS(1180), - [anon_sym_POUND] = ACTIONS(1178), - [anon_sym_package] = ACTIONS(1180), - [anon_sym_import] = ACTIONS(1180), - [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_RBRACE] = ACTIONS(1178), - [anon_sym_case] = ACTIONS(1180), - [anon_sym_default] = ACTIONS(1180), - [anon_sym_cast] = ACTIONS(1180), - [anon_sym_DOLLARtype] = ACTIONS(1178), - [anon_sym_in] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_this] = ACTIONS(1180), - [anon_sym_AT] = ACTIONS(1180), - [anon_sym_AT_COLON] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1180), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1178), - [anon_sym_null] = ACTIONS(1180), - [anon_sym_dynamic] = ACTIONS(1180), - [anon_sym_final] = ACTIONS(1180), - [anon_sym_abstract] = ACTIONS(1180), - [anon_sym_class] = ACTIONS(1180), - [anon_sym_extends] = ACTIONS(1180), - [anon_sym_implements] = ACTIONS(1180), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1180), - [anon_sym_catch] = ACTIONS(1180), - [anon_sym_continue] = ACTIONS(1180), - [anon_sym_do] = ACTIONS(1180), - [anon_sym_enum] = ACTIONS(1180), - [anon_sym_extern] = ACTIONS(1180), - [anon_sym_for] = ACTIONS(1180), - [anon_sym_inline] = ACTIONS(1180), - [anon_sym_macro] = ACTIONS(1180), - [anon_sym_operator] = ACTIONS(1180), - [anon_sym_overload] = ACTIONS(1180), - [anon_sym_override] = ACTIONS(1180), - [anon_sym_private] = ACTIONS(1180), - [anon_sym_public] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1180), - [anon_sym_static] = ACTIONS(1180), - [anon_sym_try] = ACTIONS(1180), - [anon_sym_untyped] = ACTIONS(1180), - [anon_sym_while] = ACTIONS(1180), - [sym__semicolon] = ACTIONS(1178), + [267] = { + [ts_builtin_sym_end] = ACTIONS(1188), + [sym_identifier] = ACTIONS(1190), + [anon_sym_POUND] = ACTIONS(1188), + [anon_sym_package] = ACTIONS(1190), + [anon_sym_import] = ACTIONS(1190), + [anon_sym_using] = ACTIONS(1190), + [anon_sym_throw] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1188), + [anon_sym_switch] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_RBRACE] = ACTIONS(1188), + [anon_sym_case] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_cast] = ACTIONS(1190), + [anon_sym_DOLLARtype] = ACTIONS(1188), + [anon_sym_in] = ACTIONS(1190), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_this] = ACTIONS(1190), + [anon_sym_AT] = ACTIONS(1190), + [anon_sym_AT_COLON] = ACTIONS(1188), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(1190), + [sym__prefixUnaryOperator] = ACTIONS(1190), + [sym__eitherUnaryOperator] = ACTIONS(1188), + [anon_sym_null] = ACTIONS(1190), + [anon_sym_dynamic] = ACTIONS(1190), + [anon_sym_final] = ACTIONS(1190), + [anon_sym_abstract] = ACTIONS(1190), + [anon_sym_class] = ACTIONS(1190), + [anon_sym_extends] = ACTIONS(1190), + [anon_sym_implements] = ACTIONS(1190), + [anon_sym_interface] = ACTIONS(1190), + [anon_sym_typedef] = ACTIONS(1190), + [anon_sym_function] = ACTIONS(1190), + [anon_sym_var] = ACTIONS(1190), + [aux_sym_integer_token1] = ACTIONS(1190), + [aux_sym_integer_token2] = ACTIONS(1188), + [aux_sym_float_token1] = ACTIONS(1190), + [aux_sym_float_token2] = ACTIONS(1188), + [anon_sym_true] = ACTIONS(1190), + [anon_sym_false] = ACTIONS(1190), + [aux_sym_string_token1] = ACTIONS(1188), + [aux_sym_string_token3] = ACTIONS(1188), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_catch] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_do] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym_macro] = ACTIONS(1190), + [anon_sym_operator] = ACTIONS(1190), + [anon_sym_overload] = ACTIONS(1190), + [anon_sym_override] = ACTIONS(1190), + [anon_sym_private] = ACTIONS(1190), + [anon_sym_public] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_try] = ACTIONS(1190), + [anon_sym_untyped] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [sym__semicolon] = ACTIONS(1188), }, - [231] = { - [ts_builtin_sym_end] = ACTIONS(1182), - [sym_identifier] = ACTIONS(1184), - [anon_sym_POUND] = ACTIONS(1182), - [anon_sym_package] = ACTIONS(1184), - [anon_sym_import] = ACTIONS(1184), - [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_RBRACE] = ACTIONS(1182), - [anon_sym_case] = ACTIONS(1184), - [anon_sym_default] = ACTIONS(1184), - [anon_sym_cast] = ACTIONS(1184), - [anon_sym_DOLLARtype] = ACTIONS(1182), - [anon_sym_in] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1182), - [anon_sym_this] = ACTIONS(1184), - [anon_sym_AT] = ACTIONS(1184), - [anon_sym_AT_COLON] = ACTIONS(1182), - [anon_sym_if] = ACTIONS(1184), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1182), - [anon_sym_null] = ACTIONS(1184), - [anon_sym_dynamic] = ACTIONS(1184), - [anon_sym_final] = ACTIONS(1184), - [anon_sym_abstract] = ACTIONS(1184), - [anon_sym_class] = ACTIONS(1184), - [anon_sym_extends] = ACTIONS(1184), - [anon_sym_implements] = ACTIONS(1184), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_catch] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1184), - [anon_sym_do] = ACTIONS(1184), - [anon_sym_enum] = ACTIONS(1184), - [anon_sym_extern] = ACTIONS(1184), - [anon_sym_for] = ACTIONS(1184), - [anon_sym_inline] = ACTIONS(1184), - [anon_sym_macro] = ACTIONS(1184), - [anon_sym_operator] = ACTIONS(1184), - [anon_sym_overload] = ACTIONS(1184), - [anon_sym_override] = ACTIONS(1184), - [anon_sym_private] = ACTIONS(1184), - [anon_sym_public] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1184), - [anon_sym_static] = ACTIONS(1184), - [anon_sym_try] = ACTIONS(1184), - [anon_sym_untyped] = ACTIONS(1184), - [anon_sym_while] = ACTIONS(1184), - [sym__semicolon] = ACTIONS(1182), + [268] = { + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_identifier] = ACTIONS(1194), + [anon_sym_POUND] = ACTIONS(1192), + [anon_sym_package] = ACTIONS(1194), + [anon_sym_import] = ACTIONS(1194), + [anon_sym_using] = ACTIONS(1194), + [anon_sym_throw] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1192), + [anon_sym_switch] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_case] = ACTIONS(1194), + [anon_sym_default] = ACTIONS(1194), + [anon_sym_cast] = ACTIONS(1194), + [anon_sym_DOLLARtype] = ACTIONS(1192), + [anon_sym_in] = ACTIONS(1194), + [anon_sym_LBRACK] = ACTIONS(1192), + [anon_sym_this] = ACTIONS(1194), + [anon_sym_AT] = ACTIONS(1194), + [anon_sym_AT_COLON] = ACTIONS(1192), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_else] = ACTIONS(1194), + [anon_sym_new] = ACTIONS(1194), + [sym__prefixUnaryOperator] = ACTIONS(1194), + [sym__eitherUnaryOperator] = ACTIONS(1192), + [anon_sym_null] = ACTIONS(1194), + [anon_sym_dynamic] = ACTIONS(1194), + [anon_sym_final] = ACTIONS(1194), + [anon_sym_abstract] = ACTIONS(1194), + [anon_sym_class] = ACTIONS(1194), + [anon_sym_extends] = ACTIONS(1194), + [anon_sym_implements] = ACTIONS(1194), + [anon_sym_interface] = ACTIONS(1194), + [anon_sym_typedef] = ACTIONS(1194), + [anon_sym_function] = ACTIONS(1194), + [anon_sym_var] = ACTIONS(1194), + [aux_sym_integer_token1] = ACTIONS(1194), + [aux_sym_integer_token2] = ACTIONS(1192), + [aux_sym_float_token1] = ACTIONS(1194), + [aux_sym_float_token2] = ACTIONS(1192), + [anon_sym_true] = ACTIONS(1194), + [anon_sym_false] = ACTIONS(1194), + [aux_sym_string_token1] = ACTIONS(1192), + [aux_sym_string_token3] = ACTIONS(1192), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1194), + [anon_sym_catch] = ACTIONS(1194), + [anon_sym_continue] = ACTIONS(1194), + [anon_sym_do] = ACTIONS(1194), + [anon_sym_enum] = ACTIONS(1194), + [anon_sym_extern] = ACTIONS(1194), + [anon_sym_for] = ACTIONS(1194), + [anon_sym_inline] = ACTIONS(1194), + [anon_sym_macro] = ACTIONS(1194), + [anon_sym_operator] = ACTIONS(1194), + [anon_sym_overload] = ACTIONS(1194), + [anon_sym_override] = ACTIONS(1194), + [anon_sym_private] = ACTIONS(1194), + [anon_sym_public] = ACTIONS(1194), + [anon_sym_return] = ACTIONS(1194), + [anon_sym_static] = ACTIONS(1194), + [anon_sym_try] = ACTIONS(1194), + [anon_sym_untyped] = ACTIONS(1194), + [anon_sym_while] = ACTIONS(1194), + [sym__semicolon] = ACTIONS(1192), }, - [232] = { - [ts_builtin_sym_end] = ACTIONS(1186), - [sym_identifier] = ACTIONS(1188), - [anon_sym_POUND] = ACTIONS(1186), - [anon_sym_package] = ACTIONS(1188), - [anon_sym_import] = ACTIONS(1188), - [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_RBRACE] = ACTIONS(1186), - [anon_sym_case] = ACTIONS(1188), - [anon_sym_default] = ACTIONS(1188), - [anon_sym_cast] = ACTIONS(1188), - [anon_sym_DOLLARtype] = ACTIONS(1186), - [anon_sym_in] = ACTIONS(1188), - [anon_sym_LBRACK] = ACTIONS(1186), - [anon_sym_this] = ACTIONS(1188), - [anon_sym_AT] = ACTIONS(1188), - [anon_sym_AT_COLON] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1188), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1186), - [anon_sym_null] = ACTIONS(1188), - [anon_sym_dynamic] = ACTIONS(1188), - [anon_sym_final] = ACTIONS(1188), - [anon_sym_abstract] = ACTIONS(1188), - [anon_sym_class] = ACTIONS(1188), - [anon_sym_extends] = ACTIONS(1188), - [anon_sym_implements] = ACTIONS(1188), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1188), - [anon_sym_catch] = ACTIONS(1188), - [anon_sym_continue] = ACTIONS(1188), - [anon_sym_do] = ACTIONS(1188), - [anon_sym_enum] = ACTIONS(1188), - [anon_sym_extern] = ACTIONS(1188), - [anon_sym_for] = ACTIONS(1188), - [anon_sym_inline] = ACTIONS(1188), - [anon_sym_macro] = ACTIONS(1188), - [anon_sym_operator] = ACTIONS(1188), - [anon_sym_overload] = ACTIONS(1188), - [anon_sym_override] = ACTIONS(1188), - [anon_sym_private] = ACTIONS(1188), - [anon_sym_public] = ACTIONS(1188), - [anon_sym_return] = ACTIONS(1188), - [anon_sym_static] = ACTIONS(1188), - [anon_sym_try] = ACTIONS(1188), - [anon_sym_untyped] = ACTIONS(1188), - [anon_sym_while] = ACTIONS(1188), - [sym__semicolon] = ACTIONS(1186), + [269] = { + [ts_builtin_sym_end] = ACTIONS(1196), + [sym_identifier] = ACTIONS(1198), + [anon_sym_POUND] = ACTIONS(1196), + [anon_sym_package] = ACTIONS(1198), + [anon_sym_import] = ACTIONS(1198), + [anon_sym_using] = ACTIONS(1198), + [anon_sym_throw] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1196), + [anon_sym_switch] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_RBRACE] = ACTIONS(1196), + [anon_sym_case] = ACTIONS(1198), + [anon_sym_default] = ACTIONS(1198), + [anon_sym_cast] = ACTIONS(1198), + [anon_sym_DOLLARtype] = ACTIONS(1196), + [anon_sym_in] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_this] = ACTIONS(1198), + [anon_sym_AT] = ACTIONS(1198), + [anon_sym_AT_COLON] = ACTIONS(1196), + [anon_sym_if] = ACTIONS(1198), + [anon_sym_else] = ACTIONS(1198), + [anon_sym_new] = ACTIONS(1198), + [sym__prefixUnaryOperator] = ACTIONS(1198), + [sym__eitherUnaryOperator] = ACTIONS(1196), + [anon_sym_null] = ACTIONS(1198), + [anon_sym_dynamic] = ACTIONS(1198), + [anon_sym_final] = ACTIONS(1198), + [anon_sym_abstract] = ACTIONS(1198), + [anon_sym_class] = ACTIONS(1198), + [anon_sym_extends] = ACTIONS(1198), + [anon_sym_implements] = ACTIONS(1198), + [anon_sym_interface] = ACTIONS(1198), + [anon_sym_typedef] = ACTIONS(1198), + [anon_sym_function] = ACTIONS(1198), + [anon_sym_var] = ACTIONS(1198), + [aux_sym_integer_token1] = ACTIONS(1198), + [aux_sym_integer_token2] = ACTIONS(1196), + [aux_sym_float_token1] = ACTIONS(1198), + [aux_sym_float_token2] = ACTIONS(1196), + [anon_sym_true] = ACTIONS(1198), + [anon_sym_false] = ACTIONS(1198), + [aux_sym_string_token1] = ACTIONS(1196), + [aux_sym_string_token3] = ACTIONS(1196), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1198), + [anon_sym_catch] = ACTIONS(1198), + [anon_sym_continue] = ACTIONS(1198), + [anon_sym_do] = ACTIONS(1198), + [anon_sym_enum] = ACTIONS(1198), + [anon_sym_extern] = ACTIONS(1198), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_inline] = ACTIONS(1198), + [anon_sym_macro] = ACTIONS(1198), + [anon_sym_operator] = ACTIONS(1198), + [anon_sym_overload] = ACTIONS(1198), + [anon_sym_override] = ACTIONS(1198), + [anon_sym_private] = ACTIONS(1198), + [anon_sym_public] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(1198), + [anon_sym_static] = ACTIONS(1198), + [anon_sym_try] = ACTIONS(1198), + [anon_sym_untyped] = ACTIONS(1198), + [anon_sym_while] = ACTIONS(1198), + [sym__semicolon] = ACTIONS(1196), }, - [233] = { - [ts_builtin_sym_end] = ACTIONS(1190), - [sym_identifier] = ACTIONS(1192), - [anon_sym_POUND] = ACTIONS(1190), - [anon_sym_package] = ACTIONS(1192), - [anon_sym_import] = ACTIONS(1192), - [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_RBRACE] = ACTIONS(1190), - [anon_sym_case] = ACTIONS(1192), - [anon_sym_default] = ACTIONS(1192), - [anon_sym_cast] = ACTIONS(1192), - [anon_sym_DOLLARtype] = ACTIONS(1190), - [anon_sym_in] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1190), - [anon_sym_this] = ACTIONS(1192), - [anon_sym_AT] = ACTIONS(1192), - [anon_sym_AT_COLON] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1192), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1190), - [anon_sym_null] = ACTIONS(1192), - [anon_sym_dynamic] = ACTIONS(1192), - [anon_sym_final] = ACTIONS(1192), - [anon_sym_abstract] = ACTIONS(1192), - [anon_sym_class] = ACTIONS(1192), - [anon_sym_extends] = ACTIONS(1192), - [anon_sym_implements] = ACTIONS(1192), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1192), - [anon_sym_catch] = ACTIONS(1192), - [anon_sym_continue] = ACTIONS(1192), - [anon_sym_do] = ACTIONS(1192), - [anon_sym_enum] = ACTIONS(1192), - [anon_sym_extern] = ACTIONS(1192), - [anon_sym_for] = ACTIONS(1192), - [anon_sym_inline] = ACTIONS(1192), - [anon_sym_macro] = ACTIONS(1192), - [anon_sym_operator] = ACTIONS(1192), - [anon_sym_overload] = ACTIONS(1192), - [anon_sym_override] = ACTIONS(1192), - [anon_sym_private] = ACTIONS(1192), - [anon_sym_public] = ACTIONS(1192), - [anon_sym_return] = ACTIONS(1192), - [anon_sym_static] = ACTIONS(1192), - [anon_sym_try] = ACTIONS(1192), - [anon_sym_untyped] = ACTIONS(1192), - [anon_sym_while] = ACTIONS(1192), - [sym__semicolon] = ACTIONS(1190), + [270] = { + [ts_builtin_sym_end] = ACTIONS(1200), + [sym_identifier] = ACTIONS(1202), + [anon_sym_POUND] = ACTIONS(1200), + [anon_sym_package] = ACTIONS(1202), + [anon_sym_import] = ACTIONS(1202), + [anon_sym_using] = ACTIONS(1202), + [anon_sym_throw] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1200), + [anon_sym_switch] = ACTIONS(1202), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_RBRACE] = ACTIONS(1200), + [anon_sym_case] = ACTIONS(1202), + [anon_sym_default] = ACTIONS(1202), + [anon_sym_cast] = ACTIONS(1202), + [anon_sym_DOLLARtype] = ACTIONS(1200), + [anon_sym_in] = ACTIONS(1202), + [anon_sym_LBRACK] = ACTIONS(1200), + [anon_sym_this] = ACTIONS(1202), + [anon_sym_AT] = ACTIONS(1202), + [anon_sym_AT_COLON] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(1202), + [anon_sym_else] = ACTIONS(1202), + [anon_sym_new] = ACTIONS(1202), + [sym__prefixUnaryOperator] = ACTIONS(1202), + [sym__eitherUnaryOperator] = ACTIONS(1200), + [anon_sym_null] = ACTIONS(1202), + [anon_sym_dynamic] = ACTIONS(1202), + [anon_sym_final] = ACTIONS(1202), + [anon_sym_abstract] = ACTIONS(1202), + [anon_sym_class] = ACTIONS(1202), + [anon_sym_extends] = ACTIONS(1202), + [anon_sym_implements] = ACTIONS(1202), + [anon_sym_interface] = ACTIONS(1202), + [anon_sym_typedef] = ACTIONS(1202), + [anon_sym_function] = ACTIONS(1202), + [anon_sym_var] = ACTIONS(1202), + [aux_sym_integer_token1] = ACTIONS(1202), + [aux_sym_integer_token2] = ACTIONS(1200), + [aux_sym_float_token1] = ACTIONS(1202), + [aux_sym_float_token2] = ACTIONS(1200), + [anon_sym_true] = ACTIONS(1202), + [anon_sym_false] = ACTIONS(1202), + [aux_sym_string_token1] = ACTIONS(1200), + [aux_sym_string_token3] = ACTIONS(1200), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1202), + [anon_sym_catch] = ACTIONS(1202), + [anon_sym_continue] = ACTIONS(1202), + [anon_sym_do] = ACTIONS(1202), + [anon_sym_enum] = ACTIONS(1202), + [anon_sym_extern] = ACTIONS(1202), + [anon_sym_for] = ACTIONS(1202), + [anon_sym_inline] = ACTIONS(1202), + [anon_sym_macro] = ACTIONS(1202), + [anon_sym_operator] = ACTIONS(1202), + [anon_sym_overload] = ACTIONS(1202), + [anon_sym_override] = ACTIONS(1202), + [anon_sym_private] = ACTIONS(1202), + [anon_sym_public] = ACTIONS(1202), + [anon_sym_return] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1202), + [anon_sym_try] = ACTIONS(1202), + [anon_sym_untyped] = ACTIONS(1202), + [anon_sym_while] = ACTIONS(1202), + [sym__semicolon] = ACTIONS(1200), }, - [234] = { - [ts_builtin_sym_end] = ACTIONS(1194), - [sym_identifier] = ACTIONS(1196), - [anon_sym_POUND] = ACTIONS(1194), - [anon_sym_package] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(1196), - [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_RBRACE] = ACTIONS(1194), - [anon_sym_case] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_cast] = ACTIONS(1196), - [anon_sym_DOLLARtype] = ACTIONS(1194), - [anon_sym_in] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1194), - [anon_sym_this] = ACTIONS(1196), - [anon_sym_AT] = ACTIONS(1196), - [anon_sym_AT_COLON] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1194), - [anon_sym_null] = ACTIONS(1196), - [anon_sym_dynamic] = ACTIONS(1196), - [anon_sym_final] = ACTIONS(1196), - [anon_sym_abstract] = ACTIONS(1196), - [anon_sym_class] = ACTIONS(1196), - [anon_sym_extends] = ACTIONS(1196), - [anon_sym_implements] = ACTIONS(1196), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_catch] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_do] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_inline] = ACTIONS(1196), - [anon_sym_macro] = ACTIONS(1196), - [anon_sym_operator] = ACTIONS(1196), - [anon_sym_overload] = ACTIONS(1196), - [anon_sym_override] = ACTIONS(1196), - [anon_sym_private] = ACTIONS(1196), - [anon_sym_public] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_try] = ACTIONS(1196), - [anon_sym_untyped] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [sym__semicolon] = ACTIONS(1194), + [271] = { + [ts_builtin_sym_end] = ACTIONS(1204), + [sym_identifier] = ACTIONS(1206), + [anon_sym_POUND] = ACTIONS(1204), + [anon_sym_package] = ACTIONS(1206), + [anon_sym_import] = ACTIONS(1206), + [anon_sym_using] = ACTIONS(1206), + [anon_sym_throw] = ACTIONS(1206), + [anon_sym_LPAREN] = ACTIONS(1204), + [anon_sym_switch] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(1204), + [anon_sym_RBRACE] = ACTIONS(1204), + [anon_sym_case] = ACTIONS(1206), + [anon_sym_default] = ACTIONS(1206), + [anon_sym_cast] = ACTIONS(1206), + [anon_sym_DOLLARtype] = ACTIONS(1204), + [anon_sym_in] = ACTIONS(1206), + [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_this] = ACTIONS(1206), + [anon_sym_AT] = ACTIONS(1206), + [anon_sym_AT_COLON] = ACTIONS(1204), + [anon_sym_if] = ACTIONS(1206), + [anon_sym_else] = ACTIONS(1206), + [anon_sym_new] = ACTIONS(1206), + [sym__prefixUnaryOperator] = ACTIONS(1206), + [sym__eitherUnaryOperator] = ACTIONS(1204), + [anon_sym_null] = ACTIONS(1206), + [anon_sym_dynamic] = ACTIONS(1206), + [anon_sym_final] = ACTIONS(1206), + [anon_sym_abstract] = ACTIONS(1206), + [anon_sym_class] = ACTIONS(1206), + [anon_sym_extends] = ACTIONS(1206), + [anon_sym_implements] = ACTIONS(1206), + [anon_sym_interface] = ACTIONS(1206), + [anon_sym_typedef] = ACTIONS(1206), + [anon_sym_function] = ACTIONS(1206), + [anon_sym_var] = ACTIONS(1206), + [aux_sym_integer_token1] = ACTIONS(1206), + [aux_sym_integer_token2] = ACTIONS(1204), + [aux_sym_float_token1] = ACTIONS(1206), + [aux_sym_float_token2] = ACTIONS(1204), + [anon_sym_true] = ACTIONS(1206), + [anon_sym_false] = ACTIONS(1206), + [aux_sym_string_token1] = ACTIONS(1204), + [aux_sym_string_token3] = ACTIONS(1204), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1206), + [anon_sym_catch] = ACTIONS(1206), + [anon_sym_continue] = ACTIONS(1206), + [anon_sym_do] = ACTIONS(1206), + [anon_sym_enum] = ACTIONS(1206), + [anon_sym_extern] = ACTIONS(1206), + [anon_sym_for] = ACTIONS(1206), + [anon_sym_inline] = ACTIONS(1206), + [anon_sym_macro] = ACTIONS(1206), + [anon_sym_operator] = ACTIONS(1206), + [anon_sym_overload] = ACTIONS(1206), + [anon_sym_override] = ACTIONS(1206), + [anon_sym_private] = ACTIONS(1206), + [anon_sym_public] = ACTIONS(1206), + [anon_sym_return] = ACTIONS(1206), + [anon_sym_static] = ACTIONS(1206), + [anon_sym_try] = ACTIONS(1206), + [anon_sym_untyped] = ACTIONS(1206), + [anon_sym_while] = ACTIONS(1206), + [sym__semicolon] = ACTIONS(1204), }, - [235] = { - [ts_builtin_sym_end] = ACTIONS(1198), - [sym_identifier] = ACTIONS(1200), - [anon_sym_POUND] = ACTIONS(1198), - [anon_sym_package] = ACTIONS(1200), - [anon_sym_import] = ACTIONS(1200), - [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_RBRACE] = ACTIONS(1198), - [anon_sym_case] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_cast] = ACTIONS(1200), - [anon_sym_DOLLARtype] = ACTIONS(1198), - [anon_sym_in] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(1198), - [anon_sym_this] = ACTIONS(1200), - [anon_sym_AT] = ACTIONS(1200), - [anon_sym_AT_COLON] = ACTIONS(1198), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1198), - [anon_sym_null] = ACTIONS(1200), - [anon_sym_dynamic] = ACTIONS(1200), - [anon_sym_final] = ACTIONS(1200), - [anon_sym_abstract] = ACTIONS(1200), - [anon_sym_class] = ACTIONS(1200), - [anon_sym_extends] = ACTIONS(1200), - [anon_sym_implements] = ACTIONS(1200), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_catch] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_do] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_inline] = ACTIONS(1200), - [anon_sym_macro] = ACTIONS(1200), - [anon_sym_operator] = ACTIONS(1200), - [anon_sym_overload] = ACTIONS(1200), - [anon_sym_override] = ACTIONS(1200), - [anon_sym_private] = ACTIONS(1200), - [anon_sym_public] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_try] = ACTIONS(1200), - [anon_sym_untyped] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [sym__semicolon] = ACTIONS(1198), + [272] = { + [ts_builtin_sym_end] = ACTIONS(1208), + [sym_identifier] = ACTIONS(1210), + [anon_sym_POUND] = ACTIONS(1208), + [anon_sym_package] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(1210), + [anon_sym_using] = ACTIONS(1210), + [anon_sym_throw] = ACTIONS(1210), + [anon_sym_LPAREN] = ACTIONS(1208), + [anon_sym_switch] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(1208), + [anon_sym_RBRACE] = ACTIONS(1208), + [anon_sym_case] = ACTIONS(1210), + [anon_sym_default] = ACTIONS(1210), + [anon_sym_cast] = ACTIONS(1210), + [anon_sym_DOLLARtype] = ACTIONS(1208), + [anon_sym_in] = ACTIONS(1210), + [anon_sym_LBRACK] = ACTIONS(1208), + [anon_sym_this] = ACTIONS(1210), + [anon_sym_AT] = ACTIONS(1210), + [anon_sym_AT_COLON] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1210), + [anon_sym_else] = ACTIONS(1210), + [anon_sym_new] = ACTIONS(1210), + [sym__prefixUnaryOperator] = ACTIONS(1210), + [sym__eitherUnaryOperator] = ACTIONS(1208), + [anon_sym_null] = ACTIONS(1210), + [anon_sym_dynamic] = ACTIONS(1210), + [anon_sym_final] = ACTIONS(1210), + [anon_sym_abstract] = ACTIONS(1210), + [anon_sym_class] = ACTIONS(1210), + [anon_sym_extends] = ACTIONS(1210), + [anon_sym_implements] = ACTIONS(1210), + [anon_sym_interface] = ACTIONS(1210), + [anon_sym_typedef] = ACTIONS(1210), + [anon_sym_function] = ACTIONS(1210), + [anon_sym_var] = ACTIONS(1210), + [aux_sym_integer_token1] = ACTIONS(1210), + [aux_sym_integer_token2] = ACTIONS(1208), + [aux_sym_float_token1] = ACTIONS(1210), + [aux_sym_float_token2] = ACTIONS(1208), + [anon_sym_true] = ACTIONS(1210), + [anon_sym_false] = ACTIONS(1210), + [aux_sym_string_token1] = ACTIONS(1208), + [aux_sym_string_token3] = ACTIONS(1208), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1210), + [anon_sym_catch] = ACTIONS(1210), + [anon_sym_continue] = ACTIONS(1210), + [anon_sym_do] = ACTIONS(1210), + [anon_sym_enum] = ACTIONS(1210), + [anon_sym_extern] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(1210), + [anon_sym_inline] = ACTIONS(1210), + [anon_sym_macro] = ACTIONS(1210), + [anon_sym_operator] = ACTIONS(1210), + [anon_sym_overload] = ACTIONS(1210), + [anon_sym_override] = ACTIONS(1210), + [anon_sym_private] = ACTIONS(1210), + [anon_sym_public] = ACTIONS(1210), + [anon_sym_return] = ACTIONS(1210), + [anon_sym_static] = ACTIONS(1210), + [anon_sym_try] = ACTIONS(1210), + [anon_sym_untyped] = ACTIONS(1210), + [anon_sym_while] = ACTIONS(1210), + [sym__semicolon] = ACTIONS(1208), }, - [236] = { - [ts_builtin_sym_end] = ACTIONS(1202), - [sym_identifier] = ACTIONS(1204), - [anon_sym_POUND] = ACTIONS(1202), - [anon_sym_package] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(1204), - [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_RBRACE] = ACTIONS(1202), - [anon_sym_case] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_cast] = ACTIONS(1204), - [anon_sym_DOLLARtype] = ACTIONS(1202), - [anon_sym_in] = ACTIONS(1204), - [anon_sym_LBRACK] = ACTIONS(1202), - [anon_sym_this] = ACTIONS(1204), - [anon_sym_AT] = ACTIONS(1204), - [anon_sym_AT_COLON] = ACTIONS(1202), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1202), - [anon_sym_null] = ACTIONS(1204), - [anon_sym_dynamic] = ACTIONS(1204), - [anon_sym_final] = ACTIONS(1204), - [anon_sym_abstract] = ACTIONS(1204), - [anon_sym_class] = ACTIONS(1204), - [anon_sym_extends] = ACTIONS(1204), - [anon_sym_implements] = ACTIONS(1204), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_catch] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_inline] = ACTIONS(1204), - [anon_sym_macro] = ACTIONS(1204), - [anon_sym_operator] = ACTIONS(1204), - [anon_sym_overload] = ACTIONS(1204), - [anon_sym_override] = ACTIONS(1204), - [anon_sym_private] = ACTIONS(1204), - [anon_sym_public] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_try] = ACTIONS(1204), - [anon_sym_untyped] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [sym__semicolon] = ACTIONS(1202), + [273] = { + [ts_builtin_sym_end] = ACTIONS(1212), + [sym_identifier] = ACTIONS(1214), + [anon_sym_POUND] = ACTIONS(1212), + [anon_sym_package] = ACTIONS(1214), + [anon_sym_import] = ACTIONS(1214), + [anon_sym_using] = ACTIONS(1214), + [anon_sym_throw] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_RBRACE] = ACTIONS(1212), + [anon_sym_case] = ACTIONS(1214), + [anon_sym_default] = ACTIONS(1214), + [anon_sym_cast] = ACTIONS(1214), + [anon_sym_DOLLARtype] = ACTIONS(1212), + [anon_sym_in] = ACTIONS(1214), + [anon_sym_LBRACK] = ACTIONS(1212), + [anon_sym_this] = ACTIONS(1214), + [anon_sym_AT] = ACTIONS(1214), + [anon_sym_AT_COLON] = ACTIONS(1212), + [anon_sym_if] = ACTIONS(1214), + [anon_sym_else] = ACTIONS(1214), + [anon_sym_new] = ACTIONS(1214), + [sym__prefixUnaryOperator] = ACTIONS(1214), + [sym__eitherUnaryOperator] = ACTIONS(1212), + [anon_sym_null] = ACTIONS(1214), + [anon_sym_dynamic] = ACTIONS(1214), + [anon_sym_final] = ACTIONS(1214), + [anon_sym_abstract] = ACTIONS(1214), + [anon_sym_class] = ACTIONS(1214), + [anon_sym_extends] = ACTIONS(1214), + [anon_sym_implements] = ACTIONS(1214), + [anon_sym_interface] = ACTIONS(1214), + [anon_sym_typedef] = ACTIONS(1214), + [anon_sym_function] = ACTIONS(1214), + [anon_sym_var] = ACTIONS(1214), + [aux_sym_integer_token1] = ACTIONS(1214), + [aux_sym_integer_token2] = ACTIONS(1212), + [aux_sym_float_token1] = ACTIONS(1214), + [aux_sym_float_token2] = ACTIONS(1212), + [anon_sym_true] = ACTIONS(1214), + [anon_sym_false] = ACTIONS(1214), + [aux_sym_string_token1] = ACTIONS(1212), + [aux_sym_string_token3] = ACTIONS(1212), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1214), + [anon_sym_catch] = ACTIONS(1214), + [anon_sym_continue] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(1214), + [anon_sym_enum] = ACTIONS(1214), + [anon_sym_extern] = ACTIONS(1214), + [anon_sym_for] = ACTIONS(1214), + [anon_sym_inline] = ACTIONS(1214), + [anon_sym_macro] = ACTIONS(1214), + [anon_sym_operator] = ACTIONS(1214), + [anon_sym_overload] = ACTIONS(1214), + [anon_sym_override] = ACTIONS(1214), + [anon_sym_private] = ACTIONS(1214), + [anon_sym_public] = ACTIONS(1214), + [anon_sym_return] = ACTIONS(1214), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_try] = ACTIONS(1214), + [anon_sym_untyped] = ACTIONS(1214), + [anon_sym_while] = ACTIONS(1214), + [sym__semicolon] = ACTIONS(1212), }, - [237] = { - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1208), - [anon_sym_POUND] = ACTIONS(1206), - [anon_sym_package] = ACTIONS(1208), - [anon_sym_import] = ACTIONS(1208), - [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_RBRACE] = ACTIONS(1206), - [anon_sym_case] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_cast] = ACTIONS(1208), - [anon_sym_DOLLARtype] = ACTIONS(1206), - [anon_sym_in] = ACTIONS(1208), - [anon_sym_LBRACK] = ACTIONS(1206), - [anon_sym_this] = ACTIONS(1208), - [anon_sym_AT] = ACTIONS(1208), - [anon_sym_AT_COLON] = ACTIONS(1206), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1206), - [anon_sym_null] = ACTIONS(1208), - [anon_sym_dynamic] = ACTIONS(1208), - [anon_sym_final] = ACTIONS(1208), - [anon_sym_abstract] = ACTIONS(1208), - [anon_sym_class] = ACTIONS(1208), - [anon_sym_extends] = ACTIONS(1208), - [anon_sym_implements] = ACTIONS(1208), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_catch] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym_macro] = ACTIONS(1208), - [anon_sym_operator] = ACTIONS(1208), - [anon_sym_overload] = ACTIONS(1208), - [anon_sym_override] = ACTIONS(1208), - [anon_sym_private] = ACTIONS(1208), - [anon_sym_public] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_try] = ACTIONS(1208), - [anon_sym_untyped] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [sym__semicolon] = ACTIONS(1206), + [274] = { + [ts_builtin_sym_end] = ACTIONS(1216), + [sym_identifier] = ACTIONS(1218), + [anon_sym_POUND] = ACTIONS(1216), + [anon_sym_package] = ACTIONS(1218), + [anon_sym_import] = ACTIONS(1218), + [anon_sym_using] = ACTIONS(1218), + [anon_sym_throw] = ACTIONS(1218), + [anon_sym_LPAREN] = ACTIONS(1216), + [anon_sym_switch] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(1216), + [anon_sym_RBRACE] = ACTIONS(1216), + [anon_sym_case] = ACTIONS(1218), + [anon_sym_default] = ACTIONS(1218), + [anon_sym_cast] = ACTIONS(1218), + [anon_sym_DOLLARtype] = ACTIONS(1216), + [anon_sym_in] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1216), + [anon_sym_this] = ACTIONS(1218), + [anon_sym_AT] = ACTIONS(1218), + [anon_sym_AT_COLON] = ACTIONS(1216), + [anon_sym_if] = ACTIONS(1218), + [anon_sym_else] = ACTIONS(1218), + [anon_sym_new] = ACTIONS(1218), + [sym__prefixUnaryOperator] = ACTIONS(1218), + [sym__eitherUnaryOperator] = ACTIONS(1216), + [anon_sym_null] = ACTIONS(1218), + [anon_sym_dynamic] = ACTIONS(1218), + [anon_sym_final] = ACTIONS(1218), + [anon_sym_abstract] = ACTIONS(1218), + [anon_sym_class] = ACTIONS(1218), + [anon_sym_extends] = ACTIONS(1218), + [anon_sym_implements] = ACTIONS(1218), + [anon_sym_interface] = ACTIONS(1218), + [anon_sym_typedef] = ACTIONS(1218), + [anon_sym_function] = ACTIONS(1218), + [anon_sym_var] = ACTIONS(1218), + [aux_sym_integer_token1] = ACTIONS(1218), + [aux_sym_integer_token2] = ACTIONS(1216), + [aux_sym_float_token1] = ACTIONS(1218), + [aux_sym_float_token2] = ACTIONS(1216), + [anon_sym_true] = ACTIONS(1218), + [anon_sym_false] = ACTIONS(1218), + [aux_sym_string_token1] = ACTIONS(1216), + [aux_sym_string_token3] = ACTIONS(1216), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1218), + [anon_sym_catch] = ACTIONS(1218), + [anon_sym_continue] = ACTIONS(1218), + [anon_sym_do] = ACTIONS(1218), + [anon_sym_enum] = ACTIONS(1218), + [anon_sym_extern] = ACTIONS(1218), + [anon_sym_for] = ACTIONS(1218), + [anon_sym_inline] = ACTIONS(1218), + [anon_sym_macro] = ACTIONS(1218), + [anon_sym_operator] = ACTIONS(1218), + [anon_sym_overload] = ACTIONS(1218), + [anon_sym_override] = ACTIONS(1218), + [anon_sym_private] = ACTIONS(1218), + [anon_sym_public] = ACTIONS(1218), + [anon_sym_return] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1218), + [anon_sym_try] = ACTIONS(1218), + [anon_sym_untyped] = ACTIONS(1218), + [anon_sym_while] = ACTIONS(1218), + [sym__semicolon] = ACTIONS(1216), }, - [238] = { - [ts_builtin_sym_end] = ACTIONS(1210), - [sym_identifier] = ACTIONS(1212), - [anon_sym_POUND] = ACTIONS(1210), - [anon_sym_package] = ACTIONS(1212), - [anon_sym_import] = ACTIONS(1212), - [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_RBRACE] = ACTIONS(1210), - [anon_sym_case] = ACTIONS(1212), - [anon_sym_default] = ACTIONS(1212), - [anon_sym_cast] = ACTIONS(1212), - [anon_sym_DOLLARtype] = ACTIONS(1210), - [anon_sym_in] = ACTIONS(1212), - [anon_sym_LBRACK] = ACTIONS(1210), - [anon_sym_this] = ACTIONS(1212), - [anon_sym_AT] = ACTIONS(1212), - [anon_sym_AT_COLON] = ACTIONS(1210), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1210), - [anon_sym_null] = ACTIONS(1212), - [anon_sym_dynamic] = ACTIONS(1212), - [anon_sym_final] = ACTIONS(1212), - [anon_sym_abstract] = ACTIONS(1212), - [anon_sym_class] = ACTIONS(1212), - [anon_sym_extends] = ACTIONS(1212), - [anon_sym_implements] = ACTIONS(1212), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_catch] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_inline] = ACTIONS(1212), - [anon_sym_macro] = ACTIONS(1212), - [anon_sym_operator] = ACTIONS(1212), - [anon_sym_overload] = ACTIONS(1212), - [anon_sym_override] = ACTIONS(1212), - [anon_sym_private] = ACTIONS(1212), - [anon_sym_public] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_try] = ACTIONS(1212), - [anon_sym_untyped] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [sym__semicolon] = ACTIONS(1210), + [275] = { + [ts_builtin_sym_end] = ACTIONS(1220), + [sym_identifier] = ACTIONS(1222), + [anon_sym_POUND] = ACTIONS(1220), + [anon_sym_package] = ACTIONS(1222), + [anon_sym_import] = ACTIONS(1222), + [anon_sym_using] = ACTIONS(1222), + [anon_sym_throw] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1220), + [anon_sym_switch] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1220), + [anon_sym_RBRACE] = ACTIONS(1220), + [anon_sym_case] = ACTIONS(1222), + [anon_sym_default] = ACTIONS(1222), + [anon_sym_cast] = ACTIONS(1222), + [anon_sym_DOLLARtype] = ACTIONS(1220), + [anon_sym_in] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(1220), + [anon_sym_this] = ACTIONS(1222), + [anon_sym_AT] = ACTIONS(1222), + [anon_sym_AT_COLON] = ACTIONS(1220), + [anon_sym_if] = ACTIONS(1222), + [anon_sym_else] = ACTIONS(1222), + [anon_sym_new] = ACTIONS(1222), + [sym__prefixUnaryOperator] = ACTIONS(1222), + [sym__eitherUnaryOperator] = ACTIONS(1220), + [anon_sym_null] = ACTIONS(1222), + [anon_sym_dynamic] = ACTIONS(1222), + [anon_sym_final] = ACTIONS(1222), + [anon_sym_abstract] = ACTIONS(1222), + [anon_sym_class] = ACTIONS(1222), + [anon_sym_extends] = ACTIONS(1222), + [anon_sym_implements] = ACTIONS(1222), + [anon_sym_interface] = ACTIONS(1222), + [anon_sym_typedef] = ACTIONS(1222), + [anon_sym_function] = ACTIONS(1222), + [anon_sym_var] = ACTIONS(1222), + [aux_sym_integer_token1] = ACTIONS(1222), + [aux_sym_integer_token2] = ACTIONS(1220), + [aux_sym_float_token1] = ACTIONS(1222), + [aux_sym_float_token2] = ACTIONS(1220), + [anon_sym_true] = ACTIONS(1222), + [anon_sym_false] = ACTIONS(1222), + [aux_sym_string_token1] = ACTIONS(1220), + [aux_sym_string_token3] = ACTIONS(1220), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1222), + [anon_sym_catch] = ACTIONS(1222), + [anon_sym_continue] = ACTIONS(1222), + [anon_sym_do] = ACTIONS(1222), + [anon_sym_enum] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1222), + [anon_sym_for] = ACTIONS(1222), + [anon_sym_inline] = ACTIONS(1222), + [anon_sym_macro] = ACTIONS(1222), + [anon_sym_operator] = ACTIONS(1222), + [anon_sym_overload] = ACTIONS(1222), + [anon_sym_override] = ACTIONS(1222), + [anon_sym_private] = ACTIONS(1222), + [anon_sym_public] = ACTIONS(1222), + [anon_sym_return] = ACTIONS(1222), + [anon_sym_static] = ACTIONS(1222), + [anon_sym_try] = ACTIONS(1222), + [anon_sym_untyped] = ACTIONS(1222), + [anon_sym_while] = ACTIONS(1222), + [sym__semicolon] = ACTIONS(1220), }, - [239] = { - [ts_builtin_sym_end] = ACTIONS(1214), - [sym_identifier] = ACTIONS(1216), - [anon_sym_POUND] = ACTIONS(1214), - [anon_sym_package] = ACTIONS(1216), - [anon_sym_import] = ACTIONS(1216), - [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_RBRACE] = ACTIONS(1214), - [anon_sym_case] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_cast] = ACTIONS(1216), - [anon_sym_DOLLARtype] = ACTIONS(1214), - [anon_sym_in] = ACTIONS(1216), - [anon_sym_LBRACK] = ACTIONS(1214), - [anon_sym_this] = ACTIONS(1216), - [anon_sym_AT] = ACTIONS(1216), - [anon_sym_AT_COLON] = ACTIONS(1214), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1214), - [anon_sym_null] = ACTIONS(1216), - [anon_sym_dynamic] = ACTIONS(1216), - [anon_sym_final] = ACTIONS(1216), - [anon_sym_abstract] = ACTIONS(1216), - [anon_sym_class] = ACTIONS(1216), - [anon_sym_extends] = ACTIONS(1216), - [anon_sym_implements] = ACTIONS(1216), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_catch] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_macro] = ACTIONS(1216), - [anon_sym_operator] = ACTIONS(1216), - [anon_sym_overload] = ACTIONS(1216), - [anon_sym_override] = ACTIONS(1216), - [anon_sym_private] = ACTIONS(1216), - [anon_sym_public] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_try] = ACTIONS(1216), - [anon_sym_untyped] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [sym__semicolon] = ACTIONS(1214), + [276] = { + [ts_builtin_sym_end] = ACTIONS(1224), + [sym_identifier] = ACTIONS(1226), + [anon_sym_POUND] = ACTIONS(1224), + [anon_sym_package] = ACTIONS(1226), + [anon_sym_import] = ACTIONS(1226), + [anon_sym_using] = ACTIONS(1226), + [anon_sym_throw] = ACTIONS(1226), + [anon_sym_LPAREN] = ACTIONS(1224), + [anon_sym_switch] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_RBRACE] = ACTIONS(1224), + [anon_sym_case] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1226), + [anon_sym_cast] = ACTIONS(1226), + [anon_sym_DOLLARtype] = ACTIONS(1224), + [anon_sym_in] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1224), + [anon_sym_this] = ACTIONS(1226), + [anon_sym_AT] = ACTIONS(1226), + [anon_sym_AT_COLON] = ACTIONS(1224), + [anon_sym_if] = ACTIONS(1226), + [anon_sym_else] = ACTIONS(1226), + [anon_sym_new] = ACTIONS(1226), + [sym__prefixUnaryOperator] = ACTIONS(1226), + [sym__eitherUnaryOperator] = ACTIONS(1224), + [anon_sym_null] = ACTIONS(1226), + [anon_sym_dynamic] = ACTIONS(1226), + [anon_sym_final] = ACTIONS(1226), + [anon_sym_abstract] = ACTIONS(1226), + [anon_sym_class] = ACTIONS(1226), + [anon_sym_extends] = ACTIONS(1226), + [anon_sym_implements] = ACTIONS(1226), + [anon_sym_interface] = ACTIONS(1226), + [anon_sym_typedef] = ACTIONS(1226), + [anon_sym_function] = ACTIONS(1226), + [anon_sym_var] = ACTIONS(1226), + [aux_sym_integer_token1] = ACTIONS(1226), + [aux_sym_integer_token2] = ACTIONS(1224), + [aux_sym_float_token1] = ACTIONS(1226), + [aux_sym_float_token2] = ACTIONS(1224), + [anon_sym_true] = ACTIONS(1226), + [anon_sym_false] = ACTIONS(1226), + [aux_sym_string_token1] = ACTIONS(1224), + [aux_sym_string_token3] = ACTIONS(1224), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1226), + [anon_sym_catch] = ACTIONS(1226), + [anon_sym_continue] = ACTIONS(1226), + [anon_sym_do] = ACTIONS(1226), + [anon_sym_enum] = ACTIONS(1226), + [anon_sym_extern] = ACTIONS(1226), + [anon_sym_for] = ACTIONS(1226), + [anon_sym_inline] = ACTIONS(1226), + [anon_sym_macro] = ACTIONS(1226), + [anon_sym_operator] = ACTIONS(1226), + [anon_sym_overload] = ACTIONS(1226), + [anon_sym_override] = ACTIONS(1226), + [anon_sym_private] = ACTIONS(1226), + [anon_sym_public] = ACTIONS(1226), + [anon_sym_return] = ACTIONS(1226), + [anon_sym_static] = ACTIONS(1226), + [anon_sym_try] = ACTIONS(1226), + [anon_sym_untyped] = ACTIONS(1226), + [anon_sym_while] = ACTIONS(1226), + [sym__semicolon] = ACTIONS(1224), }, - [240] = { - [ts_builtin_sym_end] = ACTIONS(1218), - [sym_identifier] = ACTIONS(1220), - [anon_sym_POUND] = ACTIONS(1218), - [anon_sym_package] = ACTIONS(1220), - [anon_sym_import] = ACTIONS(1220), - [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_RBRACE] = ACTIONS(1218), - [anon_sym_case] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_cast] = ACTIONS(1220), - [anon_sym_DOLLARtype] = ACTIONS(1218), - [anon_sym_in] = ACTIONS(1220), - [anon_sym_LBRACK] = ACTIONS(1218), - [anon_sym_this] = ACTIONS(1220), - [anon_sym_AT] = ACTIONS(1220), - [anon_sym_AT_COLON] = ACTIONS(1218), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1218), - [anon_sym_null] = ACTIONS(1220), - [anon_sym_dynamic] = ACTIONS(1220), - [anon_sym_final] = ACTIONS(1220), - [anon_sym_abstract] = ACTIONS(1220), - [anon_sym_class] = ACTIONS(1220), - [anon_sym_extends] = ACTIONS(1220), - [anon_sym_implements] = ACTIONS(1220), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_catch] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_inline] = ACTIONS(1220), - [anon_sym_macro] = ACTIONS(1220), - [anon_sym_operator] = ACTIONS(1220), - [anon_sym_overload] = ACTIONS(1220), - [anon_sym_override] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_try] = ACTIONS(1220), - [anon_sym_untyped] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [sym__semicolon] = ACTIONS(1218), + [277] = { + [ts_builtin_sym_end] = ACTIONS(1228), + [sym_identifier] = ACTIONS(1230), + [anon_sym_POUND] = ACTIONS(1228), + [anon_sym_package] = ACTIONS(1230), + [anon_sym_import] = ACTIONS(1230), + [anon_sym_using] = ACTIONS(1230), + [anon_sym_throw] = ACTIONS(1230), + [anon_sym_LPAREN] = ACTIONS(1228), + [anon_sym_switch] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1228), + [anon_sym_RBRACE] = ACTIONS(1228), + [anon_sym_case] = ACTIONS(1230), + [anon_sym_default] = ACTIONS(1230), + [anon_sym_cast] = ACTIONS(1230), + [anon_sym_DOLLARtype] = ACTIONS(1228), + [anon_sym_in] = ACTIONS(1230), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_this] = ACTIONS(1230), + [anon_sym_AT] = ACTIONS(1230), + [anon_sym_AT_COLON] = ACTIONS(1228), + [anon_sym_if] = ACTIONS(1230), + [anon_sym_else] = ACTIONS(1230), + [anon_sym_new] = ACTIONS(1230), + [sym__prefixUnaryOperator] = ACTIONS(1230), + [sym__eitherUnaryOperator] = ACTIONS(1228), + [anon_sym_null] = ACTIONS(1230), + [anon_sym_dynamic] = ACTIONS(1230), + [anon_sym_final] = ACTIONS(1230), + [anon_sym_abstract] = ACTIONS(1230), + [anon_sym_class] = ACTIONS(1230), + [anon_sym_extends] = ACTIONS(1230), + [anon_sym_implements] = ACTIONS(1230), + [anon_sym_interface] = ACTIONS(1230), + [anon_sym_typedef] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1230), + [anon_sym_var] = ACTIONS(1230), + [aux_sym_integer_token1] = ACTIONS(1230), + [aux_sym_integer_token2] = ACTIONS(1228), + [aux_sym_float_token1] = ACTIONS(1230), + [aux_sym_float_token2] = ACTIONS(1228), + [anon_sym_true] = ACTIONS(1230), + [anon_sym_false] = ACTIONS(1230), + [aux_sym_string_token1] = ACTIONS(1228), + [aux_sym_string_token3] = ACTIONS(1228), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1230), + [anon_sym_catch] = ACTIONS(1230), + [anon_sym_continue] = ACTIONS(1230), + [anon_sym_do] = ACTIONS(1230), + [anon_sym_enum] = ACTIONS(1230), + [anon_sym_extern] = ACTIONS(1230), + [anon_sym_for] = ACTIONS(1230), + [anon_sym_inline] = ACTIONS(1230), + [anon_sym_macro] = ACTIONS(1230), + [anon_sym_operator] = ACTIONS(1230), + [anon_sym_overload] = ACTIONS(1230), + [anon_sym_override] = ACTIONS(1230), + [anon_sym_private] = ACTIONS(1230), + [anon_sym_public] = ACTIONS(1230), + [anon_sym_return] = ACTIONS(1230), + [anon_sym_static] = ACTIONS(1230), + [anon_sym_try] = ACTIONS(1230), + [anon_sym_untyped] = ACTIONS(1230), + [anon_sym_while] = ACTIONS(1230), + [sym__semicolon] = ACTIONS(1228), }, - [241] = { - [ts_builtin_sym_end] = ACTIONS(1222), - [sym_identifier] = ACTIONS(1224), - [anon_sym_POUND] = ACTIONS(1222), - [anon_sym_package] = ACTIONS(1224), - [anon_sym_import] = ACTIONS(1224), - [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_RBRACE] = ACTIONS(1222), - [anon_sym_case] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1224), - [anon_sym_cast] = ACTIONS(1224), - [anon_sym_DOLLARtype] = ACTIONS(1222), - [anon_sym_in] = ACTIONS(1224), - [anon_sym_LBRACK] = ACTIONS(1222), - [anon_sym_this] = ACTIONS(1224), - [anon_sym_AT] = ACTIONS(1224), - [anon_sym_AT_COLON] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1224), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1222), - [anon_sym_null] = ACTIONS(1224), - [anon_sym_dynamic] = ACTIONS(1224), - [anon_sym_final] = ACTIONS(1224), - [anon_sym_abstract] = ACTIONS(1224), - [anon_sym_class] = ACTIONS(1224), - [anon_sym_extends] = ACTIONS(1224), - [anon_sym_implements] = ACTIONS(1224), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1224), - [anon_sym_catch] = ACTIONS(1224), - [anon_sym_continue] = ACTIONS(1224), - [anon_sym_do] = ACTIONS(1224), - [anon_sym_enum] = ACTIONS(1224), - [anon_sym_extern] = ACTIONS(1224), - [anon_sym_for] = ACTIONS(1224), - [anon_sym_inline] = ACTIONS(1224), - [anon_sym_macro] = ACTIONS(1224), - [anon_sym_operator] = ACTIONS(1224), - [anon_sym_overload] = ACTIONS(1224), - [anon_sym_override] = ACTIONS(1224), - [anon_sym_private] = ACTIONS(1224), - [anon_sym_public] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1224), - [anon_sym_static] = ACTIONS(1224), - [anon_sym_try] = ACTIONS(1224), - [anon_sym_untyped] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1224), - [sym__semicolon] = ACTIONS(1222), - }, - [242] = { - [ts_builtin_sym_end] = ACTIONS(954), - [sym_identifier] = ACTIONS(956), - [anon_sym_POUND] = ACTIONS(954), - [anon_sym_package] = ACTIONS(956), - [anon_sym_import] = ACTIONS(956), - [anon_sym_using] = ACTIONS(956), - [anon_sym_throw] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(954), - [anon_sym_switch] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_RBRACE] = ACTIONS(954), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), - [anon_sym_cast] = ACTIONS(956), - [anon_sym_DOLLARtype] = ACTIONS(954), - [anon_sym_in] = ACTIONS(956), - [anon_sym_LBRACK] = ACTIONS(954), - [anon_sym_this] = ACTIONS(956), - [anon_sym_AT] = ACTIONS(956), - [anon_sym_AT_COLON] = ACTIONS(954), - [anon_sym_if] = ACTIONS(956), - [anon_sym_else] = ACTIONS(956), - [anon_sym_new] = ACTIONS(956), - [anon_sym_TILDE] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_DASH] = ACTIONS(956), - [anon_sym_PLUS_PLUS] = ACTIONS(954), - [anon_sym_DASH_DASH] = ACTIONS(954), - [anon_sym_PERCENT] = ACTIONS(954), - [anon_sym_STAR] = ACTIONS(954), - [anon_sym_SLASH] = ACTIONS(956), - [anon_sym_PLUS] = ACTIONS(956), - [anon_sym_LT_LT] = ACTIONS(954), - [anon_sym_GT_GT] = ACTIONS(956), - [anon_sym_GT_GT_GT] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(956), - [anon_sym_PIPE] = ACTIONS(956), - [anon_sym_CARET] = ACTIONS(954), - [anon_sym_AMP_AMP] = ACTIONS(954), - [anon_sym_PIPE_PIPE] = ACTIONS(954), - [anon_sym_EQ_EQ] = ACTIONS(954), - [anon_sym_BANG_EQ] = ACTIONS(954), - [anon_sym_LT] = ACTIONS(956), - [anon_sym_LT_EQ] = ACTIONS(954), - [anon_sym_GT] = ACTIONS(956), - [anon_sym_GT_EQ] = ACTIONS(954), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_QMARK_QMARK] = ACTIONS(954), - [anon_sym_EQ] = ACTIONS(956), - [sym__rangeOperator] = ACTIONS(954), - [anon_sym_null] = ACTIONS(956), - [anon_sym_dynamic] = ACTIONS(956), - [anon_sym_final] = ACTIONS(956), - [anon_sym_abstract] = ACTIONS(956), - [anon_sym_class] = ACTIONS(956), - [anon_sym_extends] = ACTIONS(956), - [anon_sym_implements] = ACTIONS(956), - [anon_sym_interface] = ACTIONS(956), - [anon_sym_typedef] = ACTIONS(956), - [anon_sym_function] = ACTIONS(956), - [anon_sym_var] = ACTIONS(956), - [aux_sym_integer_token1] = ACTIONS(956), - [aux_sym_integer_token2] = ACTIONS(954), - [aux_sym_float_token1] = ACTIONS(956), - [aux_sym_float_token2] = ACTIONS(954), - [anon_sym_true] = ACTIONS(956), - [anon_sym_false] = ACTIONS(956), - [aux_sym_string_token1] = ACTIONS(954), - [aux_sym_string_token3] = ACTIONS(954), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(956), - [anon_sym_catch] = ACTIONS(956), - [anon_sym_continue] = ACTIONS(956), - [anon_sym_do] = ACTIONS(956), - [anon_sym_enum] = ACTIONS(956), - [anon_sym_extern] = ACTIONS(956), - [anon_sym_for] = ACTIONS(956), - [anon_sym_inline] = ACTIONS(956), - [anon_sym_macro] = ACTIONS(956), - [anon_sym_operator] = ACTIONS(956), - [anon_sym_overload] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_return] = ACTIONS(956), - [anon_sym_static] = ACTIONS(956), - [anon_sym_try] = ACTIONS(956), - [anon_sym_untyped] = ACTIONS(956), - [anon_sym_while] = ACTIONS(956), - [sym__semicolon] = ACTIONS(954), - }, - [243] = { - [ts_builtin_sym_end] = ACTIONS(1226), - [sym_identifier] = ACTIONS(1228), - [anon_sym_POUND] = ACTIONS(1226), - [anon_sym_package] = ACTIONS(1228), - [anon_sym_import] = ACTIONS(1228), - [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_RBRACE] = ACTIONS(1226), - [anon_sym_case] = ACTIONS(1228), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_cast] = ACTIONS(1228), - [anon_sym_DOLLARtype] = ACTIONS(1226), - [anon_sym_in] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_this] = ACTIONS(1228), - [anon_sym_AT] = ACTIONS(1228), - [anon_sym_AT_COLON] = ACTIONS(1226), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1226), - [anon_sym_null] = ACTIONS(1228), - [anon_sym_dynamic] = ACTIONS(1228), - [anon_sym_final] = ACTIONS(1228), - [anon_sym_abstract] = ACTIONS(1228), - [anon_sym_class] = ACTIONS(1228), - [anon_sym_extends] = ACTIONS(1228), - [anon_sym_implements] = ACTIONS(1228), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_catch] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_inline] = ACTIONS(1228), - [anon_sym_macro] = ACTIONS(1228), - [anon_sym_operator] = ACTIONS(1228), - [anon_sym_overload] = ACTIONS(1228), - [anon_sym_override] = ACTIONS(1228), - [anon_sym_private] = ACTIONS(1228), - [anon_sym_public] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_static] = ACTIONS(1228), - [anon_sym_try] = ACTIONS(1228), - [anon_sym_untyped] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [sym__semicolon] = ACTIONS(1226), - }, - [244] = { - [ts_builtin_sym_end] = ACTIONS(1230), - [sym_identifier] = ACTIONS(1232), - [anon_sym_POUND] = ACTIONS(1230), - [anon_sym_package] = ACTIONS(1232), - [anon_sym_import] = ACTIONS(1232), - [anon_sym_using] = ACTIONS(1232), - [anon_sym_throw] = ACTIONS(1232), - [anon_sym_LPAREN] = ACTIONS(1230), - [anon_sym_switch] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1230), - [anon_sym_RBRACE] = ACTIONS(1230), - [anon_sym_case] = ACTIONS(1232), - [anon_sym_default] = ACTIONS(1232), - [anon_sym_cast] = ACTIONS(1232), - [anon_sym_DOLLARtype] = ACTIONS(1230), - [anon_sym_in] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1230), - [anon_sym_this] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(1232), - [anon_sym_AT_COLON] = ACTIONS(1230), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_else] = ACTIONS(1232), - [anon_sym_new] = ACTIONS(1232), - [anon_sym_TILDE] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(1232), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_DASH_DASH] = ACTIONS(1230), - [anon_sym_PERCENT] = ACTIONS(1230), - [anon_sym_STAR] = ACTIONS(1230), - [anon_sym_SLASH] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1232), - [anon_sym_LT_LT] = ACTIONS(1230), - [anon_sym_GT_GT] = ACTIONS(1232), - [anon_sym_GT_GT_GT] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1232), - [anon_sym_PIPE] = ACTIONS(1232), - [anon_sym_CARET] = ACTIONS(1230), - [anon_sym_AMP_AMP] = ACTIONS(1230), - [anon_sym_PIPE_PIPE] = ACTIONS(1230), - [anon_sym_EQ_EQ] = ACTIONS(1230), - [anon_sym_BANG_EQ] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_LT_EQ] = ACTIONS(1230), - [anon_sym_GT] = ACTIONS(1232), - [anon_sym_GT_EQ] = ACTIONS(1230), - [anon_sym_EQ_GT] = ACTIONS(1230), - [anon_sym_QMARK_QMARK] = ACTIONS(1230), - [anon_sym_EQ] = ACTIONS(1232), - [sym__rangeOperator] = ACTIONS(1230), - [anon_sym_null] = ACTIONS(1232), - [anon_sym_dynamic] = ACTIONS(1232), - [anon_sym_final] = ACTIONS(1232), - [anon_sym_abstract] = ACTIONS(1232), - [anon_sym_class] = ACTIONS(1232), - [anon_sym_extends] = ACTIONS(1232), - [anon_sym_implements] = ACTIONS(1232), - [anon_sym_interface] = ACTIONS(1232), - [anon_sym_typedef] = ACTIONS(1232), - [anon_sym_function] = ACTIONS(1232), - [anon_sym_var] = ACTIONS(1232), - [aux_sym_integer_token1] = ACTIONS(1232), - [aux_sym_integer_token2] = ACTIONS(1230), - [aux_sym_float_token1] = ACTIONS(1232), - [aux_sym_float_token2] = ACTIONS(1230), - [anon_sym_true] = ACTIONS(1232), - [anon_sym_false] = ACTIONS(1232), - [aux_sym_string_token1] = ACTIONS(1230), - [aux_sym_string_token3] = ACTIONS(1230), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_catch] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_do] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1232), - [anon_sym_extern] = ACTIONS(1232), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_inline] = ACTIONS(1232), - [anon_sym_macro] = ACTIONS(1232), - [anon_sym_operator] = ACTIONS(1232), - [anon_sym_overload] = ACTIONS(1232), - [anon_sym_override] = ACTIONS(1232), - [anon_sym_private] = ACTIONS(1232), - [anon_sym_public] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1232), - [anon_sym_static] = ACTIONS(1232), - [anon_sym_try] = ACTIONS(1232), - [anon_sym_untyped] = ACTIONS(1232), - [anon_sym_while] = ACTIONS(1232), - [sym__semicolon] = ACTIONS(1230), - }, - [245] = { - [sym__rhs_expression] = STATE(543), - [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(65), - [sym_range_expression] = STATE(66), - [sym_subscript_expression] = STATE(66), - [sym_member_expression] = STATE(457), - [sym__lhs_expression] = STATE(979), - [sym_builtin_type] = STATE(1008), - [sym_function_type] = STATE(118), - [sym_type] = STATE(1105), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(543), - [sym_operator] = STATE(808), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(749), - [sym_integer] = STATE(749), - [sym_float] = STATE(749), - [sym_bool] = STATE(749), - [sym_string] = STATE(743), - [sym_null] = STATE(749), - [sym_array] = STATE(749), - [sym_map] = STATE(749), - [sym_object] = STATE(749), - [sym_pair] = STATE(749), + [278] = { + [ts_builtin_sym_end] = ACTIONS(1232), [sym_identifier] = ACTIONS(1234), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1236), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(328), - [anon_sym_Void] = ACTIONS(606), - [anon_sym_Int] = ACTIONS(606), - [anon_sym_Float] = ACTIONS(606), - [anon_sym_Bool] = ACTIONS(606), - [anon_sym_Null] = ACTIONS(606), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [246] = { - [ts_builtin_sym_end] = ACTIONS(1238), - [sym_identifier] = ACTIONS(1240), - [anon_sym_POUND] = ACTIONS(1238), - [anon_sym_package] = ACTIONS(1240), - [anon_sym_import] = ACTIONS(1240), - [anon_sym_using] = ACTIONS(1240), - [anon_sym_throw] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1238), - [anon_sym_switch] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_RBRACE] = ACTIONS(1238), - [anon_sym_case] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_cast] = ACTIONS(1240), - [anon_sym_DOLLARtype] = ACTIONS(1238), - [anon_sym_in] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1238), - [anon_sym_this] = ACTIONS(1240), - [anon_sym_AT] = ACTIONS(1240), - [anon_sym_AT_COLON] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_else] = ACTIONS(1240), - [anon_sym_new] = ACTIONS(1240), - [anon_sym_TILDE] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_PLUS_PLUS] = ACTIONS(1238), - [anon_sym_DASH_DASH] = ACTIONS(1238), - [anon_sym_PERCENT] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_LT_LT] = ACTIONS(1238), - [anon_sym_GT_GT] = ACTIONS(1240), - [anon_sym_GT_GT_GT] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_PIPE] = ACTIONS(1240), - [anon_sym_CARET] = ACTIONS(1238), - [anon_sym_AMP_AMP] = ACTIONS(1238), - [anon_sym_PIPE_PIPE] = ACTIONS(1238), - [anon_sym_EQ_EQ] = ACTIONS(1238), - [anon_sym_BANG_EQ] = ACTIONS(1238), - [anon_sym_LT] = ACTIONS(1240), - [anon_sym_LT_EQ] = ACTIONS(1238), - [anon_sym_GT] = ACTIONS(1240), - [anon_sym_GT_EQ] = ACTIONS(1238), - [anon_sym_EQ_GT] = ACTIONS(1238), - [anon_sym_QMARK_QMARK] = ACTIONS(1238), - [anon_sym_EQ] = ACTIONS(1240), - [sym__rangeOperator] = ACTIONS(1238), - [anon_sym_null] = ACTIONS(1240), - [anon_sym_dynamic] = ACTIONS(1240), - [anon_sym_final] = ACTIONS(1240), - [anon_sym_abstract] = ACTIONS(1240), - [anon_sym_class] = ACTIONS(1240), - [anon_sym_extends] = ACTIONS(1240), - [anon_sym_implements] = ACTIONS(1240), - [anon_sym_interface] = ACTIONS(1240), - [anon_sym_typedef] = ACTIONS(1240), - [anon_sym_function] = ACTIONS(1240), - [anon_sym_var] = ACTIONS(1240), - [aux_sym_integer_token1] = ACTIONS(1240), - [aux_sym_integer_token2] = ACTIONS(1238), - [aux_sym_float_token1] = ACTIONS(1240), - [aux_sym_float_token2] = ACTIONS(1238), - [anon_sym_true] = ACTIONS(1240), - [anon_sym_false] = ACTIONS(1240), - [aux_sym_string_token1] = ACTIONS(1238), - [aux_sym_string_token3] = ACTIONS(1238), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_catch] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_do] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_inline] = ACTIONS(1240), - [anon_sym_macro] = ACTIONS(1240), - [anon_sym_operator] = ACTIONS(1240), - [anon_sym_overload] = ACTIONS(1240), - [anon_sym_override] = ACTIONS(1240), - [anon_sym_private] = ACTIONS(1240), - [anon_sym_public] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_try] = ACTIONS(1240), - [anon_sym_untyped] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [sym__semicolon] = ACTIONS(1238), - }, - [247] = { - [ts_builtin_sym_end] = ACTIONS(388), - [sym_identifier] = ACTIONS(390), - [anon_sym_POUND] = ACTIONS(388), - [anon_sym_package] = ACTIONS(390), - [anon_sym_import] = ACTIONS(390), - [anon_sym_using] = ACTIONS(390), - [anon_sym_throw] = ACTIONS(390), - [anon_sym_LPAREN] = ACTIONS(388), - [anon_sym_switch] = ACTIONS(390), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_RBRACE] = ACTIONS(388), - [anon_sym_case] = ACTIONS(390), - [anon_sym_default] = ACTIONS(390), - [anon_sym_cast] = ACTIONS(390), - [anon_sym_DOLLARtype] = ACTIONS(388), - [anon_sym_in] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(388), - [anon_sym_this] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(390), - [anon_sym_AT_COLON] = ACTIONS(388), - [anon_sym_if] = ACTIONS(390), - [anon_sym_else] = ACTIONS(390), - [anon_sym_new] = ACTIONS(390), - [anon_sym_TILDE] = ACTIONS(388), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_PERCENT] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(388), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_LT_LT] = ACTIONS(388), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_GT_GT_GT] = ACTIONS(388), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(390), - [anon_sym_CARET] = ACTIONS(388), - [anon_sym_AMP_AMP] = ACTIONS(388), - [anon_sym_PIPE_PIPE] = ACTIONS(388), - [anon_sym_EQ_EQ] = ACTIONS(388), - [anon_sym_BANG_EQ] = ACTIONS(388), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_LT_EQ] = ACTIONS(388), - [anon_sym_GT] = ACTIONS(390), - [anon_sym_GT_EQ] = ACTIONS(388), - [anon_sym_EQ_GT] = ACTIONS(388), - [anon_sym_QMARK_QMARK] = ACTIONS(388), - [anon_sym_EQ] = ACTIONS(390), - [sym__rangeOperator] = ACTIONS(388), - [anon_sym_null] = ACTIONS(390), - [anon_sym_dynamic] = ACTIONS(390), - [anon_sym_final] = ACTIONS(390), - [anon_sym_abstract] = ACTIONS(390), - [anon_sym_class] = ACTIONS(390), - [anon_sym_extends] = ACTIONS(390), - [anon_sym_implements] = ACTIONS(390), - [anon_sym_interface] = ACTIONS(390), - [anon_sym_typedef] = ACTIONS(390), - [anon_sym_function] = ACTIONS(390), - [anon_sym_var] = ACTIONS(390), - [aux_sym_integer_token1] = ACTIONS(390), - [aux_sym_integer_token2] = ACTIONS(388), - [aux_sym_float_token1] = ACTIONS(390), - [aux_sym_float_token2] = ACTIONS(388), - [anon_sym_true] = ACTIONS(390), - [anon_sym_false] = ACTIONS(390), - [aux_sym_string_token1] = ACTIONS(388), - [aux_sym_string_token3] = ACTIONS(388), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(390), - [anon_sym_catch] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(390), - [anon_sym_do] = ACTIONS(390), - [anon_sym_enum] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(390), - [anon_sym_for] = ACTIONS(390), - [anon_sym_inline] = ACTIONS(390), - [anon_sym_macro] = ACTIONS(390), - [anon_sym_operator] = ACTIONS(390), - [anon_sym_overload] = ACTIONS(390), - [anon_sym_override] = ACTIONS(390), - [anon_sym_private] = ACTIONS(390), - [anon_sym_public] = ACTIONS(390), - [anon_sym_return] = ACTIONS(390), - [anon_sym_static] = ACTIONS(390), - [anon_sym_try] = ACTIONS(390), - [anon_sym_untyped] = ACTIONS(390), - [anon_sym_while] = ACTIONS(390), - [sym__semicolon] = ACTIONS(388), - }, - [248] = { - [ts_builtin_sym_end] = ACTIONS(1242), - [sym_identifier] = ACTIONS(1244), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_package] = ACTIONS(1244), - [anon_sym_import] = ACTIONS(1244), - [anon_sym_using] = ACTIONS(1244), - [anon_sym_throw] = ACTIONS(1244), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_switch] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_RBRACE] = ACTIONS(1242), - [anon_sym_case] = ACTIONS(1244), - [anon_sym_default] = ACTIONS(1244), - [anon_sym_cast] = ACTIONS(1244), - [anon_sym_DOLLARtype] = ACTIONS(1242), - [anon_sym_in] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1242), - [anon_sym_this] = ACTIONS(1244), - [anon_sym_AT] = ACTIONS(1244), - [anon_sym_AT_COLON] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1244), - [anon_sym_else] = ACTIONS(1244), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1244), - [anon_sym_GT_GT_GT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_PIPE] = ACTIONS(1244), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1242), - [anon_sym_PIPE_PIPE] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1242), - [anon_sym_BANG_EQ] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1244), - [anon_sym_LT_EQ] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1244), - [anon_sym_GT_EQ] = ACTIONS(1242), - [anon_sym_EQ_GT] = ACTIONS(1242), - [anon_sym_QMARK_QMARK] = ACTIONS(1242), - [anon_sym_EQ] = ACTIONS(1244), - [sym__rangeOperator] = ACTIONS(1242), - [anon_sym_null] = ACTIONS(1244), - [anon_sym_dynamic] = ACTIONS(1244), - [anon_sym_final] = ACTIONS(1244), - [anon_sym_abstract] = ACTIONS(1244), - [anon_sym_class] = ACTIONS(1244), - [anon_sym_extends] = ACTIONS(1244), - [anon_sym_implements] = ACTIONS(1244), - [anon_sym_interface] = ACTIONS(1244), - [anon_sym_typedef] = ACTIONS(1244), - [anon_sym_function] = ACTIONS(1244), - [anon_sym_var] = ACTIONS(1244), - [aux_sym_integer_token1] = ACTIONS(1244), - [aux_sym_integer_token2] = ACTIONS(1242), - [aux_sym_float_token1] = ACTIONS(1244), - [aux_sym_float_token2] = ACTIONS(1242), - [anon_sym_true] = ACTIONS(1244), - [anon_sym_false] = ACTIONS(1244), - [aux_sym_string_token1] = ACTIONS(1242), - [aux_sym_string_token3] = ACTIONS(1242), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1244), - [anon_sym_catch] = ACTIONS(1244), - [anon_sym_continue] = ACTIONS(1244), - [anon_sym_do] = ACTIONS(1244), - [anon_sym_enum] = ACTIONS(1244), - [anon_sym_extern] = ACTIONS(1244), - [anon_sym_for] = ACTIONS(1244), - [anon_sym_inline] = ACTIONS(1244), - [anon_sym_macro] = ACTIONS(1244), - [anon_sym_operator] = ACTIONS(1244), - [anon_sym_overload] = ACTIONS(1244), - [anon_sym_override] = ACTIONS(1244), - [anon_sym_private] = ACTIONS(1244), - [anon_sym_public] = ACTIONS(1244), - [anon_sym_return] = ACTIONS(1244), - [anon_sym_static] = ACTIONS(1244), - [anon_sym_try] = ACTIONS(1244), - [anon_sym_untyped] = ACTIONS(1244), - [anon_sym_while] = ACTIONS(1244), - [sym__semicolon] = ACTIONS(1242), - }, - [249] = { - [ts_builtin_sym_end] = ACTIONS(388), - [sym_identifier] = ACTIONS(390), - [anon_sym_POUND] = ACTIONS(388), - [anon_sym_package] = ACTIONS(390), - [anon_sym_import] = ACTIONS(390), - [anon_sym_using] = ACTIONS(390), - [anon_sym_throw] = ACTIONS(390), - [anon_sym_LPAREN] = ACTIONS(388), - [anon_sym_switch] = ACTIONS(390), - [anon_sym_LBRACE] = ACTIONS(388), - [anon_sym_RBRACE] = ACTIONS(388), - [anon_sym_case] = ACTIONS(390), - [anon_sym_default] = ACTIONS(390), - [anon_sym_cast] = ACTIONS(390), - [anon_sym_DOLLARtype] = ACTIONS(388), - [anon_sym_in] = ACTIONS(390), - [anon_sym_LBRACK] = ACTIONS(454), - [anon_sym_this] = ACTIONS(390), - [anon_sym_AT] = ACTIONS(390), - [anon_sym_AT_COLON] = ACTIONS(388), - [anon_sym_if] = ACTIONS(390), - [anon_sym_else] = ACTIONS(390), - [anon_sym_new] = ACTIONS(390), - [anon_sym_TILDE] = ACTIONS(388), - [anon_sym_BANG] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(390), - [anon_sym_PLUS_PLUS] = ACTIONS(388), - [anon_sym_DASH_DASH] = ACTIONS(388), - [anon_sym_PERCENT] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(388), - [anon_sym_SLASH] = ACTIONS(390), - [anon_sym_PLUS] = ACTIONS(390), - [anon_sym_LT_LT] = ACTIONS(388), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_GT_GT_GT] = ACTIONS(388), - [anon_sym_AMP] = ACTIONS(390), - [anon_sym_PIPE] = ACTIONS(390), - [anon_sym_CARET] = ACTIONS(388), - [anon_sym_AMP_AMP] = ACTIONS(388), - [anon_sym_PIPE_PIPE] = ACTIONS(388), - [anon_sym_EQ_EQ] = ACTIONS(388), - [anon_sym_BANG_EQ] = ACTIONS(388), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_LT_EQ] = ACTIONS(388), - [anon_sym_GT] = ACTIONS(390), - [anon_sym_GT_EQ] = ACTIONS(388), - [anon_sym_EQ_GT] = ACTIONS(388), - [anon_sym_QMARK_QMARK] = ACTIONS(388), - [anon_sym_EQ] = ACTIONS(390), - [sym__rangeOperator] = ACTIONS(388), - [anon_sym_null] = ACTIONS(390), - [anon_sym_dynamic] = ACTIONS(390), - [anon_sym_final] = ACTIONS(390), - [anon_sym_abstract] = ACTIONS(390), - [anon_sym_class] = ACTIONS(390), - [anon_sym_extends] = ACTIONS(390), - [anon_sym_implements] = ACTIONS(390), - [anon_sym_interface] = ACTIONS(390), - [anon_sym_typedef] = ACTIONS(390), - [anon_sym_function] = ACTIONS(390), - [anon_sym_var] = ACTIONS(390), - [aux_sym_integer_token1] = ACTIONS(390), - [aux_sym_integer_token2] = ACTIONS(388), - [aux_sym_float_token1] = ACTIONS(390), - [aux_sym_float_token2] = ACTIONS(388), - [anon_sym_true] = ACTIONS(390), - [anon_sym_false] = ACTIONS(390), - [aux_sym_string_token1] = ACTIONS(388), - [aux_sym_string_token3] = ACTIONS(388), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(390), - [anon_sym_catch] = ACTIONS(390), - [anon_sym_continue] = ACTIONS(390), - [anon_sym_do] = ACTIONS(390), - [anon_sym_enum] = ACTIONS(390), - [anon_sym_extern] = ACTIONS(390), - [anon_sym_for] = ACTIONS(390), - [anon_sym_inline] = ACTIONS(390), - [anon_sym_macro] = ACTIONS(390), - [anon_sym_operator] = ACTIONS(390), - [anon_sym_overload] = ACTIONS(390), - [anon_sym_override] = ACTIONS(390), - [anon_sym_private] = ACTIONS(390), - [anon_sym_public] = ACTIONS(390), - [anon_sym_return] = ACTIONS(390), - [anon_sym_static] = ACTIONS(390), - [anon_sym_try] = ACTIONS(390), - [anon_sym_untyped] = ACTIONS(390), - [anon_sym_while] = ACTIONS(390), - [sym__semicolon] = ACTIONS(388), - }, - [250] = { - [ts_builtin_sym_end] = ACTIONS(1246), - [sym_identifier] = ACTIONS(1248), - [anon_sym_POUND] = ACTIONS(1246), - [anon_sym_package] = ACTIONS(1248), - [anon_sym_import] = ACTIONS(1248), - [anon_sym_using] = ACTIONS(1248), - [anon_sym_throw] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1246), - [anon_sym_switch] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_RBRACE] = ACTIONS(1246), - [anon_sym_case] = ACTIONS(1248), - [anon_sym_default] = ACTIONS(1248), - [anon_sym_cast] = ACTIONS(1248), - [anon_sym_DOLLARtype] = ACTIONS(1246), - [anon_sym_in] = ACTIONS(1248), - [anon_sym_LBRACK] = ACTIONS(1246), - [anon_sym_this] = ACTIONS(1248), - [anon_sym_AT] = ACTIONS(1248), - [anon_sym_AT_COLON] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1248), - [anon_sym_else] = ACTIONS(1248), - [anon_sym_new] = ACTIONS(1248), - [anon_sym_TILDE] = ACTIONS(1246), - [anon_sym_BANG] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [anon_sym_PERCENT] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_LT_LT] = ACTIONS(1246), - [anon_sym_GT_GT] = ACTIONS(1248), - [anon_sym_GT_GT_GT] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_PIPE] = ACTIONS(1248), - [anon_sym_CARET] = ACTIONS(1246), - [anon_sym_AMP_AMP] = ACTIONS(1246), - [anon_sym_PIPE_PIPE] = ACTIONS(1246), - [anon_sym_EQ_EQ] = ACTIONS(1246), - [anon_sym_BANG_EQ] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1248), - [anon_sym_LT_EQ] = ACTIONS(1246), - [anon_sym_GT] = ACTIONS(1248), - [anon_sym_GT_EQ] = ACTIONS(1246), - [anon_sym_EQ_GT] = ACTIONS(1246), - [anon_sym_QMARK_QMARK] = ACTIONS(1246), - [anon_sym_EQ] = ACTIONS(1248), - [sym__rangeOperator] = ACTIONS(1246), - [anon_sym_null] = ACTIONS(1248), - [anon_sym_dynamic] = ACTIONS(1248), - [anon_sym_final] = ACTIONS(1248), - [anon_sym_abstract] = ACTIONS(1248), - [anon_sym_class] = ACTIONS(1248), - [anon_sym_extends] = ACTIONS(1248), - [anon_sym_implements] = ACTIONS(1248), - [anon_sym_interface] = ACTIONS(1248), - [anon_sym_typedef] = ACTIONS(1248), - [anon_sym_function] = ACTIONS(1248), - [anon_sym_var] = ACTIONS(1248), - [aux_sym_integer_token1] = ACTIONS(1248), - [aux_sym_integer_token2] = ACTIONS(1246), - [aux_sym_float_token1] = ACTIONS(1248), - [aux_sym_float_token2] = ACTIONS(1246), - [anon_sym_true] = ACTIONS(1248), - [anon_sym_false] = ACTIONS(1248), - [aux_sym_string_token1] = ACTIONS(1246), - [aux_sym_string_token3] = ACTIONS(1246), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_catch] = ACTIONS(1248), - [anon_sym_continue] = ACTIONS(1248), - [anon_sym_do] = ACTIONS(1248), - [anon_sym_enum] = ACTIONS(1248), - [anon_sym_extern] = ACTIONS(1248), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_inline] = ACTIONS(1248), - [anon_sym_macro] = ACTIONS(1248), - [anon_sym_operator] = ACTIONS(1248), - [anon_sym_overload] = ACTIONS(1248), - [anon_sym_override] = ACTIONS(1248), - [anon_sym_private] = ACTIONS(1248), - [anon_sym_public] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1248), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_try] = ACTIONS(1248), - [anon_sym_untyped] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1248), - [sym__semicolon] = ACTIONS(1246), - }, - [251] = { - [ts_builtin_sym_end] = ACTIONS(1250), - [sym_identifier] = ACTIONS(1252), - [anon_sym_POUND] = ACTIONS(1250), - [anon_sym_package] = ACTIONS(1252), - [anon_sym_import] = ACTIONS(1252), - [anon_sym_using] = ACTIONS(1252), - [anon_sym_throw] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_switch] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_RBRACE] = ACTIONS(1250), - [anon_sym_case] = ACTIONS(1252), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_cast] = ACTIONS(1252), - [anon_sym_DOLLARtype] = ACTIONS(1250), - [anon_sym_in] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1250), - [anon_sym_this] = ACTIONS(1252), - [anon_sym_AT] = ACTIONS(1252), - [anon_sym_AT_COLON] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_else] = ACTIONS(1252), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_TILDE] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1250), - [anon_sym_DASH_DASH] = ACTIONS(1250), - [anon_sym_PERCENT] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_LT_LT] = ACTIONS(1250), - [anon_sym_GT_GT] = ACTIONS(1252), - [anon_sym_GT_GT_GT] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_CARET] = ACTIONS(1250), - [anon_sym_AMP_AMP] = ACTIONS(1250), - [anon_sym_PIPE_PIPE] = ACTIONS(1250), - [anon_sym_EQ_EQ] = ACTIONS(1250), - [anon_sym_BANG_EQ] = ACTIONS(1250), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1250), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_GT_EQ] = ACTIONS(1250), - [anon_sym_EQ_GT] = ACTIONS(1250), - [anon_sym_QMARK_QMARK] = ACTIONS(1250), - [anon_sym_EQ] = ACTIONS(1252), - [sym__rangeOperator] = ACTIONS(1250), - [anon_sym_null] = ACTIONS(1252), - [anon_sym_dynamic] = ACTIONS(1252), - [anon_sym_final] = ACTIONS(1252), - [anon_sym_abstract] = ACTIONS(1252), - [anon_sym_class] = ACTIONS(1252), - [anon_sym_extends] = ACTIONS(1252), - [anon_sym_implements] = ACTIONS(1252), - [anon_sym_interface] = ACTIONS(1252), - [anon_sym_typedef] = ACTIONS(1252), - [anon_sym_function] = ACTIONS(1252), - [anon_sym_var] = ACTIONS(1252), - [aux_sym_integer_token1] = ACTIONS(1252), - [aux_sym_integer_token2] = ACTIONS(1250), - [aux_sym_float_token1] = ACTIONS(1252), - [aux_sym_float_token2] = ACTIONS(1250), - [anon_sym_true] = ACTIONS(1252), - [anon_sym_false] = ACTIONS(1252), - [aux_sym_string_token1] = ACTIONS(1250), - [aux_sym_string_token3] = ACTIONS(1250), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_catch] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_enum] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_inline] = ACTIONS(1252), - [anon_sym_macro] = ACTIONS(1252), - [anon_sym_operator] = ACTIONS(1252), - [anon_sym_overload] = ACTIONS(1252), - [anon_sym_override] = ACTIONS(1252), - [anon_sym_private] = ACTIONS(1252), - [anon_sym_public] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_static] = ACTIONS(1252), - [anon_sym_try] = ACTIONS(1252), - [anon_sym_untyped] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [sym__semicolon] = ACTIONS(1250), - }, - [252] = { - [ts_builtin_sym_end] = ACTIONS(1254), - [sym_identifier] = ACTIONS(1256), - [anon_sym_POUND] = ACTIONS(1254), - [anon_sym_package] = ACTIONS(1256), - [anon_sym_import] = ACTIONS(1256), - [anon_sym_using] = ACTIONS(1256), - [anon_sym_throw] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_switch] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_RBRACE] = ACTIONS(1254), - [anon_sym_case] = ACTIONS(1256), - [anon_sym_default] = ACTIONS(1256), - [anon_sym_cast] = ACTIONS(1256), - [anon_sym_DOLLARtype] = ACTIONS(1254), - [anon_sym_in] = ACTIONS(1256), - [anon_sym_LBRACK] = ACTIONS(1254), - [anon_sym_this] = ACTIONS(1256), - [anon_sym_AT] = ACTIONS(1256), - [anon_sym_AT_COLON] = ACTIONS(1254), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_else] = ACTIONS(1256), - [anon_sym_new] = ACTIONS(1256), - [anon_sym_TILDE] = ACTIONS(1254), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_DASH_DASH] = ACTIONS(1254), - [anon_sym_PERCENT] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_SLASH] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_LT_LT] = ACTIONS(1254), - [anon_sym_GT_GT] = ACTIONS(1256), - [anon_sym_GT_GT_GT] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_CARET] = ACTIONS(1254), - [anon_sym_AMP_AMP] = ACTIONS(1254), - [anon_sym_PIPE_PIPE] = ACTIONS(1254), - [anon_sym_EQ_EQ] = ACTIONS(1254), - [anon_sym_BANG_EQ] = ACTIONS(1254), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_LT_EQ] = ACTIONS(1254), - [anon_sym_GT] = ACTIONS(1256), - [anon_sym_GT_EQ] = ACTIONS(1254), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_QMARK_QMARK] = ACTIONS(1254), - [anon_sym_EQ] = ACTIONS(1256), - [sym__rangeOperator] = ACTIONS(1254), - [anon_sym_null] = ACTIONS(1256), - [anon_sym_dynamic] = ACTIONS(1256), - [anon_sym_final] = ACTIONS(1256), - [anon_sym_abstract] = ACTIONS(1256), - [anon_sym_class] = ACTIONS(1256), - [anon_sym_extends] = ACTIONS(1256), - [anon_sym_implements] = ACTIONS(1256), - [anon_sym_interface] = ACTIONS(1256), - [anon_sym_typedef] = ACTIONS(1256), - [anon_sym_function] = ACTIONS(1256), - [anon_sym_var] = ACTIONS(1256), - [aux_sym_integer_token1] = ACTIONS(1256), - [aux_sym_integer_token2] = ACTIONS(1254), - [aux_sym_float_token1] = ACTIONS(1256), - [aux_sym_float_token2] = ACTIONS(1254), - [anon_sym_true] = ACTIONS(1256), - [anon_sym_false] = ACTIONS(1256), - [aux_sym_string_token1] = ACTIONS(1254), - [aux_sym_string_token3] = ACTIONS(1254), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1256), - [anon_sym_catch] = ACTIONS(1256), - [anon_sym_continue] = ACTIONS(1256), - [anon_sym_do] = ACTIONS(1256), - [anon_sym_enum] = ACTIONS(1256), - [anon_sym_extern] = ACTIONS(1256), - [anon_sym_for] = ACTIONS(1256), - [anon_sym_inline] = ACTIONS(1256), - [anon_sym_macro] = ACTIONS(1256), - [anon_sym_operator] = ACTIONS(1256), - [anon_sym_overload] = ACTIONS(1256), - [anon_sym_override] = ACTIONS(1256), - [anon_sym_private] = ACTIONS(1256), - [anon_sym_public] = ACTIONS(1256), - [anon_sym_return] = ACTIONS(1256), - [anon_sym_static] = ACTIONS(1256), - [anon_sym_try] = ACTIONS(1256), - [anon_sym_untyped] = ACTIONS(1256), - [anon_sym_while] = ACTIONS(1256), - [sym__semicolon] = ACTIONS(1254), - }, - [253] = { - [ts_builtin_sym_end] = ACTIONS(1258), - [sym_identifier] = ACTIONS(1260), - [anon_sym_POUND] = ACTIONS(1258), - [anon_sym_package] = ACTIONS(1260), - [anon_sym_import] = ACTIONS(1260), - [anon_sym_using] = ACTIONS(1260), - [anon_sym_throw] = ACTIONS(1260), - [anon_sym_LPAREN] = ACTIONS(1258), - [anon_sym_switch] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_RBRACE] = ACTIONS(1258), - [anon_sym_case] = ACTIONS(1260), - [anon_sym_default] = ACTIONS(1260), - [anon_sym_cast] = ACTIONS(1260), - [anon_sym_DOLLARtype] = ACTIONS(1258), - [anon_sym_in] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_this] = ACTIONS(1260), - [anon_sym_AT] = ACTIONS(1260), - [anon_sym_AT_COLON] = ACTIONS(1258), - [anon_sym_if] = ACTIONS(1260), - [anon_sym_else] = ACTIONS(1260), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_TILDE] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PERCENT] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_SLASH] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_LT_LT] = ACTIONS(1258), - [anon_sym_GT_GT] = ACTIONS(1260), - [anon_sym_GT_GT_GT] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_CARET] = ACTIONS(1258), - [anon_sym_AMP_AMP] = ACTIONS(1258), - [anon_sym_PIPE_PIPE] = ACTIONS(1258), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1258), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_GT_EQ] = ACTIONS(1258), - [anon_sym_EQ_GT] = ACTIONS(1258), - [anon_sym_QMARK_QMARK] = ACTIONS(1258), - [anon_sym_EQ] = ACTIONS(1260), - [sym__rangeOperator] = ACTIONS(1258), - [anon_sym_null] = ACTIONS(1260), - [anon_sym_dynamic] = ACTIONS(1260), - [anon_sym_final] = ACTIONS(1260), - [anon_sym_abstract] = ACTIONS(1260), - [anon_sym_class] = ACTIONS(1260), - [anon_sym_extends] = ACTIONS(1260), - [anon_sym_implements] = ACTIONS(1260), - [anon_sym_interface] = ACTIONS(1260), - [anon_sym_typedef] = ACTIONS(1260), - [anon_sym_function] = ACTIONS(1260), - [anon_sym_var] = ACTIONS(1260), - [aux_sym_integer_token1] = ACTIONS(1260), - [aux_sym_integer_token2] = ACTIONS(1258), - [aux_sym_float_token1] = ACTIONS(1260), - [aux_sym_float_token2] = ACTIONS(1258), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [aux_sym_string_token1] = ACTIONS(1258), - [aux_sym_string_token3] = ACTIONS(1258), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1260), - [anon_sym_catch] = ACTIONS(1260), - [anon_sym_continue] = ACTIONS(1260), - [anon_sym_do] = ACTIONS(1260), - [anon_sym_enum] = ACTIONS(1260), - [anon_sym_extern] = ACTIONS(1260), - [anon_sym_for] = ACTIONS(1260), - [anon_sym_inline] = ACTIONS(1260), - [anon_sym_macro] = ACTIONS(1260), - [anon_sym_operator] = ACTIONS(1260), - [anon_sym_overload] = ACTIONS(1260), - [anon_sym_override] = ACTIONS(1260), - [anon_sym_private] = ACTIONS(1260), - [anon_sym_public] = ACTIONS(1260), - [anon_sym_return] = ACTIONS(1260), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_try] = ACTIONS(1260), - [anon_sym_untyped] = ACTIONS(1260), - [anon_sym_while] = ACTIONS(1260), - [sym__semicolon] = ACTIONS(1258), - }, - [254] = { - [ts_builtin_sym_end] = ACTIONS(1262), - [sym_identifier] = ACTIONS(1264), - [anon_sym_POUND] = ACTIONS(1262), - [anon_sym_package] = ACTIONS(1264), - [anon_sym_import] = ACTIONS(1264), - [anon_sym_using] = ACTIONS(1264), - [anon_sym_throw] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1262), - [anon_sym_switch] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1262), - [anon_sym_case] = ACTIONS(1264), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_cast] = ACTIONS(1264), - [anon_sym_DOLLARtype] = ACTIONS(1262), - [anon_sym_in] = ACTIONS(1264), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_this] = ACTIONS(1264), - [anon_sym_AT] = ACTIONS(1264), - [anon_sym_AT_COLON] = ACTIONS(1262), - [anon_sym_if] = ACTIONS(1264), - [anon_sym_else] = ACTIONS(1264), - [anon_sym_new] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [anon_sym_DASH_DASH] = ACTIONS(1262), - [anon_sym_PERCENT] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_SLASH] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_LT_LT] = ACTIONS(1262), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_GT_GT_GT] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1262), - [anon_sym_AMP_AMP] = ACTIONS(1262), - [anon_sym_PIPE_PIPE] = ACTIONS(1262), - [anon_sym_EQ_EQ] = ACTIONS(1262), - [anon_sym_BANG_EQ] = ACTIONS(1262), - [anon_sym_LT] = ACTIONS(1264), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_EQ_GT] = ACTIONS(1262), - [anon_sym_QMARK_QMARK] = ACTIONS(1262), - [anon_sym_EQ] = ACTIONS(1264), - [sym__rangeOperator] = ACTIONS(1262), - [anon_sym_null] = ACTIONS(1264), - [anon_sym_dynamic] = ACTIONS(1264), - [anon_sym_final] = ACTIONS(1264), - [anon_sym_abstract] = ACTIONS(1264), - [anon_sym_class] = ACTIONS(1264), - [anon_sym_extends] = ACTIONS(1264), - [anon_sym_implements] = ACTIONS(1264), - [anon_sym_interface] = ACTIONS(1264), - [anon_sym_typedef] = ACTIONS(1264), - [anon_sym_function] = ACTIONS(1264), - [anon_sym_var] = ACTIONS(1264), - [aux_sym_integer_token1] = ACTIONS(1264), - [aux_sym_integer_token2] = ACTIONS(1262), - [aux_sym_float_token1] = ACTIONS(1264), - [aux_sym_float_token2] = ACTIONS(1262), - [anon_sym_true] = ACTIONS(1264), - [anon_sym_false] = ACTIONS(1264), - [aux_sym_string_token1] = ACTIONS(1262), - [aux_sym_string_token3] = ACTIONS(1262), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1264), - [anon_sym_catch] = ACTIONS(1264), - [anon_sym_continue] = ACTIONS(1264), - [anon_sym_do] = ACTIONS(1264), - [anon_sym_enum] = ACTIONS(1264), - [anon_sym_extern] = ACTIONS(1264), - [anon_sym_for] = ACTIONS(1264), - [anon_sym_inline] = ACTIONS(1264), - [anon_sym_macro] = ACTIONS(1264), - [anon_sym_operator] = ACTIONS(1264), - [anon_sym_overload] = ACTIONS(1264), - [anon_sym_override] = ACTIONS(1264), - [anon_sym_private] = ACTIONS(1264), - [anon_sym_public] = ACTIONS(1264), - [anon_sym_return] = ACTIONS(1264), - [anon_sym_static] = ACTIONS(1264), - [anon_sym_try] = ACTIONS(1264), - [anon_sym_untyped] = ACTIONS(1264), - [anon_sym_while] = ACTIONS(1264), - [sym__semicolon] = ACTIONS(1262), - }, - [255] = { - [ts_builtin_sym_end] = ACTIONS(769), - [sym_identifier] = ACTIONS(771), - [anon_sym_POUND] = ACTIONS(769), - [anon_sym_package] = ACTIONS(771), - [anon_sym_import] = ACTIONS(771), - [anon_sym_using] = ACTIONS(771), - [anon_sym_throw] = ACTIONS(771), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_switch] = ACTIONS(771), - [anon_sym_LBRACE] = ACTIONS(769), - [anon_sym_RBRACE] = ACTIONS(769), - [anon_sym_case] = ACTIONS(771), - [anon_sym_default] = ACTIONS(771), - [anon_sym_cast] = ACTIONS(771), - [anon_sym_DOLLARtype] = ACTIONS(769), - [anon_sym_in] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(769), - [anon_sym_this] = ACTIONS(771), - [anon_sym_AT] = ACTIONS(771), - [anon_sym_AT_COLON] = ACTIONS(769), - [anon_sym_if] = ACTIONS(771), - [anon_sym_else] = ACTIONS(771), - [anon_sym_new] = ACTIONS(771), - [anon_sym_TILDE] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_DASH] = ACTIONS(771), - [anon_sym_PLUS_PLUS] = ACTIONS(769), - [anon_sym_DASH_DASH] = ACTIONS(769), - [anon_sym_PERCENT] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(769), - [anon_sym_SLASH] = ACTIONS(771), - [anon_sym_PLUS] = ACTIONS(771), - [anon_sym_LT_LT] = ACTIONS(769), - [anon_sym_GT_GT] = ACTIONS(771), - [anon_sym_GT_GT_GT] = ACTIONS(769), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_PIPE] = ACTIONS(771), - [anon_sym_CARET] = ACTIONS(769), - [anon_sym_AMP_AMP] = ACTIONS(769), - [anon_sym_PIPE_PIPE] = ACTIONS(769), - [anon_sym_EQ_EQ] = ACTIONS(769), - [anon_sym_BANG_EQ] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(771), - [anon_sym_LT_EQ] = ACTIONS(769), - [anon_sym_GT] = ACTIONS(771), - [anon_sym_GT_EQ] = ACTIONS(769), - [anon_sym_EQ_GT] = ACTIONS(769), - [anon_sym_QMARK_QMARK] = ACTIONS(769), - [anon_sym_EQ] = ACTIONS(771), - [sym__rangeOperator] = ACTIONS(769), - [anon_sym_null] = ACTIONS(771), - [anon_sym_dynamic] = ACTIONS(771), - [anon_sym_final] = ACTIONS(771), - [anon_sym_abstract] = ACTIONS(771), - [anon_sym_class] = ACTIONS(771), - [anon_sym_extends] = ACTIONS(771), - [anon_sym_implements] = ACTIONS(771), - [anon_sym_interface] = ACTIONS(771), - [anon_sym_typedef] = ACTIONS(771), - [anon_sym_function] = ACTIONS(771), - [anon_sym_var] = ACTIONS(771), - [aux_sym_integer_token1] = ACTIONS(771), - [aux_sym_integer_token2] = ACTIONS(769), - [aux_sym_float_token1] = ACTIONS(771), - [aux_sym_float_token2] = ACTIONS(769), - [anon_sym_true] = ACTIONS(771), - [anon_sym_false] = ACTIONS(771), - [aux_sym_string_token1] = ACTIONS(769), - [aux_sym_string_token3] = ACTIONS(769), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(771), - [anon_sym_catch] = ACTIONS(771), - [anon_sym_continue] = ACTIONS(771), - [anon_sym_do] = ACTIONS(771), - [anon_sym_enum] = ACTIONS(771), - [anon_sym_extern] = ACTIONS(771), - [anon_sym_for] = ACTIONS(771), - [anon_sym_inline] = ACTIONS(771), - [anon_sym_macro] = ACTIONS(771), - [anon_sym_operator] = ACTIONS(771), - [anon_sym_overload] = ACTIONS(771), - [anon_sym_override] = ACTIONS(771), - [anon_sym_private] = ACTIONS(771), - [anon_sym_public] = ACTIONS(771), - [anon_sym_return] = ACTIONS(771), - [anon_sym_static] = ACTIONS(771), - [anon_sym_try] = ACTIONS(771), - [anon_sym_untyped] = ACTIONS(771), - [anon_sym_while] = ACTIONS(771), - [sym__semicolon] = ACTIONS(769), - }, - [256] = { - [ts_builtin_sym_end] = ACTIONS(1266), - [sym_identifier] = ACTIONS(1268), - [anon_sym_POUND] = ACTIONS(1266), - [anon_sym_package] = ACTIONS(1268), - [anon_sym_import] = ACTIONS(1268), - [anon_sym_using] = ACTIONS(1268), - [anon_sym_throw] = ACTIONS(1268), - [anon_sym_LPAREN] = ACTIONS(1266), - [anon_sym_switch] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_RBRACE] = ACTIONS(1266), - [anon_sym_case] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_cast] = ACTIONS(1268), - [anon_sym_DOLLARtype] = ACTIONS(1266), - [anon_sym_in] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(1266), - [anon_sym_this] = ACTIONS(1268), - [anon_sym_AT] = ACTIONS(1268), - [anon_sym_AT_COLON] = ACTIONS(1266), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_else] = ACTIONS(1268), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_PLUS_PLUS] = ACTIONS(1266), - [anon_sym_DASH_DASH] = ACTIONS(1266), - [anon_sym_PERCENT] = ACTIONS(1266), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1266), - [anon_sym_GT_GT] = ACTIONS(1268), - [anon_sym_GT_GT_GT] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_CARET] = ACTIONS(1266), - [anon_sym_AMP_AMP] = ACTIONS(1266), - [anon_sym_PIPE_PIPE] = ACTIONS(1266), - [anon_sym_EQ_EQ] = ACTIONS(1266), - [anon_sym_BANG_EQ] = ACTIONS(1266), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1266), - [anon_sym_GT] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1266), - [anon_sym_EQ_GT] = ACTIONS(1266), - [anon_sym_QMARK_QMARK] = ACTIONS(1266), - [anon_sym_EQ] = ACTIONS(1268), - [sym__rangeOperator] = ACTIONS(1266), - [anon_sym_null] = ACTIONS(1268), - [anon_sym_dynamic] = ACTIONS(1268), - [anon_sym_final] = ACTIONS(1268), - [anon_sym_abstract] = ACTIONS(1268), - [anon_sym_class] = ACTIONS(1268), - [anon_sym_extends] = ACTIONS(1268), - [anon_sym_implements] = ACTIONS(1268), - [anon_sym_interface] = ACTIONS(1268), - [anon_sym_typedef] = ACTIONS(1268), - [anon_sym_function] = ACTIONS(1268), - [anon_sym_var] = ACTIONS(1268), - [aux_sym_integer_token1] = ACTIONS(1268), - [aux_sym_integer_token2] = ACTIONS(1266), - [aux_sym_float_token1] = ACTIONS(1268), - [aux_sym_float_token2] = ACTIONS(1266), - [anon_sym_true] = ACTIONS(1268), - [anon_sym_false] = ACTIONS(1268), - [aux_sym_string_token1] = ACTIONS(1266), - [aux_sym_string_token3] = ACTIONS(1266), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_catch] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_do] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_extern] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_inline] = ACTIONS(1268), - [anon_sym_macro] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1268), - [anon_sym_overload] = ACTIONS(1268), - [anon_sym_override] = ACTIONS(1268), - [anon_sym_private] = ACTIONS(1268), - [anon_sym_public] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_static] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(1268), - [anon_sym_untyped] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [sym__semicolon] = ACTIONS(1266), - }, - [257] = { - [ts_builtin_sym_end] = ACTIONS(1270), - [sym_identifier] = ACTIONS(1272), - [anon_sym_POUND] = ACTIONS(1270), - [anon_sym_package] = ACTIONS(1272), - [anon_sym_import] = ACTIONS(1272), - [anon_sym_using] = ACTIONS(1272), - [anon_sym_throw] = ACTIONS(1272), - [anon_sym_LPAREN] = ACTIONS(1270), - [anon_sym_switch] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_RBRACE] = ACTIONS(1270), - [anon_sym_case] = ACTIONS(1272), - [anon_sym_default] = ACTIONS(1272), - [anon_sym_cast] = ACTIONS(1272), - [anon_sym_DOLLARtype] = ACTIONS(1270), - [anon_sym_in] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1270), - [anon_sym_this] = ACTIONS(1272), - [anon_sym_AT] = ACTIONS(1272), - [anon_sym_AT_COLON] = ACTIONS(1270), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_else] = ACTIONS(1272), - [anon_sym_new] = ACTIONS(1272), - [anon_sym_TILDE] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PERCENT] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_SLASH] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_LT_LT] = ACTIONS(1270), - [anon_sym_GT_GT] = ACTIONS(1272), - [anon_sym_GT_GT_GT] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_CARET] = ACTIONS(1270), - [anon_sym_AMP_AMP] = ACTIONS(1270), - [anon_sym_PIPE_PIPE] = ACTIONS(1270), - [anon_sym_EQ_EQ] = ACTIONS(1270), - [anon_sym_BANG_EQ] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1270), - [anon_sym_GT] = ACTIONS(1272), - [anon_sym_GT_EQ] = ACTIONS(1270), - [anon_sym_EQ_GT] = ACTIONS(1270), - [anon_sym_QMARK_QMARK] = ACTIONS(1270), - [anon_sym_EQ] = ACTIONS(1272), - [sym__rangeOperator] = ACTIONS(1270), - [anon_sym_null] = ACTIONS(1272), - [anon_sym_dynamic] = ACTIONS(1272), - [anon_sym_final] = ACTIONS(1272), - [anon_sym_abstract] = ACTIONS(1272), - [anon_sym_class] = ACTIONS(1272), - [anon_sym_extends] = ACTIONS(1272), - [anon_sym_implements] = ACTIONS(1272), - [anon_sym_interface] = ACTIONS(1272), - [anon_sym_typedef] = ACTIONS(1272), - [anon_sym_function] = ACTIONS(1272), - [anon_sym_var] = ACTIONS(1272), - [aux_sym_integer_token1] = ACTIONS(1272), - [aux_sym_integer_token2] = ACTIONS(1270), - [aux_sym_float_token1] = ACTIONS(1272), - [aux_sym_float_token2] = ACTIONS(1270), - [anon_sym_true] = ACTIONS(1272), - [anon_sym_false] = ACTIONS(1272), - [aux_sym_string_token1] = ACTIONS(1270), - [aux_sym_string_token3] = ACTIONS(1270), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_catch] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_do] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_inline] = ACTIONS(1272), - [anon_sym_macro] = ACTIONS(1272), - [anon_sym_operator] = ACTIONS(1272), - [anon_sym_overload] = ACTIONS(1272), - [anon_sym_override] = ACTIONS(1272), - [anon_sym_private] = ACTIONS(1272), - [anon_sym_public] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_static] = ACTIONS(1272), - [anon_sym_try] = ACTIONS(1272), - [anon_sym_untyped] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [sym__semicolon] = ACTIONS(1270), - }, - [258] = { - [ts_builtin_sym_end] = ACTIONS(1274), - [sym_identifier] = ACTIONS(1276), - [anon_sym_POUND] = ACTIONS(1274), - [anon_sym_package] = ACTIONS(1276), - [anon_sym_import] = ACTIONS(1276), - [anon_sym_using] = ACTIONS(1276), - [anon_sym_throw] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_RBRACE] = ACTIONS(1274), - [anon_sym_case] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_cast] = ACTIONS(1276), - [anon_sym_DOLLARtype] = ACTIONS(1274), - [anon_sym_in] = ACTIONS(1276), - [anon_sym_LBRACK] = ACTIONS(1274), - [anon_sym_this] = ACTIONS(1276), - [anon_sym_AT] = ACTIONS(1276), - [anon_sym_AT_COLON] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_else] = ACTIONS(1276), - [anon_sym_new] = ACTIONS(1276), - [anon_sym_TILDE] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PERCENT] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_LT_LT] = ACTIONS(1274), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_GT_GT_GT] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_PIPE] = ACTIONS(1276), - [anon_sym_CARET] = ACTIONS(1274), - [anon_sym_AMP_AMP] = ACTIONS(1274), - [anon_sym_PIPE_PIPE] = ACTIONS(1274), - [anon_sym_EQ_EQ] = ACTIONS(1274), - [anon_sym_BANG_EQ] = ACTIONS(1274), - [anon_sym_LT] = ACTIONS(1276), - [anon_sym_LT_EQ] = ACTIONS(1274), - [anon_sym_GT] = ACTIONS(1276), - [anon_sym_GT_EQ] = ACTIONS(1274), - [anon_sym_EQ_GT] = ACTIONS(1274), - [anon_sym_QMARK_QMARK] = ACTIONS(1274), - [anon_sym_EQ] = ACTIONS(1276), - [sym__rangeOperator] = ACTIONS(1274), - [anon_sym_null] = ACTIONS(1276), - [anon_sym_dynamic] = ACTIONS(1276), - [anon_sym_final] = ACTIONS(1276), - [anon_sym_abstract] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1276), - [anon_sym_extends] = ACTIONS(1276), - [anon_sym_implements] = ACTIONS(1276), - [anon_sym_interface] = ACTIONS(1276), - [anon_sym_typedef] = ACTIONS(1276), - [anon_sym_function] = ACTIONS(1276), - [anon_sym_var] = ACTIONS(1276), - [aux_sym_integer_token1] = ACTIONS(1276), - [aux_sym_integer_token2] = ACTIONS(1274), - [aux_sym_float_token1] = ACTIONS(1276), - [aux_sym_float_token2] = ACTIONS(1274), - [anon_sym_true] = ACTIONS(1276), - [anon_sym_false] = ACTIONS(1276), - [aux_sym_string_token1] = ACTIONS(1274), - [aux_sym_string_token3] = ACTIONS(1274), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_catch] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_inline] = ACTIONS(1276), - [anon_sym_macro] = ACTIONS(1276), - [anon_sym_operator] = ACTIONS(1276), - [anon_sym_overload] = ACTIONS(1276), - [anon_sym_override] = ACTIONS(1276), - [anon_sym_private] = ACTIONS(1276), - [anon_sym_public] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_try] = ACTIONS(1276), - [anon_sym_untyped] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [sym__semicolon] = ACTIONS(1274), - }, - [259] = { - [ts_builtin_sym_end] = ACTIONS(1278), - [sym_identifier] = ACTIONS(1280), - [anon_sym_POUND] = ACTIONS(1278), - [anon_sym_package] = ACTIONS(1280), - [anon_sym_import] = ACTIONS(1280), - [anon_sym_using] = ACTIONS(1280), - [anon_sym_throw] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1278), - [anon_sym_case] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_cast] = ACTIONS(1280), - [anon_sym_DOLLARtype] = ACTIONS(1278), - [anon_sym_in] = ACTIONS(1280), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_this] = ACTIONS(1280), - [anon_sym_AT] = ACTIONS(1280), - [anon_sym_AT_COLON] = ACTIONS(1278), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_PERCENT] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_LT_LT] = ACTIONS(1278), - [anon_sym_GT_GT] = ACTIONS(1280), - [anon_sym_GT_GT_GT] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1280), - [anon_sym_CARET] = ACTIONS(1278), - [anon_sym_AMP_AMP] = ACTIONS(1278), - [anon_sym_PIPE_PIPE] = ACTIONS(1278), - [anon_sym_EQ_EQ] = ACTIONS(1278), - [anon_sym_BANG_EQ] = ACTIONS(1278), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_LT_EQ] = ACTIONS(1278), - [anon_sym_GT] = ACTIONS(1280), - [anon_sym_GT_EQ] = ACTIONS(1278), - [anon_sym_EQ_GT] = ACTIONS(1278), - [anon_sym_QMARK_QMARK] = ACTIONS(1278), - [anon_sym_EQ] = ACTIONS(1280), - [sym__rangeOperator] = ACTIONS(1278), - [anon_sym_null] = ACTIONS(1280), - [anon_sym_dynamic] = ACTIONS(1280), - [anon_sym_final] = ACTIONS(1280), - [anon_sym_abstract] = ACTIONS(1280), - [anon_sym_class] = ACTIONS(1280), - [anon_sym_extends] = ACTIONS(1280), - [anon_sym_implements] = ACTIONS(1280), - [anon_sym_interface] = ACTIONS(1280), - [anon_sym_typedef] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1280), - [anon_sym_var] = ACTIONS(1280), - [aux_sym_integer_token1] = ACTIONS(1280), - [aux_sym_integer_token2] = ACTIONS(1278), - [aux_sym_float_token1] = ACTIONS(1280), - [aux_sym_float_token2] = ACTIONS(1278), - [anon_sym_true] = ACTIONS(1280), - [anon_sym_false] = ACTIONS(1280), - [aux_sym_string_token1] = ACTIONS(1278), - [aux_sym_string_token3] = ACTIONS(1278), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_catch] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_inline] = ACTIONS(1280), - [anon_sym_macro] = ACTIONS(1280), - [anon_sym_operator] = ACTIONS(1280), - [anon_sym_overload] = ACTIONS(1280), - [anon_sym_override] = ACTIONS(1280), - [anon_sym_private] = ACTIONS(1280), - [anon_sym_public] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_try] = ACTIONS(1280), - [anon_sym_untyped] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [sym__semicolon] = ACTIONS(1278), - }, - [260] = { - [ts_builtin_sym_end] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1284), - [anon_sym_POUND] = ACTIONS(1282), - [anon_sym_package] = ACTIONS(1284), - [anon_sym_import] = ACTIONS(1284), - [anon_sym_using] = ACTIONS(1284), - [anon_sym_throw] = ACTIONS(1284), - [anon_sym_LPAREN] = ACTIONS(1282), - [anon_sym_switch] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_case] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_cast] = ACTIONS(1284), - [anon_sym_DOLLARtype] = ACTIONS(1282), - [anon_sym_in] = ACTIONS(1284), - [anon_sym_LBRACK] = ACTIONS(1282), - [anon_sym_this] = ACTIONS(1284), - [anon_sym_AT] = ACTIONS(1284), - [anon_sym_AT_COLON] = ACTIONS(1282), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_else] = ACTIONS(1284), - [anon_sym_new] = ACTIONS(1284), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_PERCENT] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_LT_LT] = ACTIONS(1282), - [anon_sym_GT_GT] = ACTIONS(1284), - [anon_sym_GT_GT_GT] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_PIPE] = ACTIONS(1284), - [anon_sym_CARET] = ACTIONS(1282), - [anon_sym_AMP_AMP] = ACTIONS(1282), - [anon_sym_PIPE_PIPE] = ACTIONS(1282), - [anon_sym_EQ_EQ] = ACTIONS(1282), - [anon_sym_BANG_EQ] = ACTIONS(1282), - [anon_sym_LT] = ACTIONS(1284), - [anon_sym_LT_EQ] = ACTIONS(1282), - [anon_sym_GT] = ACTIONS(1284), - [anon_sym_GT_EQ] = ACTIONS(1282), - [anon_sym_EQ_GT] = ACTIONS(1282), - [anon_sym_QMARK_QMARK] = ACTIONS(1282), - [anon_sym_EQ] = ACTIONS(1284), - [sym__rangeOperator] = ACTIONS(1282), - [anon_sym_null] = ACTIONS(1284), - [anon_sym_dynamic] = ACTIONS(1284), - [anon_sym_final] = ACTIONS(1284), - [anon_sym_abstract] = ACTIONS(1284), - [anon_sym_class] = ACTIONS(1284), - [anon_sym_extends] = ACTIONS(1284), - [anon_sym_implements] = ACTIONS(1284), - [anon_sym_interface] = ACTIONS(1284), - [anon_sym_typedef] = ACTIONS(1284), - [anon_sym_function] = ACTIONS(1284), - [anon_sym_var] = ACTIONS(1284), - [aux_sym_integer_token1] = ACTIONS(1284), - [aux_sym_integer_token2] = ACTIONS(1282), - [aux_sym_float_token1] = ACTIONS(1284), - [aux_sym_float_token2] = ACTIONS(1282), - [anon_sym_true] = ACTIONS(1284), - [anon_sym_false] = ACTIONS(1284), - [aux_sym_string_token1] = ACTIONS(1282), - [aux_sym_string_token3] = ACTIONS(1282), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_catch] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_inline] = ACTIONS(1284), - [anon_sym_macro] = ACTIONS(1284), - [anon_sym_operator] = ACTIONS(1284), - [anon_sym_overload] = ACTIONS(1284), - [anon_sym_override] = ACTIONS(1284), - [anon_sym_private] = ACTIONS(1284), - [anon_sym_public] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_try] = ACTIONS(1284), - [anon_sym_untyped] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [sym__semicolon] = ACTIONS(1282), - }, - [261] = { - [ts_builtin_sym_end] = ACTIONS(1286), - [sym_identifier] = ACTIONS(1288), - [anon_sym_POUND] = ACTIONS(1286), - [anon_sym_package] = ACTIONS(1288), - [anon_sym_import] = ACTIONS(1288), - [anon_sym_using] = ACTIONS(1288), - [anon_sym_throw] = ACTIONS(1288), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_RBRACE] = ACTIONS(1286), - [anon_sym_case] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_cast] = ACTIONS(1288), - [anon_sym_DOLLARtype] = ACTIONS(1286), - [anon_sym_in] = ACTIONS(1288), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_this] = ACTIONS(1288), - [anon_sym_AT] = ACTIONS(1288), - [anon_sym_AT_COLON] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_else] = ACTIONS(1288), - [anon_sym_new] = ACTIONS(1288), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_PERCENT] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_SLASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_LT_LT] = ACTIONS(1286), - [anon_sym_GT_GT] = ACTIONS(1288), - [anon_sym_GT_GT_GT] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1288), - [anon_sym_CARET] = ACTIONS(1286), - [anon_sym_AMP_AMP] = ACTIONS(1286), - [anon_sym_PIPE_PIPE] = ACTIONS(1286), - [anon_sym_EQ_EQ] = ACTIONS(1286), - [anon_sym_BANG_EQ] = ACTIONS(1286), - [anon_sym_LT] = ACTIONS(1288), - [anon_sym_LT_EQ] = ACTIONS(1286), - [anon_sym_GT] = ACTIONS(1288), - [anon_sym_GT_EQ] = ACTIONS(1286), - [anon_sym_EQ_GT] = ACTIONS(1286), - [anon_sym_QMARK_QMARK] = ACTIONS(1286), - [anon_sym_EQ] = ACTIONS(1288), - [sym__rangeOperator] = ACTIONS(1286), - [anon_sym_null] = ACTIONS(1288), - [anon_sym_dynamic] = ACTIONS(1288), - [anon_sym_final] = ACTIONS(1288), - [anon_sym_abstract] = ACTIONS(1288), - [anon_sym_class] = ACTIONS(1288), - [anon_sym_extends] = ACTIONS(1288), - [anon_sym_implements] = ACTIONS(1288), - [anon_sym_interface] = ACTIONS(1288), - [anon_sym_typedef] = ACTIONS(1288), - [anon_sym_function] = ACTIONS(1288), - [anon_sym_var] = ACTIONS(1288), - [aux_sym_integer_token1] = ACTIONS(1288), - [aux_sym_integer_token2] = ACTIONS(1286), - [aux_sym_float_token1] = ACTIONS(1288), - [aux_sym_float_token2] = ACTIONS(1286), - [anon_sym_true] = ACTIONS(1288), - [anon_sym_false] = ACTIONS(1288), - [aux_sym_string_token1] = ACTIONS(1286), - [aux_sym_string_token3] = ACTIONS(1286), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_catch] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_inline] = ACTIONS(1288), - [anon_sym_macro] = ACTIONS(1288), - [anon_sym_operator] = ACTIONS(1288), - [anon_sym_overload] = ACTIONS(1288), - [anon_sym_override] = ACTIONS(1288), - [anon_sym_private] = ACTIONS(1288), - [anon_sym_public] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_try] = ACTIONS(1288), - [anon_sym_untyped] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [sym__semicolon] = ACTIONS(1286), - }, - [262] = { - [ts_builtin_sym_end] = ACTIONS(1290), - [sym_identifier] = ACTIONS(1292), - [anon_sym_POUND] = ACTIONS(1290), - [anon_sym_package] = ACTIONS(1292), - [anon_sym_import] = ACTIONS(1292), - [anon_sym_using] = ACTIONS(1292), - [anon_sym_throw] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(1290), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_RBRACE] = ACTIONS(1290), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_cast] = ACTIONS(1292), - [anon_sym_DOLLARtype] = ACTIONS(1290), - [anon_sym_in] = ACTIONS(1292), - [anon_sym_LBRACK] = ACTIONS(1290), - [anon_sym_this] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(1292), - [anon_sym_AT_COLON] = ACTIONS(1290), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1292), - [anon_sym_new] = ACTIONS(1292), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_DASH_DASH] = ACTIONS(1290), - [anon_sym_PERCENT] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_SLASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_LT_LT] = ACTIONS(1290), - [anon_sym_GT_GT] = ACTIONS(1292), - [anon_sym_GT_GT_GT] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1292), - [anon_sym_CARET] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1290), - [anon_sym_EQ_EQ] = ACTIONS(1290), - [anon_sym_BANG_EQ] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(1292), - [anon_sym_LT_EQ] = ACTIONS(1290), - [anon_sym_GT] = ACTIONS(1292), - [anon_sym_GT_EQ] = ACTIONS(1290), - [anon_sym_EQ_GT] = ACTIONS(1290), - [anon_sym_QMARK_QMARK] = ACTIONS(1290), - [anon_sym_EQ] = ACTIONS(1292), - [sym__rangeOperator] = ACTIONS(1290), - [anon_sym_null] = ACTIONS(1292), - [anon_sym_dynamic] = ACTIONS(1292), - [anon_sym_final] = ACTIONS(1292), - [anon_sym_abstract] = ACTIONS(1292), - [anon_sym_class] = ACTIONS(1292), - [anon_sym_extends] = ACTIONS(1292), - [anon_sym_implements] = ACTIONS(1292), - [anon_sym_interface] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_function] = ACTIONS(1292), - [anon_sym_var] = ACTIONS(1292), - [aux_sym_integer_token1] = ACTIONS(1292), - [aux_sym_integer_token2] = ACTIONS(1290), - [aux_sym_float_token1] = ACTIONS(1292), - [aux_sym_float_token2] = ACTIONS(1290), - [anon_sym_true] = ACTIONS(1292), - [anon_sym_false] = ACTIONS(1292), - [aux_sym_string_token1] = ACTIONS(1290), - [aux_sym_string_token3] = ACTIONS(1290), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_catch] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym_macro] = ACTIONS(1292), - [anon_sym_operator] = ACTIONS(1292), - [anon_sym_overload] = ACTIONS(1292), - [anon_sym_override] = ACTIONS(1292), - [anon_sym_private] = ACTIONS(1292), - [anon_sym_public] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_try] = ACTIONS(1292), - [anon_sym_untyped] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [sym__semicolon] = ACTIONS(1290), - }, - [263] = { - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1296), - [anon_sym_POUND] = ACTIONS(1294), - [anon_sym_package] = ACTIONS(1296), - [anon_sym_import] = ACTIONS(1296), - [anon_sym_using] = ACTIONS(1296), - [anon_sym_throw] = ACTIONS(1296), - [anon_sym_LPAREN] = ACTIONS(1294), - [anon_sym_switch] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_case] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_cast] = ACTIONS(1296), - [anon_sym_DOLLARtype] = ACTIONS(1294), - [anon_sym_in] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_this] = ACTIONS(1296), - [anon_sym_AT] = ACTIONS(1296), - [anon_sym_AT_COLON] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_else] = ACTIONS(1296), - [anon_sym_new] = ACTIONS(1296), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PERCENT] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_LT_LT] = ACTIONS(1294), - [anon_sym_GT_GT] = ACTIONS(1296), - [anon_sym_GT_GT_GT] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1296), - [anon_sym_CARET] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT] = ACTIONS(1296), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_EQ_GT] = ACTIONS(1294), - [anon_sym_QMARK_QMARK] = ACTIONS(1294), - [anon_sym_EQ] = ACTIONS(1296), - [sym__rangeOperator] = ACTIONS(1294), - [anon_sym_null] = ACTIONS(1296), - [anon_sym_dynamic] = ACTIONS(1296), - [anon_sym_final] = ACTIONS(1296), - [anon_sym_abstract] = ACTIONS(1296), - [anon_sym_class] = ACTIONS(1296), - [anon_sym_extends] = ACTIONS(1296), - [anon_sym_implements] = ACTIONS(1296), - [anon_sym_interface] = ACTIONS(1296), - [anon_sym_typedef] = ACTIONS(1296), - [anon_sym_function] = ACTIONS(1296), - [anon_sym_var] = ACTIONS(1296), - [aux_sym_integer_token1] = ACTIONS(1296), - [aux_sym_integer_token2] = ACTIONS(1294), - [aux_sym_float_token1] = ACTIONS(1296), - [aux_sym_float_token2] = ACTIONS(1294), - [anon_sym_true] = ACTIONS(1296), - [anon_sym_false] = ACTIONS(1296), - [aux_sym_string_token1] = ACTIONS(1294), - [aux_sym_string_token3] = ACTIONS(1294), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_catch] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_inline] = ACTIONS(1296), - [anon_sym_macro] = ACTIONS(1296), - [anon_sym_operator] = ACTIONS(1296), - [anon_sym_overload] = ACTIONS(1296), - [anon_sym_override] = ACTIONS(1296), - [anon_sym_private] = ACTIONS(1296), - [anon_sym_public] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_try] = ACTIONS(1296), - [anon_sym_untyped] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [sym__semicolon] = ACTIONS(1294), - }, - [264] = { - [ts_builtin_sym_end] = ACTIONS(1298), - [sym_identifier] = ACTIONS(1300), - [anon_sym_POUND] = ACTIONS(1298), - [anon_sym_package] = ACTIONS(1300), - [anon_sym_import] = ACTIONS(1300), - [anon_sym_using] = ACTIONS(1300), - [anon_sym_throw] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_cast] = ACTIONS(1300), - [anon_sym_DOLLARtype] = ACTIONS(1298), - [anon_sym_in] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_this] = ACTIONS(1300), - [anon_sym_AT] = ACTIONS(1300), - [anon_sym_AT_COLON] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_else] = ACTIONS(1300), - [anon_sym_new] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PERCENT] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_LT_LT] = ACTIONS(1298), - [anon_sym_GT_GT] = ACTIONS(1300), - [anon_sym_GT_GT_GT] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1300), - [anon_sym_CARET] = ACTIONS(1298), - [anon_sym_AMP_AMP] = ACTIONS(1298), - [anon_sym_PIPE_PIPE] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1298), - [anon_sym_BANG_EQ] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_GT] = ACTIONS(1300), - [anon_sym_GT_EQ] = ACTIONS(1298), - [anon_sym_EQ_GT] = ACTIONS(1298), - [anon_sym_QMARK_QMARK] = ACTIONS(1298), - [anon_sym_EQ] = ACTIONS(1300), - [sym__rangeOperator] = ACTIONS(1298), - [anon_sym_null] = ACTIONS(1300), - [anon_sym_dynamic] = ACTIONS(1300), - [anon_sym_final] = ACTIONS(1300), - [anon_sym_abstract] = ACTIONS(1300), - [anon_sym_class] = ACTIONS(1300), - [anon_sym_extends] = ACTIONS(1300), - [anon_sym_implements] = ACTIONS(1300), - [anon_sym_interface] = 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(1298), - [aux_sym_float_token1] = ACTIONS(1300), - [aux_sym_float_token2] = ACTIONS(1298), - [anon_sym_true] = ACTIONS(1300), - [anon_sym_false] = ACTIONS(1300), - [aux_sym_string_token1] = ACTIONS(1298), - [aux_sym_string_token3] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_catch] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym_macro] = ACTIONS(1300), - [anon_sym_operator] = ACTIONS(1300), - [anon_sym_overload] = ACTIONS(1300), - [anon_sym_override] = ACTIONS(1300), - [anon_sym_private] = ACTIONS(1300), - [anon_sym_public] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_try] = ACTIONS(1300), - [anon_sym_untyped] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [sym__semicolon] = ACTIONS(1298), + [anon_sym_POUND] = ACTIONS(1232), + [anon_sym_package] = ACTIONS(1234), + [anon_sym_import] = ACTIONS(1234), + [anon_sym_using] = ACTIONS(1234), + [anon_sym_throw] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(1232), + [anon_sym_switch] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_RBRACE] = ACTIONS(1232), + [anon_sym_case] = ACTIONS(1234), + [anon_sym_default] = ACTIONS(1234), + [anon_sym_cast] = ACTIONS(1234), + [anon_sym_DOLLARtype] = ACTIONS(1232), + [anon_sym_in] = ACTIONS(1234), + [anon_sym_LBRACK] = ACTIONS(1232), + [anon_sym_this] = ACTIONS(1234), + [anon_sym_AT] = ACTIONS(1234), + [anon_sym_AT_COLON] = ACTIONS(1232), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_else] = ACTIONS(1234), + [anon_sym_new] = ACTIONS(1234), + [sym__prefixUnaryOperator] = ACTIONS(1234), + [sym__eitherUnaryOperator] = ACTIONS(1232), + [anon_sym_null] = ACTIONS(1234), + [anon_sym_dynamic] = ACTIONS(1234), + [anon_sym_final] = ACTIONS(1234), + [anon_sym_abstract] = ACTIONS(1234), + [anon_sym_class] = ACTIONS(1234), + [anon_sym_extends] = ACTIONS(1234), + [anon_sym_implements] = ACTIONS(1234), + [anon_sym_interface] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1234), + [anon_sym_function] = ACTIONS(1234), + [anon_sym_var] = ACTIONS(1234), + [aux_sym_integer_token1] = ACTIONS(1234), + [aux_sym_integer_token2] = ACTIONS(1232), + [aux_sym_float_token1] = ACTIONS(1234), + [aux_sym_float_token2] = ACTIONS(1232), + [anon_sym_true] = ACTIONS(1234), + [anon_sym_false] = ACTIONS(1234), + [aux_sym_string_token1] = ACTIONS(1232), + [aux_sym_string_token3] = ACTIONS(1232), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_catch] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [anon_sym_extern] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_inline] = ACTIONS(1234), + [anon_sym_macro] = ACTIONS(1234), + [anon_sym_operator] = ACTIONS(1234), + [anon_sym_overload] = ACTIONS(1234), + [anon_sym_override] = ACTIONS(1234), + [anon_sym_private] = ACTIONS(1234), + [anon_sym_public] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_try] = ACTIONS(1234), + [anon_sym_untyped] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [sym__semicolon] = ACTIONS(1232), }, - [265] = { - [ts_builtin_sym_end] = ACTIONS(1302), - [sym_identifier] = ACTIONS(1304), - [anon_sym_POUND] = ACTIONS(1302), - [anon_sym_package] = ACTIONS(1304), - [anon_sym_import] = ACTIONS(1304), - [anon_sym_using] = ACTIONS(1304), - [anon_sym_throw] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_RBRACE] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_cast] = ACTIONS(1304), - [anon_sym_DOLLARtype] = ACTIONS(1302), - [anon_sym_in] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(1302), - [anon_sym_this] = ACTIONS(1304), - [anon_sym_AT] = ACTIONS(1304), - [anon_sym_AT_COLON] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_else] = ACTIONS(1304), - [anon_sym_new] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PERCENT] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_LT_LT] = ACTIONS(1302), - [anon_sym_GT_GT] = ACTIONS(1304), - [anon_sym_GT_GT_GT] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1304), - [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(1304), - [anon_sym_LT_EQ] = ACTIONS(1302), - [anon_sym_GT] = ACTIONS(1304), - [anon_sym_GT_EQ] = ACTIONS(1302), - [anon_sym_EQ_GT] = ACTIONS(1302), - [anon_sym_QMARK_QMARK] = ACTIONS(1302), - [anon_sym_EQ] = ACTIONS(1304), - [sym__rangeOperator] = ACTIONS(1302), - [anon_sym_null] = ACTIONS(1304), - [anon_sym_dynamic] = ACTIONS(1304), - [anon_sym_final] = ACTIONS(1304), - [anon_sym_abstract] = ACTIONS(1304), - [anon_sym_class] = ACTIONS(1304), - [anon_sym_extends] = ACTIONS(1304), - [anon_sym_implements] = ACTIONS(1304), - [anon_sym_interface] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(1304), - [anon_sym_function] = ACTIONS(1304), - [anon_sym_var] = ACTIONS(1304), - [aux_sym_integer_token1] = ACTIONS(1304), - [aux_sym_integer_token2] = ACTIONS(1302), - [aux_sym_float_token1] = ACTIONS(1304), - [aux_sym_float_token2] = ACTIONS(1302), - [anon_sym_true] = ACTIONS(1304), - [anon_sym_false] = ACTIONS(1304), - [aux_sym_string_token1] = ACTIONS(1302), - [aux_sym_string_token3] = ACTIONS(1302), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_catch] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_inline] = ACTIONS(1304), - [anon_sym_macro] = ACTIONS(1304), - [anon_sym_operator] = ACTIONS(1304), - [anon_sym_overload] = ACTIONS(1304), - [anon_sym_override] = ACTIONS(1304), - [anon_sym_private] = ACTIONS(1304), - [anon_sym_public] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_try] = ACTIONS(1304), - [anon_sym_untyped] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [sym__semicolon] = ACTIONS(1302), + [279] = { + [ts_builtin_sym_end] = ACTIONS(1236), + [sym_identifier] = ACTIONS(1238), + [anon_sym_POUND] = ACTIONS(1236), + [anon_sym_package] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(1238), + [anon_sym_using] = ACTIONS(1238), + [anon_sym_throw] = ACTIONS(1238), + [anon_sym_LPAREN] = ACTIONS(1236), + [anon_sym_switch] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_RBRACE] = ACTIONS(1236), + [anon_sym_case] = ACTIONS(1238), + [anon_sym_default] = ACTIONS(1238), + [anon_sym_cast] = ACTIONS(1238), + [anon_sym_DOLLARtype] = ACTIONS(1236), + [anon_sym_in] = ACTIONS(1238), + [anon_sym_LBRACK] = ACTIONS(1236), + [anon_sym_this] = ACTIONS(1238), + [anon_sym_AT] = ACTIONS(1238), + [anon_sym_AT_COLON] = ACTIONS(1236), + [anon_sym_if] = ACTIONS(1238), + [anon_sym_else] = ACTIONS(1238), + [anon_sym_new] = ACTIONS(1238), + [sym__prefixUnaryOperator] = ACTIONS(1238), + [sym__eitherUnaryOperator] = ACTIONS(1236), + [anon_sym_null] = ACTIONS(1238), + [anon_sym_dynamic] = ACTIONS(1238), + [anon_sym_final] = ACTIONS(1238), + [anon_sym_abstract] = ACTIONS(1238), + [anon_sym_class] = ACTIONS(1238), + [anon_sym_extends] = ACTIONS(1238), + [anon_sym_implements] = ACTIONS(1238), + [anon_sym_interface] = ACTIONS(1238), + [anon_sym_typedef] = ACTIONS(1238), + [anon_sym_function] = ACTIONS(1238), + [anon_sym_var] = ACTIONS(1238), + [aux_sym_integer_token1] = ACTIONS(1238), + [aux_sym_integer_token2] = ACTIONS(1236), + [aux_sym_float_token1] = ACTIONS(1238), + [aux_sym_float_token2] = ACTIONS(1236), + [anon_sym_true] = ACTIONS(1238), + [anon_sym_false] = ACTIONS(1238), + [aux_sym_string_token1] = ACTIONS(1236), + [aux_sym_string_token3] = ACTIONS(1236), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1238), + [anon_sym_catch] = ACTIONS(1238), + [anon_sym_continue] = ACTIONS(1238), + [anon_sym_do] = ACTIONS(1238), + [anon_sym_enum] = ACTIONS(1238), + [anon_sym_extern] = ACTIONS(1238), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_inline] = ACTIONS(1238), + [anon_sym_macro] = ACTIONS(1238), + [anon_sym_operator] = ACTIONS(1238), + [anon_sym_overload] = ACTIONS(1238), + [anon_sym_override] = ACTIONS(1238), + [anon_sym_private] = ACTIONS(1238), + [anon_sym_public] = ACTIONS(1238), + [anon_sym_return] = ACTIONS(1238), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_try] = ACTIONS(1238), + [anon_sym_untyped] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1238), + [sym__semicolon] = ACTIONS(1236), }, - [266] = { - [ts_builtin_sym_end] = ACTIONS(1306), - [sym_identifier] = ACTIONS(1308), - [anon_sym_POUND] = ACTIONS(1306), - [anon_sym_package] = ACTIONS(1308), - [anon_sym_import] = ACTIONS(1308), - [anon_sym_using] = ACTIONS(1308), - [anon_sym_throw] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_cast] = ACTIONS(1308), - [anon_sym_DOLLARtype] = ACTIONS(1306), - [anon_sym_in] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(1306), - [anon_sym_this] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(1308), - [anon_sym_AT_COLON] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_else] = ACTIONS(1308), - [anon_sym_new] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PERCENT] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_SLASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_LT_LT] = ACTIONS(1306), - [anon_sym_GT_GT] = ACTIONS(1308), - [anon_sym_GT_GT_GT] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_PIPE] = ACTIONS(1308), - [anon_sym_CARET] = ACTIONS(1306), - [anon_sym_AMP_AMP] = ACTIONS(1306), - [anon_sym_PIPE_PIPE] = ACTIONS(1306), - [anon_sym_EQ_EQ] = ACTIONS(1306), - [anon_sym_BANG_EQ] = ACTIONS(1306), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_LT_EQ] = ACTIONS(1306), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_GT_EQ] = ACTIONS(1306), - [anon_sym_EQ_GT] = ACTIONS(1306), - [anon_sym_QMARK_QMARK] = ACTIONS(1306), - [anon_sym_EQ] = ACTIONS(1308), - [sym__rangeOperator] = ACTIONS(1306), - [anon_sym_null] = ACTIONS(1308), - [anon_sym_dynamic] = ACTIONS(1308), - [anon_sym_final] = ACTIONS(1308), - [anon_sym_abstract] = ACTIONS(1308), - [anon_sym_class] = ACTIONS(1308), - [anon_sym_extends] = ACTIONS(1308), - [anon_sym_implements] = ACTIONS(1308), - [anon_sym_interface] = ACTIONS(1308), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_function] = ACTIONS(1308), - [anon_sym_var] = ACTIONS(1308), - [aux_sym_integer_token1] = ACTIONS(1308), - [aux_sym_integer_token2] = ACTIONS(1306), - [aux_sym_float_token1] = ACTIONS(1308), - [aux_sym_float_token2] = ACTIONS(1306), - [anon_sym_true] = ACTIONS(1308), - [anon_sym_false] = ACTIONS(1308), - [aux_sym_string_token1] = ACTIONS(1306), - [aux_sym_string_token3] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_catch] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym_macro] = ACTIONS(1308), - [anon_sym_operator] = ACTIONS(1308), - [anon_sym_overload] = ACTIONS(1308), - [anon_sym_override] = ACTIONS(1308), - [anon_sym_private] = ACTIONS(1308), - [anon_sym_public] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_try] = ACTIONS(1308), - [anon_sym_untyped] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [sym__semicolon] = ACTIONS(1306), + [280] = { + [ts_builtin_sym_end] = ACTIONS(1240), + [sym_identifier] = ACTIONS(1242), + [anon_sym_POUND] = ACTIONS(1240), + [anon_sym_package] = ACTIONS(1242), + [anon_sym_import] = ACTIONS(1242), + [anon_sym_using] = ACTIONS(1242), + [anon_sym_throw] = ACTIONS(1242), + [anon_sym_LPAREN] = ACTIONS(1240), + [anon_sym_switch] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_RBRACE] = ACTIONS(1240), + [anon_sym_case] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(1242), + [anon_sym_cast] = ACTIONS(1242), + [anon_sym_DOLLARtype] = ACTIONS(1240), + [anon_sym_in] = ACTIONS(1242), + [anon_sym_LBRACK] = ACTIONS(1240), + [anon_sym_this] = ACTIONS(1242), + [anon_sym_AT] = ACTIONS(1242), + [anon_sym_AT_COLON] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1242), + [anon_sym_else] = ACTIONS(1242), + [anon_sym_new] = ACTIONS(1242), + [sym__prefixUnaryOperator] = ACTIONS(1242), + [sym__eitherUnaryOperator] = ACTIONS(1240), + [anon_sym_null] = ACTIONS(1242), + [anon_sym_dynamic] = ACTIONS(1242), + [anon_sym_final] = ACTIONS(1242), + [anon_sym_abstract] = ACTIONS(1242), + [anon_sym_class] = ACTIONS(1242), + [anon_sym_extends] = ACTIONS(1242), + [anon_sym_implements] = ACTIONS(1242), + [anon_sym_interface] = ACTIONS(1242), + [anon_sym_typedef] = ACTIONS(1242), + [anon_sym_function] = ACTIONS(1242), + [anon_sym_var] = ACTIONS(1242), + [aux_sym_integer_token1] = ACTIONS(1242), + [aux_sym_integer_token2] = ACTIONS(1240), + [aux_sym_float_token1] = ACTIONS(1242), + [aux_sym_float_token2] = ACTIONS(1240), + [anon_sym_true] = ACTIONS(1242), + [anon_sym_false] = ACTIONS(1242), + [aux_sym_string_token1] = ACTIONS(1240), + [aux_sym_string_token3] = ACTIONS(1240), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1242), + [anon_sym_catch] = ACTIONS(1242), + [anon_sym_continue] = ACTIONS(1242), + [anon_sym_do] = ACTIONS(1242), + [anon_sym_enum] = ACTIONS(1242), + [anon_sym_extern] = ACTIONS(1242), + [anon_sym_for] = ACTIONS(1242), + [anon_sym_inline] = ACTIONS(1242), + [anon_sym_macro] = ACTIONS(1242), + [anon_sym_operator] = ACTIONS(1242), + [anon_sym_overload] = ACTIONS(1242), + [anon_sym_override] = ACTIONS(1242), + [anon_sym_private] = ACTIONS(1242), + [anon_sym_public] = ACTIONS(1242), + [anon_sym_return] = ACTIONS(1242), + [anon_sym_static] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1242), + [anon_sym_untyped] = ACTIONS(1242), + [anon_sym_while] = ACTIONS(1242), + [sym__semicolon] = ACTIONS(1240), }, - [267] = { - [ts_builtin_sym_end] = ACTIONS(1310), - [sym_identifier] = ACTIONS(1312), - [anon_sym_POUND] = ACTIONS(1310), - [anon_sym_package] = ACTIONS(1312), - [anon_sym_import] = ACTIONS(1312), - [anon_sym_using] = ACTIONS(1312), - [anon_sym_throw] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_RBRACE] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_cast] = ACTIONS(1312), - [anon_sym_DOLLARtype] = ACTIONS(1310), - [anon_sym_in] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1310), - [anon_sym_this] = ACTIONS(1312), - [anon_sym_AT] = ACTIONS(1312), - [anon_sym_AT_COLON] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_new] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PERCENT] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_SLASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_LT_LT] = ACTIONS(1310), - [anon_sym_GT_GT] = ACTIONS(1312), - [anon_sym_GT_GT_GT] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_CARET] = ACTIONS(1310), - [anon_sym_AMP_AMP] = ACTIONS(1310), - [anon_sym_PIPE_PIPE] = ACTIONS(1310), - [anon_sym_EQ_EQ] = ACTIONS(1310), - [anon_sym_BANG_EQ] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1312), - [anon_sym_LT_EQ] = ACTIONS(1310), - [anon_sym_GT] = ACTIONS(1312), - [anon_sym_GT_EQ] = ACTIONS(1310), - [anon_sym_EQ_GT] = ACTIONS(1310), - [anon_sym_QMARK_QMARK] = ACTIONS(1310), - [anon_sym_EQ] = ACTIONS(1312), - [sym__rangeOperator] = ACTIONS(1310), - [anon_sym_null] = ACTIONS(1312), - [anon_sym_dynamic] = ACTIONS(1312), - [anon_sym_final] = ACTIONS(1312), - [anon_sym_abstract] = ACTIONS(1312), - [anon_sym_class] = ACTIONS(1312), - [anon_sym_extends] = ACTIONS(1312), - [anon_sym_implements] = ACTIONS(1312), - [anon_sym_interface] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_function] = ACTIONS(1312), - [anon_sym_var] = ACTIONS(1312), - [aux_sym_integer_token1] = ACTIONS(1312), - [aux_sym_integer_token2] = ACTIONS(1310), - [aux_sym_float_token1] = ACTIONS(1312), - [aux_sym_float_token2] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1312), - [anon_sym_false] = ACTIONS(1312), - [aux_sym_string_token1] = ACTIONS(1310), - [aux_sym_string_token3] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_catch] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym_macro] = ACTIONS(1312), - [anon_sym_operator] = ACTIONS(1312), - [anon_sym_overload] = ACTIONS(1312), - [anon_sym_override] = ACTIONS(1312), - [anon_sym_private] = ACTIONS(1312), - [anon_sym_public] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(1312), - [anon_sym_untyped] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [sym__semicolon] = ACTIONS(1310), + [281] = { + [ts_builtin_sym_end] = ACTIONS(1244), + [sym_identifier] = ACTIONS(1246), + [anon_sym_POUND] = ACTIONS(1244), + [anon_sym_package] = ACTIONS(1246), + [anon_sym_import] = ACTIONS(1246), + [anon_sym_using] = ACTIONS(1246), + [anon_sym_throw] = ACTIONS(1246), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_case] = ACTIONS(1246), + [anon_sym_default] = ACTIONS(1246), + [anon_sym_cast] = ACTIONS(1246), + [anon_sym_DOLLARtype] = ACTIONS(1244), + [anon_sym_in] = ACTIONS(1246), + [anon_sym_LBRACK] = ACTIONS(1244), + [anon_sym_this] = ACTIONS(1246), + [anon_sym_AT] = ACTIONS(1246), + [anon_sym_AT_COLON] = ACTIONS(1244), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_else] = ACTIONS(1246), + [anon_sym_new] = ACTIONS(1246), + [sym__prefixUnaryOperator] = ACTIONS(1246), + [sym__eitherUnaryOperator] = ACTIONS(1244), + [anon_sym_null] = ACTIONS(1246), + [anon_sym_dynamic] = ACTIONS(1246), + [anon_sym_final] = ACTIONS(1246), + [anon_sym_abstract] = ACTIONS(1246), + [anon_sym_class] = ACTIONS(1246), + [anon_sym_extends] = ACTIONS(1246), + [anon_sym_implements] = ACTIONS(1246), + [anon_sym_interface] = ACTIONS(1246), + [anon_sym_typedef] = ACTIONS(1246), + [anon_sym_function] = ACTIONS(1246), + [anon_sym_var] = ACTIONS(1246), + [aux_sym_integer_token1] = ACTIONS(1246), + [aux_sym_integer_token2] = ACTIONS(1244), + [aux_sym_float_token1] = ACTIONS(1246), + [aux_sym_float_token2] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1246), + [anon_sym_false] = ACTIONS(1246), + [aux_sym_string_token1] = ACTIONS(1244), + [aux_sym_string_token3] = ACTIONS(1244), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_catch] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_do] = ACTIONS(1246), + [anon_sym_enum] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1246), + [anon_sym_inline] = ACTIONS(1246), + [anon_sym_macro] = ACTIONS(1246), + [anon_sym_operator] = ACTIONS(1246), + [anon_sym_overload] = ACTIONS(1246), + [anon_sym_override] = ACTIONS(1246), + [anon_sym_private] = ACTIONS(1246), + [anon_sym_public] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_static] = ACTIONS(1246), + [anon_sym_try] = ACTIONS(1246), + [anon_sym_untyped] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1246), + [sym__semicolon] = ACTIONS(1244), }, - [268] = { - [ts_builtin_sym_end] = ACTIONS(1314), - [sym_identifier] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1314), - [anon_sym_package] = ACTIONS(1316), - [anon_sym_import] = ACTIONS(1316), - [anon_sym_using] = ACTIONS(1316), - [anon_sym_throw] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_RBRACE] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_cast] = ACTIONS(1316), - [anon_sym_DOLLARtype] = ACTIONS(1314), - [anon_sym_in] = ACTIONS(1316), - [anon_sym_LBRACK] = ACTIONS(1314), - [anon_sym_this] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AT_COLON] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_else] = ACTIONS(1316), - [anon_sym_new] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PERCENT] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_LT_LT] = ACTIONS(1314), - [anon_sym_GT_GT] = ACTIONS(1316), - [anon_sym_GT_GT_GT] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1314), - [anon_sym_AMP_AMP] = ACTIONS(1314), - [anon_sym_PIPE_PIPE] = ACTIONS(1314), - [anon_sym_EQ_EQ] = ACTIONS(1314), - [anon_sym_BANG_EQ] = ACTIONS(1314), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_LT_EQ] = ACTIONS(1314), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_GT_EQ] = ACTIONS(1314), - [anon_sym_EQ_GT] = ACTIONS(1314), - [anon_sym_QMARK_QMARK] = ACTIONS(1314), - [anon_sym_EQ] = ACTIONS(1316), - [sym__rangeOperator] = ACTIONS(1314), - [anon_sym_null] = ACTIONS(1316), - [anon_sym_dynamic] = ACTIONS(1316), - [anon_sym_final] = ACTIONS(1316), - [anon_sym_abstract] = ACTIONS(1316), - [anon_sym_class] = ACTIONS(1316), - [anon_sym_extends] = ACTIONS(1316), - [anon_sym_implements] = ACTIONS(1316), - [anon_sym_interface] = ACTIONS(1316), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_function] = ACTIONS(1316), - [anon_sym_var] = ACTIONS(1316), - [aux_sym_integer_token1] = ACTIONS(1316), - [aux_sym_integer_token2] = ACTIONS(1314), - [aux_sym_float_token1] = ACTIONS(1316), - [aux_sym_float_token2] = ACTIONS(1314), - [anon_sym_true] = ACTIONS(1316), - [anon_sym_false] = ACTIONS(1316), - [aux_sym_string_token1] = ACTIONS(1314), - [aux_sym_string_token3] = ACTIONS(1314), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_catch] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), - [anon_sym_macro] = ACTIONS(1316), - [anon_sym_operator] = ACTIONS(1316), - [anon_sym_overload] = ACTIONS(1316), - [anon_sym_override] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_try] = ACTIONS(1316), - [anon_sym_untyped] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [sym__semicolon] = ACTIONS(1314), + [282] = { + [ts_builtin_sym_end] = ACTIONS(1248), + [sym_identifier] = ACTIONS(1250), + [anon_sym_POUND] = ACTIONS(1248), + [anon_sym_package] = ACTIONS(1250), + [anon_sym_import] = ACTIONS(1250), + [anon_sym_using] = ACTIONS(1250), + [anon_sym_throw] = ACTIONS(1250), + [anon_sym_LPAREN] = ACTIONS(1248), + [anon_sym_switch] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_RBRACE] = ACTIONS(1248), + [anon_sym_case] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1250), + [anon_sym_cast] = ACTIONS(1250), + [anon_sym_DOLLARtype] = ACTIONS(1248), + [anon_sym_in] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1248), + [anon_sym_this] = ACTIONS(1250), + [anon_sym_AT] = ACTIONS(1250), + [anon_sym_AT_COLON] = ACTIONS(1248), + [anon_sym_if] = ACTIONS(1250), + [anon_sym_else] = ACTIONS(1250), + [anon_sym_new] = ACTIONS(1250), + [sym__prefixUnaryOperator] = ACTIONS(1250), + [sym__eitherUnaryOperator] = ACTIONS(1248), + [anon_sym_null] = ACTIONS(1250), + [anon_sym_dynamic] = ACTIONS(1250), + [anon_sym_final] = ACTIONS(1250), + [anon_sym_abstract] = ACTIONS(1250), + [anon_sym_class] = ACTIONS(1250), + [anon_sym_extends] = ACTIONS(1250), + [anon_sym_implements] = ACTIONS(1250), + [anon_sym_interface] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1250), + [anon_sym_function] = ACTIONS(1250), + [anon_sym_var] = ACTIONS(1250), + [aux_sym_integer_token1] = ACTIONS(1250), + [aux_sym_integer_token2] = ACTIONS(1248), + [aux_sym_float_token1] = ACTIONS(1250), + [aux_sym_float_token2] = ACTIONS(1248), + [anon_sym_true] = ACTIONS(1250), + [anon_sym_false] = ACTIONS(1250), + [aux_sym_string_token1] = ACTIONS(1248), + [aux_sym_string_token3] = ACTIONS(1248), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1250), + [anon_sym_catch] = ACTIONS(1250), + [anon_sym_continue] = ACTIONS(1250), + [anon_sym_do] = ACTIONS(1250), + [anon_sym_enum] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1250), + [anon_sym_for] = ACTIONS(1250), + [anon_sym_inline] = ACTIONS(1250), + [anon_sym_macro] = ACTIONS(1250), + [anon_sym_operator] = ACTIONS(1250), + [anon_sym_overload] = ACTIONS(1250), + [anon_sym_override] = ACTIONS(1250), + [anon_sym_private] = ACTIONS(1250), + [anon_sym_public] = ACTIONS(1250), + [anon_sym_return] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1250), + [anon_sym_try] = ACTIONS(1250), + [anon_sym_untyped] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1250), + [sym__semicolon] = ACTIONS(1248), }, - [269] = { - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1320), - [anon_sym_POUND] = ACTIONS(1318), - [anon_sym_package] = ACTIONS(1320), - [anon_sym_import] = ACTIONS(1320), - [anon_sym_using] = ACTIONS(1320), - [anon_sym_throw] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_cast] = ACTIONS(1320), - [anon_sym_DOLLARtype] = ACTIONS(1318), - [anon_sym_in] = ACTIONS(1320), - [anon_sym_LBRACK] = ACTIONS(1318), - [anon_sym_this] = ACTIONS(1320), - [anon_sym_AT] = ACTIONS(1320), - [anon_sym_AT_COLON] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_new] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PERCENT] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_LT_LT] = ACTIONS(1318), - [anon_sym_GT_GT] = ACTIONS(1320), - [anon_sym_GT_GT_GT] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1320), - [anon_sym_CARET] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1318), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_EQ_GT] = ACTIONS(1318), - [anon_sym_QMARK_QMARK] = ACTIONS(1318), - [anon_sym_EQ] = ACTIONS(1320), - [sym__rangeOperator] = ACTIONS(1318), - [anon_sym_null] = ACTIONS(1320), - [anon_sym_dynamic] = ACTIONS(1320), - [anon_sym_final] = ACTIONS(1320), - [anon_sym_abstract] = ACTIONS(1320), - [anon_sym_class] = ACTIONS(1320), - [anon_sym_extends] = ACTIONS(1320), - [anon_sym_implements] = ACTIONS(1320), - [anon_sym_interface] = ACTIONS(1320), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_function] = ACTIONS(1320), - [anon_sym_var] = ACTIONS(1320), - [aux_sym_integer_token1] = ACTIONS(1320), - [aux_sym_integer_token2] = ACTIONS(1318), - [aux_sym_float_token1] = ACTIONS(1320), - [aux_sym_float_token2] = ACTIONS(1318), - [anon_sym_true] = ACTIONS(1320), - [anon_sym_false] = ACTIONS(1320), - [aux_sym_string_token1] = ACTIONS(1318), - [aux_sym_string_token3] = ACTIONS(1318), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_catch] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym_macro] = ACTIONS(1320), - [anon_sym_operator] = ACTIONS(1320), - [anon_sym_overload] = ACTIONS(1320), - [anon_sym_override] = ACTIONS(1320), - [anon_sym_private] = ACTIONS(1320), - [anon_sym_public] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_try] = ACTIONS(1320), - [anon_sym_untyped] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [sym__semicolon] = ACTIONS(1318), + [283] = { + [ts_builtin_sym_end] = ACTIONS(1252), + [sym_identifier] = ACTIONS(1254), + [anon_sym_POUND] = ACTIONS(1252), + [anon_sym_package] = ACTIONS(1254), + [anon_sym_import] = ACTIONS(1254), + [anon_sym_using] = ACTIONS(1254), + [anon_sym_throw] = ACTIONS(1254), + [anon_sym_LPAREN] = ACTIONS(1252), + [anon_sym_switch] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1252), + [anon_sym_RBRACE] = ACTIONS(1252), + [anon_sym_case] = ACTIONS(1254), + [anon_sym_default] = ACTIONS(1254), + [anon_sym_cast] = ACTIONS(1254), + [anon_sym_DOLLARtype] = ACTIONS(1252), + [anon_sym_in] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1252), + [anon_sym_this] = ACTIONS(1254), + [anon_sym_AT] = ACTIONS(1254), + [anon_sym_AT_COLON] = ACTIONS(1252), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_else] = ACTIONS(1254), + [anon_sym_new] = ACTIONS(1254), + [sym__prefixUnaryOperator] = ACTIONS(1254), + [sym__eitherUnaryOperator] = ACTIONS(1252), + [anon_sym_null] = ACTIONS(1254), + [anon_sym_dynamic] = ACTIONS(1254), + [anon_sym_final] = ACTIONS(1254), + [anon_sym_abstract] = ACTIONS(1254), + [anon_sym_class] = ACTIONS(1254), + [anon_sym_extends] = ACTIONS(1254), + [anon_sym_implements] = ACTIONS(1254), + [anon_sym_interface] = ACTIONS(1254), + [anon_sym_typedef] = ACTIONS(1254), + [anon_sym_function] = ACTIONS(1254), + [anon_sym_var] = ACTIONS(1254), + [aux_sym_integer_token1] = ACTIONS(1254), + [aux_sym_integer_token2] = ACTIONS(1252), + [aux_sym_float_token1] = ACTIONS(1254), + [aux_sym_float_token2] = ACTIONS(1252), + [anon_sym_true] = ACTIONS(1254), + [anon_sym_false] = ACTIONS(1254), + [aux_sym_string_token1] = ACTIONS(1252), + [aux_sym_string_token3] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_catch] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_do] = ACTIONS(1254), + [anon_sym_enum] = ACTIONS(1254), + [anon_sym_extern] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_inline] = ACTIONS(1254), + [anon_sym_macro] = ACTIONS(1254), + [anon_sym_operator] = ACTIONS(1254), + [anon_sym_overload] = ACTIONS(1254), + [anon_sym_override] = ACTIONS(1254), + [anon_sym_private] = ACTIONS(1254), + [anon_sym_public] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_static] = ACTIONS(1254), + [anon_sym_try] = ACTIONS(1254), + [anon_sym_untyped] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1254), + [sym__semicolon] = ACTIONS(1252), }, - [270] = { - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1322), - [anon_sym_package] = ACTIONS(1324), - [anon_sym_import] = ACTIONS(1324), - [anon_sym_using] = ACTIONS(1324), - [anon_sym_throw] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_cast] = ACTIONS(1324), - [anon_sym_DOLLARtype] = ACTIONS(1322), - [anon_sym_in] = ACTIONS(1324), - [anon_sym_LBRACK] = ACTIONS(1322), - [anon_sym_this] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(1324), - [anon_sym_AT_COLON] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_else] = ACTIONS(1324), - [anon_sym_new] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PERCENT] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_LT_LT] = ACTIONS(1322), - [anon_sym_GT_GT] = ACTIONS(1324), - [anon_sym_GT_GT_GT] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1322), - [anon_sym_BANG_EQ] = ACTIONS(1322), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_EQ_GT] = ACTIONS(1322), - [anon_sym_QMARK_QMARK] = ACTIONS(1322), - [anon_sym_EQ] = ACTIONS(1324), - [sym__rangeOperator] = ACTIONS(1322), - [anon_sym_null] = ACTIONS(1324), - [anon_sym_dynamic] = ACTIONS(1324), - [anon_sym_final] = ACTIONS(1324), - [anon_sym_abstract] = ACTIONS(1324), - [anon_sym_class] = ACTIONS(1324), - [anon_sym_extends] = ACTIONS(1324), - [anon_sym_implements] = ACTIONS(1324), - [anon_sym_interface] = ACTIONS(1324), - [anon_sym_typedef] = ACTIONS(1324), - [anon_sym_function] = ACTIONS(1324), - [anon_sym_var] = ACTIONS(1324), - [aux_sym_integer_token1] = ACTIONS(1324), - [aux_sym_integer_token2] = ACTIONS(1322), - [aux_sym_float_token1] = ACTIONS(1324), - [aux_sym_float_token2] = ACTIONS(1322), - [anon_sym_true] = ACTIONS(1324), - [anon_sym_false] = ACTIONS(1324), - [aux_sym_string_token1] = ACTIONS(1322), - [aux_sym_string_token3] = ACTIONS(1322), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_catch] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_do] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_inline] = ACTIONS(1324), - [anon_sym_macro] = ACTIONS(1324), - [anon_sym_operator] = ACTIONS(1324), - [anon_sym_overload] = ACTIONS(1324), - [anon_sym_override] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_try] = ACTIONS(1324), - [anon_sym_untyped] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [sym__semicolon] = ACTIONS(1322), + [284] = { + [ts_builtin_sym_end] = ACTIONS(1256), + [sym_identifier] = ACTIONS(1258), + [anon_sym_POUND] = ACTIONS(1256), + [anon_sym_package] = ACTIONS(1258), + [anon_sym_import] = ACTIONS(1258), + [anon_sym_using] = ACTIONS(1258), + [anon_sym_throw] = ACTIONS(1258), + [anon_sym_LPAREN] = ACTIONS(1256), + [anon_sym_switch] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_RBRACE] = ACTIONS(1256), + [anon_sym_case] = ACTIONS(1258), + [anon_sym_default] = ACTIONS(1258), + [anon_sym_cast] = ACTIONS(1258), + [anon_sym_DOLLARtype] = ACTIONS(1256), + [anon_sym_in] = ACTIONS(1258), + [anon_sym_LBRACK] = ACTIONS(1256), + [anon_sym_this] = ACTIONS(1258), + [anon_sym_AT] = ACTIONS(1258), + [anon_sym_AT_COLON] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1258), + [anon_sym_else] = ACTIONS(1258), + [anon_sym_new] = ACTIONS(1258), + [sym__prefixUnaryOperator] = ACTIONS(1258), + [sym__eitherUnaryOperator] = ACTIONS(1256), + [anon_sym_null] = ACTIONS(1258), + [anon_sym_dynamic] = ACTIONS(1258), + [anon_sym_final] = ACTIONS(1258), + [anon_sym_abstract] = ACTIONS(1258), + [anon_sym_class] = ACTIONS(1258), + [anon_sym_extends] = ACTIONS(1258), + [anon_sym_implements] = ACTIONS(1258), + [anon_sym_interface] = ACTIONS(1258), + [anon_sym_typedef] = ACTIONS(1258), + [anon_sym_function] = ACTIONS(1258), + [anon_sym_var] = ACTIONS(1258), + [aux_sym_integer_token1] = ACTIONS(1258), + [aux_sym_integer_token2] = ACTIONS(1256), + [aux_sym_float_token1] = ACTIONS(1258), + [aux_sym_float_token2] = ACTIONS(1256), + [anon_sym_true] = ACTIONS(1258), + [anon_sym_false] = ACTIONS(1258), + [aux_sym_string_token1] = ACTIONS(1256), + [aux_sym_string_token3] = ACTIONS(1256), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1258), + [anon_sym_catch] = ACTIONS(1258), + [anon_sym_continue] = ACTIONS(1258), + [anon_sym_do] = ACTIONS(1258), + [anon_sym_enum] = ACTIONS(1258), + [anon_sym_extern] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1258), + [anon_sym_inline] = ACTIONS(1258), + [anon_sym_macro] = ACTIONS(1258), + [anon_sym_operator] = ACTIONS(1258), + [anon_sym_overload] = ACTIONS(1258), + [anon_sym_override] = ACTIONS(1258), + [anon_sym_private] = ACTIONS(1258), + [anon_sym_public] = ACTIONS(1258), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_static] = ACTIONS(1258), + [anon_sym_try] = ACTIONS(1258), + [anon_sym_untyped] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1258), + [sym__semicolon] = ACTIONS(1256), }, - [271] = { - [ts_builtin_sym_end] = ACTIONS(1326), - [sym_identifier] = ACTIONS(1328), - [anon_sym_POUND] = ACTIONS(1326), - [anon_sym_package] = ACTIONS(1328), - [anon_sym_import] = ACTIONS(1328), - [anon_sym_using] = ACTIONS(1328), - [anon_sym_throw] = ACTIONS(1328), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_RBRACE] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_cast] = ACTIONS(1328), - [anon_sym_DOLLARtype] = ACTIONS(1326), - [anon_sym_in] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1326), - [anon_sym_this] = ACTIONS(1328), - [anon_sym_AT] = ACTIONS(1328), - [anon_sym_AT_COLON] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_else] = ACTIONS(1328), - [anon_sym_new] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PERCENT] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_SLASH] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_LT_LT] = ACTIONS(1326), - [anon_sym_GT_GT] = ACTIONS(1328), - [anon_sym_GT_GT_GT] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_PIPE] = ACTIONS(1328), - [anon_sym_CARET] = ACTIONS(1326), - [anon_sym_AMP_AMP] = ACTIONS(1326), - [anon_sym_PIPE_PIPE] = ACTIONS(1326), - [anon_sym_EQ_EQ] = ACTIONS(1326), - [anon_sym_BANG_EQ] = ACTIONS(1326), - [anon_sym_LT] = ACTIONS(1328), - [anon_sym_LT_EQ] = ACTIONS(1326), - [anon_sym_GT] = ACTIONS(1328), - [anon_sym_GT_EQ] = ACTIONS(1326), - [anon_sym_EQ_GT] = ACTIONS(1326), - [anon_sym_QMARK_QMARK] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1328), - [sym__rangeOperator] = ACTIONS(1326), - [anon_sym_null] = ACTIONS(1328), - [anon_sym_dynamic] = ACTIONS(1328), - [anon_sym_final] = ACTIONS(1328), - [anon_sym_abstract] = ACTIONS(1328), - [anon_sym_class] = ACTIONS(1328), - [anon_sym_extends] = ACTIONS(1328), - [anon_sym_implements] = ACTIONS(1328), - [anon_sym_interface] = ACTIONS(1328), - [anon_sym_typedef] = ACTIONS(1328), - [anon_sym_function] = ACTIONS(1328), - [anon_sym_var] = ACTIONS(1328), - [aux_sym_integer_token1] = ACTIONS(1328), - [aux_sym_integer_token2] = ACTIONS(1326), - [aux_sym_float_token1] = ACTIONS(1328), - [aux_sym_float_token2] = ACTIONS(1326), - [anon_sym_true] = ACTIONS(1328), - [anon_sym_false] = ACTIONS(1328), - [aux_sym_string_token1] = ACTIONS(1326), - [aux_sym_string_token3] = ACTIONS(1326), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_catch] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_do] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_inline] = ACTIONS(1328), - [anon_sym_macro] = ACTIONS(1328), - [anon_sym_operator] = ACTIONS(1328), - [anon_sym_overload] = ACTIONS(1328), - [anon_sym_override] = ACTIONS(1328), - [anon_sym_private] = ACTIONS(1328), - [anon_sym_public] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_try] = ACTIONS(1328), - [anon_sym_untyped] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [sym__semicolon] = ACTIONS(1326), + [285] = { + [ts_builtin_sym_end] = ACTIONS(1260), + [sym_identifier] = ACTIONS(1262), + [anon_sym_POUND] = ACTIONS(1260), + [anon_sym_package] = ACTIONS(1262), + [anon_sym_import] = ACTIONS(1262), + [anon_sym_using] = ACTIONS(1262), + [anon_sym_throw] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1260), + [anon_sym_switch] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1260), + [anon_sym_RBRACE] = ACTIONS(1260), + [anon_sym_case] = ACTIONS(1262), + [anon_sym_default] = ACTIONS(1262), + [anon_sym_cast] = ACTIONS(1262), + [anon_sym_DOLLARtype] = ACTIONS(1260), + [anon_sym_in] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1260), + [anon_sym_this] = ACTIONS(1262), + [anon_sym_AT] = ACTIONS(1262), + [anon_sym_AT_COLON] = ACTIONS(1260), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_else] = ACTIONS(1262), + [anon_sym_new] = ACTIONS(1262), + [sym__prefixUnaryOperator] = ACTIONS(1262), + [sym__eitherUnaryOperator] = ACTIONS(1260), + [anon_sym_null] = ACTIONS(1262), + [anon_sym_dynamic] = ACTIONS(1262), + [anon_sym_final] = ACTIONS(1262), + [anon_sym_abstract] = ACTIONS(1262), + [anon_sym_class] = ACTIONS(1262), + [anon_sym_extends] = ACTIONS(1262), + [anon_sym_implements] = ACTIONS(1262), + [anon_sym_interface] = ACTIONS(1262), + [anon_sym_typedef] = ACTIONS(1262), + [anon_sym_function] = ACTIONS(1262), + [anon_sym_var] = ACTIONS(1262), + [aux_sym_integer_token1] = ACTIONS(1262), + [aux_sym_integer_token2] = ACTIONS(1260), + [aux_sym_float_token1] = ACTIONS(1262), + [aux_sym_float_token2] = ACTIONS(1260), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [aux_sym_string_token1] = ACTIONS(1260), + [aux_sym_string_token3] = ACTIONS(1260), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1262), + [anon_sym_catch] = ACTIONS(1262), + [anon_sym_continue] = ACTIONS(1262), + [anon_sym_do] = ACTIONS(1262), + [anon_sym_enum] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(1262), + [anon_sym_for] = ACTIONS(1262), + [anon_sym_inline] = ACTIONS(1262), + [anon_sym_macro] = ACTIONS(1262), + [anon_sym_operator] = ACTIONS(1262), + [anon_sym_overload] = ACTIONS(1262), + [anon_sym_override] = ACTIONS(1262), + [anon_sym_private] = ACTIONS(1262), + [anon_sym_public] = ACTIONS(1262), + [anon_sym_return] = ACTIONS(1262), + [anon_sym_static] = ACTIONS(1262), + [anon_sym_try] = ACTIONS(1262), + [anon_sym_untyped] = ACTIONS(1262), + [anon_sym_while] = ACTIONS(1262), + [sym__semicolon] = ACTIONS(1260), }, - [272] = { - [ts_builtin_sym_end] = ACTIONS(1330), - [sym_identifier] = ACTIONS(1332), - [anon_sym_POUND] = ACTIONS(1330), - [anon_sym_package] = ACTIONS(1332), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_using] = ACTIONS(1332), - [anon_sym_throw] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_cast] = ACTIONS(1332), - [anon_sym_DOLLARtype] = ACTIONS(1330), - [anon_sym_in] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(1330), - [anon_sym_this] = ACTIONS(1332), - [anon_sym_AT] = ACTIONS(1332), - [anon_sym_AT_COLON] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_else] = ACTIONS(1332), - [anon_sym_new] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PERCENT] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_SLASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_LT_LT] = ACTIONS(1330), - [anon_sym_GT_GT] = ACTIONS(1332), - [anon_sym_GT_GT_GT] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1332), - [anon_sym_CARET] = ACTIONS(1330), - [anon_sym_AMP_AMP] = ACTIONS(1330), - [anon_sym_PIPE_PIPE] = ACTIONS(1330), - [anon_sym_EQ_EQ] = ACTIONS(1330), - [anon_sym_BANG_EQ] = ACTIONS(1330), - [anon_sym_LT] = ACTIONS(1332), - [anon_sym_LT_EQ] = ACTIONS(1330), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_GT_EQ] = ACTIONS(1330), - [anon_sym_EQ_GT] = ACTIONS(1330), - [anon_sym_QMARK_QMARK] = ACTIONS(1330), - [anon_sym_EQ] = ACTIONS(1332), - [sym__rangeOperator] = ACTIONS(1330), - [anon_sym_null] = ACTIONS(1332), - [anon_sym_dynamic] = ACTIONS(1332), - [anon_sym_final] = ACTIONS(1332), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_class] = ACTIONS(1332), - [anon_sym_extends] = ACTIONS(1332), - [anon_sym_implements] = ACTIONS(1332), - [anon_sym_interface] = ACTIONS(1332), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_function] = ACTIONS(1332), - [anon_sym_var] = ACTIONS(1332), - [aux_sym_integer_token1] = ACTIONS(1332), - [aux_sym_integer_token2] = ACTIONS(1330), - [aux_sym_float_token1] = ACTIONS(1332), - [aux_sym_float_token2] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1332), - [anon_sym_false] = ACTIONS(1332), - [aux_sym_string_token1] = ACTIONS(1330), - [aux_sym_string_token3] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_catch] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym_macro] = ACTIONS(1332), - [anon_sym_operator] = ACTIONS(1332), - [anon_sym_overload] = ACTIONS(1332), - [anon_sym_override] = ACTIONS(1332), - [anon_sym_private] = ACTIONS(1332), - [anon_sym_public] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_try] = ACTIONS(1332), - [anon_sym_untyped] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [sym__semicolon] = ACTIONS(1330), + [286] = { + [ts_builtin_sym_end] = ACTIONS(1264), + [sym_identifier] = ACTIONS(1266), + [anon_sym_POUND] = ACTIONS(1264), + [anon_sym_package] = ACTIONS(1266), + [anon_sym_import] = ACTIONS(1266), + [anon_sym_using] = ACTIONS(1266), + [anon_sym_throw] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1264), + [anon_sym_switch] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_RBRACE] = ACTIONS(1264), + [anon_sym_case] = ACTIONS(1266), + [anon_sym_default] = ACTIONS(1266), + [anon_sym_cast] = ACTIONS(1266), + [anon_sym_DOLLARtype] = ACTIONS(1264), + [anon_sym_in] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1264), + [anon_sym_this] = ACTIONS(1266), + [anon_sym_AT] = ACTIONS(1266), + [anon_sym_AT_COLON] = ACTIONS(1264), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_else] = ACTIONS(1266), + [anon_sym_new] = ACTIONS(1266), + [sym__prefixUnaryOperator] = ACTIONS(1266), + [sym__eitherUnaryOperator] = ACTIONS(1264), + [anon_sym_null] = ACTIONS(1266), + [anon_sym_dynamic] = ACTIONS(1266), + [anon_sym_final] = ACTIONS(1266), + [anon_sym_abstract] = ACTIONS(1266), + [anon_sym_class] = ACTIONS(1266), + [anon_sym_extends] = ACTIONS(1266), + [anon_sym_implements] = ACTIONS(1266), + [anon_sym_interface] = ACTIONS(1266), + [anon_sym_typedef] = ACTIONS(1266), + [anon_sym_function] = ACTIONS(1266), + [anon_sym_var] = ACTIONS(1266), + [aux_sym_integer_token1] = ACTIONS(1266), + [aux_sym_integer_token2] = ACTIONS(1264), + [aux_sym_float_token1] = ACTIONS(1266), + [aux_sym_float_token2] = ACTIONS(1264), + [anon_sym_true] = ACTIONS(1266), + [anon_sym_false] = ACTIONS(1266), + [aux_sym_string_token1] = ACTIONS(1264), + [aux_sym_string_token3] = ACTIONS(1264), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_catch] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_enum] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_inline] = ACTIONS(1266), + [anon_sym_macro] = ACTIONS(1266), + [anon_sym_operator] = ACTIONS(1266), + [anon_sym_overload] = ACTIONS(1266), + [anon_sym_override] = ACTIONS(1266), + [anon_sym_private] = ACTIONS(1266), + [anon_sym_public] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(1266), + [anon_sym_try] = ACTIONS(1266), + [anon_sym_untyped] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [sym__semicolon] = ACTIONS(1264), }, - [273] = { - [ts_builtin_sym_end] = ACTIONS(1334), - [sym_identifier] = ACTIONS(1336), - [anon_sym_POUND] = ACTIONS(1334), - [anon_sym_package] = ACTIONS(1336), - [anon_sym_import] = ACTIONS(1336), - [anon_sym_using] = ACTIONS(1336), - [anon_sym_throw] = ACTIONS(1336), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_RBRACE] = ACTIONS(1334), - [anon_sym_case] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_cast] = ACTIONS(1336), - [anon_sym_DOLLARtype] = ACTIONS(1334), - [anon_sym_in] = ACTIONS(1336), - [anon_sym_LBRACK] = ACTIONS(1334), - [anon_sym_this] = ACTIONS(1336), - [anon_sym_AT] = ACTIONS(1336), - [anon_sym_AT_COLON] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_else] = ACTIONS(1336), - [anon_sym_new] = ACTIONS(1336), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PERCENT] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_SLASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_LT_LT] = ACTIONS(1334), - [anon_sym_GT_GT] = ACTIONS(1336), - [anon_sym_GT_GT_GT] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_PIPE] = ACTIONS(1336), - [anon_sym_CARET] = ACTIONS(1334), - [anon_sym_AMP_AMP] = ACTIONS(1334), - [anon_sym_PIPE_PIPE] = ACTIONS(1334), - [anon_sym_EQ_EQ] = ACTIONS(1334), - [anon_sym_BANG_EQ] = ACTIONS(1334), - [anon_sym_LT] = ACTIONS(1336), - [anon_sym_LT_EQ] = ACTIONS(1334), - [anon_sym_GT] = ACTIONS(1336), - [anon_sym_GT_EQ] = ACTIONS(1334), - [anon_sym_EQ_GT] = ACTIONS(1334), - [anon_sym_QMARK_QMARK] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1336), - [sym__rangeOperator] = ACTIONS(1334), - [anon_sym_null] = ACTIONS(1336), - [anon_sym_dynamic] = ACTIONS(1336), - [anon_sym_final] = ACTIONS(1336), - [anon_sym_abstract] = ACTIONS(1336), - [anon_sym_class] = ACTIONS(1336), - [anon_sym_extends] = ACTIONS(1336), - [anon_sym_implements] = ACTIONS(1336), - [anon_sym_interface] = ACTIONS(1336), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_function] = ACTIONS(1336), - [anon_sym_var] = ACTIONS(1336), - [aux_sym_integer_token1] = ACTIONS(1336), - [aux_sym_integer_token2] = ACTIONS(1334), - [aux_sym_float_token1] = ACTIONS(1336), - [aux_sym_float_token2] = ACTIONS(1334), - [anon_sym_true] = ACTIONS(1336), - [anon_sym_false] = ACTIONS(1336), - [aux_sym_string_token1] = ACTIONS(1334), - [aux_sym_string_token3] = ACTIONS(1334), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_catch] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym_macro] = ACTIONS(1336), - [anon_sym_operator] = ACTIONS(1336), - [anon_sym_overload] = ACTIONS(1336), - [anon_sym_override] = ACTIONS(1336), - [anon_sym_private] = ACTIONS(1336), - [anon_sym_public] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_try] = ACTIONS(1336), - [anon_sym_untyped] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [sym__semicolon] = ACTIONS(1334), + [287] = { + [ts_builtin_sym_end] = ACTIONS(1268), + [sym_identifier] = ACTIONS(1270), + [anon_sym_POUND] = ACTIONS(1268), + [anon_sym_package] = ACTIONS(1270), + [anon_sym_import] = ACTIONS(1270), + [anon_sym_using] = ACTIONS(1270), + [anon_sym_throw] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1268), + [anon_sym_switch] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_RBRACE] = ACTIONS(1268), + [anon_sym_case] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [anon_sym_cast] = ACTIONS(1270), + [anon_sym_DOLLARtype] = ACTIONS(1268), + [anon_sym_in] = ACTIONS(1270), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_this] = ACTIONS(1270), + [anon_sym_AT] = ACTIONS(1270), + [anon_sym_AT_COLON] = ACTIONS(1268), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_else] = ACTIONS(1270), + [anon_sym_new] = ACTIONS(1270), + [sym__prefixUnaryOperator] = ACTIONS(1270), + [sym__eitherUnaryOperator] = ACTIONS(1268), + [anon_sym_null] = ACTIONS(1270), + [anon_sym_dynamic] = ACTIONS(1270), + [anon_sym_final] = ACTIONS(1270), + [anon_sym_abstract] = ACTIONS(1270), + [anon_sym_class] = ACTIONS(1270), + [anon_sym_extends] = ACTIONS(1270), + [anon_sym_implements] = ACTIONS(1270), + [anon_sym_interface] = ACTIONS(1270), + [anon_sym_typedef] = ACTIONS(1270), + [anon_sym_function] = ACTIONS(1270), + [anon_sym_var] = ACTIONS(1270), + [aux_sym_integer_token1] = ACTIONS(1270), + [aux_sym_integer_token2] = ACTIONS(1268), + [aux_sym_float_token1] = ACTIONS(1270), + [aux_sym_float_token2] = ACTIONS(1268), + [anon_sym_true] = ACTIONS(1270), + [anon_sym_false] = ACTIONS(1270), + [aux_sym_string_token1] = ACTIONS(1268), + [aux_sym_string_token3] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_catch] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_do] = ACTIONS(1270), + [anon_sym_enum] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_inline] = ACTIONS(1270), + [anon_sym_macro] = ACTIONS(1270), + [anon_sym_operator] = ACTIONS(1270), + [anon_sym_overload] = ACTIONS(1270), + [anon_sym_override] = ACTIONS(1270), + [anon_sym_private] = ACTIONS(1270), + [anon_sym_public] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_try] = ACTIONS(1270), + [anon_sym_untyped] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [sym__semicolon] = ACTIONS(1268), }, - [274] = { - [ts_builtin_sym_end] = ACTIONS(1338), - [sym_identifier] = ACTIONS(1340), - [anon_sym_POUND] = ACTIONS(1338), - [anon_sym_package] = ACTIONS(1340), - [anon_sym_import] = ACTIONS(1340), - [anon_sym_using] = ACTIONS(1340), - [anon_sym_throw] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1340), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_cast] = ACTIONS(1340), - [anon_sym_DOLLARtype] = ACTIONS(1338), - [anon_sym_in] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1338), - [anon_sym_this] = ACTIONS(1340), - [anon_sym_AT] = ACTIONS(1340), - [anon_sym_AT_COLON] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_else] = ACTIONS(1340), - [anon_sym_new] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_PERCENT] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_LT_LT] = ACTIONS(1338), - [anon_sym_GT_GT] = ACTIONS(1340), - [anon_sym_GT_GT_GT] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1338), - [anon_sym_AMP_AMP] = ACTIONS(1338), - [anon_sym_PIPE_PIPE] = ACTIONS(1338), - [anon_sym_EQ_EQ] = ACTIONS(1338), - [anon_sym_BANG_EQ] = ACTIONS(1338), - [anon_sym_LT] = ACTIONS(1340), - [anon_sym_LT_EQ] = ACTIONS(1338), - [anon_sym_GT] = ACTIONS(1340), - [anon_sym_GT_EQ] = ACTIONS(1338), - [anon_sym_EQ_GT] = ACTIONS(1338), - [anon_sym_QMARK_QMARK] = ACTIONS(1338), - [anon_sym_EQ] = ACTIONS(1340), - [sym__rangeOperator] = ACTIONS(1338), - [anon_sym_null] = ACTIONS(1340), - [anon_sym_dynamic] = ACTIONS(1340), - [anon_sym_final] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1340), - [anon_sym_class] = ACTIONS(1340), - [anon_sym_extends] = ACTIONS(1340), - [anon_sym_implements] = ACTIONS(1340), - [anon_sym_interface] = ACTIONS(1340), - [anon_sym_typedef] = ACTIONS(1340), - [anon_sym_function] = ACTIONS(1340), - [anon_sym_var] = ACTIONS(1340), - [aux_sym_integer_token1] = ACTIONS(1340), - [aux_sym_integer_token2] = ACTIONS(1338), - [aux_sym_float_token1] = ACTIONS(1340), - [aux_sym_float_token2] = ACTIONS(1338), - [anon_sym_true] = ACTIONS(1340), - [anon_sym_false] = ACTIONS(1340), - [aux_sym_string_token1] = ACTIONS(1338), - [aux_sym_string_token3] = ACTIONS(1338), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_catch] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_extern] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_inline] = ACTIONS(1340), - [anon_sym_macro] = ACTIONS(1340), - [anon_sym_operator] = ACTIONS(1340), - [anon_sym_overload] = ACTIONS(1340), - [anon_sym_override] = ACTIONS(1340), - [anon_sym_private] = ACTIONS(1340), - [anon_sym_public] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_try] = ACTIONS(1340), - [anon_sym_untyped] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [sym__semicolon] = ACTIONS(1338), + [288] = { + [ts_builtin_sym_end] = ACTIONS(1272), + [sym_identifier] = ACTIONS(1274), + [anon_sym_POUND] = ACTIONS(1272), + [anon_sym_package] = ACTIONS(1274), + [anon_sym_import] = ACTIONS(1274), + [anon_sym_using] = ACTIONS(1274), + [anon_sym_throw] = ACTIONS(1274), + [anon_sym_LPAREN] = ACTIONS(1272), + [anon_sym_switch] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_RBRACE] = ACTIONS(1272), + [anon_sym_case] = ACTIONS(1274), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_cast] = ACTIONS(1274), + [anon_sym_DOLLARtype] = ACTIONS(1272), + [anon_sym_in] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_this] = ACTIONS(1274), + [anon_sym_AT] = ACTIONS(1274), + [anon_sym_AT_COLON] = ACTIONS(1272), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_else] = ACTIONS(1274), + [anon_sym_new] = ACTIONS(1274), + [sym__prefixUnaryOperator] = ACTIONS(1274), + [sym__eitherUnaryOperator] = ACTIONS(1272), + [anon_sym_null] = ACTIONS(1274), + [anon_sym_dynamic] = ACTIONS(1274), + [anon_sym_final] = ACTIONS(1274), + [anon_sym_abstract] = ACTIONS(1274), + [anon_sym_class] = ACTIONS(1274), + [anon_sym_extends] = ACTIONS(1274), + [anon_sym_implements] = ACTIONS(1274), + [anon_sym_interface] = ACTIONS(1274), + [anon_sym_typedef] = ACTIONS(1274), + [anon_sym_function] = ACTIONS(1274), + [anon_sym_var] = ACTIONS(1274), + [aux_sym_integer_token1] = ACTIONS(1274), + [aux_sym_integer_token2] = ACTIONS(1272), + [aux_sym_float_token1] = ACTIONS(1274), + [aux_sym_float_token2] = ACTIONS(1272), + [anon_sym_true] = ACTIONS(1274), + [anon_sym_false] = ACTIONS(1274), + [aux_sym_string_token1] = ACTIONS(1272), + [aux_sym_string_token3] = ACTIONS(1272), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_catch] = ACTIONS(1274), + [anon_sym_continue] = ACTIONS(1274), + [anon_sym_do] = ACTIONS(1274), + [anon_sym_enum] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_inline] = ACTIONS(1274), + [anon_sym_macro] = ACTIONS(1274), + [anon_sym_operator] = ACTIONS(1274), + [anon_sym_overload] = ACTIONS(1274), + [anon_sym_override] = ACTIONS(1274), + [anon_sym_private] = ACTIONS(1274), + [anon_sym_public] = ACTIONS(1274), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_try] = ACTIONS(1274), + [anon_sym_untyped] = ACTIONS(1274), + [anon_sym_while] = ACTIONS(1274), + [sym__semicolon] = ACTIONS(1272), }, - [275] = { - [ts_builtin_sym_end] = ACTIONS(1342), - [sym_identifier] = ACTIONS(1344), - [anon_sym_POUND] = ACTIONS(1342), - [anon_sym_package] = ACTIONS(1344), - [anon_sym_import] = ACTIONS(1344), - [anon_sym_using] = ACTIONS(1344), - [anon_sym_throw] = ACTIONS(1344), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_cast] = ACTIONS(1344), - [anon_sym_DOLLARtype] = ACTIONS(1342), - [anon_sym_in] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(1342), - [anon_sym_this] = ACTIONS(1344), - [anon_sym_AT] = ACTIONS(1344), - [anon_sym_AT_COLON] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_else] = ACTIONS(1344), - [anon_sym_new] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PERCENT] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1344), - [anon_sym_LT_LT] = ACTIONS(1342), - [anon_sym_GT_GT] = ACTIONS(1344), - [anon_sym_GT_GT_GT] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_PIPE] = ACTIONS(1344), - [anon_sym_CARET] = ACTIONS(1342), - [anon_sym_AMP_AMP] = ACTIONS(1342), - [anon_sym_PIPE_PIPE] = ACTIONS(1342), - [anon_sym_EQ_EQ] = ACTIONS(1342), - [anon_sym_BANG_EQ] = ACTIONS(1342), - [anon_sym_LT] = ACTIONS(1344), - [anon_sym_LT_EQ] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1344), - [anon_sym_GT_EQ] = ACTIONS(1342), - [anon_sym_EQ_GT] = ACTIONS(1342), - [anon_sym_QMARK_QMARK] = ACTIONS(1342), - [anon_sym_EQ] = ACTIONS(1344), - [sym__rangeOperator] = ACTIONS(1342), - [anon_sym_null] = ACTIONS(1344), - [anon_sym_dynamic] = ACTIONS(1344), - [anon_sym_final] = ACTIONS(1344), - [anon_sym_abstract] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1344), - [anon_sym_extends] = ACTIONS(1344), - [anon_sym_implements] = ACTIONS(1344), - [anon_sym_interface] = ACTIONS(1344), - [anon_sym_typedef] = ACTIONS(1344), - [anon_sym_function] = ACTIONS(1344), - [anon_sym_var] = ACTIONS(1344), - [aux_sym_integer_token1] = ACTIONS(1344), - [aux_sym_integer_token2] = ACTIONS(1342), - [aux_sym_float_token1] = ACTIONS(1344), - [aux_sym_float_token2] = ACTIONS(1342), - [anon_sym_true] = ACTIONS(1344), - [anon_sym_false] = ACTIONS(1344), - [aux_sym_string_token1] = ACTIONS(1342), - [aux_sym_string_token3] = ACTIONS(1342), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_catch] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_do] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_inline] = ACTIONS(1344), - [anon_sym_macro] = ACTIONS(1344), - [anon_sym_operator] = ACTIONS(1344), - [anon_sym_overload] = ACTIONS(1344), - [anon_sym_override] = ACTIONS(1344), - [anon_sym_private] = ACTIONS(1344), - [anon_sym_public] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_try] = ACTIONS(1344), - [anon_sym_untyped] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [sym__semicolon] = ACTIONS(1342), + [289] = { + [ts_builtin_sym_end] = ACTIONS(1276), + [sym_identifier] = ACTIONS(1278), + [anon_sym_POUND] = ACTIONS(1276), + [anon_sym_package] = ACTIONS(1278), + [anon_sym_import] = ACTIONS(1278), + [anon_sym_using] = ACTIONS(1278), + [anon_sym_throw] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(1276), + [anon_sym_switch] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_RBRACE] = ACTIONS(1276), + [anon_sym_case] = ACTIONS(1278), + [anon_sym_default] = ACTIONS(1278), + [anon_sym_cast] = ACTIONS(1278), + [anon_sym_DOLLARtype] = ACTIONS(1276), + [anon_sym_in] = ACTIONS(1278), + [anon_sym_LBRACK] = ACTIONS(1276), + [anon_sym_this] = ACTIONS(1278), + [anon_sym_AT] = ACTIONS(1278), + [anon_sym_AT_COLON] = ACTIONS(1276), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_else] = ACTIONS(1278), + [anon_sym_new] = ACTIONS(1278), + [sym__prefixUnaryOperator] = ACTIONS(1278), + [sym__eitherUnaryOperator] = ACTIONS(1276), + [anon_sym_null] = ACTIONS(1278), + [anon_sym_dynamic] = ACTIONS(1278), + [anon_sym_final] = ACTIONS(1278), + [anon_sym_abstract] = ACTIONS(1278), + [anon_sym_class] = ACTIONS(1278), + [anon_sym_extends] = ACTIONS(1278), + [anon_sym_implements] = ACTIONS(1278), + [anon_sym_interface] = ACTIONS(1278), + [anon_sym_typedef] = ACTIONS(1278), + [anon_sym_function] = ACTIONS(1278), + [anon_sym_var] = ACTIONS(1278), + [aux_sym_integer_token1] = ACTIONS(1278), + [aux_sym_integer_token2] = ACTIONS(1276), + [aux_sym_float_token1] = ACTIONS(1278), + [aux_sym_float_token2] = ACTIONS(1276), + [anon_sym_true] = ACTIONS(1278), + [anon_sym_false] = ACTIONS(1278), + [aux_sym_string_token1] = ACTIONS(1276), + [aux_sym_string_token3] = ACTIONS(1276), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1278), + [anon_sym_catch] = ACTIONS(1278), + [anon_sym_continue] = ACTIONS(1278), + [anon_sym_do] = ACTIONS(1278), + [anon_sym_enum] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_inline] = ACTIONS(1278), + [anon_sym_macro] = ACTIONS(1278), + [anon_sym_operator] = ACTIONS(1278), + [anon_sym_overload] = ACTIONS(1278), + [anon_sym_override] = ACTIONS(1278), + [anon_sym_private] = ACTIONS(1278), + [anon_sym_public] = ACTIONS(1278), + [anon_sym_return] = ACTIONS(1278), + [anon_sym_static] = ACTIONS(1278), + [anon_sym_try] = ACTIONS(1278), + [anon_sym_untyped] = ACTIONS(1278), + [anon_sym_while] = ACTIONS(1278), + [sym__semicolon] = ACTIONS(1276), }, - [276] = { - [ts_builtin_sym_end] = ACTIONS(1346), - [sym_identifier] = ACTIONS(1348), - [anon_sym_POUND] = ACTIONS(1346), - [anon_sym_package] = ACTIONS(1348), - [anon_sym_import] = ACTIONS(1348), - [anon_sym_using] = ACTIONS(1348), - [anon_sym_throw] = ACTIONS(1348), - [anon_sym_LPAREN] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1348), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_cast] = ACTIONS(1348), - [anon_sym_DOLLARtype] = ACTIONS(1346), - [anon_sym_in] = ACTIONS(1348), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_this] = ACTIONS(1348), - [anon_sym_AT] = ACTIONS(1348), - [anon_sym_AT_COLON] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1348), - [anon_sym_else] = ACTIONS(1348), - [anon_sym_new] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PERCENT] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_SLASH] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1348), - [anon_sym_LT_LT] = ACTIONS(1346), - [anon_sym_GT_GT] = ACTIONS(1348), - [anon_sym_GT_GT_GT] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_PIPE] = ACTIONS(1348), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP_AMP] = ACTIONS(1346), - [anon_sym_PIPE_PIPE] = ACTIONS(1346), - [anon_sym_EQ_EQ] = ACTIONS(1346), - [anon_sym_BANG_EQ] = ACTIONS(1346), - [anon_sym_LT] = ACTIONS(1348), - [anon_sym_LT_EQ] = ACTIONS(1346), - [anon_sym_GT] = ACTIONS(1348), - [anon_sym_GT_EQ] = ACTIONS(1346), - [anon_sym_EQ_GT] = ACTIONS(1346), - [anon_sym_QMARK_QMARK] = ACTIONS(1346), - [anon_sym_EQ] = ACTIONS(1348), - [sym__rangeOperator] = ACTIONS(1346), - [anon_sym_null] = ACTIONS(1348), - [anon_sym_dynamic] = ACTIONS(1348), - [anon_sym_final] = ACTIONS(1348), - [anon_sym_abstract] = ACTIONS(1348), - [anon_sym_class] = ACTIONS(1348), - [anon_sym_extends] = ACTIONS(1348), - [anon_sym_implements] = ACTIONS(1348), - [anon_sym_interface] = ACTIONS(1348), - [anon_sym_typedef] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1348), - [anon_sym_var] = ACTIONS(1348), - [aux_sym_integer_token1] = ACTIONS(1348), - [aux_sym_integer_token2] = ACTIONS(1346), - [aux_sym_float_token1] = ACTIONS(1348), - [aux_sym_float_token2] = ACTIONS(1346), - [anon_sym_true] = ACTIONS(1348), - [anon_sym_false] = ACTIONS(1348), - [aux_sym_string_token1] = ACTIONS(1346), - [aux_sym_string_token3] = ACTIONS(1346), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1348), - [anon_sym_catch] = ACTIONS(1348), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_do] = ACTIONS(1348), - [anon_sym_enum] = ACTIONS(1348), - [anon_sym_extern] = ACTIONS(1348), - [anon_sym_for] = ACTIONS(1348), - [anon_sym_inline] = ACTIONS(1348), - [anon_sym_macro] = ACTIONS(1348), - [anon_sym_operator] = ACTIONS(1348), - [anon_sym_overload] = ACTIONS(1348), - [anon_sym_override] = ACTIONS(1348), - [anon_sym_private] = ACTIONS(1348), - [anon_sym_public] = ACTIONS(1348), - [anon_sym_return] = ACTIONS(1348), - [anon_sym_static] = ACTIONS(1348), - [anon_sym_try] = ACTIONS(1348), - [anon_sym_untyped] = ACTIONS(1348), - [anon_sym_while] = ACTIONS(1348), - [sym__semicolon] = ACTIONS(1346), + [290] = { + [ts_builtin_sym_end] = ACTIONS(1280), + [sym_identifier] = ACTIONS(1282), + [anon_sym_POUND] = ACTIONS(1280), + [anon_sym_package] = ACTIONS(1282), + [anon_sym_import] = ACTIONS(1282), + [anon_sym_using] = ACTIONS(1282), + [anon_sym_throw] = ACTIONS(1282), + [anon_sym_LPAREN] = ACTIONS(1280), + [anon_sym_switch] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_RBRACE] = ACTIONS(1280), + [anon_sym_case] = ACTIONS(1282), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_cast] = ACTIONS(1282), + [anon_sym_DOLLARtype] = ACTIONS(1280), + [anon_sym_in] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1280), + [anon_sym_this] = ACTIONS(1282), + [anon_sym_AT] = ACTIONS(1282), + [anon_sym_AT_COLON] = ACTIONS(1280), + [anon_sym_if] = ACTIONS(1282), + [anon_sym_else] = ACTIONS(1282), + [anon_sym_new] = ACTIONS(1282), + [sym__prefixUnaryOperator] = ACTIONS(1282), + [sym__eitherUnaryOperator] = ACTIONS(1280), + [anon_sym_null] = ACTIONS(1282), + [anon_sym_dynamic] = ACTIONS(1282), + [anon_sym_final] = ACTIONS(1282), + [anon_sym_abstract] = ACTIONS(1282), + [anon_sym_class] = ACTIONS(1282), + [anon_sym_extends] = ACTIONS(1282), + [anon_sym_implements] = ACTIONS(1282), + [anon_sym_interface] = ACTIONS(1282), + [anon_sym_typedef] = ACTIONS(1282), + [anon_sym_function] = ACTIONS(1282), + [anon_sym_var] = ACTIONS(1282), + [aux_sym_integer_token1] = ACTIONS(1282), + [aux_sym_integer_token2] = ACTIONS(1280), + [aux_sym_float_token1] = ACTIONS(1282), + [aux_sym_float_token2] = ACTIONS(1280), + [anon_sym_true] = ACTIONS(1282), + [anon_sym_false] = ACTIONS(1282), + [aux_sym_string_token1] = ACTIONS(1280), + [aux_sym_string_token3] = ACTIONS(1280), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1282), + [anon_sym_catch] = ACTIONS(1282), + [anon_sym_continue] = ACTIONS(1282), + [anon_sym_do] = ACTIONS(1282), + [anon_sym_enum] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_inline] = ACTIONS(1282), + [anon_sym_macro] = ACTIONS(1282), + [anon_sym_operator] = ACTIONS(1282), + [anon_sym_overload] = ACTIONS(1282), + [anon_sym_override] = ACTIONS(1282), + [anon_sym_private] = ACTIONS(1282), + [anon_sym_public] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1282), + [anon_sym_try] = ACTIONS(1282), + [anon_sym_untyped] = ACTIONS(1282), + [anon_sym_while] = ACTIONS(1282), + [sym__semicolon] = ACTIONS(1280), }, - [277] = { - [ts_builtin_sym_end] = ACTIONS(1350), - [sym_identifier] = ACTIONS(1352), - [anon_sym_POUND] = ACTIONS(1350), - [anon_sym_package] = ACTIONS(1352), - [anon_sym_import] = ACTIONS(1352), - [anon_sym_using] = ACTIONS(1352), - [anon_sym_throw] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_case] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_cast] = ACTIONS(1352), - [anon_sym_DOLLARtype] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1352), - [anon_sym_LBRACK] = ACTIONS(1350), - [anon_sym_this] = ACTIONS(1352), - [anon_sym_AT] = ACTIONS(1352), - [anon_sym_AT_COLON] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_else] = ACTIONS(1352), - [anon_sym_new] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_PERCENT] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_LT_LT] = ACTIONS(1350), - [anon_sym_GT_GT] = ACTIONS(1352), - [anon_sym_GT_GT_GT] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_CARET] = ACTIONS(1350), - [anon_sym_AMP_AMP] = ACTIONS(1350), - [anon_sym_PIPE_PIPE] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1350), - [anon_sym_BANG_EQ] = ACTIONS(1350), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1352), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_EQ_GT] = ACTIONS(1350), - [anon_sym_QMARK_QMARK] = ACTIONS(1350), - [anon_sym_EQ] = ACTIONS(1352), - [sym__rangeOperator] = ACTIONS(1350), - [anon_sym_null] = ACTIONS(1352), - [anon_sym_dynamic] = ACTIONS(1352), - [anon_sym_final] = ACTIONS(1352), - [anon_sym_abstract] = ACTIONS(1352), - [anon_sym_class] = ACTIONS(1352), - [anon_sym_extends] = ACTIONS(1352), - [anon_sym_implements] = ACTIONS(1352), - [anon_sym_interface] = ACTIONS(1352), - [anon_sym_typedef] = ACTIONS(1352), - [anon_sym_function] = ACTIONS(1352), - [anon_sym_var] = ACTIONS(1352), - [aux_sym_integer_token1] = ACTIONS(1352), - [aux_sym_integer_token2] = ACTIONS(1350), - [aux_sym_float_token1] = ACTIONS(1352), - [aux_sym_float_token2] = ACTIONS(1350), - [anon_sym_true] = ACTIONS(1352), - [anon_sym_false] = ACTIONS(1352), - [aux_sym_string_token1] = ACTIONS(1350), - [aux_sym_string_token3] = ACTIONS(1350), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_catch] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_do] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_inline] = ACTIONS(1352), - [anon_sym_macro] = ACTIONS(1352), - [anon_sym_operator] = ACTIONS(1352), - [anon_sym_overload] = ACTIONS(1352), - [anon_sym_override] = ACTIONS(1352), - [anon_sym_private] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_untyped] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [sym__semicolon] = ACTIONS(1350), + [291] = { + [ts_builtin_sym_end] = ACTIONS(1284), + [sym_identifier] = ACTIONS(1286), + [anon_sym_POUND] = ACTIONS(1284), + [anon_sym_package] = ACTIONS(1286), + [anon_sym_import] = ACTIONS(1286), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_throw] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1284), + [anon_sym_switch] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1284), + [anon_sym_case] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1286), + [anon_sym_cast] = ACTIONS(1286), + [anon_sym_DOLLARtype] = ACTIONS(1284), + [anon_sym_in] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1284), + [anon_sym_this] = ACTIONS(1286), + [anon_sym_AT] = ACTIONS(1286), + [anon_sym_AT_COLON] = ACTIONS(1284), + [anon_sym_if] = ACTIONS(1286), + [anon_sym_else] = ACTIONS(1286), + [anon_sym_new] = ACTIONS(1286), + [sym__prefixUnaryOperator] = ACTIONS(1286), + [sym__eitherUnaryOperator] = ACTIONS(1284), + [anon_sym_null] = ACTIONS(1286), + [anon_sym_dynamic] = ACTIONS(1286), + [anon_sym_final] = ACTIONS(1286), + [anon_sym_abstract] = ACTIONS(1286), + [anon_sym_class] = ACTIONS(1286), + [anon_sym_extends] = ACTIONS(1286), + [anon_sym_implements] = ACTIONS(1286), + [anon_sym_interface] = ACTIONS(1286), + [anon_sym_typedef] = ACTIONS(1286), + [anon_sym_function] = ACTIONS(1286), + [anon_sym_var] = ACTIONS(1286), + [aux_sym_integer_token1] = ACTIONS(1286), + [aux_sym_integer_token2] = ACTIONS(1284), + [aux_sym_float_token1] = ACTIONS(1286), + [aux_sym_float_token2] = ACTIONS(1284), + [anon_sym_true] = ACTIONS(1286), + [anon_sym_false] = ACTIONS(1286), + [aux_sym_string_token1] = ACTIONS(1284), + [aux_sym_string_token3] = ACTIONS(1284), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1286), + [anon_sym_catch] = ACTIONS(1286), + [anon_sym_continue] = ACTIONS(1286), + [anon_sym_do] = ACTIONS(1286), + [anon_sym_enum] = ACTIONS(1286), + [anon_sym_extern] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1286), + [anon_sym_inline] = ACTIONS(1286), + [anon_sym_macro] = ACTIONS(1286), + [anon_sym_operator] = ACTIONS(1286), + [anon_sym_overload] = ACTIONS(1286), + [anon_sym_override] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_return] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_try] = ACTIONS(1286), + [anon_sym_untyped] = ACTIONS(1286), + [anon_sym_while] = ACTIONS(1286), + [sym__semicolon] = ACTIONS(1284), }, - [278] = { - [ts_builtin_sym_end] = ACTIONS(1354), - [sym_identifier] = ACTIONS(1356), - [anon_sym_POUND] = ACTIONS(1354), - [anon_sym_package] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(1356), - [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_RBRACE] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_cast] = ACTIONS(1356), - [anon_sym_DOLLARtype] = ACTIONS(1354), - [anon_sym_in] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1354), - [anon_sym_this] = ACTIONS(1356), - [anon_sym_AT] = ACTIONS(1356), - [anon_sym_AT_COLON] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1354), - [anon_sym_null] = ACTIONS(1356), - [anon_sym_dynamic] = ACTIONS(1356), - [anon_sym_final] = ACTIONS(1356), - [anon_sym_abstract] = ACTIONS(1356), - [anon_sym_class] = ACTIONS(1356), - [anon_sym_extends] = ACTIONS(1356), - [anon_sym_implements] = ACTIONS(1356), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_catch] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_inline] = ACTIONS(1356), - [anon_sym_macro] = ACTIONS(1356), - [anon_sym_operator] = ACTIONS(1356), - [anon_sym_overload] = ACTIONS(1356), - [anon_sym_override] = ACTIONS(1356), - [anon_sym_private] = ACTIONS(1356), - [anon_sym_public] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_try] = ACTIONS(1356), - [anon_sym_untyped] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [sym__semicolon] = ACTIONS(1354), + [292] = { + [ts_builtin_sym_end] = ACTIONS(1288), + [sym_identifier] = ACTIONS(1290), + [anon_sym_POUND] = ACTIONS(1288), + [anon_sym_package] = ACTIONS(1290), + [anon_sym_import] = ACTIONS(1290), + [anon_sym_using] = ACTIONS(1290), + [anon_sym_throw] = ACTIONS(1290), + [anon_sym_LPAREN] = ACTIONS(1288), + [anon_sym_switch] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_RBRACE] = ACTIONS(1288), + [anon_sym_case] = ACTIONS(1290), + [anon_sym_default] = ACTIONS(1290), + [anon_sym_cast] = ACTIONS(1290), + [anon_sym_DOLLARtype] = ACTIONS(1288), + [anon_sym_in] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(1288), + [anon_sym_this] = ACTIONS(1290), + [anon_sym_AT] = ACTIONS(1290), + [anon_sym_AT_COLON] = ACTIONS(1288), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_else] = ACTIONS(1290), + [anon_sym_new] = ACTIONS(1290), + [sym__prefixUnaryOperator] = ACTIONS(1290), + [sym__eitherUnaryOperator] = ACTIONS(1288), + [anon_sym_null] = ACTIONS(1290), + [anon_sym_dynamic] = ACTIONS(1290), + [anon_sym_final] = ACTIONS(1290), + [anon_sym_abstract] = ACTIONS(1290), + [anon_sym_class] = ACTIONS(1290), + [anon_sym_extends] = ACTIONS(1290), + [anon_sym_implements] = ACTIONS(1290), + [anon_sym_interface] = ACTIONS(1290), + [anon_sym_typedef] = ACTIONS(1290), + [anon_sym_function] = ACTIONS(1290), + [anon_sym_var] = ACTIONS(1290), + [aux_sym_integer_token1] = ACTIONS(1290), + [aux_sym_integer_token2] = ACTIONS(1288), + [aux_sym_float_token1] = ACTIONS(1290), + [aux_sym_float_token2] = ACTIONS(1288), + [anon_sym_true] = ACTIONS(1290), + [anon_sym_false] = ACTIONS(1290), + [aux_sym_string_token1] = ACTIONS(1288), + [aux_sym_string_token3] = ACTIONS(1288), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_catch] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_do] = ACTIONS(1290), + [anon_sym_enum] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1290), + [anon_sym_inline] = ACTIONS(1290), + [anon_sym_macro] = ACTIONS(1290), + [anon_sym_operator] = ACTIONS(1290), + [anon_sym_overload] = ACTIONS(1290), + [anon_sym_override] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_try] = ACTIONS(1290), + [anon_sym_untyped] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1290), + [sym__semicolon] = ACTIONS(1288), }, - [279] = { - [ts_builtin_sym_end] = ACTIONS(1358), - [sym_identifier] = ACTIONS(1360), - [anon_sym_POUND] = ACTIONS(1358), - [anon_sym_package] = ACTIONS(1360), - [anon_sym_import] = ACTIONS(1360), - [anon_sym_using] = ACTIONS(1360), - [anon_sym_throw] = ACTIONS(1360), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1360), - [anon_sym_default] = ACTIONS(1360), - [anon_sym_cast] = ACTIONS(1360), - [anon_sym_DOLLARtype] = ACTIONS(1358), - [anon_sym_in] = ACTIONS(1360), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_this] = ACTIONS(1360), - [anon_sym_AT] = ACTIONS(1360), - [anon_sym_AT_COLON] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1360), - [anon_sym_else] = ACTIONS(1360), - [anon_sym_new] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_PERCENT] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_SLASH] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_LT_LT] = ACTIONS(1358), - [anon_sym_GT_GT] = ACTIONS(1360), - [anon_sym_GT_GT_GT] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_PIPE] = ACTIONS(1360), - [anon_sym_CARET] = ACTIONS(1358), - [anon_sym_AMP_AMP] = ACTIONS(1358), - [anon_sym_PIPE_PIPE] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1360), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1360), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_EQ_GT] = ACTIONS(1358), - [anon_sym_QMARK_QMARK] = ACTIONS(1358), - [anon_sym_EQ] = ACTIONS(1360), - [sym__rangeOperator] = ACTIONS(1358), - [anon_sym_null] = ACTIONS(1360), - [anon_sym_dynamic] = ACTIONS(1360), - [anon_sym_final] = ACTIONS(1360), - [anon_sym_abstract] = ACTIONS(1360), - [anon_sym_class] = ACTIONS(1360), - [anon_sym_extends] = ACTIONS(1360), - [anon_sym_implements] = ACTIONS(1360), - [anon_sym_interface] = ACTIONS(1360), - [anon_sym_typedef] = ACTIONS(1360), - [anon_sym_function] = ACTIONS(1360), - [anon_sym_var] = ACTIONS(1360), - [aux_sym_integer_token1] = ACTIONS(1360), - [aux_sym_integer_token2] = ACTIONS(1358), - [aux_sym_float_token1] = ACTIONS(1360), - [aux_sym_float_token2] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1360), - [anon_sym_false] = ACTIONS(1360), - [aux_sym_string_token1] = ACTIONS(1358), - [aux_sym_string_token3] = ACTIONS(1358), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1360), - [anon_sym_catch] = ACTIONS(1360), - [anon_sym_continue] = ACTIONS(1360), - [anon_sym_do] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1360), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym_for] = ACTIONS(1360), - [anon_sym_inline] = ACTIONS(1360), - [anon_sym_macro] = ACTIONS(1360), - [anon_sym_operator] = ACTIONS(1360), - [anon_sym_overload] = ACTIONS(1360), - [anon_sym_override] = ACTIONS(1360), - [anon_sym_private] = ACTIONS(1360), - [anon_sym_public] = ACTIONS(1360), - [anon_sym_return] = ACTIONS(1360), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_try] = ACTIONS(1360), - [anon_sym_untyped] = ACTIONS(1360), - [anon_sym_while] = ACTIONS(1360), - [sym__semicolon] = ACTIONS(1358), + [293] = { + [ts_builtin_sym_end] = ACTIONS(1292), + [sym_identifier] = ACTIONS(1294), + [anon_sym_POUND] = ACTIONS(1292), + [anon_sym_package] = ACTIONS(1294), + [anon_sym_import] = ACTIONS(1294), + [anon_sym_using] = ACTIONS(1294), + [anon_sym_throw] = ACTIONS(1294), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_switch] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_case] = ACTIONS(1294), + [anon_sym_default] = ACTIONS(1294), + [anon_sym_cast] = ACTIONS(1294), + [anon_sym_DOLLARtype] = ACTIONS(1292), + [anon_sym_in] = ACTIONS(1294), + [anon_sym_LBRACK] = ACTIONS(1292), + [anon_sym_this] = ACTIONS(1294), + [anon_sym_AT] = ACTIONS(1294), + [anon_sym_AT_COLON] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_else] = ACTIONS(1294), + [anon_sym_new] = ACTIONS(1294), + [sym__prefixUnaryOperator] = ACTIONS(1294), + [sym__eitherUnaryOperator] = ACTIONS(1292), + [anon_sym_null] = ACTIONS(1294), + [anon_sym_dynamic] = ACTIONS(1294), + [anon_sym_final] = ACTIONS(1294), + [anon_sym_abstract] = ACTIONS(1294), + [anon_sym_class] = ACTIONS(1294), + [anon_sym_extends] = ACTIONS(1294), + [anon_sym_implements] = ACTIONS(1294), + [anon_sym_interface] = ACTIONS(1294), + [anon_sym_typedef] = ACTIONS(1294), + [anon_sym_function] = ACTIONS(1294), + [anon_sym_var] = ACTIONS(1294), + [aux_sym_integer_token1] = ACTIONS(1294), + [aux_sym_integer_token2] = ACTIONS(1292), + [aux_sym_float_token1] = ACTIONS(1294), + [aux_sym_float_token2] = ACTIONS(1292), + [anon_sym_true] = ACTIONS(1294), + [anon_sym_false] = ACTIONS(1294), + [aux_sym_string_token1] = ACTIONS(1292), + [aux_sym_string_token3] = ACTIONS(1292), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_catch] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_do] = ACTIONS(1294), + [anon_sym_enum] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym_for] = ACTIONS(1294), + [anon_sym_inline] = ACTIONS(1294), + [anon_sym_macro] = ACTIONS(1294), + [anon_sym_operator] = ACTIONS(1294), + [anon_sym_overload] = ACTIONS(1294), + [anon_sym_override] = ACTIONS(1294), + [anon_sym_private] = ACTIONS(1294), + [anon_sym_public] = ACTIONS(1294), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_static] = ACTIONS(1294), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_untyped] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(1294), + [sym__semicolon] = ACTIONS(1292), }, - [280] = { - [ts_builtin_sym_end] = ACTIONS(1362), - [sym_identifier] = ACTIONS(1364), - [anon_sym_POUND] = ACTIONS(1362), - [anon_sym_package] = ACTIONS(1364), - [anon_sym_import] = ACTIONS(1364), - [anon_sym_using] = ACTIONS(1364), - [anon_sym_throw] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), - [anon_sym_cast] = ACTIONS(1364), - [anon_sym_DOLLARtype] = ACTIONS(1362), - [anon_sym_in] = ACTIONS(1364), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_this] = ACTIONS(1364), - [anon_sym_AT] = ACTIONS(1364), - [anon_sym_AT_COLON] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_else] = ACTIONS(1364), - [anon_sym_new] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PERCENT] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_SLASH] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_LT_LT] = ACTIONS(1362), - [anon_sym_GT_GT] = ACTIONS(1364), - [anon_sym_GT_GT_GT] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_PIPE] = ACTIONS(1364), - [anon_sym_CARET] = ACTIONS(1362), - [anon_sym_AMP_AMP] = ACTIONS(1362), - [anon_sym_PIPE_PIPE] = ACTIONS(1362), - [anon_sym_EQ_EQ] = ACTIONS(1362), - [anon_sym_BANG_EQ] = ACTIONS(1362), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_LT_EQ] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1364), - [anon_sym_GT_EQ] = ACTIONS(1362), - [anon_sym_EQ_GT] = ACTIONS(1362), - [anon_sym_QMARK_QMARK] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1364), - [sym__rangeOperator] = ACTIONS(1362), - [anon_sym_null] = ACTIONS(1364), - [anon_sym_dynamic] = ACTIONS(1364), - [anon_sym_final] = ACTIONS(1364), - [anon_sym_abstract] = ACTIONS(1364), - [anon_sym_class] = ACTIONS(1364), - [anon_sym_extends] = ACTIONS(1364), - [anon_sym_implements] = ACTIONS(1364), - [anon_sym_interface] = ACTIONS(1364), - [anon_sym_typedef] = ACTIONS(1364), - [anon_sym_function] = ACTIONS(1364), - [anon_sym_var] = ACTIONS(1364), - [aux_sym_integer_token1] = ACTIONS(1364), - [aux_sym_integer_token2] = ACTIONS(1362), - [aux_sym_float_token1] = ACTIONS(1364), - [aux_sym_float_token2] = ACTIONS(1362), - [anon_sym_true] = ACTIONS(1364), - [anon_sym_false] = ACTIONS(1364), - [aux_sym_string_token1] = ACTIONS(1362), - [aux_sym_string_token3] = ACTIONS(1362), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1364), - [anon_sym_catch] = ACTIONS(1364), - [anon_sym_continue] = ACTIONS(1364), - [anon_sym_do] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1364), - [anon_sym_extern] = ACTIONS(1364), - [anon_sym_for] = ACTIONS(1364), - [anon_sym_inline] = ACTIONS(1364), - [anon_sym_macro] = ACTIONS(1364), - [anon_sym_operator] = ACTIONS(1364), - [anon_sym_overload] = ACTIONS(1364), - [anon_sym_override] = ACTIONS(1364), - [anon_sym_private] = ACTIONS(1364), - [anon_sym_public] = ACTIONS(1364), - [anon_sym_return] = ACTIONS(1364), - [anon_sym_static] = ACTIONS(1364), - [anon_sym_try] = ACTIONS(1364), - [anon_sym_untyped] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1364), - [sym__semicolon] = ACTIONS(1362), + [294] = { + [ts_builtin_sym_end] = ACTIONS(852), + [sym_identifier] = ACTIONS(854), + [anon_sym_POUND] = ACTIONS(852), + [anon_sym_package] = ACTIONS(854), + [anon_sym_import] = ACTIONS(854), + [anon_sym_using] = ACTIONS(854), + [anon_sym_throw] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(852), + [anon_sym_switch] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(852), + [anon_sym_RBRACE] = ACTIONS(852), + [anon_sym_case] = ACTIONS(854), + [anon_sym_default] = ACTIONS(854), + [anon_sym_cast] = ACTIONS(854), + [anon_sym_DOLLARtype] = ACTIONS(852), + [anon_sym_in] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_this] = ACTIONS(854), + [anon_sym_AT] = ACTIONS(854), + [anon_sym_AT_COLON] = ACTIONS(852), + [anon_sym_if] = ACTIONS(854), + [anon_sym_else] = ACTIONS(854), + [anon_sym_new] = ACTIONS(854), + [sym__prefixUnaryOperator] = ACTIONS(854), + [sym__eitherUnaryOperator] = ACTIONS(852), + [anon_sym_null] = ACTIONS(854), + [anon_sym_dynamic] = ACTIONS(854), + [anon_sym_final] = ACTIONS(854), + [anon_sym_abstract] = ACTIONS(854), + [anon_sym_class] = ACTIONS(854), + [anon_sym_extends] = ACTIONS(854), + [anon_sym_implements] = ACTIONS(854), + [anon_sym_interface] = ACTIONS(854), + [anon_sym_typedef] = ACTIONS(854), + [anon_sym_function] = ACTIONS(854), + [anon_sym_var] = ACTIONS(854), + [aux_sym_integer_token1] = ACTIONS(854), + [aux_sym_integer_token2] = ACTIONS(852), + [aux_sym_float_token1] = ACTIONS(854), + [aux_sym_float_token2] = ACTIONS(852), + [anon_sym_true] = ACTIONS(854), + [anon_sym_false] = ACTIONS(854), + [aux_sym_string_token1] = ACTIONS(852), + [aux_sym_string_token3] = ACTIONS(852), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(854), + [anon_sym_catch] = ACTIONS(854), + [anon_sym_continue] = ACTIONS(854), + [anon_sym_do] = ACTIONS(854), + [anon_sym_enum] = ACTIONS(854), + [anon_sym_extern] = ACTIONS(854), + [anon_sym_for] = ACTIONS(854), + [anon_sym_inline] = ACTIONS(854), + [anon_sym_macro] = ACTIONS(854), + [anon_sym_operator] = ACTIONS(854), + [anon_sym_overload] = ACTIONS(854), + [anon_sym_override] = ACTIONS(854), + [anon_sym_private] = ACTIONS(854), + [anon_sym_public] = ACTIONS(854), + [anon_sym_return] = ACTIONS(854), + [anon_sym_static] = ACTIONS(854), + [anon_sym_try] = ACTIONS(854), + [anon_sym_untyped] = ACTIONS(854), + [anon_sym_while] = ACTIONS(854), + [sym__semicolon] = ACTIONS(852), }, - [281] = { - [sym__rhs_expression] = STATE(471), - [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(65), - [sym_range_expression] = STATE(66), - [sym_subscript_expression] = STATE(66), - [sym_member_expression] = STATE(457), - [sym__lhs_expression] = STATE(979), - [sym_builtin_type] = STATE(1008), - [sym_function_type] = STATE(118), - [sym_type] = STATE(1189), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(471), - [sym_operator] = STATE(804), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(825), - [sym_integer] = STATE(825), - [sym_float] = STATE(825), - [sym_bool] = STATE(825), - [sym_string] = STATE(675), - [sym_null] = STATE(825), - [sym_array] = STATE(825), - [sym_map] = STATE(825), - [sym_object] = STATE(825), - [sym_pair] = STATE(825), - [sym_identifier] = ACTIONS(1088), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1090), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(998), - [anon_sym_Void] = ACTIONS(606), - [anon_sym_Int] = ACTIONS(606), - [anon_sym_Float] = ACTIONS(606), - [anon_sym_Bool] = ACTIONS(606), - [anon_sym_Null] = ACTIONS(606), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [282] = { - [ts_builtin_sym_end] = ACTIONS(370), - [sym_identifier] = ACTIONS(372), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_package] = ACTIONS(372), - [anon_sym_import] = ACTIONS(372), - [anon_sym_using] = ACTIONS(372), - [anon_sym_throw] = ACTIONS(372), - [anon_sym_LPAREN] = ACTIONS(370), - [anon_sym_switch] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(370), - [anon_sym_RBRACE] = ACTIONS(370), - [anon_sym_case] = ACTIONS(372), - [anon_sym_default] = ACTIONS(372), - [anon_sym_cast] = ACTIONS(372), - [anon_sym_DOLLARtype] = ACTIONS(370), - [anon_sym_in] = ACTIONS(372), - [anon_sym_LBRACK] = ACTIONS(454), - [anon_sym_this] = ACTIONS(372), - [anon_sym_AT] = ACTIONS(372), - [anon_sym_AT_COLON] = ACTIONS(370), - [anon_sym_if] = ACTIONS(372), - [anon_sym_else] = ACTIONS(372), - [anon_sym_new] = ACTIONS(372), - [anon_sym_TILDE] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_PLUS_PLUS] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(372), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(372), - [anon_sym_GT_GT_GT] = ACTIONS(370), - [anon_sym_AMP] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(372), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_PIPE_PIPE] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(370), - [anon_sym_BANG_EQ] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_LT_EQ] = ACTIONS(370), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_EQ] = ACTIONS(370), - [anon_sym_EQ_GT] = ACTIONS(370), - [anon_sym_QMARK_QMARK] = ACTIONS(370), - [anon_sym_EQ] = ACTIONS(372), - [sym__rangeOperator] = ACTIONS(370), - [anon_sym_null] = ACTIONS(372), - [anon_sym_dynamic] = ACTIONS(372), - [anon_sym_final] = ACTIONS(372), - [anon_sym_abstract] = ACTIONS(372), - [anon_sym_class] = ACTIONS(372), - [anon_sym_extends] = ACTIONS(372), - [anon_sym_implements] = ACTIONS(372), - [anon_sym_interface] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(372), - [anon_sym_function] = ACTIONS(372), - [anon_sym_var] = ACTIONS(372), - [aux_sym_integer_token1] = ACTIONS(372), - [aux_sym_integer_token2] = ACTIONS(370), - [aux_sym_float_token1] = ACTIONS(372), - [aux_sym_float_token2] = ACTIONS(370), - [anon_sym_true] = ACTIONS(372), - [anon_sym_false] = ACTIONS(372), - [aux_sym_string_token1] = ACTIONS(370), - [aux_sym_string_token3] = ACTIONS(370), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(372), - [anon_sym_catch] = ACTIONS(372), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_do] = ACTIONS(372), - [anon_sym_enum] = ACTIONS(372), - [anon_sym_extern] = ACTIONS(372), - [anon_sym_for] = ACTIONS(372), - [anon_sym_inline] = ACTIONS(372), - [anon_sym_macro] = ACTIONS(372), - [anon_sym_operator] = ACTIONS(372), - [anon_sym_overload] = ACTIONS(372), - [anon_sym_override] = ACTIONS(372), - [anon_sym_private] = ACTIONS(372), - [anon_sym_public] = ACTIONS(372), - [anon_sym_return] = ACTIONS(372), - [anon_sym_static] = ACTIONS(372), - [anon_sym_try] = ACTIONS(372), - [anon_sym_untyped] = ACTIONS(372), - [anon_sym_while] = ACTIONS(372), - [sym__semicolon] = ACTIONS(374), - }, - [283] = { - [ts_builtin_sym_end] = ACTIONS(1366), - [sym_identifier] = ACTIONS(1368), - [anon_sym_POUND] = ACTIONS(1366), - [anon_sym_package] = ACTIONS(1368), - [anon_sym_import] = ACTIONS(1368), - [anon_sym_using] = ACTIONS(1368), - [anon_sym_throw] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_cast] = ACTIONS(1368), - [anon_sym_DOLLARtype] = ACTIONS(1366), - [anon_sym_in] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1366), - [anon_sym_this] = ACTIONS(1368), - [anon_sym_AT] = ACTIONS(1368), - [anon_sym_AT_COLON] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1366), - [anon_sym_PERCENT] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_LT_LT] = ACTIONS(1366), - [anon_sym_GT_GT] = ACTIONS(1368), - [anon_sym_GT_GT_GT] = ACTIONS(1366), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1366), - [anon_sym_AMP_AMP] = ACTIONS(1366), - [anon_sym_PIPE_PIPE] = ACTIONS(1366), - [anon_sym_EQ_EQ] = ACTIONS(1366), - [anon_sym_BANG_EQ] = ACTIONS(1366), - [anon_sym_LT] = ACTIONS(1368), - [anon_sym_LT_EQ] = ACTIONS(1366), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1366), - [anon_sym_EQ_GT] = ACTIONS(1366), - [anon_sym_QMARK_QMARK] = ACTIONS(1366), - [anon_sym_EQ] = ACTIONS(1368), - [sym__rangeOperator] = ACTIONS(1366), - [anon_sym_null] = ACTIONS(1368), - [anon_sym_dynamic] = ACTIONS(1368), - [anon_sym_final] = ACTIONS(1368), - [anon_sym_abstract] = ACTIONS(1368), - [anon_sym_class] = ACTIONS(1368), - [anon_sym_extends] = ACTIONS(1368), - [anon_sym_implements] = ACTIONS(1368), - [anon_sym_interface] = ACTIONS(1368), - [anon_sym_typedef] = ACTIONS(1368), - [anon_sym_function] = ACTIONS(1368), - [anon_sym_var] = ACTIONS(1368), - [aux_sym_integer_token1] = ACTIONS(1368), - [aux_sym_integer_token2] = ACTIONS(1366), - [aux_sym_float_token1] = ACTIONS(1368), - [aux_sym_float_token2] = ACTIONS(1366), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [aux_sym_string_token1] = ACTIONS(1366), - [aux_sym_string_token3] = ACTIONS(1366), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1368), - [anon_sym_catch] = ACTIONS(1368), - [anon_sym_continue] = ACTIONS(1368), - [anon_sym_do] = ACTIONS(1368), - [anon_sym_enum] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1368), - [anon_sym_for] = ACTIONS(1368), - [anon_sym_inline] = ACTIONS(1368), - [anon_sym_macro] = ACTIONS(1368), - [anon_sym_operator] = ACTIONS(1368), - [anon_sym_overload] = ACTIONS(1368), - [anon_sym_override] = ACTIONS(1368), - [anon_sym_private] = ACTIONS(1368), - [anon_sym_public] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_static] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1368), - [anon_sym_untyped] = ACTIONS(1368), - [anon_sym_while] = ACTIONS(1368), - [sym__semicolon] = ACTIONS(1366), - }, - [284] = { - [ts_builtin_sym_end] = ACTIONS(1370), - [sym_identifier] = ACTIONS(1372), - [anon_sym_POUND] = ACTIONS(1370), - [anon_sym_package] = ACTIONS(1372), - [anon_sym_import] = ACTIONS(1372), - [anon_sym_using] = ACTIONS(1372), - [anon_sym_throw] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_cast] = ACTIONS(1372), - [anon_sym_DOLLARtype] = ACTIONS(1370), - [anon_sym_in] = ACTIONS(1372), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_this] = ACTIONS(1372), - [anon_sym_AT] = ACTIONS(1372), - [anon_sym_AT_COLON] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_else] = ACTIONS(1372), - [anon_sym_new] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1370), - [anon_sym_PERCENT] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_LT_LT] = ACTIONS(1370), - [anon_sym_GT_GT] = ACTIONS(1372), - [anon_sym_GT_GT_GT] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_PIPE] = ACTIONS(1372), - [anon_sym_CARET] = ACTIONS(1370), - [anon_sym_AMP_AMP] = ACTIONS(1370), - [anon_sym_PIPE_PIPE] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_LT] = ACTIONS(1372), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1372), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ_GT] = ACTIONS(1370), - [anon_sym_QMARK_QMARK] = ACTIONS(1370), - [anon_sym_EQ] = ACTIONS(1372), - [sym__rangeOperator] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1372), - [anon_sym_dynamic] = ACTIONS(1372), - [anon_sym_final] = ACTIONS(1372), - [anon_sym_abstract] = ACTIONS(1372), - [anon_sym_class] = ACTIONS(1372), - [anon_sym_extends] = ACTIONS(1372), - [anon_sym_implements] = ACTIONS(1372), - [anon_sym_interface] = ACTIONS(1372), - [anon_sym_typedef] = ACTIONS(1372), - [anon_sym_function] = ACTIONS(1372), - [anon_sym_var] = ACTIONS(1372), - [aux_sym_integer_token1] = ACTIONS(1372), - [aux_sym_integer_token2] = ACTIONS(1370), - [aux_sym_float_token1] = ACTIONS(1372), - [aux_sym_float_token2] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1372), - [anon_sym_false] = ACTIONS(1372), - [aux_sym_string_token1] = ACTIONS(1370), - [aux_sym_string_token3] = ACTIONS(1370), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_catch] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_do] = ACTIONS(1372), - [anon_sym_enum] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1372), - [anon_sym_for] = ACTIONS(1372), - [anon_sym_inline] = ACTIONS(1372), - [anon_sym_macro] = ACTIONS(1372), - [anon_sym_operator] = ACTIONS(1372), - [anon_sym_overload] = ACTIONS(1372), - [anon_sym_override] = ACTIONS(1372), - [anon_sym_private] = ACTIONS(1372), - [anon_sym_public] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1372), - [anon_sym_static] = ACTIONS(1372), - [anon_sym_try] = ACTIONS(1372), - [anon_sym_untyped] = ACTIONS(1372), - [anon_sym_while] = ACTIONS(1372), - [sym__semicolon] = ACTIONS(1370), - }, - [285] = { - [ts_builtin_sym_end] = ACTIONS(1374), - [sym_identifier] = ACTIONS(1376), - [anon_sym_POUND] = ACTIONS(1374), - [anon_sym_package] = ACTIONS(1376), - [anon_sym_import] = ACTIONS(1376), - [anon_sym_using] = ACTIONS(1376), - [anon_sym_throw] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1374), - [anon_sym_RBRACE] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_cast] = ACTIONS(1376), - [anon_sym_DOLLARtype] = ACTIONS(1374), - [anon_sym_in] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1374), - [anon_sym_this] = ACTIONS(1376), - [anon_sym_AT] = ACTIONS(1376), - [anon_sym_AT_COLON] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1376), - [anon_sym_else] = ACTIONS(1376), - [anon_sym_new] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1374), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1374), - [anon_sym_PERCENT] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_LT_LT] = ACTIONS(1374), - [anon_sym_GT_GT] = ACTIONS(1376), - [anon_sym_GT_GT_GT] = ACTIONS(1374), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1374), - [anon_sym_AMP_AMP] = ACTIONS(1374), - [anon_sym_PIPE_PIPE] = ACTIONS(1374), - [anon_sym_EQ_EQ] = ACTIONS(1374), - [anon_sym_BANG_EQ] = ACTIONS(1374), - [anon_sym_LT] = ACTIONS(1376), - [anon_sym_LT_EQ] = ACTIONS(1374), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1374), - [anon_sym_EQ_GT] = ACTIONS(1374), - [anon_sym_QMARK_QMARK] = ACTIONS(1374), - [anon_sym_EQ] = ACTIONS(1376), - [sym__rangeOperator] = ACTIONS(1374), - [anon_sym_null] = ACTIONS(1376), - [anon_sym_dynamic] = ACTIONS(1376), - [anon_sym_final] = ACTIONS(1376), - [anon_sym_abstract] = ACTIONS(1376), - [anon_sym_class] = ACTIONS(1376), - [anon_sym_extends] = ACTIONS(1376), - [anon_sym_implements] = ACTIONS(1376), - [anon_sym_interface] = ACTIONS(1376), - [anon_sym_typedef] = ACTIONS(1376), - [anon_sym_function] = ACTIONS(1376), - [anon_sym_var] = ACTIONS(1376), - [aux_sym_integer_token1] = ACTIONS(1376), - [aux_sym_integer_token2] = ACTIONS(1374), - [aux_sym_float_token1] = ACTIONS(1376), - [aux_sym_float_token2] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym_string_token1] = ACTIONS(1374), - [aux_sym_string_token3] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1376), - [anon_sym_catch] = ACTIONS(1376), - [anon_sym_continue] = ACTIONS(1376), - [anon_sym_do] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_for] = ACTIONS(1376), - [anon_sym_inline] = ACTIONS(1376), - [anon_sym_macro] = ACTIONS(1376), - [anon_sym_operator] = ACTIONS(1376), - [anon_sym_overload] = ACTIONS(1376), - [anon_sym_override] = ACTIONS(1376), - [anon_sym_private] = ACTIONS(1376), - [anon_sym_public] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1376), - [anon_sym_untyped] = ACTIONS(1376), - [anon_sym_while] = ACTIONS(1376), - [sym__semicolon] = ACTIONS(1374), - }, - [286] = { - [ts_builtin_sym_end] = ACTIONS(1378), - [sym_identifier] = ACTIONS(1380), - [anon_sym_POUND] = ACTIONS(1378), - [anon_sym_package] = ACTIONS(1380), - [anon_sym_import] = ACTIONS(1380), - [anon_sym_using] = ACTIONS(1380), - [anon_sym_throw] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1378), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1380), - [anon_sym_default] = ACTIONS(1380), - [anon_sym_cast] = ACTIONS(1380), - [anon_sym_DOLLARtype] = ACTIONS(1378), - [anon_sym_in] = ACTIONS(1380), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_this] = ACTIONS(1380), - [anon_sym_AT] = ACTIONS(1380), - [anon_sym_AT_COLON] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1380), - [anon_sym_else] = ACTIONS(1380), - [anon_sym_new] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1378), - [anon_sym_PERCENT] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_SLASH] = ACTIONS(1380), - [anon_sym_PLUS] = ACTIONS(1380), - [anon_sym_LT_LT] = ACTIONS(1378), - [anon_sym_GT_GT] = ACTIONS(1380), - [anon_sym_GT_GT_GT] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_PIPE] = ACTIONS(1380), - [anon_sym_CARET] = ACTIONS(1378), - [anon_sym_AMP_AMP] = ACTIONS(1378), - [anon_sym_PIPE_PIPE] = ACTIONS(1378), - [anon_sym_EQ_EQ] = ACTIONS(1378), - [anon_sym_BANG_EQ] = ACTIONS(1378), - [anon_sym_LT] = ACTIONS(1380), - [anon_sym_LT_EQ] = ACTIONS(1378), - [anon_sym_GT] = ACTIONS(1380), - [anon_sym_GT_EQ] = ACTIONS(1378), - [anon_sym_EQ_GT] = ACTIONS(1378), - [anon_sym_QMARK_QMARK] = ACTIONS(1378), - [anon_sym_EQ] = ACTIONS(1380), - [sym__rangeOperator] = ACTIONS(1378), - [anon_sym_null] = ACTIONS(1380), - [anon_sym_dynamic] = ACTIONS(1380), - [anon_sym_final] = ACTIONS(1380), - [anon_sym_abstract] = ACTIONS(1380), - [anon_sym_class] = ACTIONS(1380), - [anon_sym_extends] = ACTIONS(1380), - [anon_sym_implements] = ACTIONS(1380), - [anon_sym_interface] = ACTIONS(1380), - [anon_sym_typedef] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1380), - [anon_sym_var] = ACTIONS(1380), - [aux_sym_integer_token1] = ACTIONS(1380), - [aux_sym_integer_token2] = ACTIONS(1378), - [aux_sym_float_token1] = ACTIONS(1380), - [aux_sym_float_token2] = ACTIONS(1378), - [anon_sym_true] = ACTIONS(1380), - [anon_sym_false] = ACTIONS(1380), - [aux_sym_string_token1] = ACTIONS(1378), - [aux_sym_string_token3] = ACTIONS(1378), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1380), - [anon_sym_catch] = ACTIONS(1380), - [anon_sym_continue] = ACTIONS(1380), - [anon_sym_do] = ACTIONS(1380), - [anon_sym_enum] = ACTIONS(1380), - [anon_sym_extern] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1380), - [anon_sym_inline] = ACTIONS(1380), - [anon_sym_macro] = ACTIONS(1380), - [anon_sym_operator] = ACTIONS(1380), - [anon_sym_overload] = ACTIONS(1380), - [anon_sym_override] = ACTIONS(1380), - [anon_sym_private] = ACTIONS(1380), - [anon_sym_public] = ACTIONS(1380), - [anon_sym_return] = ACTIONS(1380), - [anon_sym_static] = ACTIONS(1380), - [anon_sym_try] = ACTIONS(1380), - [anon_sym_untyped] = ACTIONS(1380), - [anon_sym_while] = ACTIONS(1380), - [sym__semicolon] = ACTIONS(1378), - }, - [287] = { - [ts_builtin_sym_end] = ACTIONS(1382), - [sym_identifier] = ACTIONS(1384), - [anon_sym_POUND] = ACTIONS(1382), - [anon_sym_package] = ACTIONS(1384), - [anon_sym_import] = ACTIONS(1384), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_throw] = ACTIONS(1384), - [anon_sym_LPAREN] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1384), - [anon_sym_default] = ACTIONS(1384), - [anon_sym_cast] = ACTIONS(1384), - [anon_sym_DOLLARtype] = ACTIONS(1382), - [anon_sym_in] = ACTIONS(1384), - [anon_sym_LBRACK] = ACTIONS(1382), - [anon_sym_this] = ACTIONS(1384), - [anon_sym_AT] = ACTIONS(1384), - [anon_sym_AT_COLON] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1384), - [anon_sym_else] = ACTIONS(1384), - [anon_sym_new] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1382), - [anon_sym_PERCENT] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_SLASH] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1384), - [anon_sym_LT_LT] = ACTIONS(1382), - [anon_sym_GT_GT] = ACTIONS(1384), - [anon_sym_GT_GT_GT] = ACTIONS(1382), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_PIPE] = ACTIONS(1384), - [anon_sym_CARET] = ACTIONS(1382), - [anon_sym_AMP_AMP] = ACTIONS(1382), - [anon_sym_PIPE_PIPE] = ACTIONS(1382), - [anon_sym_EQ_EQ] = ACTIONS(1382), - [anon_sym_BANG_EQ] = ACTIONS(1382), - [anon_sym_LT] = ACTIONS(1384), - [anon_sym_LT_EQ] = ACTIONS(1382), - [anon_sym_GT] = ACTIONS(1384), - [anon_sym_GT_EQ] = ACTIONS(1382), - [anon_sym_EQ_GT] = ACTIONS(1382), - [anon_sym_QMARK_QMARK] = ACTIONS(1382), - [anon_sym_EQ] = ACTIONS(1384), - [sym__rangeOperator] = ACTIONS(1382), - [anon_sym_null] = ACTIONS(1384), - [anon_sym_dynamic] = ACTIONS(1384), - [anon_sym_final] = ACTIONS(1384), - [anon_sym_abstract] = ACTIONS(1384), - [anon_sym_class] = ACTIONS(1384), - [anon_sym_extends] = ACTIONS(1384), - [anon_sym_implements] = ACTIONS(1384), - [anon_sym_interface] = ACTIONS(1384), - [anon_sym_typedef] = ACTIONS(1384), - [anon_sym_function] = ACTIONS(1384), - [anon_sym_var] = ACTIONS(1384), - [aux_sym_integer_token1] = ACTIONS(1384), - [aux_sym_integer_token2] = ACTIONS(1382), - [aux_sym_float_token1] = ACTIONS(1384), - [aux_sym_float_token2] = ACTIONS(1382), - [anon_sym_true] = ACTIONS(1384), - [anon_sym_false] = ACTIONS(1384), - [aux_sym_string_token1] = ACTIONS(1382), - [aux_sym_string_token3] = ACTIONS(1382), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1384), - [anon_sym_catch] = ACTIONS(1384), - [anon_sym_continue] = ACTIONS(1384), - [anon_sym_do] = ACTIONS(1384), - [anon_sym_enum] = ACTIONS(1384), - [anon_sym_extern] = ACTIONS(1384), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_inline] = ACTIONS(1384), - [anon_sym_macro] = ACTIONS(1384), - [anon_sym_operator] = ACTIONS(1384), - [anon_sym_overload] = ACTIONS(1384), - [anon_sym_override] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1384), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_try] = ACTIONS(1384), - [anon_sym_untyped] = ACTIONS(1384), - [anon_sym_while] = ACTIONS(1384), - [sym__semicolon] = ACTIONS(1382), - }, - [288] = { - [ts_builtin_sym_end] = ACTIONS(1386), - [sym_identifier] = ACTIONS(1388), - [anon_sym_POUND] = ACTIONS(1386), - [anon_sym_package] = ACTIONS(1388), - [anon_sym_import] = ACTIONS(1388), - [anon_sym_using] = ACTIONS(1388), - [anon_sym_throw] = ACTIONS(1388), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(1386), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1388), - [anon_sym_default] = ACTIONS(1388), - [anon_sym_cast] = ACTIONS(1388), - [anon_sym_DOLLARtype] = ACTIONS(1386), - [anon_sym_in] = ACTIONS(1388), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_this] = ACTIONS(1388), - [anon_sym_AT] = ACTIONS(1388), - [anon_sym_AT_COLON] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1388), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1386), - [anon_sym_null] = ACTIONS(1388), - [anon_sym_dynamic] = ACTIONS(1388), - [anon_sym_final] = ACTIONS(1388), - [anon_sym_abstract] = ACTIONS(1388), - [anon_sym_class] = ACTIONS(1388), - [anon_sym_extends] = ACTIONS(1388), - [anon_sym_implements] = ACTIONS(1388), - [anon_sym_interface] = ACTIONS(1388), - [anon_sym_typedef] = ACTIONS(1388), - [anon_sym_function] = ACTIONS(1388), - [anon_sym_var] = ACTIONS(1388), - [aux_sym_integer_token1] = ACTIONS(1388), - [aux_sym_integer_token2] = ACTIONS(1386), - [aux_sym_float_token1] = ACTIONS(1388), - [aux_sym_float_token2] = ACTIONS(1386), - [anon_sym_true] = ACTIONS(1388), - [anon_sym_false] = ACTIONS(1388), - [aux_sym_string_token1] = ACTIONS(1386), - [aux_sym_string_token3] = ACTIONS(1386), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1388), - [anon_sym_catch] = ACTIONS(1388), - [anon_sym_continue] = ACTIONS(1388), - [anon_sym_do] = ACTIONS(1388), - [anon_sym_enum] = ACTIONS(1388), - [anon_sym_extern] = ACTIONS(1388), - [anon_sym_for] = ACTIONS(1388), - [anon_sym_inline] = ACTIONS(1388), - [anon_sym_macro] = ACTIONS(1388), - [anon_sym_operator] = ACTIONS(1388), - [anon_sym_overload] = ACTIONS(1388), - [anon_sym_override] = ACTIONS(1388), - [anon_sym_private] = ACTIONS(1388), - [anon_sym_public] = ACTIONS(1388), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_static] = ACTIONS(1388), - [anon_sym_try] = ACTIONS(1388), - [anon_sym_untyped] = ACTIONS(1388), - [anon_sym_while] = ACTIONS(1388), - [sym__semicolon] = ACTIONS(1386), - }, - [289] = { - [ts_builtin_sym_end] = ACTIONS(1390), - [sym_identifier] = ACTIONS(1392), - [anon_sym_POUND] = ACTIONS(1390), - [anon_sym_package] = ACTIONS(1392), - [anon_sym_import] = ACTIONS(1392), - [anon_sym_using] = ACTIONS(1392), - [anon_sym_throw] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1392), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1392), - [anon_sym_default] = ACTIONS(1392), - [anon_sym_cast] = ACTIONS(1392), - [anon_sym_DOLLARtype] = ACTIONS(1390), - [anon_sym_in] = ACTIONS(1392), - [anon_sym_LBRACK] = ACTIONS(1390), - [anon_sym_this] = ACTIONS(1392), - [anon_sym_AT] = ACTIONS(1392), - [anon_sym_AT_COLON] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1392), - [anon_sym_else] = ACTIONS(1392), - [anon_sym_new] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [anon_sym_PERCENT] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_SLASH] = ACTIONS(1392), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_LT_LT] = ACTIONS(1390), - [anon_sym_GT_GT] = ACTIONS(1392), - [anon_sym_GT_GT_GT] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_PIPE] = ACTIONS(1392), - [anon_sym_CARET] = ACTIONS(1390), - [anon_sym_AMP_AMP] = ACTIONS(1390), - [anon_sym_PIPE_PIPE] = ACTIONS(1390), - [anon_sym_EQ_EQ] = ACTIONS(1390), - [anon_sym_BANG_EQ] = ACTIONS(1390), - [anon_sym_LT] = ACTIONS(1392), - [anon_sym_LT_EQ] = ACTIONS(1390), - [anon_sym_GT] = ACTIONS(1392), - [anon_sym_GT_EQ] = ACTIONS(1390), - [anon_sym_EQ_GT] = ACTIONS(1390), - [anon_sym_QMARK_QMARK] = ACTIONS(1390), - [anon_sym_EQ] = ACTIONS(1392), - [sym__rangeOperator] = ACTIONS(1390), - [anon_sym_null] = ACTIONS(1392), - [anon_sym_dynamic] = ACTIONS(1392), - [anon_sym_final] = ACTIONS(1392), - [anon_sym_abstract] = ACTIONS(1392), - [anon_sym_class] = ACTIONS(1392), - [anon_sym_extends] = ACTIONS(1392), - [anon_sym_implements] = ACTIONS(1392), - [anon_sym_interface] = ACTIONS(1392), - [anon_sym_typedef] = ACTIONS(1392), - [anon_sym_function] = ACTIONS(1392), - [anon_sym_var] = ACTIONS(1392), - [aux_sym_integer_token1] = ACTIONS(1392), - [aux_sym_integer_token2] = ACTIONS(1390), - [aux_sym_float_token1] = ACTIONS(1392), - [aux_sym_float_token2] = ACTIONS(1390), - [anon_sym_true] = ACTIONS(1392), - [anon_sym_false] = ACTIONS(1392), - [aux_sym_string_token1] = ACTIONS(1390), - [aux_sym_string_token3] = ACTIONS(1390), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1392), - [anon_sym_catch] = ACTIONS(1392), - [anon_sym_continue] = ACTIONS(1392), - [anon_sym_do] = ACTIONS(1392), - [anon_sym_enum] = ACTIONS(1392), - [anon_sym_extern] = ACTIONS(1392), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_inline] = ACTIONS(1392), - [anon_sym_macro] = ACTIONS(1392), - [anon_sym_operator] = ACTIONS(1392), - [anon_sym_overload] = ACTIONS(1392), - [anon_sym_override] = ACTIONS(1392), - [anon_sym_private] = ACTIONS(1392), - [anon_sym_public] = ACTIONS(1392), - [anon_sym_return] = ACTIONS(1392), - [anon_sym_static] = ACTIONS(1392), - [anon_sym_try] = ACTIONS(1392), - [anon_sym_untyped] = ACTIONS(1392), - [anon_sym_while] = ACTIONS(1392), - [sym__semicolon] = ACTIONS(1390), - }, - [290] = { - [ts_builtin_sym_end] = ACTIONS(1394), - [sym_identifier] = ACTIONS(1396), - [anon_sym_POUND] = ACTIONS(1394), - [anon_sym_package] = ACTIONS(1396), - [anon_sym_import] = ACTIONS(1396), - [anon_sym_using] = ACTIONS(1396), - [anon_sym_throw] = ACTIONS(1396), - [anon_sym_LPAREN] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(1394), - [anon_sym_RBRACE] = ACTIONS(1394), - [anon_sym_case] = ACTIONS(1396), - [anon_sym_default] = ACTIONS(1396), - [anon_sym_cast] = ACTIONS(1396), - [anon_sym_DOLLARtype] = ACTIONS(1394), - [anon_sym_in] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1394), - [anon_sym_this] = ACTIONS(1396), - [anon_sym_AT] = ACTIONS(1396), - [anon_sym_AT_COLON] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1396), - [anon_sym_else] = ACTIONS(1396), - [anon_sym_new] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1394), - [anon_sym_PERCENT] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(1396), - [anon_sym_PLUS] = ACTIONS(1396), - [anon_sym_LT_LT] = ACTIONS(1394), - [anon_sym_GT_GT] = ACTIONS(1396), - [anon_sym_GT_GT_GT] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_PIPE] = ACTIONS(1396), - [anon_sym_CARET] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1394), - [anon_sym_PIPE_PIPE] = ACTIONS(1394), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_LT_EQ] = ACTIONS(1394), - [anon_sym_GT] = ACTIONS(1396), - [anon_sym_GT_EQ] = ACTIONS(1394), - [anon_sym_EQ_GT] = ACTIONS(1394), - [anon_sym_QMARK_QMARK] = ACTIONS(1394), - [anon_sym_EQ] = ACTIONS(1396), - [sym__rangeOperator] = ACTIONS(1394), - [anon_sym_null] = ACTIONS(1396), - [anon_sym_dynamic] = ACTIONS(1396), - [anon_sym_final] = ACTIONS(1396), - [anon_sym_abstract] = ACTIONS(1396), - [anon_sym_class] = ACTIONS(1396), - [anon_sym_extends] = ACTIONS(1396), - [anon_sym_implements] = ACTIONS(1396), - [anon_sym_interface] = ACTIONS(1396), - [anon_sym_typedef] = ACTIONS(1396), - [anon_sym_function] = ACTIONS(1396), - [anon_sym_var] = ACTIONS(1396), - [aux_sym_integer_token1] = ACTIONS(1396), - [aux_sym_integer_token2] = ACTIONS(1394), - [aux_sym_float_token1] = ACTIONS(1396), - [aux_sym_float_token2] = ACTIONS(1394), - [anon_sym_true] = ACTIONS(1396), - [anon_sym_false] = ACTIONS(1396), - [aux_sym_string_token1] = ACTIONS(1394), - [aux_sym_string_token3] = ACTIONS(1394), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1396), - [anon_sym_catch] = ACTIONS(1396), - [anon_sym_continue] = ACTIONS(1396), - [anon_sym_do] = ACTIONS(1396), - [anon_sym_enum] = ACTIONS(1396), - [anon_sym_extern] = ACTIONS(1396), - [anon_sym_for] = ACTIONS(1396), - [anon_sym_inline] = ACTIONS(1396), - [anon_sym_macro] = ACTIONS(1396), - [anon_sym_operator] = ACTIONS(1396), - [anon_sym_overload] = ACTIONS(1396), - [anon_sym_override] = ACTIONS(1396), - [anon_sym_private] = ACTIONS(1396), - [anon_sym_public] = ACTIONS(1396), - [anon_sym_return] = ACTIONS(1396), - [anon_sym_static] = ACTIONS(1396), - [anon_sym_try] = ACTIONS(1396), - [anon_sym_untyped] = ACTIONS(1396), - [anon_sym_while] = ACTIONS(1396), - [sym__semicolon] = ACTIONS(1394), - }, - [291] = { - [ts_builtin_sym_end] = ACTIONS(1398), - [sym_identifier] = ACTIONS(1400), - [anon_sym_POUND] = ACTIONS(1398), - [anon_sym_package] = ACTIONS(1400), - [anon_sym_import] = ACTIONS(1400), - [anon_sym_using] = ACTIONS(1400), - [anon_sym_throw] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1400), - [anon_sym_default] = ACTIONS(1400), - [anon_sym_cast] = ACTIONS(1400), - [anon_sym_DOLLARtype] = ACTIONS(1398), - [anon_sym_in] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1398), - [anon_sym_this] = ACTIONS(1400), - [anon_sym_AT] = ACTIONS(1400), - [anon_sym_AT_COLON] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1400), - [anon_sym_else] = ACTIONS(1400), - [anon_sym_new] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1398), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1398), - [anon_sym_PERCENT] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_LT_LT] = ACTIONS(1398), - [anon_sym_GT_GT] = ACTIONS(1400), - [anon_sym_GT_GT_GT] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1398), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym_GT] = ACTIONS(1400), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_EQ_GT] = ACTIONS(1398), - [anon_sym_QMARK_QMARK] = ACTIONS(1398), - [anon_sym_EQ] = ACTIONS(1400), - [sym__rangeOperator] = ACTIONS(1398), - [anon_sym_null] = ACTIONS(1400), - [anon_sym_dynamic] = ACTIONS(1400), - [anon_sym_final] = ACTIONS(1400), - [anon_sym_abstract] = ACTIONS(1400), - [anon_sym_class] = ACTIONS(1400), - [anon_sym_extends] = ACTIONS(1400), - [anon_sym_implements] = ACTIONS(1400), - [anon_sym_interface] = ACTIONS(1400), - [anon_sym_typedef] = ACTIONS(1400), - [anon_sym_function] = ACTIONS(1400), - [anon_sym_var] = ACTIONS(1400), - [aux_sym_integer_token1] = ACTIONS(1400), - [aux_sym_integer_token2] = ACTIONS(1398), - [aux_sym_float_token1] = ACTIONS(1400), - [aux_sym_float_token2] = ACTIONS(1398), - [anon_sym_true] = ACTIONS(1400), - [anon_sym_false] = ACTIONS(1400), - [aux_sym_string_token1] = ACTIONS(1398), - [aux_sym_string_token3] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1400), - [anon_sym_catch] = ACTIONS(1400), - [anon_sym_continue] = ACTIONS(1400), - [anon_sym_do] = ACTIONS(1400), - [anon_sym_enum] = ACTIONS(1400), - [anon_sym_extern] = ACTIONS(1400), - [anon_sym_for] = ACTIONS(1400), - [anon_sym_inline] = ACTIONS(1400), - [anon_sym_macro] = ACTIONS(1400), - [anon_sym_operator] = ACTIONS(1400), - [anon_sym_overload] = ACTIONS(1400), - [anon_sym_override] = ACTIONS(1400), - [anon_sym_private] = ACTIONS(1400), - [anon_sym_public] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1400), - [anon_sym_static] = ACTIONS(1400), - [anon_sym_try] = ACTIONS(1400), - [anon_sym_untyped] = ACTIONS(1400), - [anon_sym_while] = ACTIONS(1400), - [sym__semicolon] = ACTIONS(1398), - }, - [292] = { - [ts_builtin_sym_end] = ACTIONS(1402), - [sym_identifier] = ACTIONS(1404), - [anon_sym_POUND] = ACTIONS(1402), - [anon_sym_package] = ACTIONS(1404), - [anon_sym_import] = ACTIONS(1404), - [anon_sym_using] = ACTIONS(1404), - [anon_sym_throw] = ACTIONS(1404), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1404), - [anon_sym_default] = ACTIONS(1404), - [anon_sym_cast] = ACTIONS(1404), - [anon_sym_DOLLARtype] = ACTIONS(1402), - [anon_sym_in] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1402), - [anon_sym_this] = ACTIONS(1404), - [anon_sym_AT] = ACTIONS(1404), - [anon_sym_AT_COLON] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1404), - [anon_sym_else] = ACTIONS(1404), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1402), - [anon_sym_PERCENT] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1402), - [anon_sym_SLASH] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1404), - [anon_sym_LT_LT] = ACTIONS(1402), - [anon_sym_GT_GT] = ACTIONS(1404), - [anon_sym_GT_GT_GT] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_PIPE] = ACTIONS(1404), - [anon_sym_CARET] = ACTIONS(1402), - [anon_sym_AMP_AMP] = ACTIONS(1402), - [anon_sym_PIPE_PIPE] = ACTIONS(1402), - [anon_sym_EQ_EQ] = ACTIONS(1402), - [anon_sym_BANG_EQ] = ACTIONS(1402), - [anon_sym_LT] = ACTIONS(1404), - [anon_sym_LT_EQ] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1404), - [anon_sym_GT_EQ] = ACTIONS(1402), - [anon_sym_EQ_GT] = ACTIONS(1402), - [anon_sym_QMARK_QMARK] = ACTIONS(1402), - [anon_sym_EQ] = ACTIONS(1404), - [sym__rangeOperator] = ACTIONS(1402), - [anon_sym_null] = ACTIONS(1404), - [anon_sym_dynamic] = ACTIONS(1404), - [anon_sym_final] = ACTIONS(1404), - [anon_sym_abstract] = ACTIONS(1404), - [anon_sym_class] = ACTIONS(1404), - [anon_sym_extends] = ACTIONS(1404), - [anon_sym_implements] = ACTIONS(1404), - [anon_sym_interface] = ACTIONS(1404), - [anon_sym_typedef] = ACTIONS(1404), - [anon_sym_function] = ACTIONS(1404), - [anon_sym_var] = ACTIONS(1404), - [aux_sym_integer_token1] = ACTIONS(1404), - [aux_sym_integer_token2] = ACTIONS(1402), - [aux_sym_float_token1] = ACTIONS(1404), - [aux_sym_float_token2] = ACTIONS(1402), - [anon_sym_true] = ACTIONS(1404), - [anon_sym_false] = ACTIONS(1404), - [aux_sym_string_token1] = ACTIONS(1402), - [aux_sym_string_token3] = ACTIONS(1402), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1404), - [anon_sym_catch] = ACTIONS(1404), - [anon_sym_continue] = ACTIONS(1404), - [anon_sym_do] = ACTIONS(1404), - [anon_sym_enum] = ACTIONS(1404), - [anon_sym_extern] = ACTIONS(1404), - [anon_sym_for] = ACTIONS(1404), - [anon_sym_inline] = ACTIONS(1404), - [anon_sym_macro] = ACTIONS(1404), - [anon_sym_operator] = ACTIONS(1404), - [anon_sym_overload] = ACTIONS(1404), - [anon_sym_override] = ACTIONS(1404), - [anon_sym_private] = ACTIONS(1404), - [anon_sym_public] = ACTIONS(1404), - [anon_sym_return] = ACTIONS(1404), - [anon_sym_static] = ACTIONS(1404), - [anon_sym_try] = ACTIONS(1404), - [anon_sym_untyped] = ACTIONS(1404), - [anon_sym_while] = ACTIONS(1404), - [sym__semicolon] = ACTIONS(1402), - }, - [293] = { - [ts_builtin_sym_end] = ACTIONS(1406), - [sym_identifier] = ACTIONS(1408), - [anon_sym_POUND] = ACTIONS(1406), - [anon_sym_package] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(1408), - [anon_sym_using] = ACTIONS(1408), - [anon_sym_throw] = ACTIONS(1408), - [anon_sym_LPAREN] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_RBRACE] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1408), - [anon_sym_default] = ACTIONS(1408), - [anon_sym_cast] = ACTIONS(1408), - [anon_sym_DOLLARtype] = ACTIONS(1406), - [anon_sym_in] = ACTIONS(1408), - [anon_sym_LBRACK] = ACTIONS(1406), - [anon_sym_this] = ACTIONS(1408), - [anon_sym_AT] = ACTIONS(1408), - [anon_sym_AT_COLON] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1408), - [anon_sym_else] = ACTIONS(1408), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1406), - [anon_sym_PERCENT] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_SLASH] = ACTIONS(1408), - [anon_sym_PLUS] = ACTIONS(1408), - [anon_sym_LT_LT] = ACTIONS(1406), - [anon_sym_GT_GT] = ACTIONS(1408), - [anon_sym_GT_GT_GT] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE] = ACTIONS(1408), - [anon_sym_CARET] = ACTIONS(1406), - [anon_sym_AMP_AMP] = ACTIONS(1406), - [anon_sym_PIPE_PIPE] = ACTIONS(1406), - [anon_sym_EQ_EQ] = ACTIONS(1406), - [anon_sym_BANG_EQ] = ACTIONS(1406), - [anon_sym_LT] = ACTIONS(1408), - [anon_sym_LT_EQ] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(1408), - [anon_sym_GT_EQ] = ACTIONS(1406), - [anon_sym_EQ_GT] = ACTIONS(1406), - [anon_sym_QMARK_QMARK] = ACTIONS(1406), - [anon_sym_EQ] = ACTIONS(1408), - [sym__rangeOperator] = ACTIONS(1406), - [anon_sym_null] = ACTIONS(1408), - [anon_sym_dynamic] = ACTIONS(1408), - [anon_sym_final] = ACTIONS(1408), - [anon_sym_abstract] = ACTIONS(1408), - [anon_sym_class] = ACTIONS(1408), - [anon_sym_extends] = ACTIONS(1408), - [anon_sym_implements] = ACTIONS(1408), - [anon_sym_interface] = ACTIONS(1408), - [anon_sym_typedef] = ACTIONS(1408), - [anon_sym_function] = ACTIONS(1408), - [anon_sym_var] = ACTIONS(1408), - [aux_sym_integer_token1] = ACTIONS(1408), - [aux_sym_integer_token2] = ACTIONS(1406), - [aux_sym_float_token1] = ACTIONS(1408), - [aux_sym_float_token2] = ACTIONS(1406), - [anon_sym_true] = ACTIONS(1408), - [anon_sym_false] = ACTIONS(1408), - [aux_sym_string_token1] = ACTIONS(1406), - [aux_sym_string_token3] = ACTIONS(1406), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1408), - [anon_sym_catch] = ACTIONS(1408), - [anon_sym_continue] = ACTIONS(1408), - [anon_sym_do] = ACTIONS(1408), - [anon_sym_enum] = ACTIONS(1408), - [anon_sym_extern] = ACTIONS(1408), - [anon_sym_for] = ACTIONS(1408), - [anon_sym_inline] = ACTIONS(1408), - [anon_sym_macro] = ACTIONS(1408), - [anon_sym_operator] = ACTIONS(1408), - [anon_sym_overload] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_return] = ACTIONS(1408), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_try] = ACTIONS(1408), - [anon_sym_untyped] = ACTIONS(1408), - [anon_sym_while] = ACTIONS(1408), - [sym__semicolon] = ACTIONS(1406), - }, - [294] = { - [ts_builtin_sym_end] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1412), - [anon_sym_POUND] = ACTIONS(1410), - [anon_sym_package] = ACTIONS(1412), - [anon_sym_import] = ACTIONS(1412), - [anon_sym_using] = ACTIONS(1412), - [anon_sym_throw] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1412), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1412), - [anon_sym_cast] = ACTIONS(1412), - [anon_sym_DOLLARtype] = ACTIONS(1410), - [anon_sym_in] = ACTIONS(1412), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_this] = ACTIONS(1412), - [anon_sym_AT] = ACTIONS(1412), - [anon_sym_AT_COLON] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1412), - [anon_sym_else] = ACTIONS(1412), - [anon_sym_new] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_PERCENT] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_SLASH] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_LT_LT] = ACTIONS(1410), - [anon_sym_GT_GT] = ACTIONS(1412), - [anon_sym_GT_GT_GT] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1412), - [anon_sym_CARET] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1410), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_EQ_EQ] = ACTIONS(1410), - [anon_sym_BANG_EQ] = ACTIONS(1410), - [anon_sym_LT] = ACTIONS(1412), - [anon_sym_LT_EQ] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1412), - [anon_sym_GT_EQ] = ACTIONS(1410), - [anon_sym_EQ_GT] = ACTIONS(1410), - [anon_sym_QMARK_QMARK] = ACTIONS(1410), - [anon_sym_EQ] = ACTIONS(1412), - [sym__rangeOperator] = ACTIONS(1410), - [anon_sym_null] = ACTIONS(1412), - [anon_sym_dynamic] = ACTIONS(1412), - [anon_sym_final] = ACTIONS(1412), - [anon_sym_abstract] = ACTIONS(1412), - [anon_sym_class] = ACTIONS(1412), - [anon_sym_extends] = ACTIONS(1412), - [anon_sym_implements] = ACTIONS(1412), - [anon_sym_interface] = ACTIONS(1412), - [anon_sym_typedef] = ACTIONS(1412), - [anon_sym_function] = ACTIONS(1412), - [anon_sym_var] = ACTIONS(1412), - [aux_sym_integer_token1] = ACTIONS(1412), - [aux_sym_integer_token2] = ACTIONS(1410), - [aux_sym_float_token1] = ACTIONS(1412), - [aux_sym_float_token2] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1412), - [anon_sym_false] = ACTIONS(1412), - [aux_sym_string_token1] = ACTIONS(1410), - [aux_sym_string_token3] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1412), - [anon_sym_catch] = ACTIONS(1412), - [anon_sym_continue] = ACTIONS(1412), - [anon_sym_do] = ACTIONS(1412), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1412), - [anon_sym_for] = ACTIONS(1412), - [anon_sym_inline] = ACTIONS(1412), - [anon_sym_macro] = ACTIONS(1412), - [anon_sym_operator] = ACTIONS(1412), - [anon_sym_overload] = ACTIONS(1412), - [anon_sym_override] = ACTIONS(1412), - [anon_sym_private] = ACTIONS(1412), - [anon_sym_public] = ACTIONS(1412), - [anon_sym_return] = ACTIONS(1412), - [anon_sym_static] = ACTIONS(1412), - [anon_sym_try] = ACTIONS(1412), - [anon_sym_untyped] = ACTIONS(1412), - [anon_sym_while] = ACTIONS(1412), - [sym__semicolon] = ACTIONS(1410), - }, - [295] = { - [ts_builtin_sym_end] = ACTIONS(1414), - [sym_identifier] = ACTIONS(1416), - [anon_sym_POUND] = ACTIONS(1414), - [anon_sym_package] = ACTIONS(1416), - [anon_sym_import] = ACTIONS(1416), - [anon_sym_using] = ACTIONS(1416), - [anon_sym_throw] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1416), - [anon_sym_default] = ACTIONS(1416), - [anon_sym_cast] = ACTIONS(1416), - [anon_sym_DOLLARtype] = ACTIONS(1414), - [anon_sym_in] = ACTIONS(1416), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_this] = ACTIONS(1416), - [anon_sym_AT] = ACTIONS(1416), - [anon_sym_AT_COLON] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1416), - [anon_sym_else] = ACTIONS(1416), - [anon_sym_new] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1414), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1414), - [anon_sym_PERCENT] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_SLASH] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_LT_LT] = ACTIONS(1414), - [anon_sym_GT_GT] = ACTIONS(1416), - [anon_sym_GT_GT_GT] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_PIPE] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(1414), - [anon_sym_AMP_AMP] = ACTIONS(1414), - [anon_sym_PIPE_PIPE] = ACTIONS(1414), - [anon_sym_EQ_EQ] = ACTIONS(1414), - [anon_sym_BANG_EQ] = ACTIONS(1414), - [anon_sym_LT] = ACTIONS(1416), - [anon_sym_LT_EQ] = ACTIONS(1414), - [anon_sym_GT] = ACTIONS(1416), - [anon_sym_GT_EQ] = ACTIONS(1414), - [anon_sym_EQ_GT] = ACTIONS(1414), - [anon_sym_QMARK_QMARK] = ACTIONS(1414), - [anon_sym_EQ] = ACTIONS(1416), - [sym__rangeOperator] = ACTIONS(1414), - [anon_sym_null] = ACTIONS(1416), - [anon_sym_dynamic] = ACTIONS(1416), - [anon_sym_final] = ACTIONS(1416), - [anon_sym_abstract] = ACTIONS(1416), - [anon_sym_class] = ACTIONS(1416), - [anon_sym_extends] = ACTIONS(1416), - [anon_sym_implements] = ACTIONS(1416), - [anon_sym_interface] = ACTIONS(1416), - [anon_sym_typedef] = ACTIONS(1416), - [anon_sym_function] = ACTIONS(1416), - [anon_sym_var] = ACTIONS(1416), - [aux_sym_integer_token1] = ACTIONS(1416), - [aux_sym_integer_token2] = ACTIONS(1414), - [aux_sym_float_token1] = ACTIONS(1416), - [aux_sym_float_token2] = ACTIONS(1414), - [anon_sym_true] = ACTIONS(1416), - [anon_sym_false] = ACTIONS(1416), - [aux_sym_string_token1] = ACTIONS(1414), - [aux_sym_string_token3] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1416), - [anon_sym_catch] = ACTIONS(1416), - [anon_sym_continue] = ACTIONS(1416), - [anon_sym_do] = ACTIONS(1416), - [anon_sym_enum] = ACTIONS(1416), - [anon_sym_extern] = ACTIONS(1416), - [anon_sym_for] = ACTIONS(1416), - [anon_sym_inline] = ACTIONS(1416), - [anon_sym_macro] = ACTIONS(1416), - [anon_sym_operator] = ACTIONS(1416), - [anon_sym_overload] = ACTIONS(1416), - [anon_sym_override] = ACTIONS(1416), - [anon_sym_private] = ACTIONS(1416), - [anon_sym_public] = ACTIONS(1416), - [anon_sym_return] = ACTIONS(1416), - [anon_sym_static] = ACTIONS(1416), - [anon_sym_try] = ACTIONS(1416), - [anon_sym_untyped] = ACTIONS(1416), - [anon_sym_while] = ACTIONS(1416), - [sym__semicolon] = ACTIONS(1414), - }, - [296] = { - [ts_builtin_sym_end] = ACTIONS(1418), - [sym_identifier] = ACTIONS(1420), - [anon_sym_POUND] = ACTIONS(1418), - [anon_sym_package] = ACTIONS(1420), - [anon_sym_import] = ACTIONS(1420), - [anon_sym_using] = ACTIONS(1420), - [anon_sym_throw] = ACTIONS(1420), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1420), - [anon_sym_default] = ACTIONS(1420), - [anon_sym_cast] = ACTIONS(1420), - [anon_sym_DOLLARtype] = ACTIONS(1418), - [anon_sym_in] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_this] = ACTIONS(1420), - [anon_sym_AT] = ACTIONS(1420), - [anon_sym_AT_COLON] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1420), - [anon_sym_else] = ACTIONS(1420), - [anon_sym_new] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1418), - [anon_sym_PERCENT] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_SLASH] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1420), - [anon_sym_LT_LT] = ACTIONS(1418), - [anon_sym_GT_GT] = ACTIONS(1420), - [anon_sym_GT_GT_GT] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP_AMP] = ACTIONS(1418), - [anon_sym_PIPE_PIPE] = ACTIONS(1418), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_GT_EQ] = ACTIONS(1418), - [anon_sym_EQ_GT] = ACTIONS(1418), - [anon_sym_QMARK_QMARK] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1420), - [sym__rangeOperator] = ACTIONS(1418), - [anon_sym_null] = ACTIONS(1420), - [anon_sym_dynamic] = ACTIONS(1420), - [anon_sym_final] = ACTIONS(1420), - [anon_sym_abstract] = ACTIONS(1420), - [anon_sym_class] = ACTIONS(1420), - [anon_sym_extends] = ACTIONS(1420), - [anon_sym_implements] = ACTIONS(1420), - [anon_sym_interface] = ACTIONS(1420), - [anon_sym_typedef] = ACTIONS(1420), - [anon_sym_function] = ACTIONS(1420), - [anon_sym_var] = ACTIONS(1420), - [aux_sym_integer_token1] = ACTIONS(1420), - [aux_sym_integer_token2] = ACTIONS(1418), - [aux_sym_float_token1] = ACTIONS(1420), - [aux_sym_float_token2] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1420), - [anon_sym_false] = ACTIONS(1420), - [aux_sym_string_token1] = ACTIONS(1418), - [aux_sym_string_token3] = ACTIONS(1418), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1420), - [anon_sym_catch] = ACTIONS(1420), - [anon_sym_continue] = ACTIONS(1420), - [anon_sym_do] = ACTIONS(1420), - [anon_sym_enum] = ACTIONS(1420), - [anon_sym_extern] = ACTIONS(1420), - [anon_sym_for] = ACTIONS(1420), - [anon_sym_inline] = ACTIONS(1420), - [anon_sym_macro] = ACTIONS(1420), - [anon_sym_operator] = ACTIONS(1420), - [anon_sym_overload] = ACTIONS(1420), - [anon_sym_override] = ACTIONS(1420), - [anon_sym_private] = ACTIONS(1420), - [anon_sym_public] = ACTIONS(1420), - [anon_sym_return] = ACTIONS(1420), - [anon_sym_static] = ACTIONS(1420), - [anon_sym_try] = ACTIONS(1420), - [anon_sym_untyped] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1420), - [sym__semicolon] = ACTIONS(1418), - }, - [297] = { - [ts_builtin_sym_end] = ACTIONS(370), - [sym_identifier] = ACTIONS(372), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_package] = ACTIONS(372), - [anon_sym_import] = ACTIONS(372), - [anon_sym_using] = ACTIONS(372), - [anon_sym_throw] = ACTIONS(372), - [anon_sym_LPAREN] = ACTIONS(370), - [anon_sym_switch] = ACTIONS(372), - [anon_sym_LBRACE] = ACTIONS(370), - [anon_sym_RBRACE] = ACTIONS(370), - [anon_sym_case] = ACTIONS(372), - [anon_sym_default] = ACTIONS(372), - [anon_sym_cast] = ACTIONS(372), - [anon_sym_DOLLARtype] = ACTIONS(370), - [anon_sym_in] = ACTIONS(372), - [anon_sym_LBRACK] = ACTIONS(370), - [anon_sym_this] = ACTIONS(372), - [anon_sym_AT] = ACTIONS(372), - [anon_sym_AT_COLON] = ACTIONS(370), - [anon_sym_if] = ACTIONS(372), - [anon_sym_else] = ACTIONS(372), - [anon_sym_new] = ACTIONS(372), - [anon_sym_TILDE] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(372), - [anon_sym_PLUS_PLUS] = ACTIONS(370), - [anon_sym_DASH_DASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(372), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(372), - [anon_sym_GT_GT_GT] = ACTIONS(370), - [anon_sym_AMP] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(372), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_PIPE_PIPE] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(370), - [anon_sym_BANG_EQ] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_LT_EQ] = ACTIONS(370), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_EQ] = ACTIONS(370), - [anon_sym_EQ_GT] = ACTIONS(370), - [anon_sym_QMARK_QMARK] = ACTIONS(370), - [anon_sym_EQ] = ACTIONS(372), - [sym__rangeOperator] = ACTIONS(370), - [anon_sym_null] = ACTIONS(372), - [anon_sym_dynamic] = ACTIONS(372), - [anon_sym_final] = ACTIONS(372), - [anon_sym_abstract] = ACTIONS(372), - [anon_sym_class] = ACTIONS(372), - [anon_sym_extends] = ACTIONS(372), - [anon_sym_implements] = ACTIONS(372), - [anon_sym_interface] = ACTIONS(372), - [anon_sym_typedef] = ACTIONS(372), - [anon_sym_function] = ACTIONS(372), - [anon_sym_var] = ACTIONS(372), - [aux_sym_integer_token1] = ACTIONS(372), - [aux_sym_integer_token2] = ACTIONS(370), - [aux_sym_float_token1] = ACTIONS(372), - [aux_sym_float_token2] = ACTIONS(370), - [anon_sym_true] = ACTIONS(372), - [anon_sym_false] = ACTIONS(372), - [aux_sym_string_token1] = ACTIONS(370), - [aux_sym_string_token3] = ACTIONS(370), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(372), - [anon_sym_catch] = ACTIONS(372), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_do] = ACTIONS(372), - [anon_sym_enum] = ACTIONS(372), - [anon_sym_extern] = ACTIONS(372), - [anon_sym_for] = ACTIONS(372), - [anon_sym_inline] = ACTIONS(372), - [anon_sym_macro] = ACTIONS(372), - [anon_sym_operator] = ACTIONS(372), - [anon_sym_overload] = ACTIONS(372), - [anon_sym_override] = ACTIONS(372), - [anon_sym_private] = ACTIONS(372), - [anon_sym_public] = ACTIONS(372), - [anon_sym_return] = ACTIONS(372), - [anon_sym_static] = ACTIONS(372), - [anon_sym_try] = ACTIONS(372), - [anon_sym_untyped] = ACTIONS(372), - [anon_sym_while] = ACTIONS(372), - [sym__semicolon] = ACTIONS(374), - }, - [298] = { - [ts_builtin_sym_end] = ACTIONS(1422), - [sym_identifier] = ACTIONS(1424), - [anon_sym_POUND] = ACTIONS(1422), - [anon_sym_package] = ACTIONS(1424), - [anon_sym_import] = ACTIONS(1424), - [anon_sym_using] = ACTIONS(1424), - [anon_sym_throw] = ACTIONS(1424), - [anon_sym_LPAREN] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_RBRACE] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1424), - [anon_sym_default] = ACTIONS(1424), - [anon_sym_cast] = ACTIONS(1424), - [anon_sym_DOLLARtype] = ACTIONS(1422), - [anon_sym_in] = ACTIONS(1424), - [anon_sym_LBRACK] = ACTIONS(1422), - [anon_sym_this] = ACTIONS(1424), - [anon_sym_AT] = ACTIONS(1424), - [anon_sym_AT_COLON] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1424), - [anon_sym_else] = ACTIONS(1424), - [anon_sym_new] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1422), - [anon_sym_DASH_DASH] = ACTIONS(1422), - [anon_sym_PERCENT] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_SLASH] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_LT_LT] = ACTIONS(1422), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_GT_GT_GT] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_PIPE] = ACTIONS(1424), - [anon_sym_CARET] = ACTIONS(1422), - [anon_sym_AMP_AMP] = ACTIONS(1422), - [anon_sym_PIPE_PIPE] = ACTIONS(1422), - [anon_sym_EQ_EQ] = ACTIONS(1422), - [anon_sym_BANG_EQ] = ACTIONS(1422), - [anon_sym_LT] = ACTIONS(1424), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT] = ACTIONS(1424), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_EQ_GT] = ACTIONS(1422), - [anon_sym_QMARK_QMARK] = ACTIONS(1422), - [anon_sym_EQ] = ACTIONS(1424), - [sym__rangeOperator] = ACTIONS(1422), - [anon_sym_null] = ACTIONS(1424), - [anon_sym_dynamic] = ACTIONS(1424), - [anon_sym_final] = ACTIONS(1424), - [anon_sym_abstract] = ACTIONS(1424), - [anon_sym_class] = ACTIONS(1424), - [anon_sym_extends] = ACTIONS(1424), - [anon_sym_implements] = ACTIONS(1424), - [anon_sym_interface] = ACTIONS(1424), - [anon_sym_typedef] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(1424), - [anon_sym_var] = ACTIONS(1424), - [aux_sym_integer_token1] = ACTIONS(1424), - [aux_sym_integer_token2] = ACTIONS(1422), - [aux_sym_float_token1] = ACTIONS(1424), - [aux_sym_float_token2] = ACTIONS(1422), - [anon_sym_true] = ACTIONS(1424), - [anon_sym_false] = ACTIONS(1424), - [aux_sym_string_token1] = ACTIONS(1422), - [aux_sym_string_token3] = ACTIONS(1422), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1424), - [anon_sym_catch] = ACTIONS(1424), - [anon_sym_continue] = ACTIONS(1424), - [anon_sym_do] = ACTIONS(1424), - [anon_sym_enum] = ACTIONS(1424), - [anon_sym_extern] = ACTIONS(1424), - [anon_sym_for] = ACTIONS(1424), - [anon_sym_inline] = ACTIONS(1424), - [anon_sym_macro] = ACTIONS(1424), - [anon_sym_operator] = ACTIONS(1424), - [anon_sym_overload] = ACTIONS(1424), - [anon_sym_override] = ACTIONS(1424), - [anon_sym_private] = ACTIONS(1424), - [anon_sym_public] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1424), - [anon_sym_static] = ACTIONS(1424), - [anon_sym_try] = ACTIONS(1424), - [anon_sym_untyped] = ACTIONS(1424), - [anon_sym_while] = ACTIONS(1424), - [sym__semicolon] = ACTIONS(1422), - }, - [299] = { - [ts_builtin_sym_end] = ACTIONS(1426), - [sym_identifier] = ACTIONS(1428), - [anon_sym_POUND] = ACTIONS(1426), - [anon_sym_package] = ACTIONS(1428), - [anon_sym_import] = ACTIONS(1428), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_throw] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_switch] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1426), - [anon_sym_case] = ACTIONS(1428), - [anon_sym_default] = ACTIONS(1428), - [anon_sym_cast] = ACTIONS(1428), - [anon_sym_DOLLARtype] = ACTIONS(1426), - [anon_sym_in] = ACTIONS(1428), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_this] = ACTIONS(1428), - [anon_sym_AT] = ACTIONS(1428), - [anon_sym_AT_COLON] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_else] = ACTIONS(1428), - [anon_sym_new] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_PLUS_PLUS] = ACTIONS(1426), - [anon_sym_DASH_DASH] = ACTIONS(1426), - [anon_sym_PERCENT] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_LT_LT] = ACTIONS(1426), - [anon_sym_GT_GT] = ACTIONS(1428), - [anon_sym_GT_GT_GT] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_PIPE] = ACTIONS(1428), - [anon_sym_CARET] = ACTIONS(1426), - [anon_sym_AMP_AMP] = ACTIONS(1426), - [anon_sym_PIPE_PIPE] = ACTIONS(1426), - [anon_sym_EQ_EQ] = ACTIONS(1426), - [anon_sym_BANG_EQ] = ACTIONS(1426), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_LT_EQ] = ACTIONS(1426), - [anon_sym_GT] = ACTIONS(1428), - [anon_sym_GT_EQ] = ACTIONS(1426), - [anon_sym_EQ_GT] = ACTIONS(1426), - [anon_sym_QMARK_QMARK] = ACTIONS(1426), - [anon_sym_EQ] = ACTIONS(1428), - [sym__rangeOperator] = ACTIONS(1426), - [anon_sym_null] = ACTIONS(1428), - [anon_sym_dynamic] = ACTIONS(1428), - [anon_sym_final] = ACTIONS(1428), - [anon_sym_abstract] = ACTIONS(1428), - [anon_sym_class] = ACTIONS(1428), - [anon_sym_extends] = ACTIONS(1428), - [anon_sym_implements] = ACTIONS(1428), - [anon_sym_interface] = ACTIONS(1428), - [anon_sym_typedef] = ACTIONS(1428), - [anon_sym_function] = ACTIONS(1428), - [anon_sym_var] = ACTIONS(1428), - [aux_sym_integer_token1] = ACTIONS(1428), - [aux_sym_integer_token2] = ACTIONS(1426), - [aux_sym_float_token1] = ACTIONS(1428), - [aux_sym_float_token2] = ACTIONS(1426), - [anon_sym_true] = ACTIONS(1428), - [anon_sym_false] = ACTIONS(1428), - [aux_sym_string_token1] = ACTIONS(1426), - [aux_sym_string_token3] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_catch] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_do] = ACTIONS(1428), - [anon_sym_enum] = ACTIONS(1428), - [anon_sym_extern] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_inline] = ACTIONS(1428), - [anon_sym_macro] = ACTIONS(1428), - [anon_sym_operator] = ACTIONS(1428), - [anon_sym_overload] = ACTIONS(1428), - [anon_sym_override] = ACTIONS(1428), - [anon_sym_private] = ACTIONS(1428), - [anon_sym_public] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(1428), - [anon_sym_untyped] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [sym__semicolon] = ACTIONS(1426), - }, - [300] = { - [ts_builtin_sym_end] = ACTIONS(1430), - [sym_identifier] = ACTIONS(1432), - [anon_sym_POUND] = ACTIONS(1430), - [anon_sym_package] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(1432), - [anon_sym_using] = ACTIONS(1432), - [anon_sym_throw] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_case] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_cast] = ACTIONS(1432), - [anon_sym_DOLLARtype] = ACTIONS(1430), - [anon_sym_in] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_this] = ACTIONS(1432), - [anon_sym_AT] = ACTIONS(1432), - [anon_sym_AT_COLON] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_else] = ACTIONS(1432), - [anon_sym_new] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_PERCENT] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_SLASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_LT_LT] = ACTIONS(1430), - [anon_sym_GT_GT] = ACTIONS(1432), - [anon_sym_GT_GT_GT] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_CARET] = ACTIONS(1430), - [anon_sym_AMP_AMP] = ACTIONS(1430), - [anon_sym_PIPE_PIPE] = ACTIONS(1430), - [anon_sym_EQ_EQ] = ACTIONS(1430), - [anon_sym_BANG_EQ] = ACTIONS(1430), - [anon_sym_LT] = ACTIONS(1432), - [anon_sym_LT_EQ] = ACTIONS(1430), - [anon_sym_GT] = ACTIONS(1432), - [anon_sym_GT_EQ] = ACTIONS(1430), - [anon_sym_EQ_GT] = ACTIONS(1430), - [anon_sym_QMARK_QMARK] = ACTIONS(1430), - [anon_sym_EQ] = ACTIONS(1432), - [sym__rangeOperator] = ACTIONS(1430), - [anon_sym_null] = ACTIONS(1432), - [anon_sym_dynamic] = ACTIONS(1432), - [anon_sym_final] = ACTIONS(1432), - [anon_sym_abstract] = ACTIONS(1432), - [anon_sym_class] = ACTIONS(1432), - [anon_sym_extends] = ACTIONS(1432), - [anon_sym_implements] = ACTIONS(1432), - [anon_sym_interface] = 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(1430), - [aux_sym_float_token1] = ACTIONS(1432), - [aux_sym_float_token2] = ACTIONS(1430), - [anon_sym_true] = ACTIONS(1432), - [anon_sym_false] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1430), - [aux_sym_string_token3] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_catch] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_inline] = ACTIONS(1432), - [anon_sym_macro] = ACTIONS(1432), - [anon_sym_operator] = ACTIONS(1432), - [anon_sym_overload] = ACTIONS(1432), - [anon_sym_override] = ACTIONS(1432), - [anon_sym_private] = ACTIONS(1432), - [anon_sym_public] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_try] = ACTIONS(1432), - [anon_sym_untyped] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [sym__semicolon] = ACTIONS(1430), - }, - [301] = { - [ts_builtin_sym_end] = ACTIONS(1434), - [sym_identifier] = ACTIONS(1436), - [anon_sym_POUND] = ACTIONS(1434), - [anon_sym_package] = ACTIONS(1436), - [anon_sym_import] = ACTIONS(1436), - [anon_sym_using] = ACTIONS(1436), - [anon_sym_throw] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_case] = ACTIONS(1436), - [anon_sym_default] = ACTIONS(1436), - [anon_sym_cast] = ACTIONS(1436), - [anon_sym_DOLLARtype] = ACTIONS(1434), - [anon_sym_in] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1434), - [anon_sym_this] = ACTIONS(1436), - [anon_sym_AT] = ACTIONS(1436), - [anon_sym_AT_COLON] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_else] = ACTIONS(1436), - [anon_sym_new] = ACTIONS(1436), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_PERCENT] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_LT_LT] = ACTIONS(1434), - [anon_sym_GT_GT] = ACTIONS(1436), - [anon_sym_GT_GT_GT] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1436), - [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(1436), - [anon_sym_LT_EQ] = ACTIONS(1434), - [anon_sym_GT] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1434), - [anon_sym_EQ_GT] = ACTIONS(1434), - [anon_sym_QMARK_QMARK] = ACTIONS(1434), - [anon_sym_EQ] = ACTIONS(1436), - [sym__rangeOperator] = ACTIONS(1434), - [anon_sym_null] = ACTIONS(1436), - [anon_sym_dynamic] = ACTIONS(1436), - [anon_sym_final] = ACTIONS(1436), - [anon_sym_abstract] = ACTIONS(1436), - [anon_sym_class] = ACTIONS(1436), - [anon_sym_extends] = ACTIONS(1436), - [anon_sym_implements] = ACTIONS(1436), - [anon_sym_interface] = ACTIONS(1436), - [anon_sym_typedef] = ACTIONS(1436), - [anon_sym_function] = ACTIONS(1436), - [anon_sym_var] = ACTIONS(1436), - [aux_sym_integer_token1] = ACTIONS(1436), - [aux_sym_integer_token2] = ACTIONS(1434), - [aux_sym_float_token1] = ACTIONS(1436), - [aux_sym_float_token2] = ACTIONS(1434), - [anon_sym_true] = ACTIONS(1436), - [anon_sym_false] = ACTIONS(1436), - [aux_sym_string_token1] = ACTIONS(1434), - [aux_sym_string_token3] = ACTIONS(1434), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_catch] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_inline] = ACTIONS(1436), - [anon_sym_macro] = ACTIONS(1436), - [anon_sym_operator] = ACTIONS(1436), - [anon_sym_overload] = ACTIONS(1436), - [anon_sym_override] = ACTIONS(1436), - [anon_sym_private] = ACTIONS(1436), - [anon_sym_public] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_try] = ACTIONS(1436), - [anon_sym_untyped] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [sym__semicolon] = ACTIONS(1434), - }, - [302] = { - [ts_builtin_sym_end] = ACTIONS(1438), - [sym_identifier] = ACTIONS(1440), - [anon_sym_POUND] = ACTIONS(1438), - [anon_sym_package] = ACTIONS(1440), - [anon_sym_import] = ACTIONS(1440), - [anon_sym_using] = ACTIONS(1440), - [anon_sym_throw] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_switch] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_case] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1440), - [anon_sym_cast] = ACTIONS(1440), - [anon_sym_DOLLARtype] = ACTIONS(1438), - [anon_sym_in] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(1438), - [anon_sym_this] = ACTIONS(1440), - [anon_sym_AT] = ACTIONS(1440), - [anon_sym_AT_COLON] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_else] = ACTIONS(1440), - [anon_sym_new] = ACTIONS(1440), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_PERCENT] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_LT_LT] = ACTIONS(1438), - [anon_sym_GT_GT] = ACTIONS(1440), - [anon_sym_GT_GT_GT] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP_AMP] = ACTIONS(1438), - [anon_sym_PIPE_PIPE] = ACTIONS(1438), - [anon_sym_EQ_EQ] = ACTIONS(1438), - [anon_sym_BANG_EQ] = ACTIONS(1438), - [anon_sym_LT] = ACTIONS(1440), - [anon_sym_LT_EQ] = ACTIONS(1438), - [anon_sym_GT] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(1438), - [anon_sym_EQ_GT] = ACTIONS(1438), - [anon_sym_QMARK_QMARK] = ACTIONS(1438), - [anon_sym_EQ] = ACTIONS(1440), - [sym__rangeOperator] = ACTIONS(1438), - [anon_sym_null] = ACTIONS(1440), - [anon_sym_dynamic] = ACTIONS(1440), - [anon_sym_final] = ACTIONS(1440), - [anon_sym_abstract] = ACTIONS(1440), - [anon_sym_class] = ACTIONS(1440), - [anon_sym_extends] = ACTIONS(1440), - [anon_sym_implements] = ACTIONS(1440), - [anon_sym_interface] = ACTIONS(1440), - [anon_sym_typedef] = ACTIONS(1440), - [anon_sym_function] = ACTIONS(1440), - [anon_sym_var] = ACTIONS(1440), - [aux_sym_integer_token1] = ACTIONS(1440), - [aux_sym_integer_token2] = ACTIONS(1438), - [aux_sym_float_token1] = ACTIONS(1440), - [aux_sym_float_token2] = ACTIONS(1438), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [aux_sym_string_token1] = ACTIONS(1438), - [aux_sym_string_token3] = ACTIONS(1438), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_catch] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_inline] = ACTIONS(1440), - [anon_sym_macro] = ACTIONS(1440), - [anon_sym_operator] = ACTIONS(1440), - [anon_sym_overload] = ACTIONS(1440), - [anon_sym_override] = ACTIONS(1440), - [anon_sym_private] = ACTIONS(1440), - [anon_sym_public] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_try] = ACTIONS(1440), - [anon_sym_untyped] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [sym__semicolon] = ACTIONS(1438), - }, - [303] = { - [ts_builtin_sym_end] = ACTIONS(1442), - [sym_identifier] = ACTIONS(1444), - [anon_sym_POUND] = ACTIONS(1442), - [anon_sym_package] = ACTIONS(1444), - [anon_sym_import] = ACTIONS(1444), - [anon_sym_using] = ACTIONS(1444), - [anon_sym_throw] = ACTIONS(1444), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_switch] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_RBRACE] = ACTIONS(1442), - [anon_sym_case] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_cast] = ACTIONS(1444), - [anon_sym_DOLLARtype] = ACTIONS(1442), - [anon_sym_in] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1442), - [anon_sym_this] = ACTIONS(1444), - [anon_sym_AT] = ACTIONS(1444), - [anon_sym_AT_COLON] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_else] = ACTIONS(1444), - [anon_sym_new] = ACTIONS(1444), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PERCENT] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_LT_LT] = ACTIONS(1442), - [anon_sym_GT_GT] = ACTIONS(1444), - [anon_sym_GT_GT_GT] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1442), - [anon_sym_AMP_AMP] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(1442), - [anon_sym_EQ_EQ] = ACTIONS(1442), - [anon_sym_BANG_EQ] = ACTIONS(1442), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_LT_EQ] = ACTIONS(1442), - [anon_sym_GT] = ACTIONS(1444), - [anon_sym_GT_EQ] = ACTIONS(1442), - [anon_sym_EQ_GT] = ACTIONS(1442), - [anon_sym_QMARK_QMARK] = ACTIONS(1442), - [anon_sym_EQ] = ACTIONS(1444), - [sym__rangeOperator] = ACTIONS(1442), - [anon_sym_null] = ACTIONS(1444), - [anon_sym_dynamic] = ACTIONS(1444), - [anon_sym_final] = ACTIONS(1444), - [anon_sym_abstract] = ACTIONS(1444), - [anon_sym_class] = ACTIONS(1444), - [anon_sym_extends] = ACTIONS(1444), - [anon_sym_implements] = ACTIONS(1444), - [anon_sym_interface] = 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(1442), - [aux_sym_float_token1] = ACTIONS(1444), - [aux_sym_float_token2] = ACTIONS(1442), - [anon_sym_true] = ACTIONS(1444), - [anon_sym_false] = ACTIONS(1444), - [aux_sym_string_token1] = ACTIONS(1442), - [aux_sym_string_token3] = ACTIONS(1442), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_catch] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_do] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_inline] = ACTIONS(1444), - [anon_sym_macro] = ACTIONS(1444), - [anon_sym_operator] = ACTIONS(1444), - [anon_sym_overload] = ACTIONS(1444), - [anon_sym_override] = ACTIONS(1444), - [anon_sym_private] = ACTIONS(1444), - [anon_sym_public] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_try] = ACTIONS(1444), - [anon_sym_untyped] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [sym__semicolon] = ACTIONS(1442), - }, - [304] = { - [ts_builtin_sym_end] = ACTIONS(1446), - [sym_identifier] = ACTIONS(1448), - [anon_sym_POUND] = ACTIONS(1446), - [anon_sym_package] = ACTIONS(1448), - [anon_sym_import] = ACTIONS(1448), - [anon_sym_using] = ACTIONS(1448), - [anon_sym_throw] = ACTIONS(1448), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_switch] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_cast] = ACTIONS(1448), - [anon_sym_DOLLARtype] = ACTIONS(1446), - [anon_sym_in] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(1446), - [anon_sym_this] = ACTIONS(1448), - [anon_sym_AT] = ACTIONS(1448), - [anon_sym_AT_COLON] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_else] = ACTIONS(1448), - [anon_sym_new] = ACTIONS(1448), - [anon_sym_TILDE] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_PERCENT] = ACTIONS(1446), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_SLASH] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_LT_LT] = ACTIONS(1446), - [anon_sym_GT_GT] = ACTIONS(1448), - [anon_sym_GT_GT_GT] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [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(1448), - [anon_sym_LT_EQ] = ACTIONS(1446), - [anon_sym_GT] = ACTIONS(1448), - [anon_sym_GT_EQ] = ACTIONS(1446), - [anon_sym_EQ_GT] = ACTIONS(1446), - [anon_sym_QMARK_QMARK] = ACTIONS(1446), - [anon_sym_EQ] = ACTIONS(1448), - [sym__rangeOperator] = ACTIONS(1446), - [anon_sym_null] = ACTIONS(1448), - [anon_sym_dynamic] = ACTIONS(1448), - [anon_sym_final] = ACTIONS(1448), - [anon_sym_abstract] = ACTIONS(1448), - [anon_sym_class] = ACTIONS(1448), - [anon_sym_extends] = ACTIONS(1448), - [anon_sym_implements] = ACTIONS(1448), - [anon_sym_interface] = ACTIONS(1448), - [anon_sym_typedef] = ACTIONS(1448), - [anon_sym_function] = ACTIONS(1448), - [anon_sym_var] = ACTIONS(1448), - [aux_sym_integer_token1] = ACTIONS(1448), - [aux_sym_integer_token2] = ACTIONS(1446), - [aux_sym_float_token1] = ACTIONS(1448), - [aux_sym_float_token2] = ACTIONS(1446), - [anon_sym_true] = ACTIONS(1448), - [anon_sym_false] = ACTIONS(1448), - [aux_sym_string_token1] = ACTIONS(1446), - [aux_sym_string_token3] = ACTIONS(1446), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_catch] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_do] = ACTIONS(1448), - [anon_sym_enum] = ACTIONS(1448), - [anon_sym_extern] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_inline] = ACTIONS(1448), - [anon_sym_macro] = ACTIONS(1448), - [anon_sym_operator] = ACTIONS(1448), - [anon_sym_overload] = ACTIONS(1448), - [anon_sym_override] = ACTIONS(1448), - [anon_sym_private] = ACTIONS(1448), - [anon_sym_public] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_try] = ACTIONS(1448), - [anon_sym_untyped] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [sym__semicolon] = ACTIONS(1446), - }, - [305] = { - [ts_builtin_sym_end] = ACTIONS(1450), - [sym_identifier] = ACTIONS(1452), - [anon_sym_POUND] = ACTIONS(1450), - [anon_sym_package] = ACTIONS(1452), - [anon_sym_import] = ACTIONS(1452), - [anon_sym_using] = ACTIONS(1452), - [anon_sym_throw] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_case] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_cast] = ACTIONS(1452), - [anon_sym_DOLLARtype] = ACTIONS(1450), - [anon_sym_in] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_this] = ACTIONS(1452), - [anon_sym_AT] = ACTIONS(1452), - [anon_sym_AT_COLON] = ACTIONS(1450), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_else] = ACTIONS(1452), - [anon_sym_new] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_PERCENT] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_SLASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_LT_LT] = ACTIONS(1450), - [anon_sym_GT_GT] = ACTIONS(1452), - [anon_sym_GT_GT_GT] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [anon_sym_CARET] = ACTIONS(1450), - [anon_sym_AMP_AMP] = ACTIONS(1450), - [anon_sym_PIPE_PIPE] = ACTIONS(1450), - [anon_sym_EQ_EQ] = ACTIONS(1450), - [anon_sym_BANG_EQ] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_LT_EQ] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1450), - [anon_sym_EQ_GT] = ACTIONS(1450), - [anon_sym_QMARK_QMARK] = ACTIONS(1450), - [anon_sym_EQ] = ACTIONS(1452), - [sym__rangeOperator] = ACTIONS(1450), - [anon_sym_null] = ACTIONS(1452), - [anon_sym_dynamic] = ACTIONS(1452), - [anon_sym_final] = ACTIONS(1452), - [anon_sym_abstract] = ACTIONS(1452), - [anon_sym_class] = ACTIONS(1452), - [anon_sym_extends] = ACTIONS(1452), - [anon_sym_implements] = ACTIONS(1452), - [anon_sym_interface] = 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(1450), - [aux_sym_float_token1] = ACTIONS(1452), - [aux_sym_float_token2] = ACTIONS(1450), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), - [aux_sym_string_token1] = ACTIONS(1450), - [aux_sym_string_token3] = ACTIONS(1450), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_catch] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym_macro] = ACTIONS(1452), - [anon_sym_operator] = ACTIONS(1452), - [anon_sym_overload] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(1452), - [anon_sym_untyped] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [sym__semicolon] = ACTIONS(1450), - }, - [306] = { - [ts_builtin_sym_end] = ACTIONS(1454), - [sym_identifier] = ACTIONS(1456), - [anon_sym_POUND] = ACTIONS(1454), - [anon_sym_package] = ACTIONS(1456), - [anon_sym_import] = ACTIONS(1456), - [anon_sym_using] = ACTIONS(1456), - [anon_sym_throw] = ACTIONS(1456), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_switch] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1454), - [anon_sym_case] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_cast] = ACTIONS(1456), - [anon_sym_DOLLARtype] = ACTIONS(1454), - [anon_sym_in] = ACTIONS(1456), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_this] = ACTIONS(1456), - [anon_sym_AT] = ACTIONS(1456), - [anon_sym_AT_COLON] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_else] = ACTIONS(1456), - [anon_sym_new] = ACTIONS(1456), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_PERCENT] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_SLASH] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_LT_LT] = ACTIONS(1454), - [anon_sym_GT_GT] = ACTIONS(1456), - [anon_sym_GT_GT_GT] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_CARET] = ACTIONS(1454), - [anon_sym_AMP_AMP] = ACTIONS(1454), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_LT_EQ] = ACTIONS(1454), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_GT_EQ] = ACTIONS(1454), - [anon_sym_EQ_GT] = ACTIONS(1454), - [anon_sym_QMARK_QMARK] = ACTIONS(1454), - [anon_sym_EQ] = ACTIONS(1456), - [sym__rangeOperator] = ACTIONS(1454), - [anon_sym_null] = ACTIONS(1456), - [anon_sym_dynamic] = ACTIONS(1456), - [anon_sym_final] = ACTIONS(1456), - [anon_sym_abstract] = ACTIONS(1456), - [anon_sym_class] = ACTIONS(1456), - [anon_sym_extends] = ACTIONS(1456), - [anon_sym_implements] = ACTIONS(1456), - [anon_sym_interface] = ACTIONS(1456), - [anon_sym_typedef] = ACTIONS(1456), - [anon_sym_function] = ACTIONS(1456), - [anon_sym_var] = ACTIONS(1456), - [aux_sym_integer_token1] = ACTIONS(1456), - [aux_sym_integer_token2] = ACTIONS(1454), - [aux_sym_float_token1] = ACTIONS(1456), - [aux_sym_float_token2] = ACTIONS(1454), - [anon_sym_true] = ACTIONS(1456), - [anon_sym_false] = ACTIONS(1456), - [aux_sym_string_token1] = ACTIONS(1454), - [aux_sym_string_token3] = ACTIONS(1454), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_catch] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_do] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_inline] = ACTIONS(1456), - [anon_sym_macro] = ACTIONS(1456), - [anon_sym_operator] = ACTIONS(1456), - [anon_sym_overload] = ACTIONS(1456), - [anon_sym_override] = ACTIONS(1456), - [anon_sym_private] = ACTIONS(1456), - [anon_sym_public] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_try] = ACTIONS(1456), - [anon_sym_untyped] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [sym__semicolon] = ACTIONS(1454), - }, - [307] = { - [ts_builtin_sym_end] = ACTIONS(1458), - [sym_identifier] = ACTIONS(1460), - [anon_sym_POUND] = ACTIONS(1458), - [anon_sym_package] = ACTIONS(1460), - [anon_sym_import] = ACTIONS(1460), - [anon_sym_using] = ACTIONS(1460), - [anon_sym_throw] = ACTIONS(1460), - [anon_sym_LPAREN] = ACTIONS(1458), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_cast] = ACTIONS(1460), - [anon_sym_DOLLARtype] = ACTIONS(1458), - [anon_sym_in] = ACTIONS(1460), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_this] = ACTIONS(1460), - [anon_sym_AT] = ACTIONS(1460), - [anon_sym_AT_COLON] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_else] = ACTIONS(1460), - [anon_sym_new] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_PERCENT] = ACTIONS(1458), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_SLASH] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_LT_LT] = ACTIONS(1458), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_GT_GT_GT] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_CARET] = ACTIONS(1458), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(1458), - [anon_sym_BANG_EQ] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1460), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_GT] = ACTIONS(1460), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_EQ_GT] = ACTIONS(1458), - [anon_sym_QMARK_QMARK] = ACTIONS(1458), - [anon_sym_EQ] = ACTIONS(1460), - [sym__rangeOperator] = ACTIONS(1458), - [anon_sym_null] = ACTIONS(1460), - [anon_sym_dynamic] = ACTIONS(1460), - [anon_sym_final] = ACTIONS(1460), - [anon_sym_abstract] = ACTIONS(1460), - [anon_sym_class] = ACTIONS(1460), - [anon_sym_extends] = ACTIONS(1460), - [anon_sym_implements] = ACTIONS(1460), - [anon_sym_interface] = ACTIONS(1460), - [anon_sym_typedef] = ACTIONS(1460), - [anon_sym_function] = ACTIONS(1460), - [anon_sym_var] = ACTIONS(1460), - [aux_sym_integer_token1] = ACTIONS(1460), - [aux_sym_integer_token2] = ACTIONS(1458), - [aux_sym_float_token1] = ACTIONS(1460), - [aux_sym_float_token2] = ACTIONS(1458), - [anon_sym_true] = ACTIONS(1460), - [anon_sym_false] = ACTIONS(1460), - [aux_sym_string_token1] = ACTIONS(1458), - [aux_sym_string_token3] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_catch] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_inline] = ACTIONS(1460), - [anon_sym_macro] = ACTIONS(1460), - [anon_sym_operator] = ACTIONS(1460), - [anon_sym_overload] = ACTIONS(1460), - [anon_sym_override] = ACTIONS(1460), - [anon_sym_private] = ACTIONS(1460), - [anon_sym_public] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_try] = ACTIONS(1460), - [anon_sym_untyped] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [sym__semicolon] = ACTIONS(1458), - }, - [308] = { - [ts_builtin_sym_end] = ACTIONS(926), - [sym_identifier] = ACTIONS(928), - [anon_sym_POUND] = ACTIONS(926), - [anon_sym_package] = ACTIONS(928), - [anon_sym_import] = ACTIONS(928), - [anon_sym_using] = ACTIONS(928), - [anon_sym_throw] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(926), - [anon_sym_switch] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_case] = ACTIONS(928), - [anon_sym_default] = ACTIONS(928), - [anon_sym_cast] = ACTIONS(928), - [anon_sym_DOLLARtype] = ACTIONS(926), - [anon_sym_in] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_this] = ACTIONS(928), - [anon_sym_AT] = ACTIONS(928), - [anon_sym_AT_COLON] = ACTIONS(926), - [anon_sym_if] = ACTIONS(928), - [anon_sym_else] = ACTIONS(928), - [anon_sym_new] = ACTIONS(928), - [anon_sym_TILDE] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(928), - [anon_sym_PLUS_PLUS] = ACTIONS(926), - [anon_sym_DASH_DASH] = ACTIONS(926), - [anon_sym_PERCENT] = ACTIONS(926), - [anon_sym_STAR] = ACTIONS(926), - [anon_sym_SLASH] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(928), - [anon_sym_LT_LT] = ACTIONS(926), - [anon_sym_GT_GT] = ACTIONS(928), - [anon_sym_GT_GT_GT] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_CARET] = ACTIONS(926), - [anon_sym_AMP_AMP] = ACTIONS(926), - [anon_sym_PIPE_PIPE] = ACTIONS(926), - [anon_sym_EQ_EQ] = ACTIONS(926), - [anon_sym_BANG_EQ] = ACTIONS(926), - [anon_sym_LT] = ACTIONS(928), - [anon_sym_LT_EQ] = ACTIONS(926), - [anon_sym_GT] = ACTIONS(928), - [anon_sym_GT_EQ] = ACTIONS(926), - [anon_sym_EQ_GT] = ACTIONS(926), - [anon_sym_QMARK_QMARK] = ACTIONS(926), - [anon_sym_EQ] = ACTIONS(928), - [sym__rangeOperator] = ACTIONS(926), - [anon_sym_null] = ACTIONS(928), - [anon_sym_dynamic] = ACTIONS(928), - [anon_sym_final] = ACTIONS(928), - [anon_sym_abstract] = ACTIONS(928), - [anon_sym_class] = ACTIONS(928), - [anon_sym_extends] = ACTIONS(928), - [anon_sym_implements] = ACTIONS(928), - [anon_sym_interface] = ACTIONS(928), - [anon_sym_typedef] = ACTIONS(928), - [anon_sym_function] = ACTIONS(928), - [anon_sym_var] = ACTIONS(928), - [aux_sym_integer_token1] = ACTIONS(928), - [aux_sym_integer_token2] = ACTIONS(926), - [aux_sym_float_token1] = ACTIONS(928), - [aux_sym_float_token2] = ACTIONS(926), - [anon_sym_true] = ACTIONS(928), - [anon_sym_false] = ACTIONS(928), - [aux_sym_string_token1] = ACTIONS(926), - [aux_sym_string_token3] = ACTIONS(926), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(928), - [anon_sym_catch] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(928), - [anon_sym_do] = ACTIONS(928), - [anon_sym_enum] = ACTIONS(928), - [anon_sym_extern] = ACTIONS(928), - [anon_sym_for] = ACTIONS(928), - [anon_sym_inline] = ACTIONS(928), - [anon_sym_macro] = ACTIONS(928), - [anon_sym_operator] = ACTIONS(928), - [anon_sym_overload] = ACTIONS(928), - [anon_sym_override] = ACTIONS(928), - [anon_sym_private] = ACTIONS(928), - [anon_sym_public] = ACTIONS(928), - [anon_sym_return] = ACTIONS(928), - [anon_sym_static] = ACTIONS(928), - [anon_sym_try] = ACTIONS(928), - [anon_sym_untyped] = ACTIONS(928), - [anon_sym_while] = ACTIONS(928), - [sym__semicolon] = ACTIONS(926), - }, - [309] = { - [ts_builtin_sym_end] = ACTIONS(1462), - [sym_identifier] = ACTIONS(1464), - [anon_sym_POUND] = ACTIONS(1462), - [anon_sym_package] = ACTIONS(1464), - [anon_sym_import] = ACTIONS(1464), - [anon_sym_using] = ACTIONS(1464), - [anon_sym_throw] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1462), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_cast] = ACTIONS(1464), - [anon_sym_DOLLARtype] = ACTIONS(1462), - [anon_sym_in] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1462), - [anon_sym_this] = ACTIONS(1464), - [anon_sym_AT] = ACTIONS(1464), - [anon_sym_AT_COLON] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_else] = ACTIONS(1464), - [anon_sym_new] = ACTIONS(1464), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_PERCENT] = ACTIONS(1462), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_LT_LT] = ACTIONS(1462), - [anon_sym_GT_GT] = ACTIONS(1464), - [anon_sym_GT_GT_GT] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_CARET] = ACTIONS(1462), - [anon_sym_AMP_AMP] = ACTIONS(1462), - [anon_sym_PIPE_PIPE] = ACTIONS(1462), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_LT_EQ] = ACTIONS(1462), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_GT_EQ] = ACTIONS(1462), - [anon_sym_EQ_GT] = ACTIONS(1462), - [anon_sym_QMARK_QMARK] = ACTIONS(1462), - [anon_sym_EQ] = ACTIONS(1464), - [sym__rangeOperator] = ACTIONS(1462), - [anon_sym_null] = ACTIONS(1464), - [anon_sym_dynamic] = ACTIONS(1464), - [anon_sym_final] = ACTIONS(1464), - [anon_sym_abstract] = ACTIONS(1464), - [anon_sym_class] = ACTIONS(1464), - [anon_sym_extends] = ACTIONS(1464), - [anon_sym_implements] = ACTIONS(1464), - [anon_sym_interface] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1464), - [anon_sym_function] = ACTIONS(1464), - [anon_sym_var] = ACTIONS(1464), - [aux_sym_integer_token1] = ACTIONS(1464), - [aux_sym_integer_token2] = ACTIONS(1462), - [aux_sym_float_token1] = ACTIONS(1464), - [aux_sym_float_token2] = ACTIONS(1462), - [anon_sym_true] = ACTIONS(1464), - [anon_sym_false] = ACTIONS(1464), - [aux_sym_string_token1] = ACTIONS(1462), - [aux_sym_string_token3] = ACTIONS(1462), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_catch] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym_macro] = ACTIONS(1464), - [anon_sym_operator] = ACTIONS(1464), - [anon_sym_overload] = ACTIONS(1464), - [anon_sym_override] = ACTIONS(1464), - [anon_sym_private] = ACTIONS(1464), - [anon_sym_public] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_try] = ACTIONS(1464), - [anon_sym_untyped] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [sym__semicolon] = ACTIONS(1462), - }, - [310] = { - [ts_builtin_sym_end] = ACTIONS(1466), - [sym_identifier] = ACTIONS(1468), - [anon_sym_POUND] = ACTIONS(1466), - [anon_sym_package] = ACTIONS(1468), - [anon_sym_import] = ACTIONS(1468), - [anon_sym_using] = ACTIONS(1468), - [anon_sym_throw] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1466), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_cast] = ACTIONS(1468), - [anon_sym_DOLLARtype] = ACTIONS(1466), - [anon_sym_in] = ACTIONS(1468), - [anon_sym_LBRACK] = ACTIONS(1466), - [anon_sym_this] = ACTIONS(1468), - [anon_sym_AT] = ACTIONS(1468), - [anon_sym_AT_COLON] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_else] = ACTIONS(1468), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PERCENT] = ACTIONS(1466), - [anon_sym_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1466), - [anon_sym_null] = ACTIONS(1468), - [anon_sym_dynamic] = ACTIONS(1468), - [anon_sym_final] = ACTIONS(1468), - [anon_sym_abstract] = ACTIONS(1468), - [anon_sym_class] = ACTIONS(1468), - [anon_sym_extends] = ACTIONS(1468), - [anon_sym_implements] = ACTIONS(1468), - [anon_sym_interface] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(1468), - [anon_sym_function] = ACTIONS(1468), - [anon_sym_var] = ACTIONS(1468), - [aux_sym_integer_token1] = ACTIONS(1468), - [aux_sym_integer_token2] = ACTIONS(1466), - [aux_sym_float_token1] = ACTIONS(1468), - [aux_sym_float_token2] = ACTIONS(1466), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [aux_sym_string_token1] = ACTIONS(1466), - [aux_sym_string_token3] = ACTIONS(1466), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_catch] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_inline] = ACTIONS(1468), - [anon_sym_macro] = ACTIONS(1468), - [anon_sym_operator] = ACTIONS(1468), - [anon_sym_overload] = ACTIONS(1468), - [anon_sym_override] = ACTIONS(1468), - [anon_sym_private] = ACTIONS(1468), - [anon_sym_public] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_try] = ACTIONS(1468), - [anon_sym_untyped] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [sym__semicolon] = ACTIONS(1466), - }, - [311] = { - [ts_builtin_sym_end] = ACTIONS(1470), - [sym_identifier] = ACTIONS(1472), - [anon_sym_POUND] = ACTIONS(1470), - [anon_sym_package] = ACTIONS(1472), - [anon_sym_import] = ACTIONS(1472), - [anon_sym_using] = ACTIONS(1472), - [anon_sym_throw] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_cast] = ACTIONS(1472), - [anon_sym_DOLLARtype] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1470), - [anon_sym_this] = ACTIONS(1472), - [anon_sym_AT] = ACTIONS(1472), - [anon_sym_AT_COLON] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_else] = ACTIONS(1472), - [anon_sym_new] = ACTIONS(1472), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1472), - [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(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_LT_LT] = ACTIONS(1470), - [anon_sym_GT_GT] = ACTIONS(1472), - [anon_sym_GT_GT_GT] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [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(1472), - [anon_sym_LT_EQ] = ACTIONS(1470), - [anon_sym_GT] = ACTIONS(1472), - [anon_sym_GT_EQ] = ACTIONS(1470), - [anon_sym_EQ_GT] = ACTIONS(1470), - [anon_sym_QMARK_QMARK] = ACTIONS(1470), - [anon_sym_EQ] = ACTIONS(1472), - [sym__rangeOperator] = ACTIONS(1470), - [anon_sym_null] = ACTIONS(1472), - [anon_sym_dynamic] = ACTIONS(1472), - [anon_sym_final] = ACTIONS(1472), - [anon_sym_abstract] = ACTIONS(1472), - [anon_sym_class] = ACTIONS(1472), - [anon_sym_extends] = ACTIONS(1472), - [anon_sym_implements] = ACTIONS(1472), - [anon_sym_interface] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_function] = ACTIONS(1472), - [anon_sym_var] = ACTIONS(1472), - [aux_sym_integer_token1] = ACTIONS(1472), - [aux_sym_integer_token2] = ACTIONS(1470), - [aux_sym_float_token1] = ACTIONS(1472), - [aux_sym_float_token2] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [aux_sym_string_token1] = ACTIONS(1470), - [aux_sym_string_token3] = ACTIONS(1470), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_catch] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym_macro] = ACTIONS(1472), - [anon_sym_operator] = ACTIONS(1472), - [anon_sym_overload] = ACTIONS(1472), - [anon_sym_override] = ACTIONS(1472), - [anon_sym_private] = ACTIONS(1472), - [anon_sym_public] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_try] = ACTIONS(1472), - [anon_sym_untyped] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [sym__semicolon] = ACTIONS(1470), - }, - [312] = { - [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_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_RBRACE] = ACTIONS(1474), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_cast] = ACTIONS(1476), - [anon_sym_DOLLARtype] = ACTIONS(1474), - [anon_sym_in] = 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_if] = ACTIONS(1476), - [anon_sym_else] = 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_STAR] = 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), - [sym__rangeOperator] = ACTIONS(1474), - [anon_sym_null] = ACTIONS(1476), - [anon_sym_dynamic] = ACTIONS(1476), - [anon_sym_final] = ACTIONS(1476), - [anon_sym_abstract] = ACTIONS(1476), - [anon_sym_class] = ACTIONS(1476), - [anon_sym_extends] = ACTIONS(1476), - [anon_sym_implements] = ACTIONS(1476), - [anon_sym_interface] = 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), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_catch] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym_macro] = ACTIONS(1476), - [anon_sym_operator] = ACTIONS(1476), - [anon_sym_overload] = ACTIONS(1476), - [anon_sym_override] = ACTIONS(1476), - [anon_sym_private] = ACTIONS(1476), - [anon_sym_public] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_try] = ACTIONS(1476), - [anon_sym_untyped] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [sym__semicolon] = ACTIONS(1474), - }, - [313] = { - [ts_builtin_sym_end] = ACTIONS(396), - [sym_identifier] = ACTIONS(398), - [anon_sym_POUND] = ACTIONS(396), - [anon_sym_package] = ACTIONS(398), - [anon_sym_import] = ACTIONS(398), - [anon_sym_using] = ACTIONS(398), - [anon_sym_throw] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_LBRACE] = ACTIONS(396), - [anon_sym_RBRACE] = ACTIONS(396), - [anon_sym_case] = ACTIONS(398), - [anon_sym_default] = ACTIONS(398), - [anon_sym_cast] = ACTIONS(398), - [anon_sym_DOLLARtype] = ACTIONS(396), - [anon_sym_in] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(454), - [anon_sym_this] = ACTIONS(398), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_AT_COLON] = ACTIONS(396), - [anon_sym_if] = ACTIONS(398), - [anon_sym_else] = ACTIONS(398), - [anon_sym_new] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_DASH] = ACTIONS(398), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_PERCENT] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(396), - [anon_sym_SLASH] = ACTIONS(398), - [anon_sym_PLUS] = ACTIONS(398), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(398), - [anon_sym_GT_GT_GT] = ACTIONS(396), - [anon_sym_AMP] = ACTIONS(398), - [anon_sym_PIPE] = ACTIONS(398), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_AMP_AMP] = ACTIONS(396), - [anon_sym_PIPE_PIPE] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(396), - [anon_sym_BANG_EQ] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(398), - [anon_sym_LT_EQ] = ACTIONS(396), - [anon_sym_GT] = ACTIONS(398), - [anon_sym_GT_EQ] = ACTIONS(396), - [anon_sym_EQ_GT] = ACTIONS(396), - [anon_sym_QMARK_QMARK] = ACTIONS(396), - [anon_sym_EQ] = ACTIONS(398), - [sym__rangeOperator] = ACTIONS(396), - [anon_sym_null] = ACTIONS(398), - [anon_sym_dynamic] = ACTIONS(398), - [anon_sym_final] = ACTIONS(398), - [anon_sym_abstract] = ACTIONS(398), - [anon_sym_class] = ACTIONS(398), - [anon_sym_extends] = ACTIONS(398), - [anon_sym_implements] = ACTIONS(398), - [anon_sym_interface] = ACTIONS(398), - [anon_sym_typedef] = ACTIONS(398), - [anon_sym_function] = ACTIONS(398), - [anon_sym_var] = ACTIONS(398), - [aux_sym_integer_token1] = ACTIONS(398), - [aux_sym_integer_token2] = ACTIONS(396), - [aux_sym_float_token1] = ACTIONS(398), - [aux_sym_float_token2] = ACTIONS(396), - [anon_sym_true] = ACTIONS(398), - [anon_sym_false] = ACTIONS(398), - [aux_sym_string_token1] = ACTIONS(396), - [aux_sym_string_token3] = ACTIONS(396), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(398), - [anon_sym_catch] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(398), - [anon_sym_do] = ACTIONS(398), - [anon_sym_enum] = ACTIONS(398), - [anon_sym_extern] = ACTIONS(398), - [anon_sym_for] = ACTIONS(398), - [anon_sym_inline] = ACTIONS(398), - [anon_sym_macro] = ACTIONS(398), - [anon_sym_operator] = ACTIONS(398), - [anon_sym_overload] = ACTIONS(398), - [anon_sym_override] = ACTIONS(398), - [anon_sym_private] = ACTIONS(398), - [anon_sym_public] = ACTIONS(398), - [anon_sym_return] = ACTIONS(398), - [anon_sym_static] = ACTIONS(398), - [anon_sym_try] = ACTIONS(398), - [anon_sym_untyped] = ACTIONS(398), - [anon_sym_while] = ACTIONS(398), - [sym__semicolon] = ACTIONS(396), - }, - [314] = { - [ts_builtin_sym_end] = ACTIONS(1478), - [sym_identifier] = ACTIONS(1480), - [anon_sym_POUND] = ACTIONS(1478), - [anon_sym_package] = ACTIONS(1480), - [anon_sym_import] = ACTIONS(1480), - [anon_sym_using] = ACTIONS(1480), - [anon_sym_throw] = ACTIONS(1480), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_case] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_cast] = ACTIONS(1480), - [anon_sym_DOLLARtype] = ACTIONS(1478), - [anon_sym_in] = ACTIONS(1480), - [anon_sym_LBRACK] = ACTIONS(1478), - [anon_sym_this] = ACTIONS(1480), - [anon_sym_AT] = ACTIONS(1480), - [anon_sym_AT_COLON] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_else] = ACTIONS(1480), - [anon_sym_new] = ACTIONS(1480), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1480), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_PERCENT] = ACTIONS(1478), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_SLASH] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_LT_LT] = ACTIONS(1478), - [anon_sym_GT_GT] = ACTIONS(1480), - [anon_sym_GT_GT_GT] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_CARET] = ACTIONS(1478), - [anon_sym_AMP_AMP] = ACTIONS(1478), - [anon_sym_PIPE_PIPE] = ACTIONS(1478), - [anon_sym_EQ_EQ] = ACTIONS(1478), - [anon_sym_BANG_EQ] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_LT_EQ] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1480), - [anon_sym_GT_EQ] = ACTIONS(1478), - [anon_sym_EQ_GT] = ACTIONS(1478), - [anon_sym_QMARK_QMARK] = ACTIONS(1478), - [anon_sym_EQ] = ACTIONS(1480), - [sym__rangeOperator] = ACTIONS(1478), - [anon_sym_null] = ACTIONS(1480), - [anon_sym_dynamic] = ACTIONS(1480), - [anon_sym_final] = ACTIONS(1480), - [anon_sym_abstract] = ACTIONS(1480), - [anon_sym_class] = ACTIONS(1480), - [anon_sym_extends] = ACTIONS(1480), - [anon_sym_implements] = ACTIONS(1480), - [anon_sym_interface] = ACTIONS(1480), - [anon_sym_typedef] = ACTIONS(1480), - [anon_sym_function] = ACTIONS(1480), - [anon_sym_var] = ACTIONS(1480), - [aux_sym_integer_token1] = ACTIONS(1480), - [aux_sym_integer_token2] = ACTIONS(1478), - [aux_sym_float_token1] = ACTIONS(1480), - [aux_sym_float_token2] = ACTIONS(1478), - [anon_sym_true] = ACTIONS(1480), - [anon_sym_false] = ACTIONS(1480), - [aux_sym_string_token1] = ACTIONS(1478), - [aux_sym_string_token3] = ACTIONS(1478), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_catch] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_inline] = ACTIONS(1480), - [anon_sym_macro] = ACTIONS(1480), - [anon_sym_operator] = ACTIONS(1480), - [anon_sym_overload] = ACTIONS(1480), - [anon_sym_override] = ACTIONS(1480), - [anon_sym_private] = ACTIONS(1480), - [anon_sym_public] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_try] = ACTIONS(1480), - [anon_sym_untyped] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [sym__semicolon] = ACTIONS(1478), - }, - [315] = { - [ts_builtin_sym_end] = ACTIONS(1482), - [sym_identifier] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(1482), - [anon_sym_package] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(1484), - [anon_sym_using] = ACTIONS(1484), - [anon_sym_throw] = ACTIONS(1484), - [anon_sym_LPAREN] = ACTIONS(1482), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_cast] = ACTIONS(1484), - [anon_sym_DOLLARtype] = ACTIONS(1482), - [anon_sym_in] = ACTIONS(1484), - [anon_sym_LBRACK] = ACTIONS(1482), - [anon_sym_this] = ACTIONS(1484), - [anon_sym_AT] = ACTIONS(1484), - [anon_sym_AT_COLON] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_else] = ACTIONS(1484), - [anon_sym_new] = ACTIONS(1484), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_PERCENT] = ACTIONS(1482), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_SLASH] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_LT_LT] = ACTIONS(1482), - [anon_sym_GT_GT] = ACTIONS(1484), - [anon_sym_GT_GT_GT] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_CARET] = ACTIONS(1482), - [anon_sym_AMP_AMP] = ACTIONS(1482), - [anon_sym_PIPE_PIPE] = ACTIONS(1482), - [anon_sym_EQ_EQ] = ACTIONS(1482), - [anon_sym_BANG_EQ] = ACTIONS(1482), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1482), - [anon_sym_GT] = ACTIONS(1484), - [anon_sym_GT_EQ] = ACTIONS(1482), - [anon_sym_EQ_GT] = ACTIONS(1482), - [anon_sym_QMARK_QMARK] = ACTIONS(1482), - [anon_sym_EQ] = ACTIONS(1484), - [sym__rangeOperator] = ACTIONS(1482), - [anon_sym_null] = ACTIONS(1484), - [anon_sym_dynamic] = ACTIONS(1484), - [anon_sym_final] = ACTIONS(1484), - [anon_sym_abstract] = ACTIONS(1484), - [anon_sym_class] = ACTIONS(1484), - [anon_sym_extends] = ACTIONS(1484), - [anon_sym_implements] = ACTIONS(1484), - [anon_sym_interface] = ACTIONS(1484), - [anon_sym_typedef] = ACTIONS(1484), - [anon_sym_function] = ACTIONS(1484), - [anon_sym_var] = ACTIONS(1484), - [aux_sym_integer_token1] = ACTIONS(1484), - [aux_sym_integer_token2] = ACTIONS(1482), - [aux_sym_float_token1] = ACTIONS(1484), - [aux_sym_float_token2] = ACTIONS(1482), - [anon_sym_true] = ACTIONS(1484), - [anon_sym_false] = ACTIONS(1484), - [aux_sym_string_token1] = ACTIONS(1482), - [aux_sym_string_token3] = ACTIONS(1482), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_catch] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_inline] = ACTIONS(1484), - [anon_sym_macro] = ACTIONS(1484), - [anon_sym_operator] = ACTIONS(1484), - [anon_sym_overload] = ACTIONS(1484), - [anon_sym_override] = ACTIONS(1484), - [anon_sym_private] = ACTIONS(1484), - [anon_sym_public] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_try] = ACTIONS(1484), - [anon_sym_untyped] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [sym__semicolon] = ACTIONS(1482), - }, - [316] = { - [ts_builtin_sym_end] = ACTIONS(396), - [sym_identifier] = ACTIONS(398), - [anon_sym_POUND] = ACTIONS(396), - [anon_sym_package] = ACTIONS(398), - [anon_sym_import] = ACTIONS(398), - [anon_sym_using] = ACTIONS(398), - [anon_sym_throw] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(396), - [anon_sym_switch] = ACTIONS(398), - [anon_sym_LBRACE] = ACTIONS(396), - [anon_sym_RBRACE] = ACTIONS(396), - [anon_sym_case] = ACTIONS(398), - [anon_sym_default] = ACTIONS(398), - [anon_sym_cast] = ACTIONS(398), - [anon_sym_DOLLARtype] = ACTIONS(396), - [anon_sym_in] = ACTIONS(398), - [anon_sym_LBRACK] = ACTIONS(396), - [anon_sym_this] = ACTIONS(398), - [anon_sym_AT] = ACTIONS(398), - [anon_sym_AT_COLON] = ACTIONS(396), - [anon_sym_if] = ACTIONS(398), - [anon_sym_else] = ACTIONS(398), - [anon_sym_new] = ACTIONS(398), - [anon_sym_TILDE] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(398), - [anon_sym_DASH] = ACTIONS(398), - [anon_sym_PLUS_PLUS] = ACTIONS(396), - [anon_sym_DASH_DASH] = ACTIONS(396), - [anon_sym_PERCENT] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(396), - [anon_sym_SLASH] = ACTIONS(398), - [anon_sym_PLUS] = ACTIONS(398), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(398), - [anon_sym_GT_GT_GT] = ACTIONS(396), - [anon_sym_AMP] = ACTIONS(398), - [anon_sym_PIPE] = ACTIONS(398), - [anon_sym_CARET] = ACTIONS(396), - [anon_sym_AMP_AMP] = ACTIONS(396), - [anon_sym_PIPE_PIPE] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(396), - [anon_sym_BANG_EQ] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(398), - [anon_sym_LT_EQ] = ACTIONS(396), - [anon_sym_GT] = ACTIONS(398), - [anon_sym_GT_EQ] = ACTIONS(396), - [anon_sym_EQ_GT] = ACTIONS(396), - [anon_sym_QMARK_QMARK] = ACTIONS(396), - [anon_sym_EQ] = ACTIONS(398), - [sym__rangeOperator] = ACTIONS(396), - [anon_sym_null] = ACTIONS(398), - [anon_sym_dynamic] = ACTIONS(398), - [anon_sym_final] = ACTIONS(398), - [anon_sym_abstract] = ACTIONS(398), - [anon_sym_class] = ACTIONS(398), - [anon_sym_extends] = ACTIONS(398), - [anon_sym_implements] = ACTIONS(398), - [anon_sym_interface] = ACTIONS(398), - [anon_sym_typedef] = ACTIONS(398), - [anon_sym_function] = ACTIONS(398), - [anon_sym_var] = ACTIONS(398), - [aux_sym_integer_token1] = ACTIONS(398), - [aux_sym_integer_token2] = ACTIONS(396), - [aux_sym_float_token1] = ACTIONS(398), - [aux_sym_float_token2] = ACTIONS(396), - [anon_sym_true] = ACTIONS(398), - [anon_sym_false] = ACTIONS(398), - [aux_sym_string_token1] = ACTIONS(396), - [aux_sym_string_token3] = ACTIONS(396), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(398), - [anon_sym_catch] = ACTIONS(398), - [anon_sym_continue] = ACTIONS(398), - [anon_sym_do] = ACTIONS(398), - [anon_sym_enum] = ACTIONS(398), - [anon_sym_extern] = ACTIONS(398), - [anon_sym_for] = ACTIONS(398), - [anon_sym_inline] = ACTIONS(398), - [anon_sym_macro] = ACTIONS(398), - [anon_sym_operator] = ACTIONS(398), - [anon_sym_overload] = ACTIONS(398), - [anon_sym_override] = ACTIONS(398), - [anon_sym_private] = ACTIONS(398), - [anon_sym_public] = ACTIONS(398), - [anon_sym_return] = ACTIONS(398), - [anon_sym_static] = ACTIONS(398), - [anon_sym_try] = ACTIONS(398), - [anon_sym_untyped] = ACTIONS(398), - [anon_sym_while] = ACTIONS(398), - [sym__semicolon] = ACTIONS(396), - }, - [317] = { - [ts_builtin_sym_end] = ACTIONS(1486), - [sym_identifier] = ACTIONS(1488), - [anon_sym_POUND] = ACTIONS(1486), - [anon_sym_package] = 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_RBRACE] = ACTIONS(1486), - [anon_sym_case] = ACTIONS(1488), - [anon_sym_default] = ACTIONS(1488), - [anon_sym_cast] = ACTIONS(1488), - [anon_sym_DOLLARtype] = ACTIONS(1486), - [anon_sym_in] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_this] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(1488), - [anon_sym_AT_COLON] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_else] = 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_dynamic] = ACTIONS(1488), - [anon_sym_final] = ACTIONS(1488), - [anon_sym_abstract] = ACTIONS(1488), - [anon_sym_class] = ACTIONS(1488), - [anon_sym_extends] = ACTIONS(1488), - [anon_sym_implements] = 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), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_catch] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_enum] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_inline] = ACTIONS(1488), - [anon_sym_macro] = ACTIONS(1488), - [anon_sym_operator] = ACTIONS(1488), - [anon_sym_overload] = ACTIONS(1488), - [anon_sym_override] = ACTIONS(1488), - [anon_sym_private] = ACTIONS(1488), - [anon_sym_public] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_try] = ACTIONS(1488), - [anon_sym_untyped] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [sym__semicolon] = ACTIONS(1486), - }, - [318] = { - [ts_builtin_sym_end] = ACTIONS(1490), - [sym_identifier] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(1490), - [anon_sym_package] = 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_RBRACE] = ACTIONS(1490), - [anon_sym_case] = ACTIONS(1492), - [anon_sym_default] = ACTIONS(1492), - [anon_sym_cast] = ACTIONS(1492), - [anon_sym_DOLLARtype] = ACTIONS(1490), - [anon_sym_in] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_this] = ACTIONS(1492), - [anon_sym_AT] = ACTIONS(1492), - [anon_sym_AT_COLON] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_else] = 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_dynamic] = ACTIONS(1492), - [anon_sym_final] = ACTIONS(1492), - [anon_sym_abstract] = ACTIONS(1492), - [anon_sym_class] = ACTIONS(1492), - [anon_sym_extends] = ACTIONS(1492), - [anon_sym_implements] = 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), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_catch] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_inline] = ACTIONS(1492), - [anon_sym_macro] = ACTIONS(1492), - [anon_sym_operator] = ACTIONS(1492), - [anon_sym_overload] = ACTIONS(1492), - [anon_sym_override] = ACTIONS(1492), - [anon_sym_private] = ACTIONS(1492), - [anon_sym_public] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_try] = ACTIONS(1492), - [anon_sym_untyped] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [sym__semicolon] = ACTIONS(1490), - }, - [319] = { - [ts_builtin_sym_end] = ACTIONS(1494), - [sym_identifier] = ACTIONS(1496), - [anon_sym_POUND] = ACTIONS(1494), - [anon_sym_package] = 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_RBRACE] = ACTIONS(1494), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_cast] = ACTIONS(1496), - [anon_sym_DOLLARtype] = ACTIONS(1494), - [anon_sym_in] = ACTIONS(1496), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_this] = ACTIONS(1496), - [anon_sym_AT] = ACTIONS(1496), - [anon_sym_AT_COLON] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_else] = 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_dynamic] = ACTIONS(1496), - [anon_sym_final] = ACTIONS(1496), - [anon_sym_abstract] = ACTIONS(1496), - [anon_sym_class] = ACTIONS(1496), - [anon_sym_extends] = ACTIONS(1496), - [anon_sym_implements] = 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), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_catch] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_inline] = ACTIONS(1496), - [anon_sym_macro] = ACTIONS(1496), - [anon_sym_operator] = ACTIONS(1496), - [anon_sym_overload] = ACTIONS(1496), - [anon_sym_override] = ACTIONS(1496), - [anon_sym_private] = ACTIONS(1496), - [anon_sym_public] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_try] = ACTIONS(1496), - [anon_sym_untyped] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [sym__semicolon] = ACTIONS(1494), - }, - [320] = { - [ts_builtin_sym_end] = ACTIONS(1498), - [sym_identifier] = ACTIONS(1500), - [anon_sym_POUND] = ACTIONS(1498), - [anon_sym_package] = 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_RBRACE] = ACTIONS(1498), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_cast] = ACTIONS(1500), - [anon_sym_DOLLARtype] = ACTIONS(1498), - [anon_sym_in] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(1498), - [anon_sym_this] = ACTIONS(1500), - [anon_sym_AT] = ACTIONS(1500), - [anon_sym_AT_COLON] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_else] = 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_dynamic] = ACTIONS(1500), - [anon_sym_final] = ACTIONS(1500), - [anon_sym_abstract] = ACTIONS(1500), - [anon_sym_class] = ACTIONS(1500), - [anon_sym_extends] = ACTIONS(1500), - [anon_sym_implements] = 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), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_catch] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym_macro] = ACTIONS(1500), - [anon_sym_operator] = ACTIONS(1500), - [anon_sym_overload] = ACTIONS(1500), - [anon_sym_override] = ACTIONS(1500), - [anon_sym_private] = ACTIONS(1500), - [anon_sym_public] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_try] = ACTIONS(1500), - [anon_sym_untyped] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [sym__semicolon] = ACTIONS(1498), - }, - [321] = { - [ts_builtin_sym_end] = ACTIONS(1502), - [sym_identifier] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(1502), - [anon_sym_package] = ACTIONS(1504), - [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_RBRACE] = ACTIONS(1502), - [anon_sym_case] = ACTIONS(1504), - [anon_sym_default] = ACTIONS(1504), - [anon_sym_cast] = ACTIONS(1504), - [anon_sym_DOLLARtype] = ACTIONS(1502), - [anon_sym_in] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1502), - [anon_sym_this] = ACTIONS(1504), - [anon_sym_AT] = ACTIONS(1504), - [anon_sym_AT_COLON] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_else] = 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(1502), - [anon_sym_QMARK_QMARK] = ACTIONS(1502), - [anon_sym_EQ] = ACTIONS(1504), - [sym__rangeOperator] = ACTIONS(1502), - [anon_sym_null] = ACTIONS(1504), - [anon_sym_dynamic] = ACTIONS(1504), - [anon_sym_final] = ACTIONS(1504), - [anon_sym_abstract] = ACTIONS(1504), - [anon_sym_class] = ACTIONS(1504), - [anon_sym_extends] = ACTIONS(1504), - [anon_sym_implements] = 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), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_catch] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [anon_sym_enum] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym_macro] = ACTIONS(1504), - [anon_sym_operator] = ACTIONS(1504), - [anon_sym_overload] = ACTIONS(1504), - [anon_sym_override] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_try] = ACTIONS(1504), - [anon_sym_untyped] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [sym__semicolon] = ACTIONS(1502), - }, - [322] = { - [ts_builtin_sym_end] = ACTIONS(1506), - [sym_identifier] = ACTIONS(1508), - [anon_sym_POUND] = ACTIONS(1506), - [anon_sym_package] = 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_RBRACE] = ACTIONS(1506), - [anon_sym_case] = ACTIONS(1508), - [anon_sym_default] = ACTIONS(1508), - [anon_sym_cast] = ACTIONS(1508), - [anon_sym_DOLLARtype] = ACTIONS(1506), - [anon_sym_in] = ACTIONS(1508), - [anon_sym_LBRACK] = ACTIONS(1506), - [anon_sym_this] = ACTIONS(1508), - [anon_sym_AT] = ACTIONS(1508), - [anon_sym_AT_COLON] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1508), - [anon_sym_else] = 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_dynamic] = ACTIONS(1508), - [anon_sym_final] = ACTIONS(1508), - [anon_sym_abstract] = ACTIONS(1508), - [anon_sym_class] = ACTIONS(1508), - [anon_sym_extends] = ACTIONS(1508), - [anon_sym_implements] = 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_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1508), - [anon_sym_catch] = ACTIONS(1508), - [anon_sym_continue] = ACTIONS(1508), - [anon_sym_do] = ACTIONS(1508), - [anon_sym_enum] = ACTIONS(1508), - [anon_sym_extern] = ACTIONS(1508), - [anon_sym_for] = ACTIONS(1508), - [anon_sym_inline] = ACTIONS(1508), - [anon_sym_macro] = ACTIONS(1508), - [anon_sym_operator] = ACTIONS(1508), - [anon_sym_overload] = ACTIONS(1508), - [anon_sym_override] = ACTIONS(1508), - [anon_sym_private] = ACTIONS(1508), - [anon_sym_public] = ACTIONS(1508), - [anon_sym_return] = ACTIONS(1508), - [anon_sym_static] = ACTIONS(1508), - [anon_sym_try] = ACTIONS(1508), - [anon_sym_untyped] = ACTIONS(1508), - [anon_sym_while] = ACTIONS(1508), - [sym__semicolon] = ACTIONS(1506), - }, - [323] = { - [ts_builtin_sym_end] = ACTIONS(1510), - [sym_identifier] = ACTIONS(1512), - [anon_sym_POUND] = ACTIONS(1510), - [anon_sym_package] = 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_RBRACE] = ACTIONS(1510), - [anon_sym_case] = ACTIONS(1512), - [anon_sym_default] = ACTIONS(1512), - [anon_sym_cast] = ACTIONS(1512), - [anon_sym_DOLLARtype] = ACTIONS(1510), - [anon_sym_in] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_this] = ACTIONS(1512), - [anon_sym_AT] = ACTIONS(1512), - [anon_sym_AT_COLON] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_else] = 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_dynamic] = ACTIONS(1512), - [anon_sym_final] = ACTIONS(1512), - [anon_sym_abstract] = ACTIONS(1512), - [anon_sym_class] = ACTIONS(1512), - [anon_sym_extends] = ACTIONS(1512), - [anon_sym_implements] = 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), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_catch] = ACTIONS(1512), - [anon_sym_continue] = ACTIONS(1512), - [anon_sym_do] = ACTIONS(1512), - [anon_sym_enum] = ACTIONS(1512), - [anon_sym_extern] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_inline] = ACTIONS(1512), - [anon_sym_macro] = ACTIONS(1512), - [anon_sym_operator] = ACTIONS(1512), - [anon_sym_overload] = ACTIONS(1512), - [anon_sym_override] = ACTIONS(1512), - [anon_sym_private] = ACTIONS(1512), - [anon_sym_public] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_static] = ACTIONS(1512), - [anon_sym_try] = ACTIONS(1512), - [anon_sym_untyped] = ACTIONS(1512), - [anon_sym_while] = ACTIONS(1512), - [sym__semicolon] = ACTIONS(1510), - }, - [324] = { - [ts_builtin_sym_end] = ACTIONS(1514), - [sym_identifier] = ACTIONS(1516), - [anon_sym_POUND] = ACTIONS(1514), - [anon_sym_package] = 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_RBRACE] = ACTIONS(1514), - [anon_sym_case] = ACTIONS(1516), - [anon_sym_default] = ACTIONS(1516), - [anon_sym_cast] = ACTIONS(1516), - [anon_sym_DOLLARtype] = ACTIONS(1514), - [anon_sym_in] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1514), - [anon_sym_this] = ACTIONS(1516), - [anon_sym_AT] = ACTIONS(1516), - [anon_sym_AT_COLON] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_else] = 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_dynamic] = ACTIONS(1516), - [anon_sym_final] = ACTIONS(1516), - [anon_sym_abstract] = ACTIONS(1516), - [anon_sym_class] = ACTIONS(1516), - [anon_sym_extends] = ACTIONS(1516), - [anon_sym_implements] = 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), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_catch] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_do] = ACTIONS(1516), - [anon_sym_enum] = ACTIONS(1516), - [anon_sym_extern] = ACTIONS(1516), - [anon_sym_for] = ACTIONS(1516), - [anon_sym_inline] = ACTIONS(1516), - [anon_sym_macro] = ACTIONS(1516), - [anon_sym_operator] = ACTIONS(1516), - [anon_sym_overload] = ACTIONS(1516), - [anon_sym_override] = ACTIONS(1516), - [anon_sym_private] = ACTIONS(1516), - [anon_sym_public] = ACTIONS(1516), - [anon_sym_return] = ACTIONS(1516), - [anon_sym_static] = ACTIONS(1516), - [anon_sym_try] = ACTIONS(1516), - [anon_sym_untyped] = ACTIONS(1516), - [anon_sym_while] = ACTIONS(1516), - [sym__semicolon] = ACTIONS(1514), - }, - [325] = { - [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_RBRACE] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1520), - [anon_sym_cast] = ACTIONS(1520), - [anon_sym_DOLLARtype] = ACTIONS(1518), - [anon_sym_in] = 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_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_dynamic] = ACTIONS(1520), - [anon_sym_final] = ACTIONS(1520), - [anon_sym_abstract] = ACTIONS(1520), - [anon_sym_class] = ACTIONS(1520), - [anon_sym_extends] = ACTIONS(1520), - [anon_sym_implements] = 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), - [anon_sym_break] = ACTIONS(1520), - [anon_sym_catch] = ACTIONS(1520), - [anon_sym_continue] = ACTIONS(1520), - [anon_sym_do] = ACTIONS(1520), - [anon_sym_enum] = ACTIONS(1520), - [anon_sym_extern] = ACTIONS(1520), - [anon_sym_for] = ACTIONS(1520), - [anon_sym_inline] = ACTIONS(1520), - [anon_sym_macro] = ACTIONS(1520), - [anon_sym_operator] = ACTIONS(1520), - [anon_sym_overload] = ACTIONS(1520), - [anon_sym_override] = ACTIONS(1520), - [anon_sym_private] = ACTIONS(1520), - [anon_sym_public] = ACTIONS(1520), - [anon_sym_return] = ACTIONS(1520), - [anon_sym_static] = ACTIONS(1520), - [anon_sym_try] = ACTIONS(1520), - [anon_sym_untyped] = ACTIONS(1520), - [anon_sym_while] = ACTIONS(1520), - [sym__semicolon] = ACTIONS(1518), - }, - [326] = { - [ts_builtin_sym_end] = ACTIONS(1522), - [sym_identifier] = ACTIONS(1524), - [anon_sym_POUND] = ACTIONS(1522), - [anon_sym_package] = ACTIONS(1524), - [anon_sym_import] = ACTIONS(1524), - [anon_sym_using] = ACTIONS(1524), - [anon_sym_throw] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1522), - [anon_sym_switch] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_RBRACE] = ACTIONS(1522), - [anon_sym_case] = ACTIONS(1524), - [anon_sym_default] = ACTIONS(1524), - [anon_sym_cast] = ACTIONS(1524), - [anon_sym_DOLLARtype] = ACTIONS(1522), - [anon_sym_in] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1522), - [anon_sym_this] = ACTIONS(1524), - [anon_sym_AT] = ACTIONS(1524), - [anon_sym_AT_COLON] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1524), - [anon_sym_else] = ACTIONS(1524), - [anon_sym_new] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(1522), - [anon_sym_BANG] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1524), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [anon_sym_PERCENT] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_SLASH] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1524), - [anon_sym_LT_LT] = ACTIONS(1522), - [anon_sym_GT_GT] = ACTIONS(1524), - [anon_sym_GT_GT_GT] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_CARET] = ACTIONS(1522), - [anon_sym_AMP_AMP] = ACTIONS(1522), - [anon_sym_PIPE_PIPE] = ACTIONS(1522), - [anon_sym_EQ_EQ] = ACTIONS(1522), - [anon_sym_BANG_EQ] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1524), - [anon_sym_LT_EQ] = ACTIONS(1522), - [anon_sym_GT] = ACTIONS(1524), - [anon_sym_GT_EQ] = ACTIONS(1522), - [anon_sym_EQ_GT] = ACTIONS(1522), - [anon_sym_QMARK_QMARK] = ACTIONS(1522), - [anon_sym_EQ] = ACTIONS(1524), - [sym__rangeOperator] = ACTIONS(1522), - [anon_sym_null] = ACTIONS(1524), - [anon_sym_dynamic] = ACTIONS(1524), - [anon_sym_final] = ACTIONS(1524), - [anon_sym_abstract] = ACTIONS(1524), - [anon_sym_class] = ACTIONS(1524), - [anon_sym_extends] = ACTIONS(1524), - [anon_sym_implements] = ACTIONS(1524), - [anon_sym_interface] = ACTIONS(1524), - [anon_sym_typedef] = ACTIONS(1524), - [anon_sym_function] = ACTIONS(1524), - [anon_sym_var] = ACTIONS(1524), - [aux_sym_integer_token1] = ACTIONS(1524), - [aux_sym_integer_token2] = ACTIONS(1522), - [aux_sym_float_token1] = ACTIONS(1524), - [aux_sym_float_token2] = ACTIONS(1522), - [anon_sym_true] = ACTIONS(1524), - [anon_sym_false] = ACTIONS(1524), - [aux_sym_string_token1] = ACTIONS(1522), - [aux_sym_string_token3] = ACTIONS(1522), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1524), - [anon_sym_catch] = ACTIONS(1524), - [anon_sym_continue] = ACTIONS(1524), - [anon_sym_do] = ACTIONS(1524), - [anon_sym_enum] = ACTIONS(1524), - [anon_sym_extern] = ACTIONS(1524), - [anon_sym_for] = ACTIONS(1524), - [anon_sym_inline] = ACTIONS(1524), - [anon_sym_macro] = ACTIONS(1524), - [anon_sym_operator] = ACTIONS(1524), - [anon_sym_overload] = ACTIONS(1524), - [anon_sym_override] = ACTIONS(1524), - [anon_sym_private] = ACTIONS(1524), - [anon_sym_public] = ACTIONS(1524), - [anon_sym_return] = ACTIONS(1524), - [anon_sym_static] = ACTIONS(1524), - [anon_sym_try] = ACTIONS(1524), - [anon_sym_untyped] = ACTIONS(1524), - [anon_sym_while] = ACTIONS(1524), - [sym__semicolon] = ACTIONS(1522), - }, - [327] = { - [ts_builtin_sym_end] = ACTIONS(1526), - [sym_identifier] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(1526), - [anon_sym_package] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1528), - [anon_sym_using] = ACTIONS(1528), - [anon_sym_throw] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_switch] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1526), - [anon_sym_RBRACE] = ACTIONS(1526), - [anon_sym_case] = ACTIONS(1528), - [anon_sym_default] = ACTIONS(1528), - [anon_sym_cast] = ACTIONS(1528), - [anon_sym_DOLLARtype] = ACTIONS(1526), - [anon_sym_in] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1526), - [anon_sym_this] = ACTIONS(1528), - [anon_sym_AT] = ACTIONS(1528), - [anon_sym_AT_COLON] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1528), - [anon_sym_else] = ACTIONS(1528), - [anon_sym_new] = ACTIONS(1528), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1526), - [anon_sym_DASH_DASH] = ACTIONS(1526), - [anon_sym_PERCENT] = ACTIONS(1526), - [anon_sym_STAR] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1528), - [anon_sym_PLUS] = ACTIONS(1528), - [anon_sym_LT_LT] = ACTIONS(1526), - [anon_sym_GT_GT] = ACTIONS(1528), - [anon_sym_GT_GT_GT] = ACTIONS(1526), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1526), - [anon_sym_AMP_AMP] = ACTIONS(1526), - [anon_sym_PIPE_PIPE] = ACTIONS(1526), - [anon_sym_EQ_EQ] = ACTIONS(1526), - [anon_sym_BANG_EQ] = ACTIONS(1526), - [anon_sym_LT] = ACTIONS(1528), - [anon_sym_LT_EQ] = ACTIONS(1526), - [anon_sym_GT] = ACTIONS(1528), - [anon_sym_GT_EQ] = ACTIONS(1526), - [anon_sym_EQ_GT] = ACTIONS(1526), - [anon_sym_QMARK_QMARK] = ACTIONS(1526), - [anon_sym_EQ] = ACTIONS(1528), - [sym__rangeOperator] = ACTIONS(1526), - [anon_sym_null] = ACTIONS(1528), - [anon_sym_dynamic] = ACTIONS(1528), - [anon_sym_final] = ACTIONS(1528), - [anon_sym_abstract] = ACTIONS(1528), - [anon_sym_class] = ACTIONS(1528), - [anon_sym_extends] = ACTIONS(1528), - [anon_sym_implements] = ACTIONS(1528), - [anon_sym_interface] = ACTIONS(1528), - [anon_sym_typedef] = ACTIONS(1528), - [anon_sym_function] = ACTIONS(1528), - [anon_sym_var] = ACTIONS(1528), - [aux_sym_integer_token1] = ACTIONS(1528), - [aux_sym_integer_token2] = ACTIONS(1526), - [aux_sym_float_token1] = ACTIONS(1528), - [aux_sym_float_token2] = ACTIONS(1526), - [anon_sym_true] = ACTIONS(1528), - [anon_sym_false] = ACTIONS(1528), - [aux_sym_string_token1] = ACTIONS(1526), - [aux_sym_string_token3] = ACTIONS(1526), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1528), - [anon_sym_catch] = ACTIONS(1528), - [anon_sym_continue] = ACTIONS(1528), - [anon_sym_do] = ACTIONS(1528), - [anon_sym_enum] = ACTIONS(1528), - [anon_sym_extern] = ACTIONS(1528), - [anon_sym_for] = ACTIONS(1528), - [anon_sym_inline] = ACTIONS(1528), - [anon_sym_macro] = ACTIONS(1528), - [anon_sym_operator] = ACTIONS(1528), - [anon_sym_overload] = ACTIONS(1528), - [anon_sym_override] = ACTIONS(1528), - [anon_sym_private] = ACTIONS(1528), - [anon_sym_public] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1528), - [anon_sym_static] = ACTIONS(1528), - [anon_sym_try] = ACTIONS(1528), - [anon_sym_untyped] = ACTIONS(1528), - [anon_sym_while] = ACTIONS(1528), - [sym__semicolon] = ACTIONS(1526), - }, - [328] = { - [ts_builtin_sym_end] = ACTIONS(1530), - [sym_identifier] = ACTIONS(1532), - [anon_sym_POUND] = ACTIONS(1530), - [anon_sym_package] = ACTIONS(1532), - [anon_sym_import] = ACTIONS(1532), - [anon_sym_using] = ACTIONS(1532), - [anon_sym_throw] = ACTIONS(1532), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_switch] = ACTIONS(1532), - [anon_sym_LBRACE] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1530), - [anon_sym_case] = ACTIONS(1532), - [anon_sym_default] = ACTIONS(1532), - [anon_sym_cast] = ACTIONS(1532), - [anon_sym_DOLLARtype] = ACTIONS(1530), - [anon_sym_in] = ACTIONS(1532), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_this] = ACTIONS(1532), - [anon_sym_AT] = ACTIONS(1532), - [anon_sym_AT_COLON] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1532), - [anon_sym_else] = ACTIONS(1532), - [anon_sym_new] = ACTIONS(1532), - [anon_sym_TILDE] = ACTIONS(1530), - [anon_sym_BANG] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1532), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_PERCENT] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(1530), - [anon_sym_SLASH] = ACTIONS(1532), - [anon_sym_PLUS] = ACTIONS(1532), - [anon_sym_LT_LT] = ACTIONS(1530), - [anon_sym_GT_GT] = ACTIONS(1532), - [anon_sym_GT_GT_GT] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_PIPE] = ACTIONS(1532), - [anon_sym_CARET] = ACTIONS(1530), - [anon_sym_AMP_AMP] = ACTIONS(1530), - [anon_sym_PIPE_PIPE] = ACTIONS(1530), - [anon_sym_EQ_EQ] = ACTIONS(1530), - [anon_sym_BANG_EQ] = ACTIONS(1530), - [anon_sym_LT] = ACTIONS(1532), - [anon_sym_LT_EQ] = ACTIONS(1530), - [anon_sym_GT] = ACTIONS(1532), - [anon_sym_GT_EQ] = ACTIONS(1530), - [anon_sym_EQ_GT] = ACTIONS(1530), - [anon_sym_QMARK_QMARK] = ACTIONS(1530), - [anon_sym_EQ] = ACTIONS(1532), - [sym__rangeOperator] = ACTIONS(1530), - [anon_sym_null] = ACTIONS(1532), - [anon_sym_dynamic] = ACTIONS(1532), - [anon_sym_final] = ACTIONS(1532), - [anon_sym_abstract] = ACTIONS(1532), - [anon_sym_class] = ACTIONS(1532), - [anon_sym_extends] = ACTIONS(1532), - [anon_sym_implements] = ACTIONS(1532), - [anon_sym_interface] = ACTIONS(1532), - [anon_sym_typedef] = ACTIONS(1532), - [anon_sym_function] = ACTIONS(1532), - [anon_sym_var] = ACTIONS(1532), - [aux_sym_integer_token1] = ACTIONS(1532), - [aux_sym_integer_token2] = ACTIONS(1530), - [aux_sym_float_token1] = ACTIONS(1532), - [aux_sym_float_token2] = ACTIONS(1530), - [anon_sym_true] = ACTIONS(1532), - [anon_sym_false] = ACTIONS(1532), - [aux_sym_string_token1] = ACTIONS(1530), - [aux_sym_string_token3] = ACTIONS(1530), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1532), - [anon_sym_catch] = ACTIONS(1532), - [anon_sym_continue] = ACTIONS(1532), - [anon_sym_do] = ACTIONS(1532), - [anon_sym_enum] = ACTIONS(1532), - [anon_sym_extern] = ACTIONS(1532), - [anon_sym_for] = ACTIONS(1532), - [anon_sym_inline] = ACTIONS(1532), - [anon_sym_macro] = ACTIONS(1532), - [anon_sym_operator] = ACTIONS(1532), - [anon_sym_overload] = ACTIONS(1532), - [anon_sym_override] = ACTIONS(1532), - [anon_sym_private] = ACTIONS(1532), - [anon_sym_public] = ACTIONS(1532), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_static] = ACTIONS(1532), - [anon_sym_try] = ACTIONS(1532), - [anon_sym_untyped] = ACTIONS(1532), - [anon_sym_while] = ACTIONS(1532), - [sym__semicolon] = ACTIONS(1530), - }, - [329] = { - [ts_builtin_sym_end] = ACTIONS(1534), - [sym_identifier] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(1534), - [anon_sym_package] = ACTIONS(1536), - [anon_sym_import] = ACTIONS(1536), - [anon_sym_using] = ACTIONS(1536), - [anon_sym_throw] = ACTIONS(1536), - [anon_sym_LPAREN] = ACTIONS(1534), - [anon_sym_switch] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_RBRACE] = ACTIONS(1534), - [anon_sym_case] = ACTIONS(1536), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_cast] = ACTIONS(1536), - [anon_sym_DOLLARtype] = ACTIONS(1534), - [anon_sym_in] = ACTIONS(1536), - [anon_sym_LBRACK] = ACTIONS(1534), - [anon_sym_this] = ACTIONS(1536), - [anon_sym_AT] = ACTIONS(1536), - [anon_sym_AT_COLON] = ACTIONS(1534), - [anon_sym_if] = ACTIONS(1536), - [anon_sym_else] = ACTIONS(1536), - [anon_sym_new] = ACTIONS(1536), - [anon_sym_TILDE] = ACTIONS(1534), - [anon_sym_BANG] = ACTIONS(1536), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_PLUS_PLUS] = ACTIONS(1534), - [anon_sym_DASH_DASH] = ACTIONS(1534), - [anon_sym_PERCENT] = ACTIONS(1534), - [anon_sym_STAR] = ACTIONS(1534), - [anon_sym_SLASH] = ACTIONS(1536), - [anon_sym_PLUS] = ACTIONS(1536), - [anon_sym_LT_LT] = ACTIONS(1534), - [anon_sym_GT_GT] = ACTIONS(1536), - [anon_sym_GT_GT_GT] = ACTIONS(1534), - [anon_sym_AMP] = ACTIONS(1536), - [anon_sym_PIPE] = ACTIONS(1536), - [anon_sym_CARET] = ACTIONS(1534), - [anon_sym_AMP_AMP] = ACTIONS(1534), - [anon_sym_PIPE_PIPE] = ACTIONS(1534), - [anon_sym_EQ_EQ] = ACTIONS(1534), - [anon_sym_BANG_EQ] = ACTIONS(1534), - [anon_sym_LT] = ACTIONS(1536), - [anon_sym_LT_EQ] = ACTIONS(1534), - [anon_sym_GT] = ACTIONS(1536), - [anon_sym_GT_EQ] = ACTIONS(1534), - [anon_sym_EQ_GT] = ACTIONS(1534), - [anon_sym_QMARK_QMARK] = ACTIONS(1534), - [anon_sym_EQ] = ACTIONS(1536), - [sym__rangeOperator] = ACTIONS(1534), - [anon_sym_null] = ACTIONS(1536), - [anon_sym_dynamic] = ACTIONS(1536), - [anon_sym_final] = ACTIONS(1536), - [anon_sym_abstract] = ACTIONS(1536), - [anon_sym_class] = ACTIONS(1536), - [anon_sym_extends] = ACTIONS(1536), - [anon_sym_implements] = ACTIONS(1536), - [anon_sym_interface] = ACTIONS(1536), - [anon_sym_typedef] = ACTIONS(1536), - [anon_sym_function] = ACTIONS(1536), - [anon_sym_var] = ACTIONS(1536), - [aux_sym_integer_token1] = ACTIONS(1536), - [aux_sym_integer_token2] = ACTIONS(1534), - [aux_sym_float_token1] = ACTIONS(1536), - [aux_sym_float_token2] = ACTIONS(1534), - [anon_sym_true] = ACTIONS(1536), - [anon_sym_false] = ACTIONS(1536), - [aux_sym_string_token1] = ACTIONS(1534), - [aux_sym_string_token3] = ACTIONS(1534), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1536), - [anon_sym_catch] = ACTIONS(1536), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_do] = ACTIONS(1536), - [anon_sym_enum] = ACTIONS(1536), - [anon_sym_extern] = ACTIONS(1536), - [anon_sym_for] = ACTIONS(1536), - [anon_sym_inline] = ACTIONS(1536), - [anon_sym_macro] = ACTIONS(1536), - [anon_sym_operator] = ACTIONS(1536), - [anon_sym_overload] = ACTIONS(1536), - [anon_sym_override] = ACTIONS(1536), - [anon_sym_private] = ACTIONS(1536), - [anon_sym_public] = ACTIONS(1536), - [anon_sym_return] = ACTIONS(1536), - [anon_sym_static] = ACTIONS(1536), - [anon_sym_try] = ACTIONS(1536), - [anon_sym_untyped] = ACTIONS(1536), - [anon_sym_while] = ACTIONS(1536), - [sym__semicolon] = ACTIONS(1534), - }, - [330] = { - [ts_builtin_sym_end] = ACTIONS(1538), - [sym_identifier] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(1538), - [anon_sym_package] = ACTIONS(1540), - [anon_sym_import] = ACTIONS(1540), - [anon_sym_using] = ACTIONS(1540), - [anon_sym_throw] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_switch] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_case] = ACTIONS(1540), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_cast] = ACTIONS(1540), - [anon_sym_DOLLARtype] = ACTIONS(1538), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_this] = ACTIONS(1540), - [anon_sym_AT] = ACTIONS(1540), - [anon_sym_AT_COLON] = ACTIONS(1538), - [anon_sym_if] = ACTIONS(1540), - [anon_sym_else] = ACTIONS(1540), - [anon_sym_new] = ACTIONS(1540), - [anon_sym_TILDE] = ACTIONS(1538), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_PLUS_PLUS] = ACTIONS(1538), - [anon_sym_DASH_DASH] = ACTIONS(1538), - [anon_sym_PERCENT] = ACTIONS(1538), - [anon_sym_STAR] = ACTIONS(1538), - [anon_sym_SLASH] = ACTIONS(1540), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_LT_LT] = ACTIONS(1538), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_GT_GT_GT] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_CARET] = ACTIONS(1538), - [anon_sym_AMP_AMP] = ACTIONS(1538), - [anon_sym_PIPE_PIPE] = ACTIONS(1538), - [anon_sym_EQ_EQ] = ACTIONS(1538), - [anon_sym_BANG_EQ] = ACTIONS(1538), - [anon_sym_LT] = ACTIONS(1540), - [anon_sym_LT_EQ] = ACTIONS(1538), - [anon_sym_GT] = ACTIONS(1540), - [anon_sym_GT_EQ] = ACTIONS(1538), - [anon_sym_EQ_GT] = ACTIONS(1538), - [anon_sym_QMARK_QMARK] = ACTIONS(1538), - [anon_sym_EQ] = ACTIONS(1540), - [sym__rangeOperator] = ACTIONS(1538), - [anon_sym_null] = ACTIONS(1540), - [anon_sym_dynamic] = ACTIONS(1540), - [anon_sym_final] = ACTIONS(1540), - [anon_sym_abstract] = ACTIONS(1540), - [anon_sym_class] = ACTIONS(1540), - [anon_sym_extends] = ACTIONS(1540), - [anon_sym_implements] = ACTIONS(1540), - [anon_sym_interface] = ACTIONS(1540), - [anon_sym_typedef] = ACTIONS(1540), - [anon_sym_function] = ACTIONS(1540), - [anon_sym_var] = ACTIONS(1540), - [aux_sym_integer_token1] = ACTIONS(1540), - [aux_sym_integer_token2] = ACTIONS(1538), - [aux_sym_float_token1] = ACTIONS(1540), - [aux_sym_float_token2] = ACTIONS(1538), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), - [aux_sym_string_token1] = ACTIONS(1538), - [aux_sym_string_token3] = ACTIONS(1538), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1540), - [anon_sym_catch] = ACTIONS(1540), - [anon_sym_continue] = ACTIONS(1540), - [anon_sym_do] = ACTIONS(1540), - [anon_sym_enum] = ACTIONS(1540), - [anon_sym_extern] = ACTIONS(1540), - [anon_sym_for] = ACTIONS(1540), - [anon_sym_inline] = ACTIONS(1540), - [anon_sym_macro] = ACTIONS(1540), - [anon_sym_operator] = ACTIONS(1540), - [anon_sym_overload] = ACTIONS(1540), - [anon_sym_override] = ACTIONS(1540), - [anon_sym_private] = ACTIONS(1540), - [anon_sym_public] = ACTIONS(1540), - [anon_sym_return] = ACTIONS(1540), - [anon_sym_static] = ACTIONS(1540), - [anon_sym_try] = ACTIONS(1540), - [anon_sym_untyped] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1540), - [sym__semicolon] = ACTIONS(1538), - }, - [331] = { - [ts_builtin_sym_end] = ACTIONS(946), - [sym_identifier] = ACTIONS(948), - [anon_sym_POUND] = ACTIONS(946), - [anon_sym_package] = ACTIONS(948), - [anon_sym_import] = ACTIONS(948), - [anon_sym_using] = ACTIONS(948), - [anon_sym_throw] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(946), - [anon_sym_switch] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(946), - [anon_sym_RBRACE] = ACTIONS(946), - [anon_sym_case] = ACTIONS(948), - [anon_sym_default] = ACTIONS(948), - [anon_sym_cast] = ACTIONS(948), - [anon_sym_DOLLARtype] = ACTIONS(946), - [anon_sym_in] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(946), - [anon_sym_this] = ACTIONS(948), - [anon_sym_AT] = ACTIONS(948), - [anon_sym_AT_COLON] = ACTIONS(946), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_new] = ACTIONS(948), - [anon_sym_TILDE] = ACTIONS(946), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_PLUS_PLUS] = ACTIONS(946), - [anon_sym_DASH_DASH] = ACTIONS(946), - [anon_sym_PERCENT] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(946), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_LT_LT] = ACTIONS(946), - [anon_sym_GT_GT] = ACTIONS(948), - [anon_sym_GT_GT_GT] = ACTIONS(946), - [anon_sym_AMP] = ACTIONS(948), - [anon_sym_PIPE] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(946), - [anon_sym_AMP_AMP] = ACTIONS(946), - [anon_sym_PIPE_PIPE] = ACTIONS(946), - [anon_sym_EQ_EQ] = ACTIONS(946), - [anon_sym_BANG_EQ] = ACTIONS(946), - [anon_sym_LT] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(946), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_GT_EQ] = ACTIONS(946), - [anon_sym_EQ_GT] = ACTIONS(946), - [anon_sym_QMARK_QMARK] = ACTIONS(946), - [anon_sym_EQ] = ACTIONS(948), - [sym__rangeOperator] = ACTIONS(946), - [anon_sym_null] = ACTIONS(948), - [anon_sym_dynamic] = ACTIONS(948), - [anon_sym_final] = ACTIONS(948), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_class] = ACTIONS(948), - [anon_sym_extends] = ACTIONS(948), - [anon_sym_implements] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(948), - [anon_sym_typedef] = ACTIONS(948), - [anon_sym_function] = ACTIONS(948), - [anon_sym_var] = ACTIONS(948), - [aux_sym_integer_token1] = ACTIONS(948), - [aux_sym_integer_token2] = ACTIONS(946), - [aux_sym_float_token1] = ACTIONS(948), - [aux_sym_float_token2] = ACTIONS(946), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [aux_sym_string_token1] = ACTIONS(946), - [aux_sym_string_token3] = ACTIONS(946), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(948), - [anon_sym_catch] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_enum] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_inline] = ACTIONS(948), - [anon_sym_macro] = ACTIONS(948), - [anon_sym_operator] = ACTIONS(948), - [anon_sym_overload] = ACTIONS(948), - [anon_sym_override] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_static] = ACTIONS(948), - [anon_sym_try] = ACTIONS(948), - [anon_sym_untyped] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [sym__semicolon] = ACTIONS(946), - }, - [332] = { - [ts_builtin_sym_end] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), - [anon_sym_POUND] = ACTIONS(1542), - [anon_sym_package] = ACTIONS(1544), - [anon_sym_import] = ACTIONS(1544), - [anon_sym_using] = ACTIONS(1544), - [anon_sym_throw] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_case] = ACTIONS(1544), - [anon_sym_default] = ACTIONS(1544), - [anon_sym_cast] = ACTIONS(1544), - [anon_sym_DOLLARtype] = ACTIONS(1542), - [anon_sym_in] = ACTIONS(1544), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_this] = ACTIONS(1544), - [anon_sym_AT] = ACTIONS(1544), - [anon_sym_AT_COLON] = ACTIONS(1542), - [anon_sym_if] = ACTIONS(1544), - [anon_sym_else] = ACTIONS(1544), - [anon_sym_new] = ACTIONS(1544), - [anon_sym_TILDE] = ACTIONS(1542), - [anon_sym_BANG] = ACTIONS(1544), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_PLUS_PLUS] = ACTIONS(1542), - [anon_sym_DASH_DASH] = ACTIONS(1542), - [anon_sym_PERCENT] = ACTIONS(1542), - [anon_sym_STAR] = ACTIONS(1542), - [anon_sym_SLASH] = ACTIONS(1544), - [anon_sym_PLUS] = ACTIONS(1544), - [anon_sym_LT_LT] = ACTIONS(1542), - [anon_sym_GT_GT] = ACTIONS(1544), - [anon_sym_GT_GT_GT] = ACTIONS(1542), - [anon_sym_AMP] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_CARET] = ACTIONS(1542), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_PIPE_PIPE] = ACTIONS(1542), - [anon_sym_EQ_EQ] = ACTIONS(1542), - [anon_sym_BANG_EQ] = ACTIONS(1542), - [anon_sym_LT] = ACTIONS(1544), - [anon_sym_LT_EQ] = ACTIONS(1542), - [anon_sym_GT] = ACTIONS(1544), - [anon_sym_GT_EQ] = ACTIONS(1542), - [anon_sym_EQ_GT] = ACTIONS(1542), - [anon_sym_QMARK_QMARK] = ACTIONS(1542), - [anon_sym_EQ] = ACTIONS(1544), - [sym__rangeOperator] = ACTIONS(1542), - [anon_sym_null] = ACTIONS(1544), - [anon_sym_dynamic] = ACTIONS(1544), - [anon_sym_final] = ACTIONS(1544), - [anon_sym_abstract] = ACTIONS(1544), - [anon_sym_class] = ACTIONS(1544), - [anon_sym_extends] = ACTIONS(1544), - [anon_sym_implements] = ACTIONS(1544), - [anon_sym_interface] = ACTIONS(1544), - [anon_sym_typedef] = ACTIONS(1544), - [anon_sym_function] = ACTIONS(1544), - [anon_sym_var] = ACTIONS(1544), - [aux_sym_integer_token1] = ACTIONS(1544), - [aux_sym_integer_token2] = ACTIONS(1542), - [aux_sym_float_token1] = ACTIONS(1544), - [aux_sym_float_token2] = ACTIONS(1542), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [aux_sym_string_token1] = ACTIONS(1542), - [aux_sym_string_token3] = ACTIONS(1542), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1544), - [anon_sym_catch] = ACTIONS(1544), - [anon_sym_continue] = ACTIONS(1544), - [anon_sym_do] = ACTIONS(1544), - [anon_sym_enum] = ACTIONS(1544), - [anon_sym_extern] = ACTIONS(1544), - [anon_sym_for] = ACTIONS(1544), - [anon_sym_inline] = ACTIONS(1544), - [anon_sym_macro] = ACTIONS(1544), - [anon_sym_operator] = ACTIONS(1544), - [anon_sym_overload] = ACTIONS(1544), - [anon_sym_override] = ACTIONS(1544), - [anon_sym_private] = ACTIONS(1544), - [anon_sym_public] = ACTIONS(1544), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_static] = ACTIONS(1544), - [anon_sym_try] = ACTIONS(1544), - [anon_sym_untyped] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1544), - [sym__semicolon] = ACTIONS(1542), - }, - [333] = { - [ts_builtin_sym_end] = ACTIONS(1546), - [sym_identifier] = ACTIONS(1548), - [anon_sym_POUND] = ACTIONS(1546), - [anon_sym_package] = ACTIONS(1548), - [anon_sym_import] = ACTIONS(1548), - [anon_sym_using] = ACTIONS(1548), - [anon_sym_throw] = ACTIONS(1548), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_switch] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1546), - [anon_sym_RBRACE] = ACTIONS(1546), - [anon_sym_case] = ACTIONS(1548), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_cast] = ACTIONS(1548), - [anon_sym_DOLLARtype] = ACTIONS(1546), - [anon_sym_in] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1546), - [anon_sym_this] = ACTIONS(1548), - [anon_sym_AT] = ACTIONS(1548), - [anon_sym_AT_COLON] = ACTIONS(1546), - [anon_sym_if] = ACTIONS(1548), - [anon_sym_else] = ACTIONS(1548), - [anon_sym_new] = ACTIONS(1548), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_BANG] = ACTIONS(1548), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_PLUS_PLUS] = ACTIONS(1546), - [anon_sym_DASH_DASH] = ACTIONS(1546), - [anon_sym_PERCENT] = ACTIONS(1546), - [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_SLASH] = ACTIONS(1548), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_LT_LT] = ACTIONS(1546), - [anon_sym_GT_GT] = ACTIONS(1548), - [anon_sym_GT_GT_GT] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1548), - [anon_sym_PIPE] = ACTIONS(1548), - [anon_sym_CARET] = ACTIONS(1546), - [anon_sym_AMP_AMP] = ACTIONS(1546), - [anon_sym_PIPE_PIPE] = ACTIONS(1546), - [anon_sym_EQ_EQ] = ACTIONS(1546), - [anon_sym_BANG_EQ] = ACTIONS(1546), - [anon_sym_LT] = ACTIONS(1548), - [anon_sym_LT_EQ] = ACTIONS(1546), - [anon_sym_GT] = ACTIONS(1548), - [anon_sym_GT_EQ] = ACTIONS(1546), - [anon_sym_EQ_GT] = ACTIONS(1546), - [anon_sym_QMARK_QMARK] = ACTIONS(1546), - [anon_sym_EQ] = ACTIONS(1548), - [sym__rangeOperator] = ACTIONS(1546), - [anon_sym_null] = ACTIONS(1548), - [anon_sym_dynamic] = ACTIONS(1548), - [anon_sym_final] = ACTIONS(1548), - [anon_sym_abstract] = ACTIONS(1548), - [anon_sym_class] = ACTIONS(1548), - [anon_sym_extends] = ACTIONS(1548), - [anon_sym_implements] = ACTIONS(1548), - [anon_sym_interface] = ACTIONS(1548), - [anon_sym_typedef] = ACTIONS(1548), - [anon_sym_function] = ACTIONS(1548), - [anon_sym_var] = ACTIONS(1548), - [aux_sym_integer_token1] = ACTIONS(1548), - [aux_sym_integer_token2] = ACTIONS(1546), - [aux_sym_float_token1] = ACTIONS(1548), - [aux_sym_float_token2] = ACTIONS(1546), - [anon_sym_true] = ACTIONS(1548), - [anon_sym_false] = ACTIONS(1548), - [aux_sym_string_token1] = ACTIONS(1546), - [aux_sym_string_token3] = ACTIONS(1546), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1548), - [anon_sym_catch] = ACTIONS(1548), - [anon_sym_continue] = ACTIONS(1548), - [anon_sym_do] = ACTIONS(1548), - [anon_sym_enum] = ACTIONS(1548), - [anon_sym_extern] = ACTIONS(1548), - [anon_sym_for] = ACTIONS(1548), - [anon_sym_inline] = ACTIONS(1548), - [anon_sym_macro] = ACTIONS(1548), - [anon_sym_operator] = ACTIONS(1548), - [anon_sym_overload] = ACTIONS(1548), - [anon_sym_override] = ACTIONS(1548), - [anon_sym_private] = ACTIONS(1548), - [anon_sym_public] = ACTIONS(1548), - [anon_sym_return] = ACTIONS(1548), - [anon_sym_static] = ACTIONS(1548), - [anon_sym_try] = ACTIONS(1548), - [anon_sym_untyped] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1548), - [sym__semicolon] = ACTIONS(1546), - }, - [334] = { - [ts_builtin_sym_end] = ACTIONS(1550), - [sym_identifier] = ACTIONS(1552), - [anon_sym_POUND] = ACTIONS(1550), - [anon_sym_package] = ACTIONS(1552), - [anon_sym_import] = ACTIONS(1552), - [anon_sym_using] = ACTIONS(1552), - [anon_sym_throw] = ACTIONS(1552), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_switch] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1550), - [anon_sym_case] = ACTIONS(1552), - [anon_sym_default] = ACTIONS(1552), - [anon_sym_cast] = ACTIONS(1552), - [anon_sym_DOLLARtype] = ACTIONS(1550), - [anon_sym_in] = ACTIONS(1552), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_this] = ACTIONS(1552), - [anon_sym_AT] = ACTIONS(1552), - [anon_sym_AT_COLON] = ACTIONS(1550), - [anon_sym_if] = ACTIONS(1552), - [anon_sym_else] = ACTIONS(1552), - [anon_sym_new] = ACTIONS(1552), - [anon_sym_TILDE] = ACTIONS(1550), - [anon_sym_BANG] = ACTIONS(1552), - [anon_sym_DASH] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1550), - [anon_sym_DASH_DASH] = ACTIONS(1550), - [anon_sym_PERCENT] = ACTIONS(1550), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_SLASH] = ACTIONS(1552), - [anon_sym_PLUS] = ACTIONS(1552), - [anon_sym_LT_LT] = ACTIONS(1550), - [anon_sym_GT_GT] = ACTIONS(1552), - [anon_sym_GT_GT_GT] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1552), - [anon_sym_PIPE] = ACTIONS(1552), - [anon_sym_CARET] = ACTIONS(1550), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_PIPE_PIPE] = ACTIONS(1550), - [anon_sym_EQ_EQ] = ACTIONS(1550), - [anon_sym_BANG_EQ] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1552), - [anon_sym_LT_EQ] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1552), - [anon_sym_GT_EQ] = ACTIONS(1550), - [anon_sym_EQ_GT] = ACTIONS(1550), - [anon_sym_QMARK_QMARK] = ACTIONS(1550), - [anon_sym_EQ] = ACTIONS(1552), - [sym__rangeOperator] = ACTIONS(1550), - [anon_sym_null] = ACTIONS(1552), - [anon_sym_dynamic] = ACTIONS(1552), - [anon_sym_final] = ACTIONS(1552), - [anon_sym_abstract] = ACTIONS(1552), - [anon_sym_class] = ACTIONS(1552), - [anon_sym_extends] = ACTIONS(1552), - [anon_sym_implements] = ACTIONS(1552), - [anon_sym_interface] = ACTIONS(1552), - [anon_sym_typedef] = ACTIONS(1552), - [anon_sym_function] = ACTIONS(1552), - [anon_sym_var] = ACTIONS(1552), - [aux_sym_integer_token1] = ACTIONS(1552), - [aux_sym_integer_token2] = ACTIONS(1550), - [aux_sym_float_token1] = ACTIONS(1552), - [aux_sym_float_token2] = ACTIONS(1550), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [aux_sym_string_token1] = ACTIONS(1550), - [aux_sym_string_token3] = ACTIONS(1550), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1552), - [anon_sym_catch] = ACTIONS(1552), - [anon_sym_continue] = ACTIONS(1552), - [anon_sym_do] = ACTIONS(1552), - [anon_sym_enum] = ACTIONS(1552), - [anon_sym_extern] = ACTIONS(1552), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_inline] = ACTIONS(1552), - [anon_sym_macro] = ACTIONS(1552), - [anon_sym_operator] = ACTIONS(1552), - [anon_sym_overload] = ACTIONS(1552), - [anon_sym_override] = ACTIONS(1552), - [anon_sym_private] = ACTIONS(1552), - [anon_sym_public] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1552), - [anon_sym_static] = ACTIONS(1552), - [anon_sym_try] = ACTIONS(1552), - [anon_sym_untyped] = ACTIONS(1552), - [anon_sym_while] = ACTIONS(1552), - [sym__semicolon] = ACTIONS(1550), - }, - [335] = { - [ts_builtin_sym_end] = ACTIONS(1554), - [sym_identifier] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(1554), - [anon_sym_package] = ACTIONS(1556), - [anon_sym_import] = ACTIONS(1556), - [anon_sym_using] = ACTIONS(1556), - [anon_sym_throw] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_switch] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1554), - [anon_sym_RBRACE] = ACTIONS(1554), - [anon_sym_case] = ACTIONS(1556), - [anon_sym_default] = ACTIONS(1556), - [anon_sym_cast] = ACTIONS(1556), - [anon_sym_DOLLARtype] = ACTIONS(1554), - [anon_sym_in] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1554), - [anon_sym_this] = ACTIONS(1556), - [anon_sym_AT] = ACTIONS(1556), - [anon_sym_AT_COLON] = ACTIONS(1554), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_else] = ACTIONS(1556), - [anon_sym_new] = ACTIONS(1556), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_BANG] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_PLUS_PLUS] = ACTIONS(1554), - [anon_sym_DASH_DASH] = ACTIONS(1554), - [anon_sym_PERCENT] = ACTIONS(1554), - [anon_sym_STAR] = ACTIONS(1554), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_LT_LT] = ACTIONS(1554), - [anon_sym_GT_GT] = ACTIONS(1556), - [anon_sym_GT_GT_GT] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1554), - [anon_sym_AMP_AMP] = ACTIONS(1554), - [anon_sym_PIPE_PIPE] = ACTIONS(1554), - [anon_sym_EQ_EQ] = ACTIONS(1554), - [anon_sym_BANG_EQ] = ACTIONS(1554), - [anon_sym_LT] = ACTIONS(1556), - [anon_sym_LT_EQ] = ACTIONS(1554), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1554), - [anon_sym_EQ_GT] = ACTIONS(1554), - [anon_sym_QMARK_QMARK] = ACTIONS(1554), - [anon_sym_EQ] = ACTIONS(1556), - [sym__rangeOperator] = ACTIONS(1554), - [anon_sym_null] = ACTIONS(1556), - [anon_sym_dynamic] = ACTIONS(1556), - [anon_sym_final] = ACTIONS(1556), - [anon_sym_abstract] = ACTIONS(1556), - [anon_sym_class] = ACTIONS(1556), - [anon_sym_extends] = ACTIONS(1556), - [anon_sym_implements] = ACTIONS(1556), - [anon_sym_interface] = ACTIONS(1556), - [anon_sym_typedef] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1556), - [anon_sym_var] = ACTIONS(1556), - [aux_sym_integer_token1] = ACTIONS(1556), - [aux_sym_integer_token2] = ACTIONS(1554), - [aux_sym_float_token1] = ACTIONS(1556), - [aux_sym_float_token2] = ACTIONS(1554), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [aux_sym_string_token1] = ACTIONS(1554), - [aux_sym_string_token3] = ACTIONS(1554), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_catch] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_do] = ACTIONS(1556), - [anon_sym_enum] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_inline] = ACTIONS(1556), - [anon_sym_macro] = ACTIONS(1556), - [anon_sym_operator] = ACTIONS(1556), - [anon_sym_overload] = ACTIONS(1556), - [anon_sym_override] = ACTIONS(1556), - [anon_sym_private] = ACTIONS(1556), - [anon_sym_public] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_static] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [anon_sym_untyped] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [sym__semicolon] = ACTIONS(1554), - }, - [336] = { - [ts_builtin_sym_end] = ACTIONS(1558), - [sym_identifier] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(1558), - [anon_sym_package] = ACTIONS(1560), - [anon_sym_import] = ACTIONS(1560), - [anon_sym_using] = ACTIONS(1560), - [anon_sym_throw] = ACTIONS(1560), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_switch] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1558), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_case] = ACTIONS(1560), - [anon_sym_default] = ACTIONS(1560), - [anon_sym_cast] = ACTIONS(1560), - [anon_sym_DOLLARtype] = ACTIONS(1558), - [anon_sym_in] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1558), - [anon_sym_this] = ACTIONS(1560), - [anon_sym_AT] = ACTIONS(1560), - [anon_sym_AT_COLON] = ACTIONS(1558), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_else] = ACTIONS(1560), - [anon_sym_new] = ACTIONS(1560), - [anon_sym_TILDE] = ACTIONS(1558), - [anon_sym_BANG] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_PLUS_PLUS] = ACTIONS(1558), - [anon_sym_DASH_DASH] = ACTIONS(1558), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PLUS] = ACTIONS(1560), - [anon_sym_LT_LT] = ACTIONS(1558), - [anon_sym_GT_GT] = ACTIONS(1560), - [anon_sym_GT_GT_GT] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_PIPE] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1558), - [anon_sym_AMP_AMP] = ACTIONS(1558), - [anon_sym_PIPE_PIPE] = ACTIONS(1558), - [anon_sym_EQ_EQ] = ACTIONS(1558), - [anon_sym_BANG_EQ] = ACTIONS(1558), - [anon_sym_LT] = ACTIONS(1560), - [anon_sym_LT_EQ] = ACTIONS(1558), - [anon_sym_GT] = ACTIONS(1560), - [anon_sym_GT_EQ] = ACTIONS(1558), - [anon_sym_EQ_GT] = ACTIONS(1558), - [anon_sym_QMARK_QMARK] = ACTIONS(1558), - [anon_sym_EQ] = ACTIONS(1560), - [sym__rangeOperator] = ACTIONS(1558), - [anon_sym_null] = ACTIONS(1560), - [anon_sym_dynamic] = ACTIONS(1560), - [anon_sym_final] = ACTIONS(1560), - [anon_sym_abstract] = ACTIONS(1560), - [anon_sym_class] = ACTIONS(1560), - [anon_sym_extends] = ACTIONS(1560), - [anon_sym_implements] = ACTIONS(1560), - [anon_sym_interface] = ACTIONS(1560), - [anon_sym_typedef] = ACTIONS(1560), - [anon_sym_function] = ACTIONS(1560), - [anon_sym_var] = ACTIONS(1560), - [aux_sym_integer_token1] = ACTIONS(1560), - [aux_sym_integer_token2] = ACTIONS(1558), - [aux_sym_float_token1] = ACTIONS(1560), - [aux_sym_float_token2] = ACTIONS(1558), - [anon_sym_true] = ACTIONS(1560), - [anon_sym_false] = ACTIONS(1560), - [aux_sym_string_token1] = ACTIONS(1558), - [aux_sym_string_token3] = ACTIONS(1558), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1560), - [anon_sym_catch] = ACTIONS(1560), - [anon_sym_continue] = ACTIONS(1560), - [anon_sym_do] = ACTIONS(1560), - [anon_sym_enum] = ACTIONS(1560), - [anon_sym_extern] = ACTIONS(1560), - [anon_sym_for] = ACTIONS(1560), - [anon_sym_inline] = ACTIONS(1560), - [anon_sym_macro] = ACTIONS(1560), - [anon_sym_operator] = ACTIONS(1560), - [anon_sym_overload] = ACTIONS(1560), - [anon_sym_override] = ACTIONS(1560), - [anon_sym_private] = ACTIONS(1560), - [anon_sym_public] = ACTIONS(1560), - [anon_sym_return] = ACTIONS(1560), - [anon_sym_static] = ACTIONS(1560), - [anon_sym_try] = ACTIONS(1560), - [anon_sym_untyped] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1560), - [sym__semicolon] = ACTIONS(1558), - }, - [337] = { - [ts_builtin_sym_end] = ACTIONS(1562), - [sym_identifier] = ACTIONS(1564), - [anon_sym_POUND] = ACTIONS(1562), - [anon_sym_package] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1564), - [anon_sym_using] = ACTIONS(1564), - [anon_sym_throw] = ACTIONS(1564), - [anon_sym_LPAREN] = ACTIONS(1562), - [anon_sym_switch] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_RBRACE] = ACTIONS(1562), - [anon_sym_case] = ACTIONS(1564), - [anon_sym_default] = ACTIONS(1564), - [anon_sym_cast] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1562), - [anon_sym_in] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_this] = ACTIONS(1564), - [anon_sym_AT] = ACTIONS(1564), - [anon_sym_AT_COLON] = ACTIONS(1562), - [anon_sym_if] = ACTIONS(1564), - [anon_sym_else] = ACTIONS(1564), - [anon_sym_new] = ACTIONS(1564), - [anon_sym_TILDE] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1564), - [anon_sym_DASH] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1562), - [anon_sym_DASH_DASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1564), - [anon_sym_PLUS] = ACTIONS(1564), - [anon_sym_LT_LT] = ACTIONS(1562), - [anon_sym_GT_GT] = ACTIONS(1564), - [anon_sym_GT_GT_GT] = ACTIONS(1562), - [anon_sym_AMP] = ACTIONS(1564), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_AMP_AMP] = ACTIONS(1562), - [anon_sym_PIPE_PIPE] = ACTIONS(1562), - [anon_sym_EQ_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_LT] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1562), - [anon_sym_EQ_GT] = ACTIONS(1562), - [anon_sym_QMARK_QMARK] = ACTIONS(1562), - [anon_sym_EQ] = ACTIONS(1564), - [sym__rangeOperator] = ACTIONS(1562), - [anon_sym_null] = ACTIONS(1564), - [anon_sym_dynamic] = ACTIONS(1564), - [anon_sym_final] = ACTIONS(1564), - [anon_sym_abstract] = ACTIONS(1564), - [anon_sym_class] = ACTIONS(1564), - [anon_sym_extends] = ACTIONS(1564), - [anon_sym_implements] = ACTIONS(1564), - [anon_sym_interface] = 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(1562), - [aux_sym_float_token1] = ACTIONS(1564), - [aux_sym_float_token2] = ACTIONS(1562), - [anon_sym_true] = ACTIONS(1564), - [anon_sym_false] = ACTIONS(1564), - [aux_sym_string_token1] = ACTIONS(1562), - [aux_sym_string_token3] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(1564), - [anon_sym_catch] = ACTIONS(1564), - [anon_sym_continue] = ACTIONS(1564), - [anon_sym_do] = ACTIONS(1564), - [anon_sym_enum] = ACTIONS(1564), - [anon_sym_extern] = ACTIONS(1564), - [anon_sym_for] = ACTIONS(1564), - [anon_sym_inline] = ACTIONS(1564), - [anon_sym_macro] = ACTIONS(1564), - [anon_sym_operator] = ACTIONS(1564), - [anon_sym_overload] = ACTIONS(1564), - [anon_sym_override] = ACTIONS(1564), - [anon_sym_private] = ACTIONS(1564), - [anon_sym_public] = ACTIONS(1564), - [anon_sym_return] = ACTIONS(1564), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_try] = ACTIONS(1564), - [anon_sym_untyped] = ACTIONS(1564), - [anon_sym_while] = ACTIONS(1564), - }, - [338] = { - [ts_builtin_sym_end] = ACTIONS(89), - [sym_identifier] = ACTIONS(376), - [anon_sym_POUND] = ACTIONS(89), - [anon_sym_package] = ACTIONS(376), - [anon_sym_import] = ACTIONS(376), - [anon_sym_using] = ACTIONS(376), - [anon_sym_throw] = ACTIONS(376), - [anon_sym_LPAREN] = ACTIONS(89), - [anon_sym_switch] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(89), - [anon_sym_RBRACE] = ACTIONS(89), - [anon_sym_case] = ACTIONS(376), - [anon_sym_default] = ACTIONS(376), - [anon_sym_cast] = ACTIONS(376), - [anon_sym_DOLLARtype] = ACTIONS(89), - [anon_sym_in] = ACTIONS(376), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_this] = ACTIONS(376), - [anon_sym_AT] = ACTIONS(376), - [anon_sym_AT_COLON] = ACTIONS(89), - [anon_sym_if] = ACTIONS(376), - [anon_sym_else] = ACTIONS(376), - [anon_sym_new] = ACTIONS(376), - [anon_sym_TILDE] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(376), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_PLUS_PLUS] = ACTIONS(89), - [anon_sym_DASH_DASH] = ACTIONS(89), - [anon_sym_PERCENT] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(89), - [anon_sym_SLASH] = ACTIONS(376), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_LT_LT] = ACTIONS(89), - [anon_sym_GT_GT] = ACTIONS(376), - [anon_sym_GT_GT_GT] = ACTIONS(89), - [anon_sym_AMP] = ACTIONS(376), - [anon_sym_PIPE] = ACTIONS(376), - [anon_sym_CARET] = ACTIONS(89), - [anon_sym_AMP_AMP] = ACTIONS(89), - [anon_sym_PIPE_PIPE] = ACTIONS(89), - [anon_sym_EQ_EQ] = ACTIONS(89), - [anon_sym_BANG_EQ] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(376), - [anon_sym_LT_EQ] = ACTIONS(89), - [anon_sym_GT] = ACTIONS(376), - [anon_sym_GT_EQ] = ACTIONS(89), - [anon_sym_EQ_GT] = ACTIONS(89), - [anon_sym_QMARK_QMARK] = ACTIONS(89), - [anon_sym_EQ] = ACTIONS(376), - [sym__rangeOperator] = ACTIONS(89), - [anon_sym_null] = ACTIONS(376), - [anon_sym_dynamic] = ACTIONS(376), - [anon_sym_final] = ACTIONS(376), - [anon_sym_abstract] = ACTIONS(376), - [anon_sym_class] = ACTIONS(376), - [anon_sym_extends] = ACTIONS(376), - [anon_sym_implements] = ACTIONS(376), - [anon_sym_interface] = ACTIONS(376), - [anon_sym_typedef] = ACTIONS(376), - [anon_sym_function] = ACTIONS(376), - [anon_sym_var] = ACTIONS(376), - [aux_sym_integer_token1] = ACTIONS(376), - [aux_sym_integer_token2] = ACTIONS(89), - [aux_sym_float_token1] = ACTIONS(376), - [aux_sym_float_token2] = ACTIONS(89), - [anon_sym_true] = ACTIONS(376), - [anon_sym_false] = ACTIONS(376), - [aux_sym_string_token1] = ACTIONS(89), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(376), - [anon_sym_catch] = ACTIONS(376), - [anon_sym_continue] = ACTIONS(376), - [anon_sym_do] = ACTIONS(376), - [anon_sym_enum] = ACTIONS(376), - [anon_sym_extern] = ACTIONS(376), - [anon_sym_for] = ACTIONS(376), - [anon_sym_inline] = ACTIONS(376), - [anon_sym_macro] = ACTIONS(376), - [anon_sym_operator] = ACTIONS(376), - [anon_sym_overload] = ACTIONS(376), - [anon_sym_override] = ACTIONS(376), - [anon_sym_private] = ACTIONS(376), - [anon_sym_public] = ACTIONS(376), - [anon_sym_return] = ACTIONS(376), - [anon_sym_static] = ACTIONS(376), - [anon_sym_try] = ACTIONS(376), - [anon_sym_untyped] = ACTIONS(376), - [anon_sym_while] = ACTIONS(376), - }, - [339] = { - [sym__rhs_expression] = STATE(439), - [sym__unaryExpression] = STATE(341), - [sym_runtime_type_check_expression] = STATE(341), - [sym_switch_expression] = STATE(341), - [sym_cast_expression] = STATE(341), - [sym_type_trace_expression] = STATE(341), - [sym__parenthesized_expression] = STATE(469), - [sym_range_expression] = STATE(341), - [sym_subscript_expression] = STATE(341), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1054), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(439), - [sym_operator] = STATE(801), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(464), - [sym_integer] = STATE(464), - [sym_float] = STATE(464), - [sym_bool] = STATE(464), - [sym_string] = STATE(462), - [sym_null] = STATE(464), - [sym_array] = STATE(464), - [sym_map] = STATE(464), - [sym_object] = STATE(464), - [sym_pair] = STATE(464), - [aux_sym__parenthesized_expression_repeat1] = STATE(341), - [sym_identifier] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(1568), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(604), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(238), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [340] = { - [sym__rhs_expression] = STATE(439), - [sym__unaryExpression] = STATE(342), - [sym_runtime_type_check_expression] = STATE(342), - [sym_switch_expression] = STATE(342), - [sym_cast_expression] = STATE(342), - [sym_type_trace_expression] = STATE(342), - [sym__parenthesized_expression] = STATE(469), - [sym_range_expression] = STATE(342), - [sym_subscript_expression] = STATE(342), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1054), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(439), - [sym_operator] = STATE(801), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(464), - [sym_integer] = STATE(464), - [sym_float] = STATE(464), - [sym_bool] = STATE(464), - [sym_string] = STATE(462), - [sym_null] = STATE(464), - [sym_array] = STATE(464), - [sym_map] = STATE(464), - [sym_object] = STATE(464), - [sym_structure_type_pair] = STATE(1311), - [sym_pair] = STATE(464), - [aux_sym__parenthesized_expression_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(604), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(238), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [341] = { - [sym__rhs_expression] = STATE(439), - [sym__unaryExpression] = STATE(341), - [sym_runtime_type_check_expression] = STATE(341), - [sym_switch_expression] = STATE(341), - [sym_cast_expression] = STATE(341), - [sym_type_trace_expression] = STATE(341), - [sym__parenthesized_expression] = STATE(469), - [sym_range_expression] = STATE(341), - [sym_subscript_expression] = STATE(341), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1054), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(439), - [sym_operator] = STATE(801), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(464), - [sym_integer] = STATE(464), - [sym_float] = STATE(464), - [sym_bool] = STATE(464), - [sym_string] = STATE(462), - [sym_null] = STATE(464), - [sym_array] = STATE(464), - [sym_map] = STATE(464), - [sym_object] = STATE(464), - [sym_pair] = STATE(464), - [aux_sym__parenthesized_expression_repeat1] = STATE(341), - [sym_identifier] = ACTIONS(1572), - [anon_sym_LPAREN] = ACTIONS(1575), - [anon_sym_RPAREN] = ACTIONS(1578), - [anon_sym_switch] = ACTIONS(1580), - [anon_sym_LBRACE] = ACTIONS(1583), - [anon_sym_cast] = ACTIONS(1586), - [anon_sym_DOLLARtype] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_this] = ACTIONS(1595), - [anon_sym_new] = ACTIONS(1598), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1610), - [anon_sym_DASH_DASH] = ACTIONS(1610), - [anon_sym_PERCENT] = ACTIONS(1613), - [anon_sym_STAR] = ACTIONS(1613), - [anon_sym_SLASH] = ACTIONS(1616), - [anon_sym_PLUS] = ACTIONS(1616), - [anon_sym_LT_LT] = ACTIONS(1613), - [anon_sym_GT_GT] = ACTIONS(1616), - [anon_sym_GT_GT_GT] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1616), - [anon_sym_CARET] = ACTIONS(1613), - [anon_sym_AMP_AMP] = ACTIONS(1601), - [anon_sym_PIPE_PIPE] = ACTIONS(1601), - [anon_sym_EQ_EQ] = ACTIONS(1601), - [anon_sym_BANG_EQ] = ACTIONS(1601), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_LT_EQ] = ACTIONS(1601), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_GT_EQ] = ACTIONS(1601), - [anon_sym_EQ_GT] = ACTIONS(1601), - [anon_sym_QMARK_QMARK] = ACTIONS(1601), - [anon_sym_EQ] = ACTIONS(1604), - [sym__rangeOperator] = ACTIONS(1601), - [anon_sym_null] = ACTIONS(1619), - [aux_sym_integer_token1] = ACTIONS(1622), - [aux_sym_integer_token2] = ACTIONS(1625), - [aux_sym_float_token1] = ACTIONS(1628), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1634), - [anon_sym_false] = ACTIONS(1634), - [aux_sym_string_token1] = ACTIONS(1637), - [aux_sym_string_token3] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - }, - [342] = { - [sym__rhs_expression] = STATE(439), - [sym__unaryExpression] = STATE(341), - [sym_runtime_type_check_expression] = STATE(341), - [sym_switch_expression] = STATE(341), - [sym_cast_expression] = STATE(341), - [sym_type_trace_expression] = STATE(341), - [sym__parenthesized_expression] = STATE(469), - [sym_range_expression] = STATE(341), - [sym_subscript_expression] = STATE(341), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1054), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(439), - [sym_operator] = STATE(801), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(464), - [sym_integer] = STATE(464), - [sym_float] = STATE(464), - [sym_bool] = STATE(464), - [sym_string] = STATE(462), - [sym_null] = STATE(464), - [sym_array] = STATE(464), - [sym_map] = STATE(464), - [sym_object] = STATE(464), - [sym_pair] = STATE(464), - [aux_sym__parenthesized_expression_repeat1] = STATE(341), - [sym_identifier] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(1643), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(604), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(238), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [343] = { - [sym__rhs_expression] = STATE(439), - [sym__unaryExpression] = STATE(339), - [sym_runtime_type_check_expression] = STATE(339), - [sym_switch_expression] = STATE(339), - [sym_cast_expression] = STATE(339), - [sym_type_trace_expression] = STATE(339), - [sym__parenthesized_expression] = STATE(469), - [sym_range_expression] = STATE(339), - [sym_subscript_expression] = STATE(339), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1054), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(439), - [sym_operator] = STATE(801), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(464), - [sym_integer] = STATE(464), - [sym_float] = STATE(464), - [sym_bool] = STATE(464), - [sym_string] = STATE(462), - [sym_null] = STATE(464), - [sym_array] = STATE(464), - [sym_map] = STATE(464), - [sym_object] = STATE(464), - [sym_structure_type_pair] = STATE(1340), - [sym_pair] = STATE(464), - [aux_sym__parenthesized_expression_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(604), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(238), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [344] = { - [sym__rhs_expression] = STATE(510), - [sym__unaryExpression] = STATE(1156), - [sym_runtime_type_check_expression] = STATE(1156), - [sym_switch_expression] = STATE(1156), - [sym_cast_expression] = STATE(1156), - [sym_type_trace_expression] = STATE(1156), - [sym__parenthesized_expression] = STATE(1118), - [sym_range_expression] = STATE(1156), - [sym_subscript_expression] = STATE(1156), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(510), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(1647), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [345] = { - [sym__rhs_expression] = STATE(513), - [sym__unaryExpression] = STATE(1173), - [sym_runtime_type_check_expression] = STATE(1173), - [sym_switch_expression] = STATE(1173), - [sym_cast_expression] = STATE(1173), - [sym_type_trace_expression] = STATE(1173), - [sym__parenthesized_expression] = STATE(1039), - [sym_range_expression] = STATE(1173), - [sym_subscript_expression] = STATE(1173), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(513), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(1651), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [346] = { - [sym__rhs_expression] = STATE(439), - [sym__unaryExpression] = STATE(339), - [sym_runtime_type_check_expression] = STATE(339), - [sym_switch_expression] = STATE(339), - [sym_cast_expression] = STATE(339), - [sym_type_trace_expression] = STATE(339), - [sym__parenthesized_expression] = STATE(469), - [sym_range_expression] = STATE(339), - [sym_subscript_expression] = STATE(339), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1054), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(439), - [sym_operator] = STATE(801), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(464), - [sym_integer] = STATE(464), - [sym_float] = STATE(464), - [sym_bool] = STATE(464), - [sym_string] = STATE(462), - [sym_null] = STATE(464), - [sym_array] = STATE(464), - [sym_map] = STATE(464), - [sym_object] = STATE(464), - [sym_pair] = STATE(464), - [aux_sym__parenthesized_expression_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(604), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(238), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [347] = { - [sym__rhs_expression] = STATE(485), - [sym__unaryExpression] = STATE(1065), - [sym_runtime_type_check_expression] = STATE(1065), - [sym_switch_expression] = STATE(1065), - [sym_cast_expression] = STATE(1065), - [sym_type_trace_expression] = STATE(1065), - [sym__parenthesized_expression] = STATE(1035), - [sym_range_expression] = STATE(1065), - [sym_subscript_expression] = STATE(1065), - [sym_member_expression] = STATE(679), - [sym__lhs_expression] = STATE(1075), - [sym__call] = STATE(726), - [sym__constructor_call] = STATE(702), - [sym_call_expression] = STATE(485), - [sym_operator] = STATE(800), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(724), - [sym_integer] = STATE(724), - [sym_float] = STATE(724), - [sym_bool] = STATE(724), - [sym_string] = STATE(692), - [sym_null] = STATE(724), - [sym_array] = STATE(724), - [sym_map] = STATE(724), - [sym_object] = STATE(724), - [sym_pair] = STATE(700), - [sym_identifier] = ACTIONS(1653), - [anon_sym_LPAREN] = ACTIONS(1655), - [anon_sym_switch] = ACTIONS(1657), - [anon_sym_LBRACE] = ACTIONS(1659), - [anon_sym_cast] = ACTIONS(1661), - [anon_sym_DOLLARtype] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1665), - [anon_sym_RBRACK] = ACTIONS(1667), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(1671), - [aux_sym_integer_token1] = ACTIONS(1673), - [aux_sym_integer_token2] = ACTIONS(1675), - [aux_sym_float_token1] = ACTIONS(1677), - [aux_sym_float_token2] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [aux_sym_string_token1] = ACTIONS(1683), - [aux_sym_string_token3] = ACTIONS(1685), - [sym_comment] = ACTIONS(3), - }, - [348] = { - [sym__rhs_expression] = STATE(497), - [sym__unaryExpression] = STATE(1108), - [sym_runtime_type_check_expression] = STATE(1108), - [sym_switch_expression] = STATE(1108), - [sym_cast_expression] = STATE(1108), - [sym_type_trace_expression] = STATE(1108), - [sym__parenthesized_expression] = STATE(1025), - [sym_range_expression] = STATE(1108), - [sym_subscript_expression] = STATE(1108), - [sym_member_expression] = STATE(679), - [sym__lhs_expression] = STATE(1075), - [sym__call] = STATE(726), - [sym__constructor_call] = STATE(702), - [sym_call_expression] = STATE(497), - [sym_operator] = STATE(800), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(724), - [sym_integer] = STATE(724), - [sym_float] = STATE(724), - [sym_bool] = STATE(724), - [sym_string] = STATE(692), - [sym_null] = STATE(724), - [sym_array] = STATE(724), - [sym_map] = STATE(724), - [sym_object] = STATE(724), - [sym_pair] = STATE(698), - [sym_identifier] = ACTIONS(1653), - [anon_sym_LPAREN] = ACTIONS(1655), - [anon_sym_switch] = ACTIONS(1657), - [anon_sym_LBRACE] = ACTIONS(1659), - [anon_sym_cast] = ACTIONS(1661), - [anon_sym_DOLLARtype] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1665), - [anon_sym_RBRACK] = ACTIONS(1687), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(1671), - [aux_sym_integer_token1] = ACTIONS(1673), - [aux_sym_integer_token2] = ACTIONS(1675), - [aux_sym_float_token1] = ACTIONS(1677), - [aux_sym_float_token2] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [aux_sym_string_token1] = ACTIONS(1683), - [aux_sym_string_token3] = ACTIONS(1685), - [sym_comment] = ACTIONS(3), - }, - [349] = { - [sym__rhs_expression] = STATE(439), - [sym__unaryExpression] = STATE(342), - [sym_runtime_type_check_expression] = STATE(342), - [sym_switch_expression] = STATE(342), - [sym_cast_expression] = STATE(342), - [sym_type_trace_expression] = STATE(342), - [sym__parenthesized_expression] = STATE(469), - [sym_range_expression] = STATE(342), - [sym_subscript_expression] = STATE(342), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1054), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(439), - [sym_operator] = STATE(801), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(464), - [sym_integer] = STATE(464), - [sym_float] = STATE(464), - [sym_bool] = STATE(464), - [sym_string] = STATE(462), - [sym_null] = STATE(464), - [sym_array] = STATE(464), - [sym_map] = STATE(464), - [sym_object] = STATE(464), - [sym_pair] = STATE(464), - [aux_sym__parenthesized_expression_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(604), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(238), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [350] = { - [sym__rhs_expression] = STATE(503), - [sym__unaryExpression] = STATE(1154), - [sym_runtime_type_check_expression] = STATE(1154), - [sym_switch_expression] = STATE(1154), - [sym_cast_expression] = STATE(1154), - [sym_type_trace_expression] = STATE(1154), - [sym__parenthesized_expression] = STATE(1113), - [sym_range_expression] = STATE(1154), - [sym_subscript_expression] = STATE(1154), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(503), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(1689), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [351] = { - [sym__rhs_expression] = STATE(593), - [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(1193), - [sym_range_expression] = STATE(1306), - [sym_subscript_expression] = STATE(1306), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(593), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [352] = { - [sym__rhs_expression] = STATE(550), - [sym__unaryExpression] = STATE(1288), - [sym_runtime_type_check_expression] = STATE(1288), - [sym_switch_expression] = STATE(1288), - [sym_cast_expression] = STATE(1288), - [sym_type_trace_expression] = STATE(1288), - [sym__parenthesized_expression] = STATE(1232), - [sym_range_expression] = STATE(1288), - [sym_subscript_expression] = STATE(1288), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(550), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [353] = { - [sym__rhs_expression] = STATE(577), - [sym__unaryExpression] = STATE(1297), - [sym_runtime_type_check_expression] = STATE(1297), - [sym_switch_expression] = STATE(1297), - [sym_cast_expression] = STATE(1297), - [sym_type_trace_expression] = STATE(1297), - [sym__parenthesized_expression] = STATE(1211), - [sym_range_expression] = STATE(1297), - [sym_subscript_expression] = STATE(1297), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(577), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [354] = { - [sym__rhs_expression] = STATE(538), - [sym__unaryExpression] = STATE(1202), - [sym_runtime_type_check_expression] = STATE(1202), - [sym_switch_expression] = STATE(1202), - [sym_cast_expression] = STATE(1202), - [sym_type_trace_expression] = STATE(1202), - [sym__parenthesized_expression] = STATE(1182), - [sym_range_expression] = STATE(1202), - [sym_subscript_expression] = STATE(1202), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(538), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [355] = { - [sym__rhs_expression] = STATE(574), - [sym__unaryExpression] = STATE(1294), - [sym_runtime_type_check_expression] = STATE(1294), - [sym_switch_expression] = STATE(1294), - [sym_cast_expression] = STATE(1294), - [sym_type_trace_expression] = STATE(1294), - [sym__parenthesized_expression] = STATE(1213), - [sym_range_expression] = STATE(1294), - [sym_subscript_expression] = STATE(1294), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(574), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [356] = { - [sym__rhs_expression] = STATE(598), - [sym__unaryExpression] = STATE(1331), - [sym_runtime_type_check_expression] = STATE(1331), - [sym_switch_expression] = STATE(1331), - [sym_cast_expression] = STATE(1331), - [sym_type_trace_expression] = STATE(1331), - [sym__parenthesized_expression] = STATE(1234), - [sym_range_expression] = STATE(1331), - [sym_subscript_expression] = STATE(1331), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(598), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [357] = { - [sym__rhs_expression] = STATE(575), - [sym__unaryExpression] = STATE(1316), - [sym_runtime_type_check_expression] = STATE(1316), - [sym_switch_expression] = STATE(1316), - [sym_cast_expression] = STATE(1316), - [sym_type_trace_expression] = STATE(1316), - [sym__parenthesized_expression] = STATE(1207), - [sym_range_expression] = STATE(1316), - [sym_subscript_expression] = STATE(1316), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(575), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [358] = { - [sym__rhs_expression] = STATE(600), - [sym__unaryExpression] = STATE(1327), - [sym_runtime_type_check_expression] = STATE(1327), - [sym_switch_expression] = STATE(1327), - [sym_cast_expression] = STATE(1327), - [sym_type_trace_expression] = STATE(1327), - [sym__parenthesized_expression] = STATE(1222), - [sym_range_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(600), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [359] = { - [sym__rhs_expression] = STATE(553), - [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(1203), - [sym_range_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_member_expression] = STATE(790), - [sym__lhs_expression] = STATE(1018), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(553), - [sym_operator] = STATE(785), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(764), - [sym_integer] = STATE(764), - [sym_float] = STATE(764), - [sym_bool] = STATE(764), - [sym_string] = STATE(743), - [sym_null] = STATE(764), - [sym_array] = STATE(764), - [sym_map] = STATE(764), - [sym_object] = STATE(764), - [sym_pair] = STATE(764), - [sym_identifier] = ACTIONS(1691), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1693), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [360] = { - [sym__rhs_expression] = STATE(25), - [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(65), - [sym_range_expression] = STATE(66), - [sym_subscript_expression] = STATE(66), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1054), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(25), - [sym_operator] = STATE(789), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(113), - [sym_integer] = STATE(113), - [sym_float] = STATE(113), - [sym_bool] = STATE(113), - [sym_string] = STATE(105), - [sym_null] = STATE(113), - [sym_array] = STATE(113), - [sym_map] = STATE(113), - [sym_object] = STATE(113), - [sym_pair] = STATE(113), - [sym_identifier] = ACTIONS(1695), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1697), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(250), - [anon_sym_new] = ACTIONS(238), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [361] = { - [sym__rhs_expression] = STATE(551), - [sym__unaryExpression] = STATE(1305), - [sym_runtime_type_check_expression] = STATE(1305), - [sym_switch_expression] = STATE(1305), - [sym_cast_expression] = STATE(1305), - [sym_type_trace_expression] = STATE(1305), - [sym__parenthesized_expression] = STATE(1195), - [sym_range_expression] = STATE(1305), - [sym_subscript_expression] = STATE(1305), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(551), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [362] = { - [sym__rhs_expression] = STATE(546), - [sym__unaryExpression] = STATE(1291), - [sym_runtime_type_check_expression] = STATE(1291), - [sym_switch_expression] = STATE(1291), - [sym_cast_expression] = STATE(1291), - [sym_type_trace_expression] = STATE(1291), - [sym__parenthesized_expression] = STATE(1224), - [sym_range_expression] = STATE(1291), - [sym_subscript_expression] = STATE(1291), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(546), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [363] = { - [sym__rhs_expression] = STATE(543), - [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(65), - [sym_range_expression] = STATE(66), - [sym_subscript_expression] = STATE(66), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(543), - [sym_operator] = STATE(808), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(764), - [sym_integer] = STATE(764), - [sym_float] = STATE(764), - [sym_bool] = STATE(764), - [sym_string] = STATE(743), - [sym_null] = STATE(764), - [sym_array] = STATE(764), - [sym_map] = STATE(764), - [sym_object] = STATE(764), - [sym_pair] = STATE(764), - [sym_identifier] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1236), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [364] = { - [sym__rhs_expression] = STATE(547), - [sym__unaryExpression] = STATE(1290), - [sym_runtime_type_check_expression] = STATE(1290), - [sym_switch_expression] = STATE(1290), - [sym_cast_expression] = STATE(1290), - [sym_type_trace_expression] = STATE(1290), - [sym__parenthesized_expression] = STATE(1228), - [sym_range_expression] = STATE(1290), - [sym_subscript_expression] = STATE(1290), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(547), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [365] = { - [sym__rhs_expression] = STATE(592), - [sym__unaryExpression] = STATE(1268), - [sym_runtime_type_check_expression] = STATE(1268), - [sym_switch_expression] = STATE(1268), - [sym_cast_expression] = STATE(1268), - [sym_type_trace_expression] = STATE(1268), - [sym__parenthesized_expression] = STATE(1192), - [sym_range_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(592), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [366] = { - [sym__rhs_expression] = STATE(594), - [sym__unaryExpression] = STATE(1293), - [sym_runtime_type_check_expression] = STATE(1293), - [sym_switch_expression] = STATE(1293), - [sym_cast_expression] = STATE(1293), - [sym_type_trace_expression] = STATE(1293), - [sym__parenthesized_expression] = STATE(1214), - [sym_range_expression] = STATE(1293), - [sym_subscript_expression] = STATE(1293), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(594), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [367] = { - [sym__rhs_expression] = STATE(431), - [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(65), - [sym_range_expression] = STATE(66), - [sym_subscript_expression] = STATE(66), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1054), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(431), - [sym_operator] = STATE(803), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(465), - [sym_integer] = STATE(465), - [sym_float] = STATE(465), - [sym_bool] = STATE(465), - [sym_string] = STATE(462), - [sym_null] = STATE(465), - [sym_array] = STATE(465), - [sym_map] = STATE(465), - [sym_object] = STATE(465), - [sym_pair] = STATE(465), - [sym_identifier] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(996), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(250), - [anon_sym_new] = ACTIONS(238), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [368] = { - [sym__rhs_expression] = STATE(599), - [sym__unaryExpression] = STATE(1326), - [sym_runtime_type_check_expression] = STATE(1326), - [sym_switch_expression] = STATE(1326), - [sym_cast_expression] = STATE(1326), - [sym_type_trace_expression] = STATE(1326), - [sym__parenthesized_expression] = STATE(1220), - [sym_range_expression] = STATE(1326), - [sym_subscript_expression] = STATE(1326), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(599), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [369] = { - [sym__rhs_expression] = STATE(512), - [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(65), - [sym_range_expression] = STATE(66), - [sym_subscript_expression] = STATE(66), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(512), - [sym_operator] = STATE(791), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(779), - [sym_integer] = STATE(779), - [sym_float] = STATE(779), - [sym_bool] = STATE(779), - [sym_string] = STATE(782), - [sym_null] = STATE(779), - [sym_array] = STATE(779), - [sym_map] = STATE(779), - [sym_object] = STATE(779), - [sym_pair] = STATE(779), - [sym_identifier] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1705), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(1707), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [370] = { - [sym__rhs_expression] = STATE(587), - [sym__unaryExpression] = STATE(1336), - [sym_runtime_type_check_expression] = STATE(1336), - [sym_switch_expression] = STATE(1336), - [sym_cast_expression] = STATE(1336), - [sym_type_trace_expression] = STATE(1336), - [sym__parenthesized_expression] = STATE(1242), - [sym_range_expression] = STATE(1336), - [sym_subscript_expression] = STATE(1336), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(587), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [371] = { - [sym__rhs_expression] = STATE(597), - [sym__unaryExpression] = STATE(1322), - [sym_runtime_type_check_expression] = STATE(1322), - [sym_switch_expression] = STATE(1322), - [sym_cast_expression] = STATE(1322), - [sym_type_trace_expression] = STATE(1322), - [sym__parenthesized_expression] = STATE(1212), - [sym_range_expression] = STATE(1322), - [sym_subscript_expression] = STATE(1322), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(597), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [372] = { - [sym__rhs_expression] = STATE(471), - [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(65), - [sym_range_expression] = STATE(66), - [sym_subscript_expression] = STATE(66), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(471), - [sym_operator] = STATE(804), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(694), - [sym_integer] = STATE(694), - [sym_float] = STATE(694), - [sym_bool] = STATE(694), - [sym_string] = STATE(675), - [sym_null] = STATE(694), - [sym_array] = STATE(694), - [sym_map] = STATE(694), - [sym_object] = STATE(694), - [sym_pair] = STATE(694), - [sym_identifier] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1090), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(250), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [373] = { - [sym__rhs_expression] = STATE(478), - [sym__unaryExpression] = STATE(725), - [sym_runtime_type_check_expression] = STATE(725), - [sym_switch_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_type_trace_expression] = STATE(725), - [sym__parenthesized_expression] = STATE(688), - [sym_range_expression] = STATE(725), - [sym_subscript_expression] = STATE(725), - [sym_member_expression] = STATE(679), - [sym__lhs_expression] = STATE(1075), - [sym__call] = STATE(726), - [sym__constructor_call] = STATE(702), - [sym_call_expression] = STATE(478), - [sym_operator] = STATE(783), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(707), - [sym_integer] = STATE(707), - [sym_float] = STATE(707), - [sym_bool] = STATE(707), - [sym_string] = STATE(692), - [sym_null] = STATE(707), - [sym_array] = STATE(707), - [sym_map] = STATE(707), - [sym_object] = STATE(707), - [sym_pair] = STATE(707), - [sym_identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1655), - [anon_sym_switch] = ACTIONS(1657), - [anon_sym_LBRACE] = ACTIONS(1659), - [anon_sym_cast] = ACTIONS(1713), - [anon_sym_DOLLARtype] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1665), - [anon_sym_this] = ACTIONS(250), - [anon_sym_new] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(1671), - [aux_sym_integer_token1] = ACTIONS(1673), - [aux_sym_integer_token2] = ACTIONS(1675), - [aux_sym_float_token1] = ACTIONS(1677), - [aux_sym_float_token2] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [aux_sym_string_token1] = ACTIONS(1683), - [aux_sym_string_token3] = ACTIONS(1685), - [sym_comment] = ACTIONS(3), - }, - [374] = { - [sym__rhs_expression] = STATE(541), - [sym__unaryExpression] = STATE(1198), - [sym_runtime_type_check_expression] = STATE(1198), - [sym_switch_expression] = STATE(1198), - [sym_cast_expression] = STATE(1198), - [sym_type_trace_expression] = STATE(1198), - [sym__parenthesized_expression] = STATE(1128), - [sym_range_expression] = STATE(1198), - [sym_subscript_expression] = STATE(1198), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(541), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [375] = { - [sym__rhs_expression] = STATE(511), - [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(65), - [sym_range_expression] = STATE(66), - [sym_subscript_expression] = STATE(66), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(511), - [sym_operator] = STATE(792), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(779), - [sym_integer] = STATE(779), - [sym_float] = STATE(779), - [sym_bool] = STATE(779), - [sym_string] = STATE(782), - [sym_null] = STATE(779), - [sym_array] = STATE(779), - [sym_map] = STATE(779), - [sym_object] = STATE(779), - [sym_pair] = STATE(779), - [sym_identifier] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1715), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(1707), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [376] = { - [sym__rhs_expression] = STATE(481), - [sym__unaryExpression] = STATE(725), - [sym_runtime_type_check_expression] = STATE(725), - [sym_switch_expression] = STATE(725), - [sym_cast_expression] = STATE(725), - [sym_type_trace_expression] = STATE(725), - [sym__parenthesized_expression] = STATE(688), - [sym_range_expression] = STATE(725), - [sym_subscript_expression] = STATE(725), - [sym_member_expression] = STATE(679), - [sym__lhs_expression] = STATE(1075), - [sym__call] = STATE(726), - [sym__constructor_call] = STATE(702), - [sym_call_expression] = STATE(481), - [sym_operator] = STATE(793), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(707), - [sym_integer] = STATE(707), - [sym_float] = STATE(707), - [sym_bool] = STATE(707), - [sym_string] = STATE(692), - [sym_null] = STATE(707), - [sym_array] = STATE(707), - [sym_map] = STATE(707), - [sym_object] = STATE(707), - [sym_pair] = STATE(707), - [sym_identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1655), - [anon_sym_switch] = ACTIONS(1657), - [anon_sym_LBRACE] = ACTIONS(1659), - [anon_sym_cast] = ACTIONS(1717), - [anon_sym_DOLLARtype] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1665), - [anon_sym_this] = ACTIONS(250), - [anon_sym_new] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(1671), - [aux_sym_integer_token1] = ACTIONS(1673), - [aux_sym_integer_token2] = ACTIONS(1675), - [aux_sym_float_token1] = ACTIONS(1677), - [aux_sym_float_token2] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [aux_sym_string_token1] = ACTIONS(1683), - [aux_sym_string_token3] = ACTIONS(1685), - [sym_comment] = ACTIONS(3), - }, - [377] = { - [sym__rhs_expression] = STATE(524), - [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(65), - [sym_range_expression] = STATE(66), - [sym_subscript_expression] = STATE(66), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(524), - [sym_operator] = STATE(786), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1719), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [378] = { - [sym__rhs_expression] = STATE(565), - [sym__unaryExpression] = STATE(1284), - [sym_runtime_type_check_expression] = STATE(1284), - [sym_switch_expression] = STATE(1284), - [sym_cast_expression] = STATE(1284), - [sym_type_trace_expression] = STATE(1284), - [sym__parenthesized_expression] = STATE(1240), - [sym_range_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(565), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [379] = { - [sym__rhs_expression] = STATE(495), - [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(65), - [sym_range_expression] = STATE(66), - [sym_subscript_expression] = STATE(66), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(495), - [sym_operator] = STATE(776), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(751), - [sym_integer] = STATE(751), - [sym_float] = STATE(751), - [sym_bool] = STATE(751), - [sym_string] = STATE(743), - [sym_null] = STATE(751), - [sym_array] = STATE(751), - [sym_map] = STATE(751), - [sym_object] = STATE(751), - [sym_pair] = STATE(751), - [sym_identifier] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1723), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(250), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [380] = { - [sym__rhs_expression] = STATE(578), - [sym__unaryExpression] = STATE(1351), - [sym_runtime_type_check_expression] = STATE(1351), - [sym_switch_expression] = STATE(1351), - [sym_cast_expression] = STATE(1351), - [sym_type_trace_expression] = STATE(1351), - [sym__parenthesized_expression] = STATE(1253), - [sym_range_expression] = STATE(1351), - [sym_subscript_expression] = STATE(1351), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(578), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [381] = { - [sym__rhs_expression] = STATE(567), - [sym__unaryExpression] = STATE(1289), - [sym_runtime_type_check_expression] = STATE(1289), - [sym_switch_expression] = STATE(1289), - [sym_cast_expression] = STATE(1289), - [sym_type_trace_expression] = STATE(1289), - [sym__parenthesized_expression] = STATE(1229), - [sym_range_expression] = STATE(1289), - [sym_subscript_expression] = STATE(1289), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(567), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [382] = { - [sym__rhs_expression] = STATE(559), - [sym__unaryExpression] = STATE(1308), - [sym_runtime_type_check_expression] = STATE(1308), - [sym_switch_expression] = STATE(1308), - [sym_cast_expression] = STATE(1308), - [sym_type_trace_expression] = STATE(1308), - [sym__parenthesized_expression] = STATE(1190), - [sym_range_expression] = STATE(1308), - [sym_subscript_expression] = STATE(1308), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(559), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [383] = { - [sym__rhs_expression] = STATE(491), - [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(65), - [sym_range_expression] = STATE(66), - [sym_subscript_expression] = STATE(66), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(491), - [sym_operator] = STATE(775), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(751), - [sym_integer] = STATE(751), - [sym_float] = STATE(751), - [sym_bool] = STATE(751), - [sym_string] = STATE(743), - [sym_null] = STATE(751), - [sym_array] = STATE(751), - [sym_map] = STATE(751), - [sym_object] = STATE(751), - [sym_pair] = STATE(751), - [sym_identifier] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1725), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(250), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [384] = { - [sym__rhs_expression] = STATE(561), - [sym__unaryExpression] = STATE(1263), - [sym_runtime_type_check_expression] = STATE(1263), - [sym_switch_expression] = STATE(1263), - [sym_cast_expression] = STATE(1263), - [sym_type_trace_expression] = STATE(1263), - [sym__parenthesized_expression] = STATE(1206), - [sym_range_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(561), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [385] = { - [sym__rhs_expression] = STATE(474), - [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(65), - [sym_range_expression] = STATE(66), - [sym_subscript_expression] = STATE(66), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(474), - [sym_operator] = STATE(780), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(694), - [sym_integer] = STATE(694), - [sym_float] = STATE(694), - [sym_bool] = STATE(694), - [sym_string] = STATE(675), - [sym_null] = STATE(694), - [sym_array] = STATE(694), - [sym_map] = STATE(694), - [sym_object] = STATE(694), - [sym_pair] = STATE(694), - [sym_identifier] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1727), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(250), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [386] = { - [sym__rhs_expression] = STATE(582), - [sym__unaryExpression] = STATE(1347), - [sym_runtime_type_check_expression] = STATE(1347), - [sym_switch_expression] = STATE(1347), - [sym_cast_expression] = STATE(1347), - [sym_type_trace_expression] = STATE(1347), - [sym__parenthesized_expression] = STATE(1247), - [sym_range_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(582), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [387] = { - [sym__rhs_expression] = STATE(552), - [sym__unaryExpression] = STATE(1301), - [sym_runtime_type_check_expression] = STATE(1301), - [sym_switch_expression] = STATE(1301), - [sym_cast_expression] = STATE(1301), - [sym_type_trace_expression] = STATE(1301), - [sym__parenthesized_expression] = STATE(1199), - [sym_range_expression] = STATE(1301), - [sym_subscript_expression] = STATE(1301), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(552), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [388] = { - [sym__rhs_expression] = STATE(570), - [sym__unaryExpression] = STATE(1287), - [sym_runtime_type_check_expression] = STATE(1287), - [sym_switch_expression] = STATE(1287), - [sym_cast_expression] = STATE(1287), - [sym_type_trace_expression] = STATE(1287), - [sym__parenthesized_expression] = STATE(1231), - [sym_range_expression] = STATE(1287), - [sym_subscript_expression] = STATE(1287), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(570), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [389] = { - [sym__rhs_expression] = STATE(584), - [sym__unaryExpression] = STATE(1344), - [sym_runtime_type_check_expression] = STATE(1344), - [sym_switch_expression] = STATE(1344), - [sym_cast_expression] = STATE(1344), - [sym_type_trace_expression] = STATE(1344), - [sym__parenthesized_expression] = STATE(1246), - [sym_range_expression] = STATE(1344), - [sym_subscript_expression] = STATE(1344), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(584), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [390] = { - [sym__rhs_expression] = STATE(576), - [sym__unaryExpression] = STATE(1355), - [sym_runtime_type_check_expression] = STATE(1355), - [sym_switch_expression] = STATE(1355), - [sym_cast_expression] = STATE(1355), - [sym_type_trace_expression] = STATE(1355), - [sym__parenthesized_expression] = STATE(1249), - [sym_range_expression] = STATE(1355), - [sym_subscript_expression] = STATE(1355), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(576), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [391] = { - [sym__rhs_expression] = STATE(545), - [sym__unaryExpression] = STATE(1265), - [sym_runtime_type_check_expression] = STATE(1265), - [sym_switch_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym_type_trace_expression] = STATE(1265), - [sym__parenthesized_expression] = STATE(1259), - [sym_range_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(545), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [392] = { - [sym__rhs_expression] = STATE(556), - [sym__unaryExpression] = STATE(1271), - [sym_runtime_type_check_expression] = STATE(1271), - [sym_switch_expression] = STATE(1271), - [sym_cast_expression] = STATE(1271), - [sym_type_trace_expression] = STATE(1271), - [sym__parenthesized_expression] = STATE(1261), - [sym_range_expression] = STATE(1271), - [sym_subscript_expression] = STATE(1271), - [sym_member_expression] = STATE(97), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(556), - [sym_operator] = STATE(810), - [sym__unaryOperator] = STATE(88), - [sym__prefixUnaryOperator] = STATE(88), - [sym__postfixUnaryOperator] = STATE(88), - [sym__binaryOperator] = STATE(88), - [sym__arithmeticOperator] = STATE(952), - [sym__bitwiseOperator] = STATE(952), - [sym__logicalOperator] = STATE(88), - [sym__comparisonOperator] = STATE(88), - [sym__miscOperator] = STATE(88), - [sym__assignmentOperator] = STATE(88), - [sym__compoundAssignmentOperator] = STATE(88), - [sym__literal] = STATE(699), - [sym_integer] = STATE(699), - [sym_float] = STATE(699), - [sym_bool] = STATE(699), - [sym_string] = STATE(675), - [sym_null] = STATE(699), - [sym_array] = STATE(699), - [sym_map] = STATE(699), - [sym_object] = STATE(699), - [sym_pair] = STATE(699), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(230), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_cast] = ACTIONS(1649), - [anon_sym_DOLLARtype] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_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(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - }, - [393] = { - [sym_member_expression] = STATE(402), - [sym__lhs_expression] = STATE(72), - [sym__literal] = STATE(1139), - [sym_integer] = STATE(1139), - [sym_float] = STATE(1139), - [sym_bool] = STATE(1139), - [sym_string] = STATE(975), - [sym_null] = STATE(1139), - [sym_array] = STATE(1139), - [sym_map] = STATE(1139), - [sym_object] = STATE(1139), - [sym_pair] = STATE(1139), - [aux_sym_member_expression_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1729), - [anon_sym_package] = ACTIONS(248), - [anon_sym_import] = ACTIONS(248), - [anon_sym_using] = ACTIONS(248), - [anon_sym_throw] = ACTIONS(248), - [anon_sym_LPAREN] = ACTIONS(244), - [anon_sym_switch] = ACTIONS(248), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_case] = ACTIONS(248), - [anon_sym_default] = ACTIONS(248), - [anon_sym_cast] = ACTIONS(248), - [anon_sym_in] = ACTIONS(248), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(1731), - [anon_sym_AT] = ACTIONS(248), - [anon_sym_AT_COLON] = ACTIONS(244), - [anon_sym_if] = ACTIONS(248), - [anon_sym_else] = ACTIONS(248), - [anon_sym_new] = ACTIONS(248), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(248), - [anon_sym_final] = ACTIONS(248), - [anon_sym_abstract] = ACTIONS(248), - [anon_sym_class] = ACTIONS(248), - [anon_sym_extends] = ACTIONS(248), - [anon_sym_implements] = ACTIONS(248), - [anon_sym_interface] = ACTIONS(248), - [anon_sym_typedef] = ACTIONS(248), - [anon_sym_function] = ACTIONS(248), - [anon_sym_var] = ACTIONS(248), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(248), - [anon_sym_catch] = ACTIONS(248), - [anon_sym_continue] = ACTIONS(248), - [anon_sym_do] = ACTIONS(248), - [anon_sym_enum] = ACTIONS(248), - [anon_sym_extern] = ACTIONS(248), - [anon_sym_for] = ACTIONS(248), - [anon_sym_inline] = ACTIONS(248), - [anon_sym_macro] = ACTIONS(248), - [anon_sym_operator] = ACTIONS(248), - [anon_sym_overload] = ACTIONS(248), - [anon_sym_override] = ACTIONS(248), - [anon_sym_private] = ACTIONS(248), - [anon_sym_public] = ACTIONS(248), - [anon_sym_return] = ACTIONS(248), - [anon_sym_static] = ACTIONS(248), - [anon_sym_try] = ACTIONS(248), - [anon_sym_untyped] = ACTIONS(248), - [anon_sym_while] = ACTIONS(248), - [sym__semicolon] = ACTIONS(244), - }, - [394] = { - [sym_member_expression] = STATE(402), - [sym__lhs_expression] = STATE(72), - [sym__literal] = STATE(1139), - [sym_integer] = STATE(1139), - [sym_float] = STATE(1139), - [sym_bool] = STATE(1139), - [sym_string] = STATE(975), - [sym_null] = STATE(1139), - [sym_array] = STATE(1139), - [sym_map] = STATE(1139), - [sym_object] = STATE(1139), - [sym_pair] = STATE(1139), - [aux_sym_member_expression_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1729), - [anon_sym_package] = ACTIONS(254), - [anon_sym_import] = ACTIONS(254), - [anon_sym_using] = ACTIONS(254), - [anon_sym_throw] = ACTIONS(254), - [anon_sym_LPAREN] = ACTIONS(252), - [anon_sym_switch] = ACTIONS(254), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_case] = ACTIONS(254), - [anon_sym_default] = ACTIONS(254), - [anon_sym_cast] = ACTIONS(254), - [anon_sym_in] = ACTIONS(254), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(1731), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_AT_COLON] = ACTIONS(252), - [anon_sym_if] = ACTIONS(254), - [anon_sym_else] = ACTIONS(254), - [anon_sym_new] = ACTIONS(254), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(254), - [anon_sym_final] = ACTIONS(254), - [anon_sym_abstract] = ACTIONS(254), - [anon_sym_class] = ACTIONS(254), - [anon_sym_extends] = ACTIONS(254), - [anon_sym_implements] = ACTIONS(254), - [anon_sym_interface] = ACTIONS(254), - [anon_sym_typedef] = ACTIONS(254), - [anon_sym_function] = ACTIONS(254), - [anon_sym_var] = ACTIONS(254), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(254), - [anon_sym_catch] = ACTIONS(254), - [anon_sym_continue] = ACTIONS(254), - [anon_sym_do] = ACTIONS(254), - [anon_sym_enum] = ACTIONS(254), - [anon_sym_extern] = ACTIONS(254), - [anon_sym_for] = ACTIONS(254), - [anon_sym_inline] = ACTIONS(254), - [anon_sym_macro] = ACTIONS(254), - [anon_sym_operator] = ACTIONS(254), - [anon_sym_overload] = ACTIONS(254), - [anon_sym_override] = ACTIONS(254), - [anon_sym_private] = ACTIONS(254), - [anon_sym_public] = ACTIONS(254), - [anon_sym_return] = ACTIONS(254), - [anon_sym_static] = ACTIONS(254), - [anon_sym_try] = ACTIONS(254), - [anon_sym_untyped] = ACTIONS(254), - [anon_sym_while] = ACTIONS(254), - [sym__semicolon] = ACTIONS(252), - }, - [395] = { - [sym_member_expression] = STATE(402), - [sym__lhs_expression] = STATE(72), - [sym__literal] = STATE(1139), - [sym_integer] = STATE(1139), - [sym_float] = STATE(1139), - [sym_bool] = STATE(1139), - [sym_string] = STATE(975), - [sym_null] = STATE(1139), - [sym_array] = STATE(1139), - [sym_map] = STATE(1139), - [sym_object] = STATE(1139), - [sym_pair] = STATE(1139), - [aux_sym_member_expression_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1729), - [anon_sym_package] = ACTIONS(258), - [anon_sym_import] = ACTIONS(258), - [anon_sym_using] = ACTIONS(258), - [anon_sym_throw] = ACTIONS(258), - [anon_sym_LPAREN] = ACTIONS(256), - [anon_sym_switch] = ACTIONS(258), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_case] = ACTIONS(258), - [anon_sym_default] = ACTIONS(258), - [anon_sym_cast] = ACTIONS(258), - [anon_sym_in] = ACTIONS(258), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(1731), - [anon_sym_AT] = ACTIONS(258), - [anon_sym_AT_COLON] = ACTIONS(256), - [anon_sym_if] = ACTIONS(258), - [anon_sym_else] = ACTIONS(258), - [anon_sym_new] = ACTIONS(258), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(258), - [anon_sym_final] = ACTIONS(258), - [anon_sym_abstract] = ACTIONS(258), - [anon_sym_class] = ACTIONS(258), - [anon_sym_extends] = ACTIONS(258), - [anon_sym_implements] = ACTIONS(258), - [anon_sym_interface] = ACTIONS(258), - [anon_sym_typedef] = ACTIONS(258), - [anon_sym_function] = ACTIONS(258), - [anon_sym_var] = ACTIONS(258), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(258), - [anon_sym_catch] = ACTIONS(258), - [anon_sym_continue] = ACTIONS(258), - [anon_sym_do] = ACTIONS(258), - [anon_sym_enum] = ACTIONS(258), - [anon_sym_extern] = ACTIONS(258), - [anon_sym_for] = ACTIONS(258), - [anon_sym_inline] = ACTIONS(258), - [anon_sym_macro] = ACTIONS(258), - [anon_sym_operator] = ACTIONS(258), - [anon_sym_overload] = ACTIONS(258), - [anon_sym_override] = ACTIONS(258), - [anon_sym_private] = ACTIONS(258), - [anon_sym_public] = ACTIONS(258), - [anon_sym_return] = ACTIONS(258), - [anon_sym_static] = ACTIONS(258), - [anon_sym_try] = ACTIONS(258), - [anon_sym_untyped] = ACTIONS(258), - [anon_sym_while] = ACTIONS(258), - [sym__semicolon] = ACTIONS(256), - }, - [396] = { - [sym_member_expression] = STATE(402), - [sym__lhs_expression] = STATE(72), - [sym__literal] = STATE(1139), - [sym_integer] = STATE(1139), - [sym_float] = STATE(1139), - [sym_bool] = STATE(1139), - [sym_string] = STATE(975), - [sym_null] = STATE(1139), - [sym_array] = STATE(1139), - [sym_map] = STATE(1139), - [sym_object] = STATE(1139), - [sym_pair] = STATE(1139), - [aux_sym_member_expression_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1729), - [anon_sym_package] = ACTIONS(306), - [anon_sym_import] = ACTIONS(306), - [anon_sym_using] = ACTIONS(306), - [anon_sym_throw] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_switch] = ACTIONS(306), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_case] = ACTIONS(306), - [anon_sym_default] = ACTIONS(306), - [anon_sym_cast] = ACTIONS(306), - [anon_sym_in] = ACTIONS(306), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(1731), - [anon_sym_AT] = ACTIONS(306), - [anon_sym_AT_COLON] = ACTIONS(304), - [anon_sym_if] = ACTIONS(306), - [anon_sym_else] = ACTIONS(306), - [anon_sym_new] = ACTIONS(306), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(306), - [anon_sym_final] = ACTIONS(306), - [anon_sym_abstract] = ACTIONS(306), - [anon_sym_class] = ACTIONS(306), - [anon_sym_extends] = ACTIONS(306), - [anon_sym_implements] = ACTIONS(306), - [anon_sym_interface] = ACTIONS(306), - [anon_sym_typedef] = ACTIONS(306), - [anon_sym_function] = ACTIONS(306), - [anon_sym_var] = ACTIONS(306), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(306), - [anon_sym_catch] = ACTIONS(306), - [anon_sym_continue] = ACTIONS(306), - [anon_sym_do] = ACTIONS(306), - [anon_sym_enum] = ACTIONS(306), - [anon_sym_extern] = ACTIONS(306), - [anon_sym_for] = ACTIONS(306), - [anon_sym_inline] = ACTIONS(306), - [anon_sym_macro] = ACTIONS(306), - [anon_sym_operator] = ACTIONS(306), - [anon_sym_overload] = ACTIONS(306), - [anon_sym_override] = ACTIONS(306), - [anon_sym_private] = ACTIONS(306), - [anon_sym_public] = ACTIONS(306), - [anon_sym_return] = ACTIONS(306), - [anon_sym_static] = ACTIONS(306), - [anon_sym_try] = ACTIONS(306), - [anon_sym_untyped] = ACTIONS(306), - [anon_sym_while] = ACTIONS(306), - [sym__semicolon] = ACTIONS(304), - }, - [397] = { - [sym_member_expression] = STATE(402), - [sym__lhs_expression] = STATE(72), - [sym__literal] = STATE(1139), - [sym_integer] = STATE(1139), - [sym_float] = STATE(1139), - [sym_bool] = STATE(1139), - [sym_string] = STATE(975), - [sym_null] = STATE(1139), - [sym_array] = STATE(1139), - [sym_map] = STATE(1139), - [sym_object] = STATE(1139), - [sym_pair] = STATE(1139), - [aux_sym_member_expression_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1729), - [anon_sym_package] = ACTIONS(310), - [anon_sym_import] = ACTIONS(310), - [anon_sym_using] = ACTIONS(310), - [anon_sym_throw] = ACTIONS(310), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_switch] = ACTIONS(310), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_case] = ACTIONS(310), - [anon_sym_default] = ACTIONS(310), - [anon_sym_cast] = ACTIONS(310), - [anon_sym_in] = ACTIONS(310), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(1731), - [anon_sym_AT] = ACTIONS(310), - [anon_sym_AT_COLON] = ACTIONS(308), - [anon_sym_if] = ACTIONS(310), - [anon_sym_else] = ACTIONS(310), - [anon_sym_new] = ACTIONS(310), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(310), - [anon_sym_final] = ACTIONS(310), - [anon_sym_abstract] = ACTIONS(310), - [anon_sym_class] = ACTIONS(310), - [anon_sym_extends] = ACTIONS(310), - [anon_sym_implements] = ACTIONS(310), - [anon_sym_interface] = ACTIONS(310), - [anon_sym_typedef] = ACTIONS(310), - [anon_sym_function] = ACTIONS(310), - [anon_sym_var] = ACTIONS(310), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(310), - [anon_sym_catch] = ACTIONS(310), - [anon_sym_continue] = ACTIONS(310), - [anon_sym_do] = ACTIONS(310), - [anon_sym_enum] = ACTIONS(310), - [anon_sym_extern] = ACTIONS(310), - [anon_sym_for] = ACTIONS(310), - [anon_sym_inline] = ACTIONS(310), - [anon_sym_macro] = ACTIONS(310), - [anon_sym_operator] = ACTIONS(310), - [anon_sym_overload] = ACTIONS(310), - [anon_sym_override] = ACTIONS(310), - [anon_sym_private] = ACTIONS(310), - [anon_sym_public] = ACTIONS(310), - [anon_sym_return] = ACTIONS(310), - [anon_sym_static] = ACTIONS(310), - [anon_sym_try] = ACTIONS(310), - [anon_sym_untyped] = ACTIONS(310), - [anon_sym_while] = ACTIONS(310), - [sym__semicolon] = ACTIONS(308), - }, - [398] = { - [sym_member_expression] = STATE(402), - [sym__lhs_expression] = STATE(72), - [sym__literal] = STATE(1139), - [sym_integer] = STATE(1139), - [sym_float] = STATE(1139), - [sym_bool] = STATE(1139), - [sym_string] = STATE(975), - [sym_null] = STATE(1139), - [sym_array] = STATE(1139), - [sym_map] = STATE(1139), - [sym_object] = STATE(1139), - [sym_pair] = STATE(1139), - [aux_sym_member_expression_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1729), - [anon_sym_package] = ACTIONS(262), - [anon_sym_import] = ACTIONS(262), - [anon_sym_using] = ACTIONS(262), - [anon_sym_throw] = ACTIONS(262), - [anon_sym_LPAREN] = ACTIONS(260), - [anon_sym_switch] = ACTIONS(262), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_case] = ACTIONS(262), - [anon_sym_default] = ACTIONS(262), - [anon_sym_cast] = ACTIONS(262), - [anon_sym_in] = ACTIONS(262), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(1731), - [anon_sym_AT] = ACTIONS(262), - [anon_sym_AT_COLON] = ACTIONS(260), - [anon_sym_if] = ACTIONS(262), - [anon_sym_else] = ACTIONS(262), - [anon_sym_new] = ACTIONS(262), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(262), - [anon_sym_final] = ACTIONS(262), - [anon_sym_abstract] = ACTIONS(262), - [anon_sym_class] = ACTIONS(262), - [anon_sym_extends] = ACTIONS(262), - [anon_sym_implements] = ACTIONS(262), - [anon_sym_interface] = ACTIONS(262), - [anon_sym_typedef] = ACTIONS(262), - [anon_sym_function] = ACTIONS(262), - [anon_sym_var] = ACTIONS(262), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(262), - [anon_sym_catch] = ACTIONS(262), - [anon_sym_continue] = ACTIONS(262), - [anon_sym_do] = ACTIONS(262), - [anon_sym_enum] = ACTIONS(262), - [anon_sym_extern] = ACTIONS(262), - [anon_sym_for] = ACTIONS(262), - [anon_sym_inline] = ACTIONS(262), - [anon_sym_macro] = ACTIONS(262), - [anon_sym_operator] = ACTIONS(262), - [anon_sym_overload] = ACTIONS(262), - [anon_sym_override] = ACTIONS(262), - [anon_sym_private] = ACTIONS(262), - [anon_sym_public] = ACTIONS(262), - [anon_sym_return] = ACTIONS(262), - [anon_sym_static] = ACTIONS(262), - [anon_sym_try] = ACTIONS(262), - [anon_sym_untyped] = ACTIONS(262), - [anon_sym_while] = ACTIONS(262), - [sym__semicolon] = ACTIONS(260), - }, - [399] = { - [sym__rhs_expression] = STATE(1320), - [sym_member_expression] = STATE(961), - [sym__lhs_expression] = STATE(1059), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(1320), - [sym__literal] = STATE(1094), - [sym_integer] = STATE(1094), - [sym_float] = STATE(1094), - [sym_bool] = STATE(1094), - [sym_string] = STATE(1120), - [sym_null] = STATE(1094), - [sym_array] = STATE(1094), - [sym_map] = STATE(1094), - [sym_object] = STATE(1094), - [sym_pair] = STATE(1094), - [sym_identifier] = ACTIONS(1733), - [anon_sym_package] = ACTIONS(228), - [anon_sym_import] = ACTIONS(228), - [anon_sym_using] = ACTIONS(228), - [anon_sym_throw] = ACTIONS(228), - [anon_sym_switch] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_case] = ACTIONS(228), - [anon_sym__] = ACTIONS(1735), - [anon_sym_default] = ACTIONS(228), - [anon_sym_cast] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(228), - [anon_sym_else] = ACTIONS(228), - [anon_sym_new] = ACTIONS(1092), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(228), - [anon_sym_final] = ACTIONS(228), - [anon_sym_abstract] = ACTIONS(228), - [anon_sym_class] = ACTIONS(228), - [anon_sym_extends] = ACTIONS(228), - [anon_sym_implements] = ACTIONS(228), - [anon_sym_interface] = ACTIONS(228), - [anon_sym_typedef] = ACTIONS(228), - [anon_sym_function] = ACTIONS(228), - [anon_sym_var] = ACTIONS(228), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(228), - [anon_sym_catch] = ACTIONS(228), - [anon_sym_continue] = ACTIONS(228), - [anon_sym_do] = ACTIONS(228), - [anon_sym_enum] = ACTIONS(228), - [anon_sym_extern] = ACTIONS(228), - [anon_sym_for] = ACTIONS(228), - [anon_sym_inline] = ACTIONS(228), - [anon_sym_macro] = ACTIONS(228), - [anon_sym_operator] = ACTIONS(228), - [anon_sym_overload] = ACTIONS(228), - [anon_sym_override] = ACTIONS(228), - [anon_sym_private] = ACTIONS(228), - [anon_sym_public] = ACTIONS(228), - [anon_sym_return] = ACTIONS(228), - [anon_sym_static] = ACTIONS(228), - [anon_sym_try] = ACTIONS(228), - [anon_sym_untyped] = ACTIONS(228), - [anon_sym_while] = ACTIONS(228), - }, - [400] = { - [sym_member_expression] = STATE(402), - [sym__lhs_expression] = STATE(72), - [sym__literal] = STATE(1139), - [sym_integer] = STATE(1139), - [sym_float] = STATE(1139), - [sym_bool] = STATE(1139), - [sym_string] = STATE(975), - [sym_null] = STATE(1139), - [sym_array] = STATE(1139), - [sym_map] = STATE(1139), - [sym_object] = STATE(1139), - [sym_pair] = STATE(1139), - [aux_sym_member_expression_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1739), - [anon_sym_package] = ACTIONS(269), - [anon_sym_import] = ACTIONS(269), - [anon_sym_using] = ACTIONS(269), - [anon_sym_throw] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(264), - [anon_sym_switch] = ACTIONS(269), - [anon_sym_LBRACE] = ACTIONS(271), - [anon_sym_case] = ACTIONS(269), - [anon_sym_default] = ACTIONS(269), - [anon_sym_cast] = ACTIONS(269), - [anon_sym_in] = ACTIONS(269), - [anon_sym_LBRACK] = ACTIONS(274), - [anon_sym_this] = ACTIONS(1742), - [anon_sym_AT] = ACTIONS(269), - [anon_sym_AT_COLON] = ACTIONS(264), - [anon_sym_if] = ACTIONS(269), - [anon_sym_else] = ACTIONS(269), - [anon_sym_new] = ACTIONS(269), - [anon_sym_null] = ACTIONS(280), - [anon_sym_dynamic] = ACTIONS(269), - [anon_sym_final] = ACTIONS(269), - [anon_sym_abstract] = ACTIONS(269), - [anon_sym_class] = ACTIONS(269), - [anon_sym_extends] = ACTIONS(269), - [anon_sym_implements] = ACTIONS(269), - [anon_sym_interface] = ACTIONS(269), - [anon_sym_typedef] = ACTIONS(269), - [anon_sym_function] = ACTIONS(269), - [anon_sym_var] = ACTIONS(269), - [aux_sym_integer_token1] = ACTIONS(283), - [aux_sym_integer_token2] = ACTIONS(286), - [aux_sym_float_token1] = ACTIONS(289), - [aux_sym_float_token2] = ACTIONS(292), - [anon_sym_true] = ACTIONS(295), - [anon_sym_false] = ACTIONS(295), - [aux_sym_string_token1] = ACTIONS(298), - [aux_sym_string_token3] = ACTIONS(301), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(269), - [anon_sym_catch] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(269), - [anon_sym_do] = ACTIONS(269), - [anon_sym_enum] = ACTIONS(269), - [anon_sym_extern] = ACTIONS(269), - [anon_sym_for] = ACTIONS(269), - [anon_sym_inline] = ACTIONS(269), - [anon_sym_macro] = ACTIONS(269), - [anon_sym_operator] = ACTIONS(269), - [anon_sym_overload] = ACTIONS(269), - [anon_sym_override] = ACTIONS(269), - [anon_sym_private] = ACTIONS(269), - [anon_sym_public] = ACTIONS(269), - [anon_sym_return] = ACTIONS(269), - [anon_sym_static] = ACTIONS(269), - [anon_sym_try] = ACTIONS(269), - [anon_sym_untyped] = ACTIONS(269), - [anon_sym_while] = ACTIONS(269), - [sym__semicolon] = ACTIONS(264), - }, - [401] = { - [sym__rhs_expression] = STATE(55), - [sym_member_expression] = STATE(80), - [sym__lhs_expression] = STATE(1054), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(55), - [sym__literal] = STATE(123), - [sym_integer] = STATE(123), - [sym_float] = STATE(123), - [sym_bool] = STATE(123), - [sym_string] = STATE(105), - [sym_null] = STATE(123), - [sym_array] = STATE(123), - [sym_map] = STATE(123), - [sym_object] = STATE(123), - [sym_pair] = STATE(123), - [sym_identifier] = ACTIONS(1745), - [anon_sym_package] = ACTIONS(228), - [anon_sym_import] = ACTIONS(228), - [anon_sym_using] = ACTIONS(228), - [anon_sym_throw] = ACTIONS(228), - [anon_sym_LPAREN] = ACTIONS(1747), - [anon_sym_switch] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_case] = ACTIONS(228), - [anon_sym_default] = ACTIONS(228), - [anon_sym_cast] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(236), - [anon_sym_if] = ACTIONS(228), - [anon_sym_else] = ACTIONS(228), - [anon_sym_new] = ACTIONS(238), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(228), - [anon_sym_final] = ACTIONS(228), - [anon_sym_abstract] = ACTIONS(228), - [anon_sym_class] = ACTIONS(228), - [anon_sym_extends] = ACTIONS(228), - [anon_sym_implements] = ACTIONS(228), - [anon_sym_interface] = ACTIONS(228), - [anon_sym_typedef] = ACTIONS(228), - [anon_sym_function] = ACTIONS(228), - [anon_sym_var] = ACTIONS(228), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(228), - [anon_sym_catch] = ACTIONS(228), - [anon_sym_continue] = ACTIONS(228), - [anon_sym_do] = ACTIONS(228), - [anon_sym_enum] = ACTIONS(228), - [anon_sym_extern] = ACTIONS(228), - [anon_sym_for] = ACTIONS(228), - [anon_sym_inline] = ACTIONS(228), - [anon_sym_macro] = ACTIONS(228), - [anon_sym_operator] = ACTIONS(228), - [anon_sym_overload] = ACTIONS(228), - [anon_sym_override] = ACTIONS(228), - [anon_sym_private] = ACTIONS(228), - [anon_sym_public] = ACTIONS(228), - [anon_sym_return] = ACTIONS(228), - [anon_sym_static] = ACTIONS(228), - [anon_sym_try] = ACTIONS(228), - [anon_sym_untyped] = ACTIONS(228), - [anon_sym_while] = ACTIONS(228), - }, - [402] = { - [sym_identifier] = ACTIONS(426), - [anon_sym_package] = ACTIONS(426), - [anon_sym_import] = ACTIONS(426), - [anon_sym_using] = ACTIONS(426), - [anon_sym_throw] = ACTIONS(426), - [anon_sym_LPAREN] = ACTIONS(424), - [anon_sym_RPAREN] = ACTIONS(424), - [anon_sym_switch] = ACTIONS(426), - [anon_sym_LBRACE] = ACTIONS(424), - [anon_sym_RBRACE] = ACTIONS(424), - [anon_sym_case] = ACTIONS(426), - [anon_sym_COLON] = ACTIONS(424), - [anon_sym_default] = ACTIONS(426), - [anon_sym_cast] = ACTIONS(426), - [anon_sym_COMMA] = ACTIONS(424), - [anon_sym_in] = ACTIONS(426), - [anon_sym_LBRACK] = ACTIONS(424), - [anon_sym_RBRACK] = ACTIONS(424), - [anon_sym_this] = ACTIONS(426), - [anon_sym_QMARK] = ACTIONS(424), - [anon_sym_DASH_GT] = ACTIONS(424), - [anon_sym_AT] = ACTIONS(426), - [anon_sym_AT_COLON] = ACTIONS(424), - [anon_sym_if] = ACTIONS(426), - [anon_sym_else] = ACTIONS(426), - [anon_sym_new] = ACTIONS(426), - [anon_sym_LT] = ACTIONS(424), - [anon_sym_GT] = ACTIONS(424), - [anon_sym_EQ] = ACTIONS(424), - [anon_sym_null] = ACTIONS(426), - [anon_sym_dynamic] = ACTIONS(426), - [anon_sym_final] = ACTIONS(426), - [anon_sym_abstract] = ACTIONS(426), - [anon_sym_class] = ACTIONS(426), - [anon_sym_extends] = ACTIONS(426), - [anon_sym_implements] = ACTIONS(426), - [anon_sym_interface] = ACTIONS(426), - [anon_sym_typedef] = ACTIONS(426), - [anon_sym_function] = ACTIONS(426), - [anon_sym_var] = ACTIONS(426), - [aux_sym_integer_token1] = ACTIONS(426), - [aux_sym_integer_token2] = ACTIONS(424), - [aux_sym_float_token1] = ACTIONS(426), - [aux_sym_float_token2] = ACTIONS(424), - [anon_sym_true] = ACTIONS(426), - [anon_sym_false] = ACTIONS(426), - [aux_sym_string_token1] = ACTIONS(424), - [aux_sym_string_token3] = ACTIONS(424), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(426), - [anon_sym_catch] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(426), - [anon_sym_do] = ACTIONS(426), - [anon_sym_enum] = ACTIONS(426), - [anon_sym_extern] = ACTIONS(426), - [anon_sym_for] = ACTIONS(426), - [anon_sym_inline] = ACTIONS(426), - [anon_sym_macro] = ACTIONS(426), - [anon_sym_operator] = ACTIONS(426), - [anon_sym_overload] = ACTIONS(426), - [anon_sym_override] = ACTIONS(426), - [anon_sym_private] = ACTIONS(426), - [anon_sym_public] = ACTIONS(426), - [anon_sym_return] = ACTIONS(426), - [anon_sym_static] = ACTIONS(426), - [anon_sym_try] = ACTIONS(426), - [anon_sym_untyped] = ACTIONS(426), - [anon_sym_while] = ACTIONS(426), - [sym__semicolon] = ACTIONS(424), - }, - [403] = { - [sym_member_expression] = STATE(402), - [sym__lhs_expression] = STATE(1054), - [sym__call] = STATE(96), - [sym__literal] = STATE(1133), - [sym_integer] = STATE(1133), - [sym_float] = STATE(1133), - [sym_bool] = STATE(1133), - [sym_string] = STATE(975), - [sym_null] = STATE(1133), - [sym_array] = STATE(1133), - [sym_map] = STATE(1133), - [sym_object] = STATE(1133), - [sym_pair] = STATE(1133), - [sym_identifier] = ACTIONS(1749), - [anon_sym_package] = ACTIONS(228), - [anon_sym_import] = ACTIONS(228), - [anon_sym_using] = ACTIONS(228), - [anon_sym_throw] = ACTIONS(228), - [anon_sym_switch] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_case] = ACTIONS(228), - [anon_sym_default] = ACTIONS(228), - [anon_sym_cast] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(1751), - [anon_sym_if] = ACTIONS(228), - [anon_sym_else] = ACTIONS(228), - [anon_sym_new] = ACTIONS(228), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(228), - [anon_sym_final] = ACTIONS(228), - [anon_sym_abstract] = ACTIONS(228), - [anon_sym_class] = ACTIONS(228), - [anon_sym_extends] = ACTIONS(228), - [anon_sym_implements] = ACTIONS(228), - [anon_sym_interface] = ACTIONS(228), - [anon_sym_typedef] = ACTIONS(228), - [anon_sym_function] = ACTIONS(228), - [anon_sym_var] = ACTIONS(228), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(228), - [anon_sym_catch] = ACTIONS(228), - [anon_sym_continue] = ACTIONS(228), - [anon_sym_do] = ACTIONS(228), - [anon_sym_enum] = ACTIONS(228), - [anon_sym_extern] = ACTIONS(228), - [anon_sym_for] = ACTIONS(228), - [anon_sym_inline] = ACTIONS(228), - [anon_sym_macro] = ACTIONS(228), - [anon_sym_operator] = ACTIONS(228), - [anon_sym_overload] = ACTIONS(228), - [anon_sym_override] = ACTIONS(228), - [anon_sym_private] = ACTIONS(228), - [anon_sym_public] = ACTIONS(228), - [anon_sym_return] = ACTIONS(228), - [anon_sym_static] = ACTIONS(228), - [anon_sym_try] = ACTIONS(228), - [anon_sym_untyped] = ACTIONS(228), - [anon_sym_while] = ACTIONS(228), - }, - [404] = { - [sym_member_expression] = STATE(402), - [sym__lhs_expression] = STATE(991), - [sym__literal] = STATE(1133), - [sym_integer] = STATE(1133), - [sym_float] = STATE(1133), - [sym_bool] = STATE(1133), - [sym_string] = STATE(975), - [sym_null] = STATE(1133), - [sym_array] = STATE(1133), - [sym_map] = STATE(1133), - [sym_object] = STATE(1133), - [sym_pair] = STATE(1133), - [sym_identifier] = ACTIONS(1749), - [anon_sym_package] = ACTIONS(228), - [anon_sym_import] = ACTIONS(228), - [anon_sym_using] = ACTIONS(228), - [anon_sym_throw] = ACTIONS(228), - [anon_sym_switch] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_case] = ACTIONS(228), - [anon_sym_default] = ACTIONS(228), - [anon_sym_cast] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(1751), - [anon_sym_if] = ACTIONS(228), - [anon_sym_else] = ACTIONS(228), - [anon_sym_new] = ACTIONS(228), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(228), - [anon_sym_final] = ACTIONS(228), - [anon_sym_abstract] = ACTIONS(228), - [anon_sym_class] = ACTIONS(228), - [anon_sym_extends] = ACTIONS(228), - [anon_sym_implements] = ACTIONS(228), - [anon_sym_interface] = ACTIONS(228), - [anon_sym_typedef] = ACTIONS(228), - [anon_sym_function] = ACTIONS(228), - [anon_sym_var] = ACTIONS(228), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(228), - [anon_sym_catch] = ACTIONS(228), - [anon_sym_continue] = ACTIONS(228), - [anon_sym_do] = ACTIONS(228), - [anon_sym_enum] = ACTIONS(228), - [anon_sym_extern] = ACTIONS(228), - [anon_sym_for] = ACTIONS(228), - [anon_sym_inline] = ACTIONS(228), - [anon_sym_macro] = ACTIONS(228), - [anon_sym_operator] = ACTIONS(228), - [anon_sym_overload] = ACTIONS(228), - [anon_sym_override] = ACTIONS(228), - [anon_sym_private] = ACTIONS(228), - [anon_sym_public] = ACTIONS(228), - [anon_sym_return] = ACTIONS(228), - [anon_sym_static] = ACTIONS(228), - [anon_sym_try] = ACTIONS(228), - [anon_sym_untyped] = ACTIONS(228), - [anon_sym_while] = ACTIONS(228), - }, - [405] = { - [sym_member_expression] = STATE(60), - [sym__lhs_expression] = STATE(521), - [sym__literal] = STATE(1162), - [sym_integer] = STATE(1162), - [sym_float] = STATE(1162), - [sym_bool] = STATE(1162), - [sym_string] = STATE(975), - [sym_null] = STATE(1162), - [sym_array] = STATE(1162), - [sym_map] = STATE(1162), - [sym_object] = STATE(1162), - [sym_pair] = STATE(1162), - [sym_identifier] = ACTIONS(1753), - [anon_sym_package] = ACTIONS(228), - [anon_sym_import] = ACTIONS(228), - [anon_sym_using] = ACTIONS(228), - [anon_sym_throw] = ACTIONS(228), - [anon_sym_switch] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_case] = ACTIONS(228), - [anon_sym_default] = ACTIONS(228), - [anon_sym_cast] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(228), - [anon_sym_else] = ACTIONS(228), - [anon_sym_new] = ACTIONS(228), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(228), - [anon_sym_final] = ACTIONS(228), - [anon_sym_abstract] = ACTIONS(228), - [anon_sym_class] = ACTIONS(228), - [anon_sym_extends] = ACTIONS(228), - [anon_sym_implements] = ACTIONS(228), - [anon_sym_interface] = ACTIONS(228), - [anon_sym_typedef] = ACTIONS(228), - [anon_sym_function] = ACTIONS(228), - [anon_sym_var] = ACTIONS(228), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(228), - [anon_sym_catch] = ACTIONS(228), - [anon_sym_continue] = ACTIONS(228), - [anon_sym_do] = ACTIONS(228), - [anon_sym_enum] = ACTIONS(228), - [anon_sym_extern] = ACTIONS(228), - [anon_sym_for] = ACTIONS(228), - [anon_sym_inline] = ACTIONS(228), - [anon_sym_macro] = ACTIONS(228), - [anon_sym_operator] = ACTIONS(228), - [anon_sym_overload] = ACTIONS(228), - [anon_sym_override] = ACTIONS(228), - [anon_sym_private] = ACTIONS(228), - [anon_sym_public] = ACTIONS(228), - [anon_sym_return] = ACTIONS(228), - [anon_sym_static] = ACTIONS(228), - [anon_sym_try] = ACTIONS(228), - [anon_sym_untyped] = ACTIONS(228), - [anon_sym_while] = ACTIONS(228), - }, - [406] = { - [sym_member_expression] = STATE(402), - [sym__lhs_expression] = STATE(1092), - [sym__literal] = STATE(1133), - [sym_integer] = STATE(1133), - [sym_float] = STATE(1133), - [sym_bool] = STATE(1133), - [sym_string] = STATE(975), - [sym_null] = STATE(1133), - [sym_array] = STATE(1133), - [sym_map] = STATE(1133), - [sym_object] = STATE(1133), - [sym_pair] = STATE(1133), - [sym_identifier] = ACTIONS(1749), - [anon_sym_package] = ACTIONS(228), - [anon_sym_import] = ACTIONS(228), - [anon_sym_using] = ACTIONS(228), - [anon_sym_throw] = ACTIONS(228), - [anon_sym_switch] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_case] = ACTIONS(228), - [anon_sym_default] = ACTIONS(228), - [anon_sym_cast] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(1751), - [anon_sym_if] = ACTIONS(228), - [anon_sym_else] = ACTIONS(228), - [anon_sym_new] = ACTIONS(1757), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(228), - [anon_sym_final] = ACTIONS(228), - [anon_sym_abstract] = ACTIONS(228), - [anon_sym_class] = ACTIONS(228), - [anon_sym_extends] = ACTIONS(228), - [anon_sym_implements] = ACTIONS(228), - [anon_sym_interface] = ACTIONS(228), - [anon_sym_typedef] = ACTIONS(228), - [anon_sym_function] = ACTIONS(228), - [anon_sym_var] = ACTIONS(228), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(228), - [anon_sym_catch] = ACTIONS(228), - [anon_sym_continue] = ACTIONS(228), - [anon_sym_do] = ACTIONS(228), - [anon_sym_enum] = ACTIONS(228), - [anon_sym_extern] = ACTIONS(228), - [anon_sym_for] = ACTIONS(228), - [anon_sym_inline] = ACTIONS(228), - [anon_sym_macro] = ACTIONS(228), - [anon_sym_operator] = ACTIONS(228), - [anon_sym_overload] = ACTIONS(228), - [anon_sym_override] = ACTIONS(228), - [anon_sym_private] = ACTIONS(228), - [anon_sym_public] = ACTIONS(228), - [anon_sym_return] = ACTIONS(228), - [anon_sym_static] = ACTIONS(228), - [anon_sym_try] = ACTIONS(228), - [anon_sym_untyped] = ACTIONS(228), - [anon_sym_while] = ACTIONS(228), - }, - [407] = { - [sym_member_expression] = STATE(402), - [sym__lhs_expression] = STATE(1267), - [sym__literal] = STATE(1139), - [sym_integer] = STATE(1139), - [sym_float] = STATE(1139), - [sym_bool] = STATE(1139), - [sym_string] = STATE(975), - [sym_null] = STATE(1139), - [sym_array] = STATE(1139), - [sym_map] = STATE(1139), - [sym_object] = STATE(1139), - [sym_pair] = STATE(1139), - [sym_identifier] = ACTIONS(1729), - [anon_sym_package] = ACTIONS(228), - [anon_sym_import] = ACTIONS(228), - [anon_sym_using] = ACTIONS(228), - [anon_sym_throw] = ACTIONS(228), - [anon_sym_switch] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_case] = ACTIONS(228), - [anon_sym_default] = ACTIONS(228), - [anon_sym_cast] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(1731), - [anon_sym_if] = ACTIONS(228), - [anon_sym_else] = ACTIONS(228), - [anon_sym_new] = ACTIONS(228), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(228), - [anon_sym_final] = ACTIONS(228), - [anon_sym_abstract] = ACTIONS(228), - [anon_sym_class] = ACTIONS(228), - [anon_sym_extends] = ACTIONS(228), - [anon_sym_implements] = ACTIONS(228), - [anon_sym_interface] = ACTIONS(228), - [anon_sym_typedef] = ACTIONS(228), - [anon_sym_function] = ACTIONS(228), - [anon_sym_var] = ACTIONS(228), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(228), - [anon_sym_catch] = ACTIONS(228), - [anon_sym_continue] = ACTIONS(228), - [anon_sym_do] = ACTIONS(228), - [anon_sym_enum] = ACTIONS(228), - [anon_sym_extern] = ACTIONS(228), - [anon_sym_for] = ACTIONS(228), - [anon_sym_inline] = ACTIONS(228), - [anon_sym_macro] = ACTIONS(228), - [anon_sym_operator] = ACTIONS(228), - [anon_sym_overload] = ACTIONS(228), - [anon_sym_override] = ACTIONS(228), - [anon_sym_private] = ACTIONS(228), - [anon_sym_public] = ACTIONS(228), - [anon_sym_return] = ACTIONS(228), - [anon_sym_static] = ACTIONS(228), - [anon_sym_try] = ACTIONS(228), - [anon_sym_untyped] = ACTIONS(228), - [anon_sym_while] = ACTIONS(228), - }, - [408] = { - [sym_member_expression] = STATE(402), - [sym__lhs_expression] = STATE(1100), - [sym__literal] = STATE(1133), - [sym_integer] = STATE(1133), - [sym_float] = STATE(1133), - [sym_bool] = STATE(1133), - [sym_string] = STATE(975), - [sym_null] = STATE(1133), - [sym_array] = STATE(1133), - [sym_map] = STATE(1133), - [sym_object] = STATE(1133), - [sym_pair] = STATE(1133), - [sym_identifier] = ACTIONS(1749), - [anon_sym_package] = ACTIONS(228), - [anon_sym_import] = ACTIONS(228), - [anon_sym_using] = ACTIONS(228), - [anon_sym_throw] = ACTIONS(228), - [anon_sym_switch] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_case] = ACTIONS(228), - [anon_sym_default] = ACTIONS(228), - [anon_sym_cast] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(1751), - [anon_sym_if] = ACTIONS(228), - [anon_sym_else] = ACTIONS(228), - [anon_sym_new] = ACTIONS(1759), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(228), - [anon_sym_final] = ACTIONS(228), - [anon_sym_abstract] = ACTIONS(228), - [anon_sym_class] = ACTIONS(228), - [anon_sym_extends] = ACTIONS(228), - [anon_sym_implements] = ACTIONS(228), - [anon_sym_interface] = ACTIONS(228), - [anon_sym_typedef] = ACTIONS(228), - [anon_sym_function] = ACTIONS(228), - [anon_sym_var] = ACTIONS(228), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(228), - [anon_sym_catch] = ACTIONS(228), - [anon_sym_continue] = ACTIONS(228), - [anon_sym_do] = ACTIONS(228), - [anon_sym_enum] = ACTIONS(228), - [anon_sym_extern] = ACTIONS(228), - [anon_sym_for] = ACTIONS(228), - [anon_sym_inline] = ACTIONS(228), - [anon_sym_macro] = ACTIONS(228), - [anon_sym_operator] = ACTIONS(228), - [anon_sym_overload] = ACTIONS(228), - [anon_sym_override] = ACTIONS(228), - [anon_sym_private] = ACTIONS(228), - [anon_sym_public] = ACTIONS(228), - [anon_sym_return] = ACTIONS(228), - [anon_sym_static] = ACTIONS(228), - [anon_sym_try] = ACTIONS(228), - [anon_sym_untyped] = ACTIONS(228), - [anon_sym_while] = ACTIONS(228), - }, - [409] = { - [sym_member_expression] = STATE(402), - [sym__lhs_expression] = STATE(1176), - [sym__literal] = STATE(1133), - [sym_integer] = STATE(1133), - [sym_float] = STATE(1133), - [sym_bool] = STATE(1133), - [sym_string] = STATE(975), - [sym_null] = STATE(1133), - [sym_array] = STATE(1133), - [sym_map] = STATE(1133), - [sym_object] = STATE(1133), - [sym_pair] = STATE(1133), - [sym_identifier] = ACTIONS(1749), - [anon_sym_package] = ACTIONS(228), - [anon_sym_import] = ACTIONS(228), - [anon_sym_using] = ACTIONS(228), - [anon_sym_throw] = ACTIONS(228), - [anon_sym_switch] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_case] = ACTIONS(228), - [anon_sym_default] = ACTIONS(228), - [anon_sym_cast] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(1751), - [anon_sym_if] = ACTIONS(228), - [anon_sym_else] = ACTIONS(228), - [anon_sym_new] = ACTIONS(228), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(228), - [anon_sym_final] = ACTIONS(228), - [anon_sym_abstract] = ACTIONS(228), - [anon_sym_class] = ACTIONS(228), - [anon_sym_extends] = ACTIONS(228), - [anon_sym_implements] = ACTIONS(228), - [anon_sym_interface] = ACTIONS(228), - [anon_sym_typedef] = ACTIONS(228), - [anon_sym_function] = ACTIONS(228), - [anon_sym_var] = ACTIONS(228), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(228), - [anon_sym_catch] = ACTIONS(228), - [anon_sym_continue] = ACTIONS(228), - [anon_sym_do] = ACTIONS(228), - [anon_sym_enum] = ACTIONS(228), - [anon_sym_extern] = ACTIONS(228), - [anon_sym_for] = ACTIONS(228), - [anon_sym_inline] = ACTIONS(228), - [anon_sym_macro] = ACTIONS(228), - [anon_sym_operator] = ACTIONS(228), - [anon_sym_overload] = ACTIONS(228), - [anon_sym_override] = ACTIONS(228), - [anon_sym_private] = ACTIONS(228), - [anon_sym_public] = ACTIONS(228), - [anon_sym_return] = ACTIONS(228), - [anon_sym_static] = ACTIONS(228), - [anon_sym_try] = ACTIONS(228), - [anon_sym_untyped] = ACTIONS(228), - [anon_sym_while] = ACTIONS(228), - }, - [410] = { - [sym_member_expression] = STATE(60), - [sym__lhs_expression] = STATE(522), - [sym__literal] = STATE(1162), - [sym_integer] = STATE(1162), - [sym_float] = STATE(1162), - [sym_bool] = STATE(1162), - [sym_string] = STATE(975), - [sym_null] = STATE(1162), - [sym_array] = STATE(1162), - [sym_map] = STATE(1162), - [sym_object] = STATE(1162), - [sym_pair] = STATE(1162), - [sym_identifier] = ACTIONS(1753), - [anon_sym_package] = ACTIONS(228), - [anon_sym_import] = ACTIONS(228), - [anon_sym_using] = ACTIONS(228), - [anon_sym_throw] = ACTIONS(228), - [anon_sym_switch] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_case] = ACTIONS(228), - [anon_sym_default] = ACTIONS(228), - [anon_sym_cast] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(228), - [anon_sym_else] = ACTIONS(228), - [anon_sym_new] = ACTIONS(228), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(228), - [anon_sym_final] = ACTIONS(228), - [anon_sym_abstract] = ACTIONS(228), - [anon_sym_class] = ACTIONS(1761), - [anon_sym_extends] = ACTIONS(228), - [anon_sym_implements] = ACTIONS(228), - [anon_sym_interface] = ACTIONS(228), - [anon_sym_typedef] = ACTIONS(228), - [anon_sym_function] = ACTIONS(228), - [anon_sym_var] = ACTIONS(228), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(228), - [anon_sym_catch] = ACTIONS(228), - [anon_sym_continue] = ACTIONS(228), - [anon_sym_do] = ACTIONS(228), - [anon_sym_enum] = ACTIONS(228), - [anon_sym_extern] = ACTIONS(228), - [anon_sym_for] = ACTIONS(228), - [anon_sym_inline] = ACTIONS(228), - [anon_sym_macro] = ACTIONS(228), - [anon_sym_operator] = ACTIONS(228), - [anon_sym_overload] = ACTIONS(228), - [anon_sym_override] = ACTIONS(228), - [anon_sym_private] = ACTIONS(228), - [anon_sym_public] = ACTIONS(228), - [anon_sym_return] = ACTIONS(228), - [anon_sym_static] = ACTIONS(228), - [anon_sym_try] = ACTIONS(228), - [anon_sym_untyped] = ACTIONS(228), - [anon_sym_while] = ACTIONS(228), - }, - [411] = { - [sym_member_expression] = STATE(60), - [sym__lhs_expression] = STATE(522), - [sym__literal] = STATE(1162), - [sym_integer] = STATE(1162), - [sym_float] = STATE(1162), - [sym_bool] = STATE(1162), - [sym_string] = STATE(975), - [sym_null] = STATE(1162), - [sym_array] = STATE(1162), - [sym_map] = STATE(1162), - [sym_object] = STATE(1162), - [sym_pair] = STATE(1162), - [sym_identifier] = ACTIONS(1753), - [anon_sym_package] = ACTIONS(228), - [anon_sym_import] = ACTIONS(228), - [anon_sym_using] = ACTIONS(228), - [anon_sym_throw] = ACTIONS(228), - [anon_sym_switch] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_case] = ACTIONS(228), - [anon_sym_default] = ACTIONS(228), - [anon_sym_cast] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(228), - [anon_sym_else] = ACTIONS(228), - [anon_sym_new] = ACTIONS(228), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(228), - [anon_sym_final] = ACTIONS(228), - [anon_sym_abstract] = ACTIONS(228), - [anon_sym_class] = ACTIONS(228), - [anon_sym_extends] = ACTIONS(228), - [anon_sym_implements] = ACTIONS(228), - [anon_sym_interface] = ACTIONS(228), - [anon_sym_typedef] = ACTIONS(228), - [anon_sym_function] = ACTIONS(228), - [anon_sym_var] = ACTIONS(228), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(228), - [anon_sym_catch] = ACTIONS(228), - [anon_sym_continue] = ACTIONS(228), - [anon_sym_do] = ACTIONS(228), - [anon_sym_enum] = ACTIONS(228), - [anon_sym_extern] = ACTIONS(228), - [anon_sym_for] = ACTIONS(228), - [anon_sym_inline] = ACTIONS(228), - [anon_sym_macro] = ACTIONS(228), - [anon_sym_operator] = ACTIONS(228), - [anon_sym_overload] = ACTIONS(228), - [anon_sym_override] = ACTIONS(228), - [anon_sym_private] = ACTIONS(228), - [anon_sym_public] = ACTIONS(228), - [anon_sym_return] = ACTIONS(228), - [anon_sym_static] = ACTIONS(228), - [anon_sym_try] = ACTIONS(228), - [anon_sym_untyped] = ACTIONS(228), - [anon_sym_while] = ACTIONS(228), - }, - [412] = { - [sym_member_expression] = STATE(60), - [sym__lhs_expression] = STATE(504), - [sym__literal] = STATE(1162), - [sym_integer] = STATE(1162), - [sym_float] = STATE(1162), - [sym_bool] = STATE(1162), - [sym_string] = STATE(975), - [sym_null] = STATE(1162), - [sym_array] = STATE(1162), - [sym_map] = STATE(1162), - [sym_object] = STATE(1162), - [sym_pair] = STATE(1162), - [sym_identifier] = ACTIONS(1753), - [anon_sym_package] = ACTIONS(228), - [anon_sym_import] = ACTIONS(228), - [anon_sym_using] = ACTIONS(228), - [anon_sym_throw] = ACTIONS(228), - [anon_sym_switch] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_case] = ACTIONS(228), - [anon_sym_default] = ACTIONS(228), - [anon_sym_cast] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(228), - [anon_sym_else] = ACTIONS(228), - [anon_sym_new] = ACTIONS(228), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(228), - [anon_sym_final] = ACTIONS(228), - [anon_sym_abstract] = ACTIONS(228), - [anon_sym_class] = ACTIONS(228), - [anon_sym_extends] = ACTIONS(228), - [anon_sym_implements] = ACTIONS(228), - [anon_sym_interface] = ACTIONS(228), - [anon_sym_typedef] = ACTIONS(228), - [anon_sym_function] = ACTIONS(228), - [anon_sym_var] = ACTIONS(228), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(228), - [anon_sym_catch] = ACTIONS(228), - [anon_sym_continue] = ACTIONS(228), - [anon_sym_do] = ACTIONS(228), - [anon_sym_enum] = ACTIONS(228), - [anon_sym_extern] = ACTIONS(228), - [anon_sym_for] = ACTIONS(228), - [anon_sym_inline] = ACTIONS(228), - [anon_sym_macro] = ACTIONS(228), - [anon_sym_operator] = ACTIONS(228), - [anon_sym_overload] = ACTIONS(228), - [anon_sym_override] = ACTIONS(228), - [anon_sym_private] = ACTIONS(228), - [anon_sym_public] = ACTIONS(228), - [anon_sym_return] = ACTIONS(228), - [anon_sym_static] = ACTIONS(228), - [anon_sym_try] = ACTIONS(228), - [anon_sym_untyped] = ACTIONS(228), - [anon_sym_while] = ACTIONS(228), - }, - [413] = { - [sym_member_expression] = STATE(402), - [sym__lhs_expression] = STATE(1109), - [sym__literal] = STATE(1133), - [sym_integer] = STATE(1133), - [sym_float] = STATE(1133), - [sym_bool] = STATE(1133), - [sym_string] = STATE(975), - [sym_null] = STATE(1133), - [sym_array] = STATE(1133), - [sym_map] = STATE(1133), - [sym_object] = STATE(1133), - [sym_pair] = STATE(1133), - [sym_identifier] = ACTIONS(1749), - [anon_sym_package] = ACTIONS(228), - [anon_sym_import] = ACTIONS(228), - [anon_sym_using] = ACTIONS(228), - [anon_sym_throw] = ACTIONS(228), - [anon_sym_switch] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_case] = ACTIONS(228), - [anon_sym_default] = ACTIONS(228), - [anon_sym_cast] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(1751), - [anon_sym_if] = ACTIONS(228), - [anon_sym_else] = ACTIONS(228), - [anon_sym_new] = ACTIONS(1763), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(228), - [anon_sym_final] = ACTIONS(228), - [anon_sym_abstract] = ACTIONS(228), - [anon_sym_class] = ACTIONS(228), - [anon_sym_extends] = ACTIONS(228), - [anon_sym_implements] = ACTIONS(228), - [anon_sym_interface] = ACTIONS(228), - [anon_sym_typedef] = ACTIONS(228), - [anon_sym_function] = ACTIONS(228), - [anon_sym_var] = ACTIONS(228), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(228), - [anon_sym_catch] = ACTIONS(228), - [anon_sym_continue] = ACTIONS(228), - [anon_sym_do] = ACTIONS(228), - [anon_sym_enum] = ACTIONS(228), - [anon_sym_extern] = ACTIONS(228), - [anon_sym_for] = ACTIONS(228), - [anon_sym_inline] = ACTIONS(228), - [anon_sym_macro] = ACTIONS(228), - [anon_sym_operator] = ACTIONS(228), - [anon_sym_overload] = ACTIONS(228), - [anon_sym_override] = ACTIONS(228), - [anon_sym_private] = ACTIONS(228), - [anon_sym_public] = ACTIONS(228), - [anon_sym_return] = ACTIONS(228), - [anon_sym_static] = ACTIONS(228), - [anon_sym_try] = ACTIONS(228), - [anon_sym_untyped] = ACTIONS(228), - [anon_sym_while] = ACTIONS(228), - }, - [414] = { - [sym_member_expression] = STATE(402), - [sym__lhs_expression] = STATE(1292), - [sym__literal] = STATE(1139), - [sym_integer] = STATE(1139), - [sym_float] = STATE(1139), - [sym_bool] = STATE(1139), - [sym_string] = STATE(975), - [sym_null] = STATE(1139), - [sym_array] = STATE(1139), - [sym_map] = STATE(1139), - [sym_object] = STATE(1139), - [sym_pair] = STATE(1139), - [sym_identifier] = ACTIONS(1729), - [anon_sym_package] = ACTIONS(228), - [anon_sym_import] = ACTIONS(228), - [anon_sym_using] = ACTIONS(228), - [anon_sym_throw] = ACTIONS(228), - [anon_sym_switch] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_case] = ACTIONS(228), - [anon_sym_default] = ACTIONS(228), - [anon_sym_cast] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(1731), - [anon_sym_if] = ACTIONS(228), - [anon_sym_else] = ACTIONS(228), - [anon_sym_new] = ACTIONS(228), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(228), - [anon_sym_final] = ACTIONS(228), - [anon_sym_abstract] = ACTIONS(228), - [anon_sym_class] = ACTIONS(228), - [anon_sym_extends] = ACTIONS(228), - [anon_sym_implements] = ACTIONS(228), - [anon_sym_interface] = ACTIONS(228), - [anon_sym_typedef] = ACTIONS(228), - [anon_sym_function] = ACTIONS(228), - [anon_sym_var] = ACTIONS(228), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(228), - [anon_sym_catch] = ACTIONS(228), - [anon_sym_continue] = ACTIONS(228), - [anon_sym_do] = ACTIONS(228), - [anon_sym_enum] = ACTIONS(228), - [anon_sym_extern] = ACTIONS(228), - [anon_sym_for] = ACTIONS(228), - [anon_sym_inline] = ACTIONS(228), - [anon_sym_macro] = ACTIONS(228), - [anon_sym_operator] = ACTIONS(228), - [anon_sym_overload] = ACTIONS(228), - [anon_sym_override] = ACTIONS(228), - [anon_sym_private] = ACTIONS(228), - [anon_sym_public] = ACTIONS(228), - [anon_sym_return] = ACTIONS(228), - [anon_sym_static] = ACTIONS(228), - [anon_sym_try] = ACTIONS(228), - [anon_sym_untyped] = ACTIONS(228), - [anon_sym_while] = ACTIONS(228), - }, - [415] = { - [sym_member_expression] = STATE(402), - [sym__lhs_expression] = STATE(1184), - [sym__literal] = STATE(1133), - [sym_integer] = STATE(1133), - [sym_float] = STATE(1133), - [sym_bool] = STATE(1133), - [sym_string] = STATE(975), - [sym_null] = STATE(1133), - [sym_array] = STATE(1133), - [sym_map] = STATE(1133), - [sym_object] = STATE(1133), - [sym_pair] = STATE(1133), - [sym_identifier] = ACTIONS(1749), - [anon_sym_package] = ACTIONS(228), - [anon_sym_import] = ACTIONS(228), - [anon_sym_using] = ACTIONS(228), - [anon_sym_throw] = ACTIONS(228), - [anon_sym_switch] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_case] = ACTIONS(228), - [anon_sym_default] = ACTIONS(228), - [anon_sym_cast] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(1751), - [anon_sym_if] = ACTIONS(228), - [anon_sym_else] = ACTIONS(228), - [anon_sym_new] = ACTIONS(228), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(228), - [anon_sym_final] = ACTIONS(228), - [anon_sym_abstract] = ACTIONS(228), - [anon_sym_class] = ACTIONS(228), - [anon_sym_extends] = ACTIONS(228), - [anon_sym_implements] = ACTIONS(228), - [anon_sym_interface] = ACTIONS(228), - [anon_sym_typedef] = ACTIONS(228), - [anon_sym_function] = ACTIONS(228), - [anon_sym_var] = ACTIONS(228), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(228), - [anon_sym_catch] = ACTIONS(228), - [anon_sym_continue] = ACTIONS(228), - [anon_sym_do] = ACTIONS(228), - [anon_sym_enum] = ACTIONS(228), - [anon_sym_extern] = ACTIONS(228), - [anon_sym_for] = ACTIONS(228), - [anon_sym_inline] = ACTIONS(228), - [anon_sym_macro] = ACTIONS(228), - [anon_sym_operator] = ACTIONS(228), - [anon_sym_overload] = ACTIONS(228), - [anon_sym_override] = ACTIONS(228), - [anon_sym_private] = ACTIONS(228), - [anon_sym_public] = ACTIONS(228), - [anon_sym_return] = ACTIONS(228), - [anon_sym_static] = ACTIONS(228), - [anon_sym_try] = ACTIONS(228), - [anon_sym_untyped] = ACTIONS(228), - [anon_sym_while] = ACTIONS(228), - }, - [416] = { - [sym_member_expression] = STATE(60), - [sym__lhs_expression] = STATE(504), - [sym__literal] = STATE(1162), - [sym_integer] = STATE(1162), - [sym_float] = STATE(1162), - [sym_bool] = STATE(1162), - [sym_string] = STATE(975), - [sym_null] = STATE(1162), - [sym_array] = STATE(1162), - [sym_map] = STATE(1162), - [sym_object] = STATE(1162), - [sym_pair] = STATE(1162), - [sym_identifier] = ACTIONS(1753), - [anon_sym_package] = ACTIONS(228), - [anon_sym_import] = ACTIONS(228), - [anon_sym_using] = ACTIONS(228), - [anon_sym_throw] = ACTIONS(228), - [anon_sym_switch] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_case] = ACTIONS(228), - [anon_sym_default] = ACTIONS(228), - [anon_sym_cast] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(228), - [anon_sym_else] = ACTIONS(228), - [anon_sym_new] = ACTIONS(228), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(228), - [anon_sym_final] = ACTIONS(228), - [anon_sym_abstract] = ACTIONS(228), - [anon_sym_class] = ACTIONS(1765), - [anon_sym_extends] = ACTIONS(228), - [anon_sym_implements] = ACTIONS(228), - [anon_sym_interface] = ACTIONS(1767), - [anon_sym_typedef] = ACTIONS(228), - [anon_sym_function] = ACTIONS(228), - [anon_sym_var] = ACTIONS(228), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(228), - [anon_sym_catch] = ACTIONS(228), - [anon_sym_continue] = ACTIONS(228), - [anon_sym_do] = ACTIONS(228), - [anon_sym_enum] = ACTIONS(228), - [anon_sym_extern] = ACTIONS(228), - [anon_sym_for] = ACTIONS(228), - [anon_sym_inline] = ACTIONS(228), - [anon_sym_macro] = ACTIONS(228), - [anon_sym_operator] = ACTIONS(228), - [anon_sym_overload] = ACTIONS(228), - [anon_sym_override] = ACTIONS(228), - [anon_sym_private] = ACTIONS(228), - [anon_sym_public] = ACTIONS(228), - [anon_sym_return] = ACTIONS(228), - [anon_sym_static] = ACTIONS(228), - [anon_sym_try] = ACTIONS(228), - [anon_sym_untyped] = ACTIONS(228), - [anon_sym_while] = ACTIONS(228), - }, - [417] = { - [sym_member_expression] = STATE(402), - [sym__lhs_expression] = STATE(1011), - [sym__literal] = STATE(1133), - [sym_integer] = STATE(1133), - [sym_float] = STATE(1133), - [sym_bool] = STATE(1133), - [sym_string] = STATE(975), - [sym_null] = STATE(1133), - [sym_array] = STATE(1133), - [sym_map] = STATE(1133), - [sym_object] = STATE(1133), - [sym_pair] = STATE(1133), - [sym_identifier] = ACTIONS(1749), - [anon_sym_package] = ACTIONS(228), - [anon_sym_import] = ACTIONS(228), - [anon_sym_using] = ACTIONS(228), - [anon_sym_throw] = ACTIONS(228), - [anon_sym_switch] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_case] = ACTIONS(228), - [anon_sym_default] = ACTIONS(228), - [anon_sym_cast] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(1751), - [anon_sym_if] = ACTIONS(228), - [anon_sym_else] = ACTIONS(228), - [anon_sym_new] = ACTIONS(228), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(228), - [anon_sym_final] = ACTIONS(228), - [anon_sym_abstract] = ACTIONS(228), - [anon_sym_class] = ACTIONS(228), - [anon_sym_extends] = ACTIONS(228), - [anon_sym_implements] = ACTIONS(228), - [anon_sym_interface] = ACTIONS(228), - [anon_sym_typedef] = ACTIONS(228), - [anon_sym_function] = ACTIONS(228), - [anon_sym_var] = ACTIONS(228), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(228), - [anon_sym_catch] = ACTIONS(228), - [anon_sym_continue] = ACTIONS(228), - [anon_sym_do] = ACTIONS(228), - [anon_sym_enum] = ACTIONS(228), - [anon_sym_extern] = ACTIONS(228), - [anon_sym_for] = ACTIONS(228), - [anon_sym_inline] = ACTIONS(228), - [anon_sym_macro] = ACTIONS(228), - [anon_sym_operator] = ACTIONS(228), - [anon_sym_overload] = ACTIONS(228), - [anon_sym_override] = ACTIONS(228), - [anon_sym_private] = ACTIONS(228), - [anon_sym_public] = ACTIONS(228), - [anon_sym_return] = ACTIONS(228), - [anon_sym_static] = ACTIONS(228), - [anon_sym_try] = ACTIONS(228), - [anon_sym_untyped] = ACTIONS(228), - [anon_sym_while] = ACTIONS(228), - }, - [418] = { - [sym_member_expression] = STATE(402), - [sym__lhs_expression] = STATE(985), - [sym__literal] = STATE(1133), - [sym_integer] = STATE(1133), - [sym_float] = STATE(1133), - [sym_bool] = STATE(1133), - [sym_string] = STATE(975), - [sym_null] = STATE(1133), - [sym_array] = STATE(1133), - [sym_map] = STATE(1133), - [sym_object] = STATE(1133), - [sym_pair] = STATE(1133), - [sym_identifier] = ACTIONS(1749), - [anon_sym_package] = ACTIONS(228), - [anon_sym_import] = ACTIONS(228), - [anon_sym_using] = ACTIONS(228), - [anon_sym_throw] = ACTIONS(228), - [anon_sym_switch] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_case] = ACTIONS(228), - [anon_sym_default] = ACTIONS(228), - [anon_sym_cast] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(1751), - [anon_sym_if] = ACTIONS(228), - [anon_sym_else] = ACTIONS(228), - [anon_sym_new] = ACTIONS(228), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(228), - [anon_sym_final] = ACTIONS(228), - [anon_sym_abstract] = ACTIONS(228), - [anon_sym_class] = ACTIONS(228), - [anon_sym_extends] = ACTIONS(228), - [anon_sym_implements] = ACTIONS(228), - [anon_sym_interface] = ACTIONS(228), - [anon_sym_typedef] = ACTIONS(228), - [anon_sym_function] = ACTIONS(228), - [anon_sym_var] = ACTIONS(228), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(228), - [anon_sym_catch] = ACTIONS(228), - [anon_sym_continue] = ACTIONS(228), - [anon_sym_do] = ACTIONS(228), - [anon_sym_enum] = ACTIONS(228), - [anon_sym_extern] = ACTIONS(228), - [anon_sym_for] = ACTIONS(228), - [anon_sym_inline] = ACTIONS(228), - [anon_sym_macro] = ACTIONS(228), - [anon_sym_operator] = ACTIONS(228), - [anon_sym_overload] = ACTIONS(228), - [anon_sym_override] = ACTIONS(228), - [anon_sym_private] = ACTIONS(228), - [anon_sym_public] = ACTIONS(228), - [anon_sym_return] = ACTIONS(228), - [anon_sym_static] = ACTIONS(228), - [anon_sym_try] = ACTIONS(228), - [anon_sym_untyped] = ACTIONS(228), - [anon_sym_while] = ACTIONS(228), - }, - [419] = { - [sym_member_expression] = STATE(402), - [sym__lhs_expression] = STATE(1276), - [sym__literal] = STATE(1139), - [sym_integer] = STATE(1139), - [sym_float] = STATE(1139), - [sym_bool] = STATE(1139), - [sym_string] = STATE(975), - [sym_null] = STATE(1139), - [sym_array] = STATE(1139), - [sym_map] = STATE(1139), - [sym_object] = STATE(1139), - [sym_pair] = STATE(1139), - [sym_identifier] = ACTIONS(1729), - [anon_sym_package] = ACTIONS(228), - [anon_sym_import] = ACTIONS(228), - [anon_sym_using] = ACTIONS(228), - [anon_sym_throw] = ACTIONS(228), - [anon_sym_switch] = ACTIONS(228), - [anon_sym_LBRACE] = ACTIONS(232), - [anon_sym_case] = ACTIONS(228), - [anon_sym_default] = ACTIONS(228), - [anon_sym_cast] = ACTIONS(228), - [anon_sym_in] = ACTIONS(228), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(1731), - [anon_sym_if] = ACTIONS(228), - [anon_sym_else] = ACTIONS(228), - [anon_sym_new] = ACTIONS(228), - [anon_sym_null] = ACTIONS(59), - [anon_sym_dynamic] = ACTIONS(228), - [anon_sym_final] = ACTIONS(228), - [anon_sym_abstract] = ACTIONS(228), - [anon_sym_class] = ACTIONS(228), - [anon_sym_extends] = ACTIONS(228), - [anon_sym_implements] = ACTIONS(228), - [anon_sym_interface] = ACTIONS(228), - [anon_sym_typedef] = ACTIONS(228), - [anon_sym_function] = ACTIONS(228), - [anon_sym_var] = ACTIONS(228), - [aux_sym_integer_token1] = ACTIONS(75), - [aux_sym_integer_token2] = ACTIONS(77), - [aux_sym_float_token1] = ACTIONS(79), - [aux_sym_float_token2] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_string_token1] = ACTIONS(85), - [aux_sym_string_token3] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [anon_sym_break] = ACTIONS(228), - [anon_sym_catch] = ACTIONS(228), - [anon_sym_continue] = ACTIONS(228), - [anon_sym_do] = ACTIONS(228), - [anon_sym_enum] = ACTIONS(228), - [anon_sym_extern] = ACTIONS(228), - [anon_sym_for] = ACTIONS(228), - [anon_sym_inline] = ACTIONS(228), - [anon_sym_macro] = ACTIONS(228), - [anon_sym_operator] = ACTIONS(228), - [anon_sym_overload] = ACTIONS(228), - [anon_sym_override] = ACTIONS(228), - [anon_sym_private] = ACTIONS(228), - [anon_sym_public] = ACTIONS(228), - [anon_sym_return] = ACTIONS(228), - [anon_sym_static] = ACTIONS(228), - [anon_sym_try] = ACTIONS(228), - [anon_sym_untyped] = ACTIONS(228), - [anon_sym_while] = ACTIONS(228), - }, - [420] = { - [sym__rhs_expression] = STATE(61), - [sym_member_expression] = STATE(80), - [sym__lhs_expression] = STATE(1054), - [sym__call] = STATE(91), - [sym__constructor_call] = STATE(89), - [sym_call_expression] = STATE(61), - [sym__literal] = STATE(465), - [sym_integer] = STATE(465), - [sym_float] = STATE(465), - [sym_bool] = STATE(465), - [sym_string] = STATE(462), - [sym_null] = STATE(465), - [sym_array] = STATE(465), - [sym_map] = STATE(465), - [sym_object] = STATE(465), - [sym_pair] = STATE(465), - [sym_identifier] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(240), - [anon_sym_RPAREN] = ACTIONS(240), - [anon_sym_switch] = ACTIONS(242), - [anon_sym_LBRACE] = ACTIONS(240), - [anon_sym_cast] = ACTIONS(242), - [anon_sym_DOLLARtype] = ACTIONS(240), - [anon_sym_LBRACK] = ACTIONS(240), - [anon_sym_this] = ACTIONS(242), - [anon_sym_DOT] = ACTIONS(242), - [anon_sym_QMARK] = ACTIONS(242), - [anon_sym_new] = ACTIONS(242), - [anon_sym_TILDE] = ACTIONS(240), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_DASH] = ACTIONS(242), - [anon_sym_PLUS_PLUS] = ACTIONS(240), - [anon_sym_DASH_DASH] = ACTIONS(240), - [anon_sym_PERCENT] = ACTIONS(240), - [anon_sym_STAR] = ACTIONS(240), - [anon_sym_SLASH] = ACTIONS(242), - [anon_sym_PLUS] = ACTIONS(242), - [anon_sym_LT_LT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(242), - [anon_sym_GT_GT_GT] = ACTIONS(240), - [anon_sym_AMP] = ACTIONS(242), - [anon_sym_PIPE] = ACTIONS(242), - [anon_sym_CARET] = ACTIONS(240), - [anon_sym_AMP_AMP] = ACTIONS(240), - [anon_sym_PIPE_PIPE] = ACTIONS(240), - [anon_sym_EQ_EQ] = ACTIONS(240), - [anon_sym_BANG_EQ] = ACTIONS(240), - [anon_sym_LT] = ACTIONS(242), - [anon_sym_LT_EQ] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(242), - [anon_sym_GT_EQ] = ACTIONS(240), - [anon_sym_EQ_GT] = ACTIONS(240), - [anon_sym_QMARK_QMARK] = ACTIONS(240), - [anon_sym_EQ] = ACTIONS(242), - [sym__rangeOperator] = ACTIONS(240), - [anon_sym_null] = ACTIONS(242), - [aux_sym_integer_token1] = ACTIONS(242), - [aux_sym_integer_token2] = ACTIONS(240), - [aux_sym_float_token1] = ACTIONS(242), - [aux_sym_float_token2] = ACTIONS(240), - [anon_sym_true] = ACTIONS(242), - [anon_sym_false] = ACTIONS(242), - [aux_sym_string_token1] = ACTIONS(240), - [aux_sym_string_token3] = ACTIONS(240), - [sym_comment] = ACTIONS(3), + [295] = { + [ts_builtin_sym_end] = ACTIONS(1296), + [sym_identifier] = ACTIONS(1298), + [anon_sym_POUND] = ACTIONS(1296), + [anon_sym_package] = ACTIONS(1298), + [anon_sym_import] = ACTIONS(1298), + [anon_sym_using] = ACTIONS(1298), + [anon_sym_throw] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1296), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(1296), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_cast] = ACTIONS(1298), + [anon_sym_DOLLARtype] = ACTIONS(1296), + [anon_sym_in] = ACTIONS(1298), + [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_this] = ACTIONS(1298), + [anon_sym_AT] = ACTIONS(1298), + [anon_sym_AT_COLON] = ACTIONS(1296), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_new] = ACTIONS(1298), + [sym__prefixUnaryOperator] = ACTIONS(1298), + [sym__eitherUnaryOperator] = ACTIONS(1296), + [anon_sym_null] = ACTIONS(1298), + [anon_sym_dynamic] = ACTIONS(1298), + [anon_sym_final] = ACTIONS(1298), + [anon_sym_abstract] = ACTIONS(1298), + [anon_sym_class] = ACTIONS(1298), + [anon_sym_extends] = ACTIONS(1298), + [anon_sym_implements] = ACTIONS(1298), + [anon_sym_interface] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(1298), + [anon_sym_var] = ACTIONS(1298), + [aux_sym_integer_token1] = ACTIONS(1298), + [aux_sym_integer_token2] = ACTIONS(1296), + [aux_sym_float_token1] = ACTIONS(1298), + [aux_sym_float_token2] = ACTIONS(1296), + [anon_sym_true] = ACTIONS(1298), + [anon_sym_false] = ACTIONS(1298), + [aux_sym_string_token1] = ACTIONS(1296), + [aux_sym_string_token3] = ACTIONS(1296), + [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_catch] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym_macro] = ACTIONS(1298), + [anon_sym_operator] = ACTIONS(1298), + [anon_sym_overload] = ACTIONS(1298), + [anon_sym_override] = ACTIONS(1298), + [anon_sym_private] = ACTIONS(1298), + [anon_sym_public] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_try] = ACTIONS(1298), + [anon_sym_untyped] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [sym__semicolon] = ACTIONS(1296), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 20, + [0] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 13, + ts_builtin_sym_end, + anon_sym_POUND, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, + anon_sym_AT_COLON, + sym__eitherUnaryOperator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(1300), 50, + anon_sym_package, + anon_sym_import, + anon_sym_using, + anon_sym_throw, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_cast, + anon_sym_in, + anon_sym_this, + anon_sym_AT, + anon_sym_if, + anon_sym_else, + anon_sym_new, + sym__prefixUnaryOperator, + anon_sym_null, + anon_sym_dynamic, + anon_sym_final, + anon_sym_abstract, + anon_sym_class, + anon_sym_extends, + anon_sym_implements, + anon_sym_interface, + anon_sym_typedef, + anon_sym_function, + anon_sym_var, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + anon_sym_break, + anon_sym_catch, + anon_sym_continue, + anon_sym_do, + anon_sym_enum, + anon_sym_extern, + anon_sym_for, + anon_sym_inline, + anon_sym_macro, + anon_sym_operator, + anon_sym_overload, + anon_sym_override, + anon_sym_private, + anon_sym_public, + anon_sym_return, + anon_sym_static, + anon_sym_try, + anon_sym_untyped, + anon_sym_while, + sym_identifier, + [71] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym_DOLLARtype, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(268), 1, + anon_sym_this, + ACTIONS(278), 1, + anon_sym_switch, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(1302), 1, + sym_identifier, + ACTIONS(1304), 1, + anon_sym_LPAREN, + ACTIONS(1306), 1, + anon_sym_RPAREN, + ACTIONS(1308), 1, + anon_sym_cast, + ACTIONS(1312), 1, + sym__prefixUnaryOperator, + ACTIONS(1314), 1, + sym__eitherUnaryOperator, + STATE(40), 1, + sym__constructor_call, + STATE(57), 1, + sym__call, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(304), 1, + aux_sym__parenthesized_expression_repeat1, + STATE(462), 1, + sym_member_expression, + STATE(510), 1, + sym__parenthesized_expression, + STATE(518), 1, + sym_string, + STATE(1004), 1, + sym__lhs_expression, + STATE(1046), 1, + sym_type, + STATE(1230), 1, + sym_structure_type_pair, + STATE(1248), 1, + sym__function_type_args, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + STATE(514), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(503), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(537), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [205] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym_DOLLARtype, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(268), 1, + anon_sym_this, + ACTIONS(278), 1, + anon_sym_switch, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(1302), 1, + sym_identifier, + ACTIONS(1304), 1, + anon_sym_LPAREN, + ACTIONS(1306), 1, + anon_sym_RPAREN, + ACTIONS(1308), 1, + anon_sym_cast, + ACTIONS(1312), 1, + sym__prefixUnaryOperator, + ACTIONS(1314), 1, + sym__eitherUnaryOperator, + STATE(40), 1, + sym__constructor_call, + STATE(57), 1, + sym__call, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(311), 1, + aux_sym__parenthesized_expression_repeat1, + STATE(462), 1, + sym_member_expression, + STATE(510), 1, + sym__parenthesized_expression, + STATE(518), 1, + sym_string, + STATE(1004), 1, + sym__lhs_expression, + STATE(1046), 1, + sym_type, + STATE(1239), 1, + sym_structure_type_pair, + STATE(1248), 1, + sym__function_type_args, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + STATE(514), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(503), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(537), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [339] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1316), 1, + sym_identifier, + ACTIONS(1318), 1, + anon_sym_LPAREN, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_cast, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1334), 1, + sym__prefixUnaryOperator, + ACTIONS(1336), 1, + sym__eitherUnaryOperator, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(718), 1, + sym_member_expression, + STATE(839), 1, + sym__parenthesized_expression, + STATE(929), 1, + sym_string, + STATE(999), 1, + sym__lhs_expression, + STATE(1104), 1, + sym_type, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(822), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(924), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(959), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [461] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym_DOLLARtype, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(216), 1, + anon_sym_this, + ACTIONS(278), 1, + anon_sym_switch, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(1304), 1, + anon_sym_LPAREN, + ACTIONS(1354), 1, + sym_identifier, + ACTIONS(1356), 1, + anon_sym_cast, + ACTIONS(1358), 1, + sym__prefixUnaryOperator, + ACTIONS(1360), 1, + sym__eitherUnaryOperator, + STATE(40), 1, + sym__constructor_call, + STATE(57), 1, + sym__call, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(462), 1, + sym_member_expression, + STATE(494), 1, + sym__parenthesized_expression, + STATE(518), 1, + sym_string, + STATE(1004), 1, + sym__lhs_expression, + STATE(1104), 1, + sym_type, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + STATE(493), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(495), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(531), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [583] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym_DOLLARtype, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(216), 1, + anon_sym_this, + ACTIONS(278), 1, + anon_sym_switch, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(1304), 1, + anon_sym_LPAREN, + ACTIONS(1354), 1, + sym_identifier, + ACTIONS(1356), 1, + anon_sym_cast, + ACTIONS(1358), 1, + sym__prefixUnaryOperator, + ACTIONS(1360), 1, + sym__eitherUnaryOperator, + STATE(40), 1, + sym__constructor_call, + STATE(57), 1, + sym__call, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(462), 1, + sym_member_expression, + STATE(494), 1, + sym__parenthesized_expression, + STATE(518), 1, + sym_string, + STATE(1004), 1, + sym__lhs_expression, + STATE(1047), 1, + sym_type, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + STATE(493), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(495), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(531), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [705] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 1, + anon_sym_LPAREN, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1362), 1, + sym_identifier, + ACTIONS(1364), 1, + anon_sym_cast, + ACTIONS(1366), 1, + anon_sym_this, + ACTIONS(1368), 1, + sym__prefixUnaryOperator, + ACTIONS(1370), 1, + sym__eitherUnaryOperator, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(662), 1, + sym__parenthesized_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(718), 1, + sym_member_expression, + STATE(743), 1, + sym_string, + STATE(999), 1, + sym__lhs_expression, + STATE(1128), 1, + sym_type, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(672), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(683), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(817), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [827] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 1, + anon_sym_LPAREN, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1362), 1, + sym_identifier, + ACTIONS(1364), 1, + anon_sym_cast, + ACTIONS(1366), 1, + anon_sym_this, + ACTIONS(1368), 1, + sym__prefixUnaryOperator, + ACTIONS(1370), 1, + sym__eitherUnaryOperator, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(662), 1, + sym__parenthesized_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(718), 1, + sym_member_expression, + STATE(743), 1, + sym_string, + STATE(999), 1, + sym__lhs_expression, + STATE(1091), 1, + sym_type, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(672), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(683), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(817), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [949] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_DOLLARtype, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(268), 1, + anon_sym_this, + ACTIONS(278), 1, + anon_sym_switch, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(1308), 1, + anon_sym_cast, + ACTIONS(1312), 1, + sym__prefixUnaryOperator, + ACTIONS(1314), 1, + sym__eitherUnaryOperator, + ACTIONS(1372), 1, + sym_identifier, + ACTIONS(1374), 1, + anon_sym_RPAREN, + STATE(40), 1, + sym__constructor_call, + STATE(54), 1, + sym_member_expression, + STATE(57), 1, + sym__call, + STATE(306), 1, + aux_sym__parenthesized_expression_repeat1, + STATE(510), 1, + sym__parenthesized_expression, + STATE(518), 1, + sym_string, + STATE(1045), 1, + sym__lhs_expression, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + STATE(514), 2, + sym__rhs_expression, + sym_call_expression, + STATE(503), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(537), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [1061] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_DOLLARtype, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(268), 1, + anon_sym_this, + ACTIONS(278), 1, + anon_sym_switch, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(1308), 1, + anon_sym_cast, + ACTIONS(1312), 1, + sym__prefixUnaryOperator, + ACTIONS(1314), 1, + sym__eitherUnaryOperator, + ACTIONS(1376), 1, + sym_identifier, + STATE(40), 1, + sym__constructor_call, + STATE(54), 1, + sym_member_expression, + STATE(57), 1, + sym__call, + STATE(304), 1, + aux_sym__parenthesized_expression_repeat1, + STATE(510), 1, + sym__parenthesized_expression, + STATE(518), 1, + sym_string, + STATE(1045), 1, + sym__lhs_expression, + STATE(1230), 1, + sym_structure_type_pair, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + STATE(514), 2, + sym__rhs_expression, + sym_call_expression, + STATE(503), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(537), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [1173] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + sym_identifier, + ACTIONS(1381), 1, + anon_sym_LPAREN, + ACTIONS(1384), 1, + anon_sym_RPAREN, + ACTIONS(1386), 1, + anon_sym_switch, + ACTIONS(1389), 1, + anon_sym_LBRACE, + ACTIONS(1392), 1, + anon_sym_cast, + ACTIONS(1395), 1, + anon_sym_DOLLARtype, + ACTIONS(1398), 1, + anon_sym_LBRACK, + ACTIONS(1401), 1, + anon_sym_this, + ACTIONS(1404), 1, + anon_sym_new, + ACTIONS(1407), 1, + sym__prefixUnaryOperator, + ACTIONS(1410), 1, + sym__eitherUnaryOperator, + ACTIONS(1413), 1, + anon_sym_null, + ACTIONS(1416), 1, + aux_sym_integer_token1, + ACTIONS(1419), 1, + aux_sym_integer_token2, + ACTIONS(1422), 1, + aux_sym_float_token1, + ACTIONS(1425), 1, + aux_sym_float_token2, + ACTIONS(1431), 1, + aux_sym_string_token1, + ACTIONS(1434), 1, + aux_sym_string_token3, + STATE(40), 1, + sym__constructor_call, + STATE(54), 1, + sym_member_expression, + STATE(57), 1, + sym__call, + STATE(306), 1, + aux_sym__parenthesized_expression_repeat1, + STATE(510), 1, + sym__parenthesized_expression, + STATE(518), 1, + sym_string, + STATE(1045), 1, + sym__lhs_expression, + ACTIONS(1428), 2, + anon_sym_true, + anon_sym_false, + STATE(514), 2, + sym__rhs_expression, + sym_call_expression, + STATE(503), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(537), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [1285] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_DOLLARtype, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(268), 1, + anon_sym_this, + ACTIONS(278), 1, + anon_sym_switch, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(1308), 1, + anon_sym_cast, + ACTIONS(1312), 1, + sym__prefixUnaryOperator, + ACTIONS(1314), 1, + sym__eitherUnaryOperator, + ACTIONS(1372), 1, + sym_identifier, + ACTIONS(1437), 1, + anon_sym_RPAREN, + STATE(40), 1, + sym__constructor_call, + STATE(54), 1, + sym_member_expression, + STATE(57), 1, + sym__call, + STATE(306), 1, + aux_sym__parenthesized_expression_repeat1, + STATE(510), 1, + sym__parenthesized_expression, + STATE(518), 1, + sym_string, + STATE(1045), 1, + sym__lhs_expression, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + STATE(514), 2, + sym__rhs_expression, + sym_call_expression, + STATE(503), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(537), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [1397] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_DOLLARtype, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(268), 1, + anon_sym_this, + ACTIONS(278), 1, + anon_sym_switch, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(1308), 1, + anon_sym_cast, + ACTIONS(1312), 1, + sym__prefixUnaryOperator, + ACTIONS(1314), 1, + sym__eitherUnaryOperator, + ACTIONS(1376), 1, + sym_identifier, + STATE(40), 1, + sym__constructor_call, + STATE(54), 1, + sym_member_expression, + STATE(57), 1, + sym__call, + STATE(307), 1, + aux_sym__parenthesized_expression_repeat1, + STATE(510), 1, + sym__parenthesized_expression, + STATE(518), 1, + sym_string, + STATE(1045), 1, + sym__lhs_expression, + STATE(1233), 1, + sym_structure_type_pair, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + STATE(514), 2, + sym__rhs_expression, + sym_call_expression, + STATE(503), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(537), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [1509] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_in, + ACTIONS(39), 1, + anon_sym_AT, + ACTIONS(41), 1, + anon_sym_AT_COLON, + ACTIONS(1441), 1, + anon_sym_final, + ACTIONS(1443), 1, + anon_sym_abstract, + ACTIONS(1445), 1, + anon_sym_class, + ACTIONS(1447), 1, + anon_sym_typedef, + ACTIONS(1449), 1, + anon_sym_function, + ACTIONS(1451), 1, + anon_sym_var, + STATE(347), 2, + sym_metadata, + aux_sym_class_declaration_repeat1, + STATE(400), 2, + sym_keyword, + aux_sym_function_declaration_repeat1, + ACTIONS(1439), 35, + anon_sym_package, + anon_sym_import, + anon_sym_using, + anon_sym_throw, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_cast, + anon_sym_this, + anon_sym_if, + anon_sym_else, + anon_sym_new, + anon_sym_dynamic, + anon_sym_extends, + anon_sym_implements, + anon_sym_interface, + anon_sym_break, + anon_sym_catch, + anon_sym_continue, + anon_sym_do, + anon_sym_enum, + anon_sym_extern, + anon_sym_for, + anon_sym_inline, + anon_sym_macro, + anon_sym_operator, + anon_sym_overload, + anon_sym_override, + anon_sym_private, + anon_sym_public, + anon_sym_return, + anon_sym_static, + anon_sym_try, + anon_sym_untyped, + anon_sym_while, + [1585] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_DOLLARtype, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(268), 1, + anon_sym_this, + ACTIONS(278), 1, + anon_sym_switch, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(1308), 1, + anon_sym_cast, + ACTIONS(1312), 1, + sym__prefixUnaryOperator, + ACTIONS(1314), 1, + sym__eitherUnaryOperator, + ACTIONS(1376), 1, + sym_identifier, + STATE(40), 1, + sym__constructor_call, + STATE(54), 1, + sym_member_expression, + STATE(57), 1, + sym__call, + STATE(311), 1, + aux_sym__parenthesized_expression_repeat1, + STATE(510), 1, + sym__parenthesized_expression, + STATE(518), 1, + sym_string, + STATE(1045), 1, + sym__lhs_expression, + STATE(1239), 1, + sym_structure_type_pair, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + STATE(514), 2, + sym__rhs_expression, + sym_call_expression, + STATE(503), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(537), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [1697] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_DOLLARtype, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(268), 1, + anon_sym_this, + ACTIONS(278), 1, + anon_sym_switch, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(1308), 1, + anon_sym_cast, + ACTIONS(1312), 1, + sym__prefixUnaryOperator, + ACTIONS(1314), 1, + sym__eitherUnaryOperator, + ACTIONS(1372), 1, + sym_identifier, + ACTIONS(1453), 1, + anon_sym_RPAREN, + STATE(40), 1, + sym__constructor_call, + STATE(54), 1, + sym_member_expression, + STATE(57), 1, + sym__call, + STATE(306), 1, + aux_sym__parenthesized_expression_repeat1, + STATE(510), 1, + sym__parenthesized_expression, + STATE(518), 1, + sym_string, + STATE(1045), 1, + sym__lhs_expression, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + STATE(514), 2, + sym__rhs_expression, + sym_call_expression, + STATE(503), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(537), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [1809] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1455), 1, + sym_identifier, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1459), 1, + anon_sym_RPAREN, + ACTIONS(1461), 1, + anon_sym_cast, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, + sym_string, + STATE(812), 1, + sym__parenthesized_expression, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(813), 2, + sym__rhs_expression, + sym_call_expression, + STATE(819), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + STATE(843), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + [1918] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_DOLLARtype, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(268), 1, + anon_sym_this, + ACTIONS(278), 1, + anon_sym_switch, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(1308), 1, + anon_sym_cast, + ACTIONS(1312), 1, + sym__prefixUnaryOperator, + ACTIONS(1314), 1, + sym__eitherUnaryOperator, + ACTIONS(1372), 1, + sym_identifier, + STATE(40), 1, + sym__constructor_call, + STATE(54), 1, + sym_member_expression, + STATE(57), 1, + sym__call, + STATE(304), 1, + aux_sym__parenthesized_expression_repeat1, + STATE(510), 1, + sym__parenthesized_expression, + STATE(518), 1, + sym_string, + STATE(1045), 1, + sym__lhs_expression, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + STATE(514), 2, + sym__rhs_expression, + sym_call_expression, + STATE(503), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(537), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [2027] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1455), 1, + sym_identifier, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, + anon_sym_cast, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + ACTIONS(1467), 1, + anon_sym_RBRACK, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, + sym_string, + STATE(780), 1, + sym__parenthesized_expression, + STATE(853), 1, + sym_pair, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(777), 2, + sym__rhs_expression, + sym_call_expression, + STATE(819), 8, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + STATE(791), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + [2138] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_DOLLARtype, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(268), 1, + anon_sym_this, + ACTIONS(278), 1, + anon_sym_switch, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(1308), 1, + anon_sym_cast, + ACTIONS(1312), 1, + sym__prefixUnaryOperator, + ACTIONS(1314), 1, + sym__eitherUnaryOperator, + ACTIONS(1372), 1, + sym_identifier, + STATE(40), 1, + sym__constructor_call, + STATE(54), 1, + sym_member_expression, + STATE(57), 1, + sym__call, + STATE(311), 1, + aux_sym__parenthesized_expression_repeat1, + STATE(510), 1, + sym__parenthesized_expression, + STATE(518), 1, + sym_string, + STATE(1045), 1, + sym__lhs_expression, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + STATE(514), 2, + sym__rhs_expression, + sym_call_expression, + STATE(503), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(537), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [2247] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_DOLLARtype, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(268), 1, + anon_sym_this, + ACTIONS(278), 1, + anon_sym_switch, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(1308), 1, + anon_sym_cast, + ACTIONS(1312), 1, + sym__prefixUnaryOperator, + ACTIONS(1314), 1, + sym__eitherUnaryOperator, + ACTIONS(1372), 1, + sym_identifier, + STATE(40), 1, + sym__constructor_call, + STATE(54), 1, + sym_member_expression, + STATE(57), 1, + sym__call, + STATE(307), 1, + aux_sym__parenthesized_expression_repeat1, + STATE(510), 1, + sym__parenthesized_expression, + STATE(518), 1, + sym_string, + STATE(1045), 1, + sym__lhs_expression, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + STATE(514), 2, + sym__rhs_expression, + sym_call_expression, + STATE(503), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(537), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [2356] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1455), 1, + sym_identifier, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, + anon_sym_cast, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + ACTIONS(1469), 1, + anon_sym_RPAREN, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, + sym_string, + STATE(803), 1, + sym__parenthesized_expression, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(810), 2, + sym__rhs_expression, + sym_call_expression, + STATE(819), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + STATE(851), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + [2465] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1455), 1, + sym_identifier, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, + anon_sym_cast, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + ACTIONS(1471), 1, + anon_sym_RBRACK, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, + sym_string, + STATE(761), 1, + sym__parenthesized_expression, + STATE(847), 1, + sym_pair, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(757), 2, + sym__rhs_expression, + sym_call_expression, + STATE(819), 8, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + STATE(790), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + [2576] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1455), 1, + sym_identifier, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, + anon_sym_cast, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + ACTIONS(1473), 1, + anon_sym_RPAREN, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, + sym_string, + STATE(798), 1, + sym__parenthesized_expression, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(794), 2, + sym__rhs_expression, + sym_call_expression, + STATE(819), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + STATE(848), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + [2685] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1455), 1, + sym_identifier, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, + anon_sym_cast, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + ACTIONS(1475), 1, + anon_sym_RPAREN, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, + sym_string, + STATE(784), 1, + sym__parenthesized_expression, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(814), 2, + sym__rhs_expression, + sym_call_expression, + STATE(819), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + STATE(829), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + [2794] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1455), 1, + sym_identifier, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, + anon_sym_cast, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + ACTIONS(1477), 1, + anon_sym_RBRACK, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(731), 1, + sym__parenthesized_expression, + STATE(743), 1, + sym_string, + STATE(855), 1, + sym_pair, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(730), 2, + sym__rhs_expression, + sym_call_expression, + STATE(819), 8, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + STATE(800), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + [2905] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1455), 1, + sym_identifier, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, + anon_sym_cast, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, + sym_string, + STATE(914), 1, + sym__parenthesized_expression, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(918), 2, + sym__rhs_expression, + sym_call_expression, + STATE(819), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + STATE(962), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + [3011] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1455), 1, + sym_identifier, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, + anon_sym_cast, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, + sym_string, + STATE(858), 1, + sym__parenthesized_expression, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(884), 2, + sym__rhs_expression, + sym_call_expression, + STATE(819), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + STATE(954), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + [3117] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1455), 1, + sym_identifier, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, + anon_sym_cast, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, + sym_string, + STATE(873), 1, + sym__parenthesized_expression, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(866), 2, + sym__rhs_expression, + sym_call_expression, + STATE(819), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + STATE(951), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + [3223] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1455), 1, + sym_identifier, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, + anon_sym_cast, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, + sym_string, + STATE(907), 1, + sym__parenthesized_expression, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(906), 2, + sym__rhs_expression, + sym_call_expression, + STATE(819), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + STATE(968), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + [3329] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_DOLLARtype, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(268), 1, + anon_sym_this, + ACTIONS(278), 1, + anon_sym_switch, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(1308), 1, + anon_sym_cast, + ACTIONS(1312), 1, + sym__prefixUnaryOperator, + ACTIONS(1314), 1, + sym__eitherUnaryOperator, + ACTIONS(1372), 1, + sym_identifier, + STATE(40), 1, + sym__constructor_call, + STATE(54), 1, + sym_member_expression, + STATE(57), 1, + sym__call, + STATE(501), 1, + sym__parenthesized_expression, + STATE(518), 1, + sym_string, + STATE(1045), 1, + sym__lhs_expression, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + STATE(502), 2, + sym__rhs_expression, + sym_call_expression, + STATE(500), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(537), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [3435] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1455), 1, + sym_identifier, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, + anon_sym_cast, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, + sym_string, + STATE(880), 1, + sym__parenthesized_expression, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(879), 2, + sym__rhs_expression, + sym_call_expression, + STATE(819), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + STATE(955), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + [3541] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1455), 1, + sym_identifier, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, + anon_sym_cast, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, + sym_string, + STATE(921), 1, + sym__parenthesized_expression, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(916), 2, + sym__rhs_expression, + sym_call_expression, + STATE(819), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + STATE(934), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + [3647] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1479), 1, + sym_identifier, + ACTIONS(1481), 1, + anon_sym_cast, + ACTIONS(1483), 1, + anon_sym_this, + ACTIONS(1485), 1, + sym__prefixUnaryOperator, + ACTIONS(1487), 1, + sym__eitherUnaryOperator, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(878), 1, + sym__parenthesized_expression, + STATE(979), 1, + sym_string, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(877), 2, + sym__rhs_expression, + sym_call_expression, + STATE(952), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(982), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [3753] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1455), 1, + sym_identifier, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, + anon_sym_cast, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, + sym_string, + STATE(915), 1, + sym__parenthesized_expression, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(917), 2, + sym__rhs_expression, + sym_call_expression, + STATE(819), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + STATE(957), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + [3859] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1455), 1, + sym_identifier, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, + anon_sym_cast, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, + sym_string, + STATE(896), 1, + sym__parenthesized_expression, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(898), 2, + sym__rhs_expression, + sym_call_expression, + STATE(819), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + STATE(967), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + [3965] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1366), 1, + anon_sym_this, + ACTIONS(1489), 1, + sym_identifier, + ACTIONS(1491), 1, + anon_sym_LPAREN, + ACTIONS(1493), 1, + anon_sym_switch, + ACTIONS(1495), 1, + anon_sym_cast, + ACTIONS(1497), 1, + anon_sym_DOLLARtype, + ACTIONS(1499), 1, + sym__prefixUnaryOperator, + ACTIONS(1501), 1, + sym__eitherUnaryOperator, + STATE(652), 1, + sym__parenthesized_expression, + STATE(655), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, + sym_string, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(669), 2, + sym__rhs_expression, + sym_call_expression, + STATE(671), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(817), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [4071] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_cast, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1334), 1, + sym__prefixUnaryOperator, + ACTIONS(1336), 1, + sym__eitherUnaryOperator, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1503), 1, + sym_identifier, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(804), 1, + sym_member_expression, + STATE(839), 1, + sym__parenthesized_expression, + STATE(929), 1, + sym_string, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(822), 2, + sym__rhs_expression, + sym_call_expression, + STATE(924), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(959), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [4177] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_DOLLARtype, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(268), 1, + anon_sym_this, + ACTIONS(278), 1, + anon_sym_switch, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(1308), 1, + anon_sym_cast, + ACTIONS(1312), 1, + sym__prefixUnaryOperator, + ACTIONS(1314), 1, + sym__eitherUnaryOperator, + ACTIONS(1372), 1, + sym_identifier, + STATE(40), 1, + sym__constructor_call, + STATE(54), 1, + sym_member_expression, + STATE(57), 1, + sym__call, + STATE(508), 1, + sym__parenthesized_expression, + STATE(518), 1, + sym_string, + STATE(1045), 1, + sym__lhs_expression, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + STATE(509), 2, + sym__rhs_expression, + sym_call_expression, + STATE(507), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(537), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [4283] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1366), 1, + anon_sym_this, + ACTIONS(1491), 1, + anon_sym_LPAREN, + ACTIONS(1493), 1, + anon_sym_switch, + ACTIONS(1497), 1, + anon_sym_DOLLARtype, + ACTIONS(1505), 1, + sym_identifier, + ACTIONS(1507), 1, + anon_sym_cast, + ACTIONS(1509), 1, + sym__prefixUnaryOperator, + ACTIONS(1511), 1, + sym__eitherUnaryOperator, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(725), 1, + sym__parenthesized_expression, + STATE(806), 1, + sym_member_expression, + STATE(929), 1, + sym_string, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(799), 2, + sym__rhs_expression, + sym_call_expression, + STATE(801), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(942), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [4389] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1479), 1, + sym_identifier, + ACTIONS(1481), 1, + anon_sym_cast, + ACTIONS(1483), 1, + anon_sym_this, + ACTIONS(1485), 1, + sym__prefixUnaryOperator, + ACTIONS(1487), 1, + sym__eitherUnaryOperator, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(886), 1, + sym__parenthesized_expression, + STATE(979), 1, + sym_string, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(891), 2, + sym__rhs_expression, + sym_call_expression, + STATE(956), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(982), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [4495] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1479), 1, + sym_identifier, + ACTIONS(1481), 1, + anon_sym_cast, + ACTIONS(1483), 1, + anon_sym_this, + ACTIONS(1485), 1, + sym__prefixUnaryOperator, + ACTIONS(1487), 1, + sym__eitherUnaryOperator, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(904), 1, + sym__parenthesized_expression, + STATE(979), 1, + sym_string, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(903), 2, + sym__rhs_expression, + sym_call_expression, + STATE(935), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(982), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [4601] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1455), 1, + sym_identifier, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, + anon_sym_cast, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, + sym_string, + STATE(837), 1, + sym__parenthesized_expression, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(836), 2, + sym__rhs_expression, + sym_call_expression, + STATE(819), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + STATE(876), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + [4707] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_cast, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1334), 1, + sym__prefixUnaryOperator, + ACTIONS(1336), 1, + sym__eitherUnaryOperator, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1503), 1, + sym_identifier, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(804), 1, + sym_member_expression, + STATE(826), 1, + sym__parenthesized_expression, + STATE(929), 1, + sym_string, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(842), 2, + sym__rhs_expression, + sym_call_expression, + STATE(933), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(959), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [4813] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1513), 1, + sym_identifier, + ACTIONS(1515), 1, + anon_sym_cast, + ACTIONS(1517), 1, + anon_sym_this, + ACTIONS(1519), 1, + sym__prefixUnaryOperator, + ACTIONS(1521), 1, + sym__eitherUnaryOperator, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(849), 1, + sym__parenthesized_expression, + STATE(979), 1, + sym_string, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(846), 2, + sym__rhs_expression, + sym_call_expression, + STATE(919), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(986), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [4919] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7), 1, + sym_identifier, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_DOLLARtype, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + sym__prefixUnaryOperator, + ACTIONS(49), 1, + sym__eitherUnaryOperator, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(268), 1, + anon_sym_this, + ACTIONS(278), 1, + anon_sym_switch, + ACTIONS(280), 1, + anon_sym_cast, + ACTIONS(282), 1, + anon_sym_new, + STATE(40), 1, + sym__constructor_call, + STATE(54), 1, + sym_member_expression, + STATE(57), 1, + sym__call, + STATE(65), 1, + sym_string, + STATE(83), 1, + sym__parenthesized_expression, + STATE(1045), 1, + sym__lhs_expression, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + STATE(82), 2, + sym__rhs_expression, + sym_call_expression, + STATE(84), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(104), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [5025] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1455), 1, + sym_identifier, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, + anon_sym_cast, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, + sym_string, + STATE(890), 1, + sym__parenthesized_expression, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(889), 2, + sym__rhs_expression, + sym_call_expression, + STATE(819), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + STATE(964), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + [5131] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_DOLLARtype, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(216), 1, + anon_sym_this, + ACTIONS(278), 1, + anon_sym_switch, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(1356), 1, + anon_sym_cast, + ACTIONS(1358), 1, + sym__prefixUnaryOperator, + ACTIONS(1360), 1, + sym__eitherUnaryOperator, + ACTIONS(1523), 1, + sym_identifier, + STATE(40), 1, + sym__constructor_call, + STATE(54), 1, + sym_member_expression, + STATE(57), 1, + sym__call, + STATE(494), 1, + sym__parenthesized_expression, + STATE(518), 1, + sym_string, + STATE(1045), 1, + sym__lhs_expression, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + STATE(493), 2, + sym__rhs_expression, + sym_call_expression, + STATE(495), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(531), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [5237] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1479), 1, + sym_identifier, + ACTIONS(1481), 1, + anon_sym_cast, + ACTIONS(1483), 1, + anon_sym_this, + ACTIONS(1485), 1, + sym__prefixUnaryOperator, + ACTIONS(1487), 1, + sym__eitherUnaryOperator, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(920), 1, + sym__parenthesized_expression, + STATE(979), 1, + sym_string, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(913), 2, + sym__rhs_expression, + sym_call_expression, + STATE(936), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(982), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [5343] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1491), 1, + anon_sym_LPAREN, + ACTIONS(1493), 1, + anon_sym_switch, + ACTIONS(1497), 1, + anon_sym_DOLLARtype, + ACTIONS(1517), 1, + anon_sym_this, + ACTIONS(1525), 1, + sym_identifier, + ACTIONS(1527), 1, + anon_sym_cast, + ACTIONS(1529), 1, + sym__prefixUnaryOperator, + ACTIONS(1531), 1, + sym__eitherUnaryOperator, + STATE(655), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(818), 1, + sym__parenthesized_expression, + STATE(979), 1, + sym_string, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(828), 2, + sym__rhs_expression, + sym_call_expression, + STATE(825), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(986), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [5449] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1455), 1, + sym_identifier, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, + anon_sym_cast, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + STATE(647), 1, + sym_member_expression, + STATE(689), 1, + sym__parenthesized_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, + sym_string, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(690), 2, + sym__rhs_expression, + sym_call_expression, + STATE(765), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(819), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [5555] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1535), 1, + anon_sym_in, + ACTIONS(1537), 1, + anon_sym_AT, + ACTIONS(1540), 1, + anon_sym_AT_COLON, + STATE(347), 2, + sym_metadata, + aux_sym_class_declaration_repeat1, + ACTIONS(1533), 41, + anon_sym_package, + anon_sym_import, + anon_sym_using, + anon_sym_throw, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_cast, + anon_sym_this, + anon_sym_if, + anon_sym_else, + anon_sym_new, + anon_sym_dynamic, + anon_sym_final, + anon_sym_abstract, + anon_sym_class, + anon_sym_extends, + anon_sym_implements, + anon_sym_interface, + anon_sym_typedef, + anon_sym_function, + anon_sym_var, + anon_sym_break, + anon_sym_catch, + anon_sym_continue, + anon_sym_do, + anon_sym_enum, + anon_sym_extern, + anon_sym_for, + anon_sym_inline, + anon_sym_macro, + anon_sym_operator, + anon_sym_overload, + anon_sym_override, + anon_sym_private, + anon_sym_public, + anon_sym_return, + anon_sym_static, + anon_sym_try, + anon_sym_untyped, + anon_sym_while, + [5615] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_cast, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1334), 1, + sym__prefixUnaryOperator, + ACTIONS(1336), 1, + sym__eitherUnaryOperator, + ACTIONS(1338), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1340), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1342), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1344), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1346), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1350), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1352), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1503), 1, + sym_identifier, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(804), 1, + sym_member_expression, + STATE(831), 1, + sym__parenthesized_expression, + STATE(929), 1, + sym_string, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(834), 2, + sym__rhs_expression, + sym_call_expression, + STATE(928), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(959), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [5721] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, anon_sym_LBRACE, - ACTIONS(998), 1, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1479), 1, + sym_identifier, + ACTIONS(1481), 1, + anon_sym_cast, + ACTIONS(1483), 1, anon_sym_this, - ACTIONS(1769), 1, + ACTIONS(1485), 1, + sym__prefixUnaryOperator, + ACTIONS(1487), 1, + sym__eitherUnaryOperator, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(874), 1, + sym__parenthesized_expression, + STATE(979), 1, + sym_string, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(870), 2, + sym__rhs_expression, + sym_call_expression, + STATE(949), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(982), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [5827] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1366), 1, + anon_sym_this, + ACTIONS(1489), 1, sym_identifier, - STATE(101), 1, + ACTIONS(1491), 1, + anon_sym_LPAREN, + ACTIONS(1493), 1, + anon_sym_switch, + ACTIONS(1495), 1, + anon_sym_cast, + ACTIONS(1497), 1, + anon_sym_DOLLARtype, + ACTIONS(1499), 1, + sym__prefixUnaryOperator, + ACTIONS(1501), 1, + sym__eitherUnaryOperator, + STATE(648), 1, + sym__parenthesized_expression, + STATE(655), 1, sym_member_expression, - STATE(102), 1, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, + sym_string, + STATE(1073), 1, sym__lhs_expression, - STATE(422), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(664), 2, + sym__rhs_expression, + sym_call_expression, + STATE(661), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(817), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [5933] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7), 1, + sym_identifier, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_DOLLARtype, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + sym__prefixUnaryOperator, + ACTIONS(49), 1, + sym__eitherUnaryOperator, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(268), 1, + anon_sym_this, + ACTIONS(278), 1, + anon_sym_switch, + ACTIONS(280), 1, + anon_sym_cast, + ACTIONS(282), 1, + anon_sym_new, + STATE(40), 1, + sym__constructor_call, + STATE(54), 1, + sym_member_expression, + STATE(57), 1, + sym__call, + STATE(65), 1, + sym_string, + STATE(75), 1, + sym__parenthesized_expression, + STATE(1045), 1, + sym__lhs_expression, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + STATE(74), 2, + sym__rhs_expression, + sym_call_expression, + STATE(76), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(104), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [6039] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1366), 1, + anon_sym_this, + ACTIONS(1491), 1, + anon_sym_LPAREN, + ACTIONS(1493), 1, + anon_sym_switch, + ACTIONS(1497), 1, + anon_sym_DOLLARtype, + ACTIONS(1505), 1, + sym_identifier, + ACTIONS(1507), 1, + anon_sym_cast, + ACTIONS(1509), 1, + sym__prefixUnaryOperator, + ACTIONS(1511), 1, + sym__eitherUnaryOperator, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(726), 1, + sym__parenthesized_expression, + STATE(806), 1, + sym_member_expression, + STATE(929), 1, sym_string, - ACTIONS(83), 2, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - STATE(1151), 9, + STATE(792), 2, + sym__rhs_expression, + sym_call_expression, + STATE(795), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(942), 9, sym__literal, sym_integer, sym_float, @@ -46517,82 +33067,64 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(262), 15, + [6145] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, anon_sym_switch, - anon_sym_cast, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_new, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(260), 22, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLARtype, - 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, - [105] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(271), 1, + ACTIONS(1322), 1, anon_sym_LBRACE, - ACTIONS(274), 1, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, anon_sym_LBRACK, - ACTIONS(280), 1, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, anon_sym_null, - ACTIONS(283), 1, + ACTIONS(1340), 1, aux_sym_integer_token1, - ACTIONS(286), 1, + ACTIONS(1342), 1, aux_sym_integer_token2, - ACTIONS(289), 1, + ACTIONS(1344), 1, aux_sym_float_token1, - ACTIONS(292), 1, + ACTIONS(1346), 1, aux_sym_float_token2, - ACTIONS(298), 1, + ACTIONS(1350), 1, aux_sym_string_token1, - ACTIONS(301), 1, + ACTIONS(1352), 1, aux_sym_string_token3, - ACTIONS(1771), 1, + ACTIONS(1455), 1, sym_identifier, - ACTIONS(1774), 1, - anon_sym_this, - STATE(101), 1, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, + anon_sym_cast, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + STATE(647), 1, sym_member_expression, - STATE(102), 1, - sym__lhs_expression, - STATE(422), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, sym_string, - ACTIONS(295), 2, + STATE(900), 1, + sym__parenthesized_expression, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - STATE(1151), 9, + STATE(899), 2, + sym__rhs_expression, + sym_call_expression, + STATE(819), 9, sym__literal, sym_integer, sym_float, @@ -46602,89 +33134,84 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(269), 15, - anon_sym_switch, - anon_sym_cast, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_new, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(264), 22, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLARtype, - 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, - [210] = 23, + STATE(970), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + [6251] = 29, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_DOLLARtype, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(250), 1, + ACTIONS(216), 1, anon_sym_this, - ACTIONS(1092), 1, + ACTIONS(278), 1, + anon_sym_switch, + ACTIONS(282), 1, anon_sym_new, - ACTIONS(1777), 1, + ACTIONS(1543), 1, sym_identifier, - STATE(80), 1, - sym_member_expression, - STATE(89), 1, + ACTIONS(1545), 1, + anon_sym_cast, + ACTIONS(1547), 1, + sym__prefixUnaryOperator, + ACTIONS(1549), 1, + sym__eitherUnaryOperator, + STATE(37), 1, + sym__parenthesized_expression, + STATE(40), 1, sym__constructor_call, - STATE(91), 1, + STATE(54), 1, + sym_member_expression, + STATE(57), 1, sym__call, - STATE(675), 1, + STATE(65), 1, sym_string, - STATE(1059), 1, + STATE(1045), 1, sym__lhs_expression, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(61), 2, + STATE(38), 2, sym__rhs_expression, sym_call_expression, - STATE(694), 9, + STATE(36), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(102), 9, sym__literal, sym_integer, sym_float, @@ -46694,78 +33221,74 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(242), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(240), 21, - 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_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym__semicolon, - [321] = 20, + [6357] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1340), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1342), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1344), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1346), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1350), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1352), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(998), 1, - anon_sym_this, - ACTIONS(1769), 1, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1479), 1, sym_identifier, - STATE(101), 1, + ACTIONS(1481), 1, + anon_sym_cast, + ACTIONS(1483), 1, + anon_sym_this, + ACTIONS(1485), 1, + sym__prefixUnaryOperator, + ACTIONS(1487), 1, + sym__eitherUnaryOperator, + STATE(647), 1, sym_member_expression, - STATE(102), 1, - sym__lhs_expression, - STATE(422), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(869), 1, + sym__parenthesized_expression, + STATE(979), 1, sym_string, - ACTIONS(83), 2, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - STATE(1151), 9, + STATE(868), 2, + sym__rhs_expression, + sym_call_expression, + STATE(944), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(982), 9, sym__literal, sym_integer, sym_float, @@ -46775,82 +33298,64 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(258), 15, - anon_sym_switch, - anon_sym_cast, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_new, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(256), 22, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLARtype, - 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, - [426] = 20, + [6463] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1340), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1342), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1344), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1346), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1350), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1352), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(998), 1, - anon_sym_this, - ACTIONS(1769), 1, + ACTIONS(1455), 1, sym_identifier, - STATE(101), 1, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, + anon_sym_cast, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + STATE(647), 1, sym_member_expression, - STATE(102), 1, - sym__lhs_expression, - STATE(422), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, sym_string, - ACTIONS(83), 2, + STATE(897), 1, + sym__parenthesized_expression, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - STATE(1151), 9, + STATE(895), 2, + sym__rhs_expression, + sym_call_expression, + STATE(819), 9, sym__literal, sym_integer, sym_float, @@ -46860,82 +33365,84 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(254), 15, - anon_sym_switch, - anon_sym_cast, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_new, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(252), 22, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLARtype, - 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, - [531] = 20, + STATE(953), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + [6569] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1340), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1342), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1344), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1346), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1350), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1352), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(998), 1, + ACTIONS(1364), 1, + anon_sym_cast, + ACTIONS(1366), 1, anon_sym_this, - ACTIONS(1769), 1, + ACTIONS(1368), 1, + sym__prefixUnaryOperator, + ACTIONS(1370), 1, + sym__eitherUnaryOperator, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1551), 1, sym_identifier, - STATE(101), 1, + STATE(647), 1, sym_member_expression, - STATE(102), 1, - sym__lhs_expression, - STATE(422), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, + STATE(662), 1, + sym__parenthesized_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, sym_string, - ACTIONS(83), 2, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - STATE(1151), 9, + STATE(672), 2, + sym__rhs_expression, + sym_call_expression, + STATE(683), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(817), 9, sym__literal, sym_integer, sym_float, @@ -46945,82 +33452,74 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(248), 15, - anon_sym_switch, - anon_sym_cast, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_new, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(244), 22, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLARtype, - 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, - [636] = 20, + [6675] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1340), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1342), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1344), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1346), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1350), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1352), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(998), 1, - anon_sym_this, - ACTIONS(1769), 1, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1479), 1, sym_identifier, - STATE(101), 1, + ACTIONS(1481), 1, + anon_sym_cast, + ACTIONS(1483), 1, + anon_sym_this, + ACTIONS(1485), 1, + sym__prefixUnaryOperator, + ACTIONS(1487), 1, + sym__eitherUnaryOperator, + STATE(647), 1, sym_member_expression, - STATE(102), 1, - sym__lhs_expression, - STATE(422), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(871), 1, + sym__parenthesized_expression, + STATE(979), 1, sym_string, - ACTIONS(83), 2, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - STATE(1151), 9, + STATE(872), 2, + sym__rhs_expression, + sym_call_expression, + STATE(940), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(982), 9, sym__literal, sym_integer, sym_float, @@ -47030,82 +33529,74 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(310), 15, - anon_sym_switch, - anon_sym_cast, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_new, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(308), 22, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLARtype, - 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, - [741] = 20, + [6781] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1340), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1342), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1344), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1346), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1350), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1352), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(998), 1, - anon_sym_this, - ACTIONS(1769), 1, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1479), 1, sym_identifier, - STATE(101), 1, + ACTIONS(1481), 1, + anon_sym_cast, + ACTIONS(1483), 1, + anon_sym_this, + ACTIONS(1485), 1, + sym__prefixUnaryOperator, + ACTIONS(1487), 1, + sym__eitherUnaryOperator, + STATE(647), 1, sym_member_expression, - STATE(102), 1, - sym__lhs_expression, - STATE(422), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(887), 1, + sym__parenthesized_expression, + STATE(979), 1, sym_string, - ACTIONS(83), 2, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - STATE(1151), 9, + STATE(888), 2, + sym__rhs_expression, + sym_call_expression, + STATE(961), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(982), 9, sym__literal, sym_integer, sym_float, @@ -47115,62 +33606,74 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(306), 15, + [6887] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, anon_sym_switch, - anon_sym_cast, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, 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(304), 22, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1457), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLARtype, - 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, - [846] = 10, - ACTIONS(3), 1, - sym_comment, - STATE(80), 1, + ACTIONS(1479), 1, + sym_identifier, + ACTIONS(1481), 1, + anon_sym_cast, + ACTIONS(1483), 1, + anon_sym_this, + ACTIONS(1485), 1, + sym__prefixUnaryOperator, + ACTIONS(1487), 1, + sym__eitherUnaryOperator, + STATE(647), 1, sym_member_expression, - STATE(89), 1, + STATE(710), 1, sym__constructor_call, - STATE(91), 1, + STATE(712), 1, sym__call, - STATE(462), 1, + STATE(875), 1, + sym__parenthesized_expression, + STATE(979), 1, sym_string, - STATE(1054), 1, + STATE(1073), 1, sym__lhs_expression, - STATE(61), 2, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(893), 2, sym__rhs_expression, sym_call_expression, - STATE(464), 9, + STATE(945), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(982), 9, sym__literal, sym_integer, sym_float, @@ -47180,239 +33683,151 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(242), 20, + [6993] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, anon_sym_switch, - anon_sym_cast, - 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(240), 26, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1322), 1, anon_sym_LBRACE, + ACTIONS(1326), 1, anon_sym_DOLLARtype, + ACTIONS(1328), 1, anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, aux_sym_float_token2, + ACTIONS(1350), 1, aux_sym_string_token1, + ACTIONS(1352), 1, aux_sym_string_token3, - [930] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, - anon_sym_DOT, - ACTIONS(1781), 1, - anon_sym_QMARK, - ACTIONS(428), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(424), 9, + ACTIONS(1457), 1, 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, - sym__semicolon, - ACTIONS(426), 49, - anon_sym_package, - anon_sym_import, - anon_sym_using, - anon_sym_throw, - anon_sym_switch, - anon_sym_case, - anon_sym_default, + ACTIONS(1479), 1, + sym_identifier, + ACTIONS(1481), 1, anon_sym_cast, - anon_sym_in, + ACTIONS(1483), 1, anon_sym_this, - anon_sym_AT, - anon_sym_if, - anon_sym_else, - anon_sym_new, - anon_sym_null, - anon_sym_dynamic, - anon_sym_final, - anon_sym_abstract, - anon_sym_class, - anon_sym_extends, - anon_sym_implements, - anon_sym_interface, - anon_sym_typedef, - anon_sym_function, - anon_sym_var, - aux_sym_integer_token1, - aux_sym_float_token1, + ACTIONS(1485), 1, + sym__prefixUnaryOperator, + ACTIONS(1487), 1, + sym__eitherUnaryOperator, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(885), 1, + sym__parenthesized_expression, + STATE(979), 1, + sym_string, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - anon_sym_break, - anon_sym_catch, - anon_sym_continue, - anon_sym_do, - anon_sym_enum, - anon_sym_extern, - anon_sym_for, - anon_sym_inline, - anon_sym_macro, - anon_sym_operator, - anon_sym_overload, - anon_sym_override, - anon_sym_private, - anon_sym_public, - anon_sym_return, - anon_sym_static, - anon_sym_try, - anon_sym_untyped, - anon_sym_while, - sym_identifier, - [1006] = 10, + STATE(881), 2, + sym__rhs_expression, + sym_call_expression, + STATE(965), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(982), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [7099] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - STATE(420), 1, - sym_operator, - STATE(435), 1, - aux_sym_expression_repeat1, - 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, - ACTIONS(320), 9, + ACTIONS(19), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + ACTIONS(31), 1, anon_sym_DOLLARtype, + ACTIONS(35), 1, anon_sym_LBRACK, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - STATE(88), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(322), 12, - anon_sym_switch, - anon_sym_cast, - anon_sym_this, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_new, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - 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, - [1089] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(250), 1, - anon_sym_this, - ACTIONS(1659), 1, - anon_sym_LBRACE, - ACTIONS(1665), 1, - anon_sym_LBRACK, - ACTIONS(1669), 1, - anon_sym_new, - ACTIONS(1671), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(1673), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(1675), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(1677), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(1679), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(1683), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(1685), 1, + ACTIONS(79), 1, aux_sym_string_token3, - STATE(692), 1, - sym_string, - STATE(695), 1, - sym_member_expression, - STATE(702), 1, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(216), 1, + anon_sym_this, + ACTIONS(278), 1, + anon_sym_switch, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(1543), 1, + sym_identifier, + ACTIONS(1545), 1, + anon_sym_cast, + ACTIONS(1547), 1, + sym__prefixUnaryOperator, + ACTIONS(1549), 1, + sym__eitherUnaryOperator, + STATE(31), 1, + sym__parenthesized_expression, + STATE(40), 1, sym__constructor_call, - STATE(726), 1, + STATE(54), 1, + sym_member_expression, + STATE(57), 1, sym__call, - STATE(1075), 1, + STATE(65), 1, + sym_string, + STATE(1045), 1, sym__lhs_expression, - ACTIONS(1681), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(708), 2, + STATE(39), 2, sym__rhs_expression, sym_call_expression, - STATE(707), 9, + STATE(32), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(102), 9, sym__literal, sym_integer, sym_float, @@ -47422,160 +33837,151 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(242), 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(240), 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_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [1196] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(350), 1, - anon_sym_DASH, - STATE(433), 1, - aux_sym_expression_repeat1, - STATE(799), 1, - sym_operator, - ACTIONS(353), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(347), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(356), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(359), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(340), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, + [7205] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, anon_sym_LBRACE, + ACTIONS(1326), 1, anon_sym_DOLLARtype, + ACTIONS(1328), 1, anon_sym_LBRACK, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - STATE(88), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(344), 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, - ACTIONS(342), 12, - anon_sym_switch, - anon_sym_cast, + ACTIONS(1330), 1, anon_sym_this, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1332), 1, anon_sym_new, + ACTIONS(1338), 1, anon_sym_null, + ACTIONS(1340), 1, aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1455), 1, + sym_identifier, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, + anon_sym_cast, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, + sym_string, + STATE(927), 1, + sym__parenthesized_expression, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - sym_identifier, - [1285] = 23, + STATE(923), 2, + sym__rhs_expression, + sym_call_expression, + STATE(819), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + STATE(939), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + [7311] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1340), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1342), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1344), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1346), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1350), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1352), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(250), 1, - anon_sym_this, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(1783), 1, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1513), 1, sym_identifier, - STATE(80), 1, + ACTIONS(1515), 1, + anon_sym_cast, + ACTIONS(1517), 1, + anon_sym_this, + ACTIONS(1519), 1, + sym__prefixUnaryOperator, + ACTIONS(1521), 1, + sym__eitherUnaryOperator, + STATE(647), 1, sym_member_expression, - STATE(89), 1, + STATE(710), 1, sym__constructor_call, - STATE(91), 1, + STATE(712), 1, sym__call, - STATE(743), 1, + STATE(827), 1, + sym__parenthesized_expression, + STATE(979), 1, sym_string, - STATE(1059), 1, + STATE(1073), 1, sym__lhs_expression, - ACTIONS(83), 2, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - STATE(61), 2, + STATE(841), 2, sym__rhs_expression, sym_call_expression, - STATE(751), 9, + STATE(909), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(986), 9, sym__literal, sym_integer, sym_float, @@ -47585,159 +33991,64 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(242), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(240), 19, - anon_sym_RBRACE, - 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, - [1394] = 13, + [7417] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - STATE(433), 1, - aux_sym_expression_repeat1, - STATE(799), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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, - ACTIONS(336), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, anon_sym_LBRACE, + ACTIONS(1326), 1, anon_sym_DOLLARtype, + ACTIONS(1328), 1, anon_sym_LBRACK, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - STATE(88), 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, - ACTIONS(338), 12, - anon_sym_switch, - anon_sym_cast, + ACTIONS(1330), 1, anon_sym_this, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1332), 1, anon_sym_new, + ACTIONS(1338), 1, anon_sym_null, + ACTIONS(1340), 1, aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - [1483] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1342), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1344), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1346), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1350), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1352), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(1707), 1, - anon_sym_this, - ACTIONS(1785), 1, + ACTIONS(1455), 1, sym_identifier, - STATE(80), 1, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, + anon_sym_cast, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + STATE(647), 1, sym_member_expression, - STATE(89), 1, + STATE(710), 1, sym__constructor_call, - STATE(91), 1, + STATE(712), 1, sym__call, - STATE(782), 1, + STATE(743), 1, sym_string, - STATE(1059), 1, + STATE(856), 1, + sym__parenthesized_expression, + STATE(1073), 1, sym__lhs_expression, - ACTIONS(83), 2, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - STATE(61), 2, + STATE(852), 2, sym__rhs_expression, sym_call_expression, - STATE(779), 9, + STATE(819), 9, sym__literal, sym_integer, sym_float, @@ -47747,288 +34058,161 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(242), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(240), 18, - 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, - [1591] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(350), 1, - anon_sym_DASH, - STATE(437), 1, - aux_sym_expression_repeat1, - STATE(794), 1, - sym_operator, - ACTIONS(353), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(347), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(356), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(359), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(340), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_DOLLARtype, - anon_sym_LBRACK, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - STATE(88), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(342), 10, - anon_sym_switch, - anon_sym_cast, - 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(344), 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, - [1678] = 7, + STATE(902), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + [7523] = 29, ACTIONS(3), 1, sym_comment, - STATE(437), 1, - aux_sym_expression_repeat1, - STATE(794), 1, - sym_operator, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - STATE(88), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(1787), 20, + ACTIONS(1320), 1, anon_sym_switch, - anon_sym_cast, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, anon_sym_this, + ACTIONS(1332), 1, 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(1338), 1, anon_sym_null, + ACTIONS(1340), 1, aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1578), 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, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_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(1342), 1, aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, aux_sym_float_token2, + ACTIONS(1350), 1, aux_sym_string_token1, + ACTIONS(1352), 1, aux_sym_string_token3, - [1753] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - STATE(429), 1, - sym_operator, - STATE(438), 1, - aux_sym_expression_repeat1, - 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, - ACTIONS(1791), 9, + ACTIONS(1455), 1, + sym_identifier, + ACTIONS(1457), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_DOLLARtype, - anon_sym_LBRACK, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - ACTIONS(1789), 10, - anon_sym_switch, + ACTIONS(1461), 1, anon_sym_cast, - anon_sym_this, - anon_sym_new, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, + sym_string, + STATE(926), 1, + sym__parenthesized_expression, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - sym_identifier, - STATE(88), 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, - [1834] = 20, + STATE(931), 2, + sym__rhs_expression, + sym_call_expression, + STATE(819), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + STATE(948), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + [7629] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1328), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1340), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1342), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1344), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1346), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1350), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1352), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1707), 1, + ACTIONS(1366), 1, anon_sym_this, - ACTIONS(1793), 1, + ACTIONS(1489), 1, sym_identifier, - STATE(60), 1, + ACTIONS(1491), 1, + anon_sym_LPAREN, + ACTIONS(1493), 1, + anon_sym_switch, + ACTIONS(1495), 1, + anon_sym_cast, + ACTIONS(1497), 1, + anon_sym_DOLLARtype, + ACTIONS(1499), 1, + sym__prefixUnaryOperator, + ACTIONS(1501), 1, + sym__eitherUnaryOperator, + STATE(650), 1, + sym__parenthesized_expression, + STATE(655), 1, sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(441), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, sym_string, - ACTIONS(83), 2, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - STATE(1149), 9, + STATE(677), 2, + sym__rhs_expression, + sym_call_expression, + STATE(670), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(817), 9, sym__literal, sym_integer, sym_float, @@ -48038,76 +34222,74 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(306), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(304), 19, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [1933] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(271), 1, + [7735] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, anon_sym_LBRACE, - ACTIONS(274), 1, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, anon_sym_LBRACK, - ACTIONS(280), 1, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, anon_sym_null, - ACTIONS(283), 1, + ACTIONS(1340), 1, aux_sym_integer_token1, - ACTIONS(286), 1, + ACTIONS(1342), 1, aux_sym_integer_token2, - ACTIONS(289), 1, + ACTIONS(1344), 1, aux_sym_float_token1, - ACTIONS(292), 1, + ACTIONS(1346), 1, aux_sym_float_token2, - ACTIONS(298), 1, + ACTIONS(1350), 1, aux_sym_string_token1, - ACTIONS(301), 1, + ACTIONS(1352), 1, aux_sym_string_token3, - ACTIONS(1795), 1, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1513), 1, sym_identifier, - ACTIONS(1798), 1, + ACTIONS(1515), 1, + anon_sym_cast, + ACTIONS(1517), 1, anon_sym_this, - STATE(60), 1, + ACTIONS(1519), 1, + sym__prefixUnaryOperator, + ACTIONS(1521), 1, + sym__eitherUnaryOperator, + STATE(647), 1, sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(441), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(854), 1, + sym__parenthesized_expression, + STATE(979), 1, sym_string, - ACTIONS(295), 2, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - STATE(1149), 9, + STATE(840), 2, + sym__rhs_expression, + sym_call_expression, + STATE(925), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(986), 9, sym__literal, sym_integer, sym_float, @@ -48117,76 +34299,64 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(269), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(264), 19, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [2032] = 20, + [7841] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1340), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1342), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1344), 1, aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1707), 1, - anon_sym_this, - ACTIONS(1793), 1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1455), 1, sym_identifier, - STATE(60), 1, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, + anon_sym_cast, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + STATE(647), 1, sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(441), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, sym_string, - ACTIONS(83), 2, + STATE(930), 1, + sym__parenthesized_expression, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - STATE(1149), 9, + STATE(859), 2, + sym__rhs_expression, + sym_call_expression, + STATE(819), 9, sym__literal, sym_integer, sym_float, @@ -48196,76 +34366,84 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(262), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(260), 19, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [2131] = 20, + STATE(937), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + [7947] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1328), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1340), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1342), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1344), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1346), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1350), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1352), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1707), 1, + ACTIONS(1491), 1, + anon_sym_LPAREN, + ACTIONS(1493), 1, + anon_sym_switch, + ACTIONS(1497), 1, + anon_sym_DOLLARtype, + ACTIONS(1517), 1, anon_sym_this, - ACTIONS(1793), 1, + ACTIONS(1525), 1, sym_identifier, - STATE(60), 1, + ACTIONS(1527), 1, + anon_sym_cast, + ACTIONS(1529), 1, + sym__prefixUnaryOperator, + ACTIONS(1531), 1, + sym__eitherUnaryOperator, + STATE(655), 1, sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(441), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(816), 1, + sym__parenthesized_expression, + STATE(979), 1, sym_string, - ACTIONS(83), 2, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - STATE(1149), 9, + STATE(832), 2, + sym__rhs_expression, + sym_call_expression, + STATE(838), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(986), 9, sym__literal, sym_integer, sym_float, @@ -48275,76 +34453,74 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(310), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(308), 19, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [2230] = 20, + [8053] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1340), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1342), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1344), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1346), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1350), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1352), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1707), 1, - anon_sym_this, - ACTIONS(1793), 1, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1479), 1, sym_identifier, - STATE(60), 1, + ACTIONS(1481), 1, + anon_sym_cast, + ACTIONS(1483), 1, + anon_sym_this, + ACTIONS(1485), 1, + sym__prefixUnaryOperator, + ACTIONS(1487), 1, + sym__eitherUnaryOperator, + STATE(647), 1, sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(441), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(932), 1, + sym__parenthesized_expression, + STATE(979), 1, sym_string, - ACTIONS(83), 2, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - STATE(1149), 9, + STATE(922), 2, + sym__rhs_expression, + sym_call_expression, + STATE(943), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(982), 9, sym__literal, sym_integer, sym_float, @@ -48354,76 +34530,74 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(254), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(252), 19, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [2329] = 20, + [8159] = 29, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_DOLLARtype, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1707), 1, + ACTIONS(216), 1, anon_sym_this, - ACTIONS(1793), 1, + ACTIONS(278), 1, + anon_sym_switch, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(1543), 1, sym_identifier, - STATE(60), 1, + ACTIONS(1545), 1, + anon_sym_cast, + ACTIONS(1547), 1, + sym__prefixUnaryOperator, + ACTIONS(1549), 1, + sym__eitherUnaryOperator, + STATE(34), 1, + sym__parenthesized_expression, + STATE(40), 1, + sym__constructor_call, + STATE(54), 1, sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(441), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, + STATE(57), 1, + sym__call, + STATE(65), 1, sym_string, - ACTIONS(83), 2, + STATE(1045), 1, + sym__lhs_expression, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(1149), 9, + STATE(33), 2, + sym__rhs_expression, + sym_call_expression, + STATE(35), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(102), 9, sym__literal, sym_integer, sym_float, @@ -48433,76 +34607,74 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(248), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(244), 19, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [2428] = 20, + [8265] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1328), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1340), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1342), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1344), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1346), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1350), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1352), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1707), 1, + ACTIONS(1366), 1, anon_sym_this, - ACTIONS(1793), 1, + ACTIONS(1491), 1, + anon_sym_LPAREN, + ACTIONS(1493), 1, + anon_sym_switch, + ACTIONS(1497), 1, + anon_sym_DOLLARtype, + ACTIONS(1505), 1, sym_identifier, - STATE(60), 1, + ACTIONS(1507), 1, + anon_sym_cast, + ACTIONS(1509), 1, + sym__prefixUnaryOperator, + ACTIONS(1511), 1, + sym__eitherUnaryOperator, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(782), 1, + sym__parenthesized_expression, + STATE(806), 1, sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(441), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, + STATE(929), 1, sym_string, - ACTIONS(83), 2, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - STATE(1149), 9, + STATE(786), 2, + sym__rhs_expression, + sym_call_expression, + STATE(788), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(942), 9, sym__literal, sym_integer, sym_float, @@ -48512,76 +34684,74 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(258), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(256), 19, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [2527] = 20, + [8371] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1340), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1342), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1344), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1346), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1350), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1352), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1753), 1, + ACTIONS(1455), 1, sym_identifier, - ACTIONS(1755), 1, - anon_sym_this, - STATE(60), 1, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, + anon_sym_cast, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + STATE(647), 1, sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(450), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(715), 1, + sym__parenthesized_expression, + STATE(743), 1, sym_string, - ACTIONS(83), 2, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - STATE(1162), 9, + STATE(716), 2, + sym__rhs_expression, + sym_call_expression, + STATE(729), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(819), 9, sym__literal, sym_integer, sym_float, @@ -48591,75 +34761,64 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(258), 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(256), 20, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_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__semicolon, - [2625] = 20, + [8477] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1340), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1342), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1344), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1346), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1350), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1352), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1753), 1, + ACTIONS(1455), 1, sym_identifier, - ACTIONS(1755), 1, - anon_sym_this, - STATE(60), 1, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, + anon_sym_cast, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + STATE(647), 1, sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(450), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, sym_string, - ACTIONS(83), 2, + STATE(820), 1, + sym__parenthesized_expression, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - STATE(1162), 9, + STATE(796), 2, + sym__rhs_expression, + sym_call_expression, + STATE(819), 9, sym__literal, sym_integer, sym_float, @@ -48669,153 +34828,161 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(254), 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(252), 20, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_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__semicolon, - [2723] = 20, + STATE(821), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + [8583] = 29, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_DOLLARtype, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1753), 1, - sym_identifier, - ACTIONS(1755), 1, + ACTIONS(216), 1, anon_sym_this, - STATE(60), 1, + ACTIONS(278), 1, + anon_sym_switch, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(1356), 1, + anon_sym_cast, + ACTIONS(1358), 1, + sym__prefixUnaryOperator, + ACTIONS(1360), 1, + sym__eitherUnaryOperator, + ACTIONS(1523), 1, + sym_identifier, + STATE(40), 1, + sym__constructor_call, + STATE(54), 1, sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(450), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, + STATE(57), 1, + sym__call, + STATE(455), 1, + sym__parenthesized_expression, + STATE(518), 1, sym_string, - ACTIONS(83), 2, + STATE(1045), 1, + sym__lhs_expression, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(1162), 9, + STATE(496), 2, + sym__rhs_expression, + sym_call_expression, + STATE(488), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(531), 9, sym__literal, sym_integer, sym_float, sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(262), 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(260), 20, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_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__semicolon, - [2821] = 20, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [8689] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(271), 1, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, anon_sym_LBRACE, - ACTIONS(274), 1, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, anon_sym_LBRACK, - ACTIONS(280), 1, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, anon_sym_null, - ACTIONS(283), 1, + ACTIONS(1340), 1, aux_sym_integer_token1, - ACTIONS(286), 1, + ACTIONS(1342), 1, aux_sym_integer_token2, - ACTIONS(289), 1, + ACTIONS(1344), 1, aux_sym_float_token1, - ACTIONS(292), 1, + ACTIONS(1346), 1, aux_sym_float_token2, - ACTIONS(298), 1, + ACTIONS(1350), 1, aux_sym_string_token1, - ACTIONS(301), 1, + ACTIONS(1352), 1, aux_sym_string_token3, - ACTIONS(1801), 1, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1479), 1, sym_identifier, - ACTIONS(1804), 1, + ACTIONS(1481), 1, + anon_sym_cast, + ACTIONS(1483), 1, anon_sym_this, - STATE(60), 1, + ACTIONS(1485), 1, + sym__prefixUnaryOperator, + ACTIONS(1487), 1, + sym__eitherUnaryOperator, + STATE(647), 1, sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(450), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(861), 1, + sym__parenthesized_expression, + STATE(979), 1, sym_string, - ACTIONS(295), 2, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - STATE(1162), 9, + STATE(905), 2, + sym__rhs_expression, + sym_call_expression, + STATE(969), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(982), 9, sym__literal, sym_integer, sym_float, @@ -48825,75 +34992,64 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(269), 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(264), 20, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_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__semicolon, - [2919] = 20, + [8795] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1324), 1, + anon_sym_cast, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1334), 1, + sym__prefixUnaryOperator, + ACTIONS(1336), 1, + sym__eitherUnaryOperator, + ACTIONS(1338), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1340), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1342), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1344), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1346), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1350), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1352), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1753), 1, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1553), 1, sym_identifier, - ACTIONS(1755), 1, - anon_sym_this, - STATE(60), 1, + STATE(647), 1, sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(450), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(912), 1, + sym__parenthesized_expression, + STATE(929), 1, sym_string, - ACTIONS(83), 2, + STATE(1028), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - STATE(1162), 9, + STATE(908), 2, + sym__rhs_expression, + sym_call_expression, + STATE(959), 9, sym__literal, sym_integer, sym_float, @@ -48903,75 +35059,84 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(306), 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(304), 20, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_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__semicolon, - [3017] = 20, + STATE(971), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + [8901] = 29, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_DOLLARtype, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1753), 1, - sym_identifier, - ACTIONS(1755), 1, + ACTIONS(216), 1, anon_sym_this, - STATE(60), 1, + ACTIONS(278), 1, + anon_sym_switch, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(1356), 1, + anon_sym_cast, + ACTIONS(1358), 1, + sym__prefixUnaryOperator, + ACTIONS(1360), 1, + sym__eitherUnaryOperator, + ACTIONS(1523), 1, + sym_identifier, + STATE(40), 1, + sym__constructor_call, + STATE(54), 1, sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(450), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, + STATE(57), 1, + sym__call, + STATE(454), 1, + sym__parenthesized_expression, + STATE(518), 1, sym_string, - ACTIONS(83), 2, + STATE(1045), 1, + sym__lhs_expression, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(1162), 9, + STATE(476), 2, + sym__rhs_expression, + sym_call_expression, + STATE(498), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(531), 9, sym__literal, sym_integer, sym_float, @@ -48981,75 +35146,74 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(310), 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(308), 20, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_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__semicolon, - [3115] = 20, + [9007] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1328), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1340), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1342), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1344), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1346), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1350), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1352), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1753), 1, - sym_identifier, - ACTIONS(1755), 1, + ACTIONS(1491), 1, + anon_sym_LPAREN, + ACTIONS(1493), 1, + anon_sym_switch, + ACTIONS(1497), 1, + anon_sym_DOLLARtype, + ACTIONS(1517), 1, anon_sym_this, - STATE(60), 1, + ACTIONS(1525), 1, + sym_identifier, + ACTIONS(1527), 1, + anon_sym_cast, + ACTIONS(1529), 1, + sym__prefixUnaryOperator, + ACTIONS(1531), 1, + sym__eitherUnaryOperator, + STATE(655), 1, sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(450), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(815), 1, + sym__parenthesized_expression, + STATE(979), 1, sym_string, - ACTIONS(83), 2, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - STATE(1162), 9, + STATE(835), 2, + sym__rhs_expression, + sym_call_expression, + STATE(833), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(986), 9, sym__literal, sym_integer, sym_float, @@ -49059,895 +35223,971 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(248), 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(244), 20, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_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__semicolon, - [3213] = 11, + [9113] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(464), 1, - anon_sym_DOT, - ACTIONS(466), 1, - anon_sym_QMARK, - ACTIONS(592), 1, - anon_sym_in, - ACTIONS(1807), 1, - anon_sym_COLON, - ACTIONS(1809), 1, - anon_sym_EQ_GT, - ACTIONS(424), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(508), 19, + ACTIONS(1320), 1, anon_sym_switch, - anon_sym_cast, - 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(506), 22, + ACTIONS(1322), 1, anon_sym_LBRACE, + ACTIONS(1326), 1, anon_sym_DOLLARtype, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_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, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [3289] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(454), 1, + ACTIONS(1328), 1, anon_sym_LBRACK, - ACTIONS(592), 1, - anon_sym_in, - ACTIONS(1811), 1, - anon_sym_DOT, - ACTIONS(1813), 1, - anon_sym_QMARK, - ACTIONS(1809), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(424), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(508), 19, - anon_sym_switch, - anon_sym_cast, - anon_sym_this, + ACTIONS(1332), 1, 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, + ACTIONS(1338), 1, anon_sym_null, + ACTIONS(1340), 1, aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(506), 22, - anon_sym_LBRACE, - anon_sym_DOLLARtype, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, + ACTIONS(1342), 1, aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [3363] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(428), 1, - anon_sym_COLON, - ACTIONS(426), 22, - anon_sym_switch, - anon_sym_cast, - anon_sym_this, - anon_sym_DOT, - 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, + ACTIONS(1344), 1, aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(424), 28, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOLLARtype, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - aux_sym_integer_token2, + ACTIONS(1346), 1, aux_sym_float_token2, + ACTIONS(1350), 1, aux_sym_string_token1, + ACTIONS(1352), 1, aux_sym_string_token3, - [3424] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(424), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(508), 21, - anon_sym_switch, + ACTIONS(1364), 1, anon_sym_cast, + ACTIONS(1366), 1, anon_sym_this, - anon_sym_DOT, - 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, + ACTIONS(1368), 1, + sym__prefixUnaryOperator, + ACTIONS(1370), 1, + sym__eitherUnaryOperator, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1551), 1, + sym_identifier, + STATE(647), 1, + sym_member_expression, + STATE(676), 1, + sym__parenthesized_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, + sym_string, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - sym_identifier, - ACTIONS(506), 23, - anon_sym_LBRACE, - anon_sym_DOLLARtype, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [3489] = 11, + STATE(666), 2, + sym__rhs_expression, + sym_call_expression, + STATE(707), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(817), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [9219] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(424), 1, - anon_sym_LPAREN, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(430), 1, - anon_sym_DOT, - ACTIONS(432), 1, - anon_sym_QMARK, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(592), 1, - anon_sym_in, - ACTIONS(1809), 1, - anon_sym_EQ_GT, - ACTIONS(1815), 1, - anon_sym_COLON, - ACTIONS(508), 19, + ACTIONS(1320), 1, anon_sym_switch, - anon_sym_cast, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, anon_sym_this, + ACTIONS(1332), 1, 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, + ACTIONS(1338), 1, anon_sym_null, + ACTIONS(1340), 1, aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1455), 1, + sym_identifier, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, + anon_sym_cast, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, + sym_string, + STATE(864), 1, + sym__parenthesized_expression, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - sym_identifier, - ACTIONS(506), 23, - anon_sym_RPAREN, + STATE(865), 2, + sym__rhs_expression, + sym_call_expression, + STATE(819), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + STATE(938), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + [9325] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, anon_sym_LBRACE, + ACTIONS(1326), 1, anon_sym_DOLLARtype, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, aux_sym_float_token2, + ACTIONS(1350), 1, aux_sym_string_token1, + ACTIONS(1352), 1, aux_sym_string_token3, - [3563] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(424), 1, + ACTIONS(1457), 1, anon_sym_LPAREN, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(430), 1, - anon_sym_DOT, - ACTIONS(432), 1, - anon_sym_QMARK, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(592), 1, - anon_sym_in, - ACTIONS(1809), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(508), 19, - anon_sym_switch, + ACTIONS(1479), 1, + sym_identifier, + ACTIONS(1481), 1, anon_sym_cast, + ACTIONS(1483), 1, 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, + ACTIONS(1485), 1, + sym__prefixUnaryOperator, + ACTIONS(1487), 1, + sym__eitherUnaryOperator, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(867), 1, + sym__parenthesized_expression, + STATE(979), 1, + sym_string, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - sym_identifier, - ACTIONS(506), 23, - anon_sym_RPAREN, + STATE(863), 2, + sym__rhs_expression, + sym_call_expression, + STATE(941), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(982), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [9431] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, anon_sym_LBRACE, + ACTIONS(1326), 1, anon_sym_DOLLARtype, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, aux_sym_float_token2, + ACTIONS(1350), 1, aux_sym_string_token1, + ACTIONS(1352), 1, aux_sym_string_token3, - [3635] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(424), 1, - anon_sym_LPAREN, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(592), 1, - anon_sym_in, - ACTIONS(594), 1, - anon_sym_DOT, - ACTIONS(596), 1, - anon_sym_QMARK, - ACTIONS(1809), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(508), 19, - anon_sym_switch, + ACTIONS(1364), 1, anon_sym_cast, + ACTIONS(1366), 1, 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, + ACTIONS(1368), 1, + sym__prefixUnaryOperator, + ACTIONS(1370), 1, + sym__eitherUnaryOperator, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1551), 1, + sym_identifier, + STATE(647), 1, + sym_member_expression, + STATE(665), 1, + sym__parenthesized_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, + sym_string, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - sym_identifier, - ACTIONS(506), 23, - anon_sym_RPAREN, + STATE(660), 2, + sym__rhs_expression, + sym_call_expression, + STATE(717), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(817), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [9537] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, anon_sym_LBRACE, + ACTIONS(1326), 1, anon_sym_DOLLARtype, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, aux_sym_float_token2, + ACTIONS(1350), 1, aux_sym_string_token1, + ACTIONS(1352), 1, aux_sym_string_token3, - [3707] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(424), 1, + ACTIONS(1457), 1, anon_sym_LPAREN, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(594), 1, - anon_sym_DOT, - ACTIONS(596), 1, - anon_sym_QMARK, - ACTIONS(1809), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(508), 19, - anon_sym_switch, + ACTIONS(1479), 1, + sym_identifier, + ACTIONS(1481), 1, anon_sym_cast, + ACTIONS(1483), 1, 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, + ACTIONS(1485), 1, + sym__prefixUnaryOperator, + ACTIONS(1487), 1, + sym__eitherUnaryOperator, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(892), 1, + sym__parenthesized_expression, + STATE(979), 1, + sym_string, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - sym_identifier, - ACTIONS(506), 24, - anon_sym_RPAREN, + STATE(894), 2, + sym__rhs_expression, + sym_call_expression, + STATE(966), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(982), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [9643] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, anon_sym_LBRACE, + ACTIONS(1326), 1, anon_sym_DOLLARtype, + ACTIONS(1328), 1, anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, aux_sym_float_token2, + ACTIONS(1350), 1, aux_sym_string_token1, + ACTIONS(1352), 1, aux_sym_string_token3, - [3774] = 4, + ACTIONS(1366), 1, + anon_sym_this, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1555), 1, + sym_identifier, + ACTIONS(1557), 1, + anon_sym_cast, + ACTIONS(1559), 1, + sym__prefixUnaryOperator, + ACTIONS(1561), 1, + sym__eitherUnaryOperator, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(802), 1, + sym__parenthesized_expression, + STATE(804), 1, + sym_member_expression, + STATE(929), 1, + sym_string, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(793), 2, + sym__rhs_expression, + sym_call_expression, + STATE(850), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(942), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [9749] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(1809), 1, - anon_sym_COLON, - ACTIONS(588), 22, + ACTIONS(1320), 1, anon_sym_switch, - anon_sym_cast, - anon_sym_this, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1332), 1, 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(1338), 1, anon_sym_null, + ACTIONS(1340), 1, aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + ACTIONS(1344), 1, aux_sym_float_token1, + ACTIONS(1346), 1, + aux_sym_float_token2, + ACTIONS(1350), 1, + aux_sym_string_token1, + ACTIONS(1352), 1, + aux_sym_string_token3, + ACTIONS(1366), 1, + anon_sym_this, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1555), 1, + sym_identifier, + ACTIONS(1557), 1, + anon_sym_cast, + ACTIONS(1559), 1, + sym__prefixUnaryOperator, + ACTIONS(1561), 1, + sym__eitherUnaryOperator, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(787), 1, + sym__parenthesized_expression, + STATE(804), 1, + sym_member_expression, + STATE(929), 1, + sym_string, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - sym_identifier, - ACTIONS(586), 26, - anon_sym_LPAREN, - anon_sym_RPAREN, + STATE(805), 2, + sym__rhs_expression, + sym_call_expression, + STATE(857), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(942), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [9855] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, anon_sym_LBRACE, + ACTIONS(1326), 1, anon_sym_DOLLARtype, + ACTIONS(1328), 1, anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, aux_sym_float_token2, + ACTIONS(1350), 1, aux_sym_string_token1, + ACTIONS(1352), 1, aux_sym_string_token3, - [3833] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(424), 1, + ACTIONS(1457), 1, anon_sym_LPAREN, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(430), 1, - anon_sym_DOT, - ACTIONS(432), 1, - anon_sym_QMARK, - ACTIONS(1809), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(508), 19, - anon_sym_switch, + ACTIONS(1479), 1, + sym_identifier, + ACTIONS(1481), 1, anon_sym_cast, + ACTIONS(1483), 1, 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, + ACTIONS(1485), 1, + sym__prefixUnaryOperator, + ACTIONS(1487), 1, + sym__eitherUnaryOperator, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(910), 1, + sym__parenthesized_expression, + STATE(979), 1, + sym_string, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - sym_identifier, - ACTIONS(506), 24, - anon_sym_RPAREN, + STATE(901), 2, + sym__rhs_expression, + sym_call_expression, + STATE(958), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(982), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [9961] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_switch, + ACTIONS(1322), 1, anon_sym_LBRACE, + ACTIONS(1326), 1, anon_sym_DOLLARtype, + ACTIONS(1328), 1, anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, + anon_sym_null, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, aux_sym_float_token2, + ACTIONS(1350), 1, aux_sym_string_token1, + ACTIONS(1352), 1, aux_sym_string_token3, - [3900] = 6, + ACTIONS(1366), 1, + anon_sym_this, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1555), 1, + sym_identifier, + ACTIONS(1557), 1, + anon_sym_cast, + ACTIONS(1559), 1, + sym__prefixUnaryOperator, + ACTIONS(1561), 1, + sym__eitherUnaryOperator, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(804), 1, + sym_member_expression, + STATE(808), 1, + sym__parenthesized_expression, + STATE(929), 1, + sym_string, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, + anon_sym_true, + anon_sym_false, + STATE(807), 2, + sym__rhs_expression, + sym_call_expression, + STATE(845), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + STATE(942), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [10067] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(660), 1, - anon_sym_DOT, - ACTIONS(662), 1, - anon_sym_QMARK, - ACTIONS(1809), 1, - anon_sym_EQ_GT, - ACTIONS(508), 20, + ACTIONS(1320), 1, anon_sym_switch, - anon_sym_cast, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1326), 1, + anon_sym_DOLLARtype, + ACTIONS(1328), 1, + anon_sym_LBRACK, + ACTIONS(1330), 1, anon_sym_this, + ACTIONS(1332), 1, 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(1338), 1, anon_sym_null, + ACTIONS(1340), 1, aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(506), 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, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, + ACTIONS(1342), 1, aux_sym_integer_token2, + ACTIONS(1344), 1, + aux_sym_float_token1, + ACTIONS(1346), 1, aux_sym_float_token2, + ACTIONS(1350), 1, aux_sym_string_token1, + ACTIONS(1352), 1, aux_sym_string_token3, - [3962] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(612), 1, - anon_sym_DOT, - ACTIONS(614), 1, - anon_sym_QMARK, - ACTIONS(1809), 1, - anon_sym_EQ_GT, - ACTIONS(508), 20, - anon_sym_switch, + ACTIONS(1455), 1, + sym_identifier, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, anon_sym_cast, - 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, + ACTIONS(1463), 1, + sym__prefixUnaryOperator, + ACTIONS(1465), 1, + sym__eitherUnaryOperator, + STATE(647), 1, + sym_member_expression, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, + sym_string, + STATE(860), 1, + sym__parenthesized_expression, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - sym_identifier, - ACTIONS(506), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_DOLLARtype, + STATE(862), 2, + sym__rhs_expression, + sym_call_expression, + STATE(819), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + STATE(960), 9, + sym__unaryExpression, + sym_runtime_type_check_expression, + sym_switch_expression, + sym_cast_expression, + sym_type_trace_expression, + sym_range_expression, + sym_subscript_expression, + sym__binary_expression, + sym_ternary_expression, + [10173] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, aux_sym_float_token2, + ACTIONS(77), 1, aux_sym_string_token1, + ACTIONS(79), 1, aux_sym_string_token3, - [4024] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1809), 1, - anon_sym_EQ_GT, - ACTIONS(1817), 1, - anon_sym_DOT, - ACTIONS(1819), 1, - anon_sym_QMARK, - ACTIONS(508), 20, - anon_sym_switch, - anon_sym_cast, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1366), 1, 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, + ACTIONS(1563), 1, + sym_identifier, + STATE(393), 1, + aux_sym_member_expression_repeat1, + STATE(512), 1, + sym__lhs_expression, + STATE(516), 1, + sym_member_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - sym_identifier, - ACTIONS(506), 25, + ACTIONS(264), 7, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + anon_sym_LT, + STATE(1186), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(262), 12, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_DOLLARtype, - anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_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, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [4086] = 6, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [10260] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1809), 1, - anon_sym_EQ_GT, - ACTIONS(1821), 1, - anon_sym_DOT, - ACTIONS(1823), 1, - anon_sym_QMARK, - ACTIONS(508), 20, + ACTIONS(1565), 1, + sym_identifier, + ACTIONS(1567), 1, + anon_sym_LPAREN, + STATE(86), 1, + sym__parenthesized_expression, + ACTIONS(276), 42, + anon_sym_package, + anon_sym_import, + anon_sym_using, + anon_sym_throw, anon_sym_switch, + anon_sym_case, + anon_sym_default, anon_sym_cast, + anon_sym_in, anon_sym_this, + anon_sym_if, + 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_dynamic, + anon_sym_final, + anon_sym_abstract, + anon_sym_class, + anon_sym_extends, + anon_sym_implements, + anon_sym_interface, + anon_sym_typedef, + anon_sym_function, + anon_sym_var, + anon_sym_break, + anon_sym_catch, + anon_sym_continue, + anon_sym_do, + anon_sym_enum, + anon_sym_extern, + anon_sym_for, + anon_sym_inline, + anon_sym_macro, + anon_sym_operator, + anon_sym_overload, + anon_sym_override, + anon_sym_private, + anon_sym_public, + anon_sym_return, + anon_sym_static, + anon_sym_try, + anon_sym_untyped, + anon_sym_while, + [10317] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + anon_sym_LBRACE, + ACTIONS(228), 1, + anon_sym_LBRACK, + ACTIONS(234), 1, anon_sym_null, + ACTIONS(237), 1, aux_sym_integer_token1, + ACTIONS(240), 1, + aux_sym_integer_token2, + ACTIONS(243), 1, aux_sym_float_token1, + ACTIONS(246), 1, + aux_sym_float_token2, + ACTIONS(252), 1, + aux_sym_string_token1, + ACTIONS(255), 1, + aux_sym_string_token3, + ACTIONS(1569), 1, + sym_identifier, + ACTIONS(1572), 1, + anon_sym_this, + STATE(393), 1, + aux_sym_member_expression_repeat1, + STATE(512), 1, + sym__lhs_expression, + STATE(516), 1, + sym_member_expression, + STATE(1025), 1, + sym_string, + ACTIONS(249), 2, anon_sym_true, anon_sym_false, - sym_identifier, - ACTIONS(506), 25, + ACTIONS(223), 7, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + anon_sym_LT, + STATE(1186), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(218), 12, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_DOLLARtype, - anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_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, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [4148] = 13, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [10404] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(1577), 1, + anon_sym_LPAREN, + ACTIONS(1579), 2, anon_sym_in, - ACTIONS(39), 1, anon_sym_AT, - ACTIONS(41), 1, - anon_sym_AT_COLON, - ACTIONS(1827), 1, - anon_sym_final, - ACTIONS(1829), 1, - anon_sym_abstract, - ACTIONS(1831), 1, - anon_sym_class, - ACTIONS(1833), 1, - anon_sym_typedef, - ACTIONS(1835), 1, - anon_sym_function, - ACTIONS(1837), 1, - anon_sym_var, - STATE(470), 2, - sym_metadata, - aux_sym_class_declaration_repeat1, - STATE(483), 2, - sym_keyword, - aux_sym_function_declaration_repeat1, - ACTIONS(1825), 35, + ACTIONS(1575), 42, anon_sym_package, anon_sym_import, anon_sym_using, @@ -49957,13 +36197,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_cast, anon_sym_this, + anon_sym_AT_COLON, anon_sym_if, anon_sym_else, anon_sym_new, anon_sym_dynamic, + anon_sym_final, + anon_sym_abstract, + anon_sym_class, anon_sym_extends, anon_sym_implements, anon_sym_interface, + anon_sym_typedef, + anon_sym_function, + anon_sym_var, anon_sym_break, anon_sym_catch, anon_sym_continue, @@ -49983,71 +36230,336 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_untyped, anon_sym_while, - [4224] = 4, + [10459] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, + ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(1789), 20, - anon_sym_switch, - anon_sym_cast, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1366), 1, 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, + ACTIONS(1563), 1, + sym_identifier, + STATE(393), 1, + aux_sym_member_expression_repeat1, + STATE(512), 1, + sym__lhs_expression, + STATE(516), 1, + sym_member_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(212), 7, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, anon_sym_EQ, + anon_sym_LT, + STATE(1186), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(208), 12, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [10546] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, anon_sym_null, + ACTIONS(67), 1, aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1366), 1, + anon_sym_this, + ACTIONS(1563), 1, + sym_identifier, + STATE(393), 1, + aux_sym_member_expression_repeat1, + STATE(512), 1, + sym__lhs_expression, + STATE(516), 1, + sym_member_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - sym_identifier, - ACTIONS(1791), 25, + ACTIONS(260), 7, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + anon_sym_LT, + STATE(1186), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(258), 12, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [10633] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, anon_sym_LBRACE, - anon_sym_DOLLARtype, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_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(1330), 1, + anon_sym_this, + ACTIONS(1581), 1, + sym_identifier, + STATE(405), 1, + aux_sym_member_expression_repeat1, + STATE(512), 1, + sym__lhs_expression, + STATE(516), 1, + sym_member_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(264), 6, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + anon_sym_LT, + STATE(1191), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(262), 12, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [10719] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, aux_sym_float_token2, + ACTIONS(77), 1, aux_sym_string_token1, + ACTIONS(79), 1, aux_sym_string_token3, - [4280] = 6, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1581), 1, + sym_identifier, + STATE(405), 1, + aux_sym_member_expression_repeat1, + STATE(512), 1, + sym__lhs_expression, + STATE(516), 1, + sym_member_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(260), 6, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + anon_sym_LT, + STATE(1191), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(258), 12, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [10805] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1586), 1, + anon_sym_in, + STATE(399), 2, + sym_keyword, + aux_sym_function_declaration_repeat1, + ACTIONS(1583), 41, + anon_sym_package, + anon_sym_import, + anon_sym_using, + anon_sym_throw, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_cast, + anon_sym_this, + anon_sym_if, + anon_sym_else, + anon_sym_new, + anon_sym_dynamic, + anon_sym_final, + anon_sym_abstract, + anon_sym_class, + anon_sym_extends, + anon_sym_implements, + anon_sym_interface, + anon_sym_typedef, + anon_sym_function, + anon_sym_var, + anon_sym_break, + anon_sym_catch, + anon_sym_continue, + anon_sym_do, + anon_sym_enum, + anon_sym_extern, + anon_sym_for, + anon_sym_inline, + anon_sym_macro, + anon_sym_operator, + anon_sym_overload, + anon_sym_override, + anon_sym_private, + anon_sym_public, + anon_sym_return, + anon_sym_static, + anon_sym_try, + anon_sym_untyped, + anon_sym_while, + [10859] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, + ACTIONS(33), 1, anon_sym_in, - ACTIONS(1843), 1, - anon_sym_AT, - ACTIONS(1846), 1, - anon_sym_AT_COLON, - STATE(470), 2, - sym_metadata, - aux_sym_class_declaration_repeat1, - ACTIONS(1839), 41, + ACTIONS(1591), 1, + anon_sym_function, + ACTIONS(1589), 2, + anon_sym_final, + anon_sym_var, + STATE(399), 2, + sym_keyword, + aux_sym_function_declaration_repeat1, + ACTIONS(1439), 38, anon_sym_package, anon_sym_import, anon_sym_using, @@ -50061,15 +36573,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_new, anon_sym_dynamic, - anon_sym_final, anon_sym_abstract, anon_sym_class, anon_sym_extends, anon_sym_implements, anon_sym_interface, anon_sym_typedef, - anon_sym_function, - anon_sym_var, anon_sym_break, anon_sym_catch, anon_sym_continue, @@ -50089,257 +36598,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_untyped, anon_sym_while, - [4340] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1849), 1, - anon_sym_DASH, - STATE(423), 1, - sym_operator, - STATE(473), 1, - aux_sym_expression_repeat1, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(322), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(933), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(320), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - sym__semicolon, - ACTIONS(1851), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(1853), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(88), 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, - [4414] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(350), 1, - anon_sym_DASH, - STATE(472), 1, - aux_sym_expression_repeat1, - STATE(805), 1, - sym_operator, - ACTIONS(342), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(353), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(340), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - sym__semicolon, - ACTIONS(347), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(356), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(359), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(88), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(344), 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, - [4488] = 13, + [10917] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - STATE(472), 1, - aux_sym_expression_repeat1, - STATE(805), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(338), 2, - anon_sym_DOT, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1581), 1, + sym_identifier, + STATE(405), 1, + aux_sym_member_expression_repeat1, + STATE(512), 1, + sym__lhs_expression, + STATE(516), 1, + sym_member_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(212), 6, anon_sym_QMARK, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, anon_sym_EQ, - ACTIONS(336), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - sym__semicolon, - 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(88), 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, - [4562] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - STATE(423), 1, - sym_operator, - STATE(473), 1, - aux_sym_expression_repeat1, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(322), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(320), 4, + anon_sym_LT, + STATE(1191), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(208), 12, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_DASH_GT, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym__semicolon, - 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(88), 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, - [4630] = 5, + [11003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, - sym_identifier, - ACTIONS(1857), 1, - anon_sym_LPAREN, - STATE(77), 1, - sym__parenthesized_expression, - ACTIONS(228), 42, + ACTIONS(1595), 2, + anon_sym_in, + anon_sym_AT, + ACTIONS(1593), 42, anon_sym_package, anon_sym_import, anon_sym_using, @@ -50348,8 +36679,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_cast, - anon_sym_in, anon_sym_this, + anon_sym_AT_COLON, anon_sym_if, anon_sym_else, anon_sym_new, @@ -50382,184 +36713,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_untyped, anon_sym_while, - [4687] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1859), 1, - anon_sym_DOT, - ACTIONS(1861), 1, - anon_sym_QMARK, - ACTIONS(426), 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(424), 26, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - sym__semicolon, - [4744] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(350), 1, - anon_sym_DASH, - STATE(477), 1, - aux_sym_expression_repeat1, - STATE(778), 1, - sym_operator, - ACTIONS(342), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(353), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(340), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - sym_identifier, - ACTIONS(347), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(356), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(359), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(88), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(344), 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, - [4817] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - STATE(432), 1, - sym_operator, - STATE(480), 1, - aux_sym_expression_repeat1, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(322), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(320), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - sym_identifier, - 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(88), 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, - [4884] = 4, + [11055] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, - anon_sym_LPAREN, - ACTIONS(1867), 2, + ACTIONS(276), 1, anon_sym_in, - anon_sym_AT, - ACTIONS(1863), 42, + ACTIONS(1599), 1, + anon_sym_LPAREN, + STATE(143), 1, + sym__arg_list, + ACTIONS(1597), 41, anon_sym_package, anon_sym_import, anon_sym_using, @@ -50569,7 +36732,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_cast, anon_sym_this, - anon_sym_AT_COLON, anon_sym_if, anon_sym_else, anon_sym_new, @@ -50602,201 +36764,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_untyped, anon_sym_while, - [4939] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - STATE(477), 1, - aux_sym_expression_repeat1, - STATE(778), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(338), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(336), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - sym_identifier, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(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(88), 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, - [5012] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1849), 1, - anon_sym_DASH, - STATE(432), 1, - sym_operator, - STATE(480), 1, - aux_sym_expression_repeat1, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(322), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(933), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(320), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - sym_identifier, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1851), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(1853), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(88), 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, - [5085] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(1869), 1, - sym_identifier, - ACTIONS(1871), 1, - anon_sym_COMMA, - ACTIONS(1873), 1, - anon_sym_RBRACK, - STATE(517), 1, - aux_sym_expression_repeat1, - STATE(796), 1, - sym_operator, - STATE(1129), 1, - aux_sym_array_repeat1, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [5161] = 6, + [11111] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_in, - ACTIONS(1877), 1, + ACTIONS(1449), 1, anon_sym_function, - ACTIONS(1875), 2, + ACTIONS(1451), 2, anon_sym_final, anon_sym_var, - STATE(498), 2, + STATE(399), 2, sym_keyword, aux_sym_function_declaration_repeat1, - ACTIONS(1825), 38, + ACTIONS(1439), 38, anon_sym_package, anon_sym_import, anon_sym_using, @@ -50835,13 +36816,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_untyped, anon_sym_while, - [5219] = 3, + [11169] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + anon_sym_LBRACE, + ACTIONS(228), 1, + anon_sym_LBRACK, + ACTIONS(234), 1, + anon_sym_null, + ACTIONS(237), 1, + aux_sym_integer_token1, + ACTIONS(240), 1, + aux_sym_integer_token2, + ACTIONS(243), 1, + aux_sym_float_token1, + ACTIONS(246), 1, + aux_sym_float_token2, + ACTIONS(252), 1, + aux_sym_string_token1, + ACTIONS(255), 1, + aux_sym_string_token3, + ACTIONS(1601), 1, + sym_identifier, + ACTIONS(1604), 1, + anon_sym_this, + STATE(405), 1, + aux_sym_member_expression_repeat1, + STATE(512), 1, + sym__lhs_expression, + STATE(516), 1, + sym_member_expression, + STATE(1025), 1, + sym_string, + ACTIONS(249), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(223), 6, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + anon_sym_LT, + STATE(1191), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(218), 12, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [11255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 2, - anon_sym_in, - anon_sym_AT, - ACTIONS(1879), 42, + ACTIONS(1607), 1, + sym_identifier, + ACTIONS(276), 42, anon_sym_package, anon_sym_import, anon_sym_using, @@ -50850,8 +36896,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_cast, + anon_sym_in, anon_sym_this, - anon_sym_AT_COLON, anon_sym_if, anon_sym_else, anon_sym_new, @@ -50884,197 +36930,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_untyped, anon_sym_while, - [5271] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(1871), 1, - anon_sym_COMMA, - ACTIONS(1883), 1, - sym_identifier, - ACTIONS(1885), 1, - anon_sym_RBRACK, - STATE(487), 1, - aux_sym_expression_repeat1, - STATE(713), 1, - sym_operator, - STATE(1137), 1, - aux_sym_array_repeat1, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [5347] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - STATE(489), 1, - aux_sym_expression_repeat1, - STATE(787), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(336), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(338), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(952), 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(88), 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, - [5419] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(1871), 1, - anon_sym_COMMA, - ACTIONS(1887), 1, - sym_identifier, - ACTIONS(1889), 1, - anon_sym_RBRACK, - STATE(517), 1, - aux_sym_expression_repeat1, - STATE(796), 1, - sym_operator, - STATE(1155), 1, - aux_sym_array_repeat1, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [5495] = 5, + [11306] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(228), 1, + ACTIONS(276), 1, anon_sym_in, - ACTIONS(1893), 1, - anon_sym_DOT, - ACTIONS(1895), 1, - anon_sym_QMARK, - ACTIONS(1891), 41, + ACTIONS(1609), 1, + anon_sym_COLON, + ACTIONS(1597), 41, anon_sym_package, anon_sym_import, anon_sym_using, @@ -51116,75 +36979,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_untyped, anon_sym_while, - [5551] = 13, + [11359] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(350), 1, - anon_sym_DASH, - STATE(489), 1, - aux_sym_expression_repeat1, - STATE(787), 1, - sym_operator, - ACTIONS(340), 2, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1611), 1, + sym_identifier, + ACTIONS(1613), 1, + anon_sym_this, + STATE(409), 1, + aux_sym_member_expression_repeat1, + STATE(521), 1, + sym_member_expression, + STATE(526), 1, + sym__lhs_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(264), 7, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + anon_sym_LT, + STATE(1168), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(262), 10, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(342), 2, - anon_sym_DOT, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [11444] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(225), 1, + anon_sym_LBRACE, + ACTIONS(228), 1, + anon_sym_LBRACK, + ACTIONS(234), 1, + anon_sym_null, + ACTIONS(237), 1, + aux_sym_integer_token1, + ACTIONS(240), 1, + aux_sym_integer_token2, + ACTIONS(243), 1, + aux_sym_float_token1, + ACTIONS(246), 1, + aux_sym_float_token2, + ACTIONS(252), 1, + aux_sym_string_token1, + ACTIONS(255), 1, + aux_sym_string_token3, + ACTIONS(1615), 1, + sym_identifier, + ACTIONS(1618), 1, + anon_sym_this, + STATE(409), 1, + aux_sym_member_expression_repeat1, + STATE(521), 1, + sym_member_expression, + STATE(526), 1, + sym__lhs_expression, + STATE(1025), 1, + sym_string, + ACTIONS(249), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(223), 7, + aux_sym_member_expression_token1, anon_sym_QMARK, - ACTIONS(353), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(347), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, anon_sym_EQ, - ACTIONS(356), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(359), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(88), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(344), 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, - [5623] = 5, + anon_sym_LT, + STATE(1168), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(218), 10, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [11529] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(228), 1, - anon_sym_in, - ACTIONS(1897), 1, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1611), 1, + sym_identifier, + ACTIONS(1613), 1, + anon_sym_this, + STATE(409), 1, + aux_sym_member_expression_repeat1, + STATE(521), 1, + sym_member_expression, + STATE(526), 1, + sym__lhs_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(212), 7, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + anon_sym_LT, + STATE(1168), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(208), 10, anon_sym_LPAREN, - STATE(136), 1, - sym__arg_list, - ACTIONS(1891), 41, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [11614] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1607), 1, + sym_identifier, + ACTIONS(1621), 1, + anon_sym_class, + ACTIONS(1623), 1, + anon_sym_interface, + ACTIONS(276), 40, anon_sym_package, anon_sym_import, anon_sym_using, @@ -51193,6 +37192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_cast, + anon_sym_in, anon_sym_this, anon_sym_if, anon_sym_else, @@ -51200,10 +37200,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_dynamic, anon_sym_final, anon_sym_abstract, - anon_sym_class, anon_sym_extends, anon_sym_implements, - anon_sym_interface, anon_sym_typedef, anon_sym_function, anon_sym_var, @@ -51226,183 +37224,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_untyped, anon_sym_while, - [5679] = 10, + [11669] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - STATE(434), 1, - sym_operator, - STATE(486), 1, - aux_sym_expression_repeat1, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(320), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(322), 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(88), 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, - [5745] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(426), 19, - anon_sym_this, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_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, + ACTIONS(1625), 1, sym_identifier, - ACTIONS(424), 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, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [5797] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(350), 1, - anon_sym_DASH, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(353), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(340), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - sym__semicolon, - ACTIONS(347), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(356), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(359), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(88), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(344), 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, - [5867] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_in, - ACTIONS(1835), 1, - anon_sym_function, - ACTIONS(1837), 2, - anon_sym_final, - anon_sym_var, - STATE(498), 2, - sym_keyword, - aux_sym_function_declaration_repeat1, - ACTIONS(1825), 38, + ACTIONS(1627), 1, + anon_sym_class, + ACTIONS(276), 41, anon_sym_package, anon_sym_import, anon_sym_using, @@ -51411,17 +37240,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_cast, + anon_sym_in, anon_sym_this, anon_sym_if, anon_sym_else, anon_sym_new, anon_sym_dynamic, + anon_sym_final, anon_sym_abstract, - anon_sym_class, anon_sym_extends, anon_sym_implements, anon_sym_interface, anon_sym_typedef, + anon_sym_function, + anon_sym_var, anon_sym_break, anon_sym_catch, anon_sym_continue, @@ -51441,72 +37273,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_untyped, anon_sym_while, - [5925] = 13, + [11722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1849), 1, - anon_sym_DASH, - STATE(434), 1, - sym_operator, - STATE(486), 1, - aux_sym_expression_repeat1, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(320), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(322), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(933), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1851), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(1853), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(88), 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, - [5997] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1901), 2, - anon_sym_in, - anon_sym_AT, - ACTIONS(1899), 42, + ACTIONS(1625), 1, + sym_identifier, + ACTIONS(276), 42, anon_sym_package, anon_sym_import, anon_sym_using, @@ -51515,8 +37287,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_cast, + anon_sym_in, anon_sym_this, - anon_sym_AT_COLON, anon_sym_if, anon_sym_else, anon_sym_new, @@ -51549,76 +37321,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_untyped, anon_sym_while, - [6049] = 15, + [11773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(1871), 1, - anon_sym_COMMA, - ACTIONS(1903), 1, + ACTIONS(1629), 1, sym_identifier, - ACTIONS(1905), 1, - anon_sym_RBRACK, - STATE(482), 1, - aux_sym_expression_repeat1, - STATE(713), 1, - sym_operator, - STATE(1186), 1, - aux_sym_array_repeat1, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [6125] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_in, - STATE(498), 2, - sym_keyword, - aux_sym_function_declaration_repeat1, - ACTIONS(1907), 41, + ACTIONS(276), 42, anon_sym_package, anon_sym_import, anon_sym_using, @@ -51627,6 +37335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_default, anon_sym_cast, + anon_sym_in, anon_sym_this, anon_sym_if, anon_sym_else, @@ -51660,581 +37369,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_untyped, anon_sym_while, - [6179] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(1913), 1, - anon_sym_RPAREN, - ACTIONS(1915), 1, - anon_sym_COMMA, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - STATE(1187), 1, - aux_sym__arg_list_repeat1, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [6252] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - ACTIONS(671), 1, - anon_sym_DASH_GT, - ACTIONS(1917), 1, - anon_sym_RPAREN, - ACTIONS(1919), 1, - sym__semicolon, - STATE(382), 1, - sym_operator, - STATE(532), 1, - aux_sym_variable_declaration_repeat2, - 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(88), 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, - [6319] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - ACTIONS(671), 1, - anon_sym_DASH_GT, - ACTIONS(1921), 1, - anon_sym_RPAREN, - ACTIONS(1923), 1, - sym__semicolon, - STATE(386), 1, - sym_operator, - STATE(534), 1, - aux_sym_variable_declaration_repeat2, - 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(88), 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, - [6386] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - ACTIONS(671), 1, - anon_sym_DASH_GT, - ACTIONS(1925), 1, - anon_sym_RPAREN, - ACTIONS(1927), 1, - sym__semicolon, - STATE(368), 1, - sym_operator, - STATE(537), 1, - aux_sym_variable_declaration_repeat2, - 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(88), 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, - [6453] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(1915), 1, - anon_sym_COMMA, - ACTIONS(1929), 1, - anon_sym_RPAREN, - STATE(515), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - STATE(1132), 1, - aux_sym__arg_list_repeat1, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [6526] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - ACTIONS(1931), 1, - anon_sym_LPAREN, - ACTIONS(1933), 1, - anon_sym_COLON, - ACTIONS(1935), 1, - sym__semicolon, - STATE(390), 1, - sym_operator, - STATE(572), 1, - sym_access_identifiers, - 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(88), 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, - [6593] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - ACTIONS(671), 1, - anon_sym_DASH_GT, - ACTIONS(1937), 1, - anon_sym_RPAREN, - ACTIONS(1939), 1, - sym__semicolon, - STATE(391), 1, - sym_operator, - STATE(531), 1, - aux_sym_variable_declaration_repeat2, - 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(88), 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, - [6660] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - ACTIONS(671), 1, - anon_sym_DASH_GT, - ACTIONS(1941), 1, - anon_sym_RPAREN, - ACTIONS(1943), 1, - sym__semicolon, - STATE(387), 1, - sym_operator, - STATE(526), 1, - aux_sym_variable_declaration_repeat2, - 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(88), 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, - [6727] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - ACTIONS(671), 1, - anon_sym_DASH_GT, - ACTIONS(1945), 1, - anon_sym_RPAREN, - ACTIONS(1947), 1, - sym__semicolon, - STATE(388), 1, - sym_operator, - STATE(528), 1, - aux_sym_variable_declaration_repeat2, - 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(88), 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, - [6794] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(336), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - 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(88), 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, - [6863] = 4, + [11824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(228), 1, + ACTIONS(276), 1, anon_sym_in, - ACTIONS(1949), 1, - anon_sym_COLON, - ACTIONS(1891), 41, + ACTIONS(1631), 1, + aux_sym_member_expression_token1, + ACTIONS(1597), 41, anon_sym_package, anon_sym_import, anon_sym_using, @@ -52276,1089 +37418,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_untyped, anon_sym_while, - [6916] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(1915), 1, - anon_sym_COMMA, - ACTIONS(1951), 1, - anon_sym_RPAREN, - STATE(519), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - STATE(1134), 1, - aux_sym__arg_list_repeat1, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [6989] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(320), 1, - anon_sym_COLON, - ACTIONS(1849), 1, - anon_sym_DASH, - STATE(436), 1, - sym_operator, - STATE(514), 1, - aux_sym_expression_repeat1, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(322), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(933), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1851), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(1853), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(88), 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, - [7060] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(320), 1, - anon_sym_COLON, - ACTIONS(324), 1, - anon_sym_DASH, - STATE(436), 1, - sym_operator, - STATE(514), 1, - aux_sym_expression_repeat1, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(322), 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(88), 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, - [7125] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(1915), 1, - anon_sym_COMMA, - ACTIONS(1953), 1, - anon_sym_RPAREN, - STATE(499), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - STATE(1131), 1, - aux_sym__arg_list_repeat1, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [7198] = 13, + [11877] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(336), 1, - anon_sym_COLON, - STATE(523), 1, - aux_sym_expression_repeat1, - STATE(795), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(338), 2, - anon_sym_DOT, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1611), 1, + sym_identifier, + ACTIONS(1613), 1, + anon_sym_this, + STATE(409), 1, + aux_sym_member_expression_repeat1, + STATE(521), 1, + sym_member_expression, + STATE(526), 1, + sym__lhs_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(260), 7, + aux_sym_member_expression_token1, anon_sym_QMARK, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, 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(88), 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, - [7269] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(1915), 1, - anon_sym_COMMA, - ACTIONS(1955), 1, - anon_sym_RPAREN, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - STATE(1136), 1, - aux_sym__arg_list_repeat1, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [7342] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - ACTIONS(671), 1, - anon_sym_DASH_GT, - ACTIONS(1957), 1, + STATE(1168), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(258), 10, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(1959), 1, - sym__semicolon, - STATE(353), 1, - sym_operator, - STATE(540), 1, - aux_sym_variable_declaration_repeat2, - 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(88), 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, - [7409] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(350), 1, - anon_sym_DASH, - STATE(517), 1, - aux_sym_expression_repeat1, - STATE(796), 1, - sym_operator, - ACTIONS(353), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(340), 3, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, - sym_identifier, - ACTIONS(347), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(356), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(359), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(88), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(344), 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, - [7478] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - ACTIONS(671), 1, - anon_sym_DASH_GT, - ACTIONS(1961), 1, - anon_sym_RPAREN, - ACTIONS(1963), 1, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym__semicolon, - STATE(362), 1, - sym_operator, - STATE(527), 1, - aux_sym_variable_declaration_repeat2, - 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(88), 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, - [7545] = 14, + [11962] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(1915), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_RPAREN, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - STATE(1181), 1, - aux_sym__arg_list_repeat1, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [7618] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - ACTIONS(671), 1, - anon_sym_DASH_GT, - ACTIONS(1967), 1, - anon_sym_RPAREN, - ACTIONS(1969), 1, - sym__semicolon, - STATE(356), 1, - sym_operator, - STATE(542), 1, - aux_sym_variable_declaration_repeat2, - 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_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1633), 1, + sym_identifier, + ACTIONS(1635), 1, + anon_sym_this, + STATE(420), 1, + aux_sym_member_expression_repeat1, + STATE(521), 1, + sym_member_expression, + STATE(526), 1, + sym__lhs_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(260), 6, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, anon_sym_EQ, - STATE(88), 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, - [7685] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - ACTIONS(1931), 1, - anon_sym_LPAREN, - ACTIONS(1971), 1, - anon_sym_COLON, - ACTIONS(1973), 1, - sym__semicolon, - STATE(351), 1, - sym_operator, - STATE(573), 1, - sym_access_identifiers, - 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(88), 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, - [7752] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - ACTIONS(1931), 1, + STATE(1207), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(258), 10, anon_sym_LPAREN, - ACTIONS(1975), 1, - anon_sym_COLON, - ACTIONS(1977), 1, - sym__semicolon, - STATE(365), 1, - sym_operator, - STATE(563), 1, - sym_access_identifiers, - 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(88), 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, - [7819] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(340), 1, - anon_sym_COLON, - ACTIONS(350), 1, - anon_sym_DASH, - STATE(523), 1, - aux_sym_expression_repeat1, - STATE(795), 1, - sym_operator, - ACTIONS(342), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(353), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(347), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(356), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(359), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(88), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(344), 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, - [7890] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1849), 1, - anon_sym_DASH, - STATE(508), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(933), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(320), 3, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1851), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(1853), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(88), 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, - [7959] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - STATE(533), 1, - aux_sym_expression_repeat1, - STATE(816), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(336), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(952), 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(88), 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, - [8027] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - ACTIONS(1979), 1, - anon_sym_RPAREN, - ACTIONS(1981), 1, - sym__semicolon, - STATE(358), 1, - sym_operator, - STATE(817), 1, - aux_sym_variable_declaration_repeat2, - 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(88), 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, - [8091] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - ACTIONS(1979), 1, - anon_sym_RPAREN, - ACTIONS(1983), 1, - sym__semicolon, - STATE(384), 1, - sym_operator, - STATE(817), 1, - aux_sym_variable_declaration_repeat2, - 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(88), 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, - [8155] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - ACTIONS(1979), 1, - anon_sym_RPAREN, - ACTIONS(1985), 1, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym__semicolon, - STATE(364), 1, - sym_operator, - STATE(817), 1, - aux_sym_variable_declaration_repeat2, - 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(88), 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, - [8219] = 3, + [12046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(228), 1, + ACTIONS(276), 1, anon_sym_in, - ACTIONS(1891), 41, + ACTIONS(1597), 41, anon_sym_package, anon_sym_import, anon_sym_using, @@ -53400,14 +37594,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_untyped, anon_sym_while, - [8269] = 4, + [12096] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(228), 1, + ACTIONS(276), 1, anon_sym_in, - ACTIONS(1987), 1, + ACTIONS(1637), 1, anon_sym_class, - ACTIONS(1891), 40, + ACTIONS(1597), 40, anon_sym_package, anon_sym_import, anon_sym_using, @@ -53448,288 +37642,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_untyped, anon_sym_while, - [8321] = 10, + [12148] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - ACTIONS(1979), 1, - anon_sym_RPAREN, - ACTIONS(1989), 1, - sym__semicolon, - STATE(355), 1, - sym_operator, - STATE(817), 1, - aux_sym_variable_declaration_repeat2, - 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(88), 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, - [8385] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - ACTIONS(1979), 1, - anon_sym_RPAREN, - ACTIONS(1991), 1, - sym__semicolon, - STATE(381), 1, - sym_operator, - STATE(817), 1, - aux_sym_variable_declaration_repeat2, - 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, + ACTIONS(225), 1, + anon_sym_LBRACE, + ACTIONS(228), 1, + anon_sym_LBRACK, + ACTIONS(234), 1, + anon_sym_null, + ACTIONS(237), 1, + aux_sym_integer_token1, + ACTIONS(240), 1, + aux_sym_integer_token2, + ACTIONS(243), 1, + aux_sym_float_token1, + ACTIONS(246), 1, + aux_sym_float_token2, + ACTIONS(252), 1, + aux_sym_string_token1, + ACTIONS(255), 1, + aux_sym_string_token3, + ACTIONS(1639), 1, + sym_identifier, + ACTIONS(1642), 1, + anon_sym_this, + STATE(420), 1, + aux_sym_member_expression_repeat1, + STATE(521), 1, + sym_member_expression, + STATE(526), 1, + sym__lhs_expression, + STATE(1025), 1, + sym_string, + ACTIONS(249), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(223), 6, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, anon_sym_EQ, - STATE(88), 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, - [8449] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(350), 1, - anon_sym_DASH, - STATE(533), 1, - aux_sym_expression_repeat1, - STATE(816), 1, - sym_operator, - ACTIONS(340), 2, + anon_sym_LT, + STATE(1207), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(218), 10, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(353), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(347), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [12232] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1633), 1, + sym_identifier, + ACTIONS(1635), 1, + anon_sym_this, + STATE(420), 1, + aux_sym_member_expression_repeat1, + STATE(521), 1, + sym_member_expression, + STATE(526), 1, + sym__lhs_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(212), 6, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, anon_sym_EQ, - ACTIONS(356), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(359), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(88), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(344), 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, - [8517] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - ACTIONS(1979), 1, + anon_sym_LT, + STATE(1207), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(208), 10, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(1993), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym__semicolon, - STATE(380), 1, - sym_operator, - STATE(817), 1, - aux_sym_variable_declaration_repeat2, - 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(88), 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, - [8581] = 12, + [12316] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1995), 2, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1633), 1, + sym_identifier, + ACTIONS(1635), 1, + anon_sym_this, + STATE(420), 1, + aux_sym_member_expression_repeat1, + STATE(521), 1, + sym_member_expression, + STATE(526), 1, + sym__lhs_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(264), 6, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + anon_sym_LT, + STATE(1207), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(262), 10, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, - STATE(952), 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(88), 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, - [8649] = 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [12400] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(228), 1, + ACTIONS(276), 1, anon_sym_in, - ACTIONS(1997), 1, + ACTIONS(1645), 1, anon_sym_class, - ACTIONS(1891), 40, + ACTIONS(1597), 40, anon_sym_package, anon_sym_import, anon_sym_using, @@ -53770,3668 +37882,2825 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_untyped, anon_sym_while, - [8701] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - ACTIONS(1979), 1, - anon_sym_RPAREN, - ACTIONS(1999), 1, - sym__semicolon, - STATE(370), 1, - sym_operator, - STATE(817), 1, - aux_sym_variable_declaration_repeat2, - 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(88), 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, - [8765] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - STATE(539), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2001), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(952), 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(88), 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, - [8833] = 12, + [12452] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2003), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, + ACTIONS(225), 1, + anon_sym_LBRACE, + ACTIONS(228), 1, + anon_sym_LBRACK, + ACTIONS(234), 1, + anon_sym_null, + ACTIONS(237), 1, + aux_sym_integer_token1, + ACTIONS(240), 1, + aux_sym_integer_token2, + ACTIONS(243), 1, + aux_sym_float_token1, + ACTIONS(246), 1, + aux_sym_float_token2, + ACTIONS(252), 1, + aux_sym_string_token1, + ACTIONS(255), 1, + aux_sym_string_token3, + ACTIONS(1647), 1, + sym_identifier, + ACTIONS(1650), 1, + anon_sym_this, + STATE(424), 1, + aux_sym_member_expression_repeat1, + STATE(512), 1, + sym__lhs_expression, + STATE(516), 1, + sym_member_expression, + STATE(1025), 1, + sym_string, + ACTIONS(249), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(218), 7, + anon_sym_LPAREN, + anon_sym_COLON, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(223), 7, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, 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(88), 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, - [8901] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - ACTIONS(1979), 1, - anon_sym_RPAREN, - ACTIONS(2005), 1, - sym__semicolon, - STATE(371), 1, - sym_operator, - STATE(817), 1, - aux_sym_variable_declaration_repeat2, - 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(88), 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, - [8965] = 12, + STATE(1180), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [12534] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - STATE(535), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2007), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(952), 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(88), 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, - [9033] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - ACTIONS(1979), 1, - anon_sym_RPAREN, - ACTIONS(2009), 1, - sym__semicolon, - STATE(389), 1, - sym_operator, - STATE(817), 1, - aux_sym_variable_declaration_repeat2, - 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(88), 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, - [9097] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1849), 1, - anon_sym_DASH, - STATE(525), 1, - aux_sym_expression_repeat1, - STATE(696), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(320), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(933), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1517), 1, + anon_sym_this, + ACTIONS(1653), 1, + sym_identifier, + STATE(424), 1, + aux_sym_member_expression_repeat1, + STATE(512), 1, + sym__lhs_expression, + STATE(516), 1, + sym_member_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(208), 7, + anon_sym_LPAREN, + anon_sym_COLON, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(212), 7, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, anon_sym_EQ, - ACTIONS(1851), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(1853), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(88), 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, - [9165] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2011), 1, - sym__semicolon, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [9232] = 12, + STATE(1180), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [12616] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2013), 1, - sym__semicolon, - STATE(560), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1517), 1, + anon_sym_this, + ACTIONS(1653), 1, + sym_identifier, + STATE(424), 1, + aux_sym_member_expression_repeat1, + STATE(512), 1, + sym__lhs_expression, + STATE(516), 1, + sym_member_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(262), 7, + anon_sym_LPAREN, + anon_sym_COLON, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(264), 7, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, 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(88), 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, - [9299] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2015), 1, - sym__semicolon, - STATE(554), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [9366] = 12, + STATE(1180), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [12698] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2017), 1, - sym__semicolon, - STATE(555), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1517), 1, + anon_sym_this, + ACTIONS(1653), 1, + sym_identifier, + STATE(424), 1, + aux_sym_member_expression_repeat1, + STATE(512), 1, + sym__lhs_expression, + STATE(516), 1, + sym_member_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(258), 7, + anon_sym_LPAREN, + anon_sym_COLON, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(260), 7, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, 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(88), 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, - [9433] = 12, + anon_sym_LT, + STATE(1180), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [12780] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2017), 1, - sym__semicolon, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1483), 1, + anon_sym_this, + ACTIONS(1655), 1, + sym_identifier, + STATE(433), 1, + aux_sym_member_expression_repeat1, + STATE(512), 1, + sym__lhs_expression, + STATE(516), 1, + sym_member_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(212), 6, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, 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(88), 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, - [9500] = 12, + anon_sym_LT, + ACTIONS(208), 7, + anon_sym_LPAREN, + anon_sym_COLON, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + STATE(1192), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [12861] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2019), 1, - sym__semicolon, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1483), 1, + anon_sym_this, + ACTIONS(1655), 1, + sym_identifier, + STATE(433), 1, + aux_sym_member_expression_repeat1, + STATE(512), 1, + sym__lhs_expression, + STATE(516), 1, + sym_member_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(264), 6, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, 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(88), 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, - [9567] = 12, + anon_sym_LT, + ACTIONS(262), 7, + anon_sym_LPAREN, + anon_sym_COLON, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + STATE(1192), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [12942] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2021), 1, - sym__semicolon, - STATE(569), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1657), 1, + sym_identifier, + ACTIONS(1659), 1, + anon_sym_this, + STATE(431), 1, + aux_sym_member_expression_repeat1, + STATE(521), 1, + sym_member_expression, + STATE(526), 1, + sym__lhs_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(208), 6, + anon_sym_LPAREN, + anon_sym_COLON, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(212), 7, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, 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(88), 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, - [9634] = 12, + anon_sym_LT, + STATE(1177), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [13023] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2023), 1, - anon_sym_RBRACK, - STATE(595), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, + ACTIONS(225), 1, + anon_sym_LBRACE, + ACTIONS(228), 1, + anon_sym_LBRACK, + ACTIONS(234), 1, + anon_sym_null, + ACTIONS(237), 1, + aux_sym_integer_token1, + ACTIONS(240), 1, + aux_sym_integer_token2, + ACTIONS(243), 1, + aux_sym_float_token1, + ACTIONS(246), 1, + aux_sym_float_token2, + ACTIONS(252), 1, + aux_sym_string_token1, + ACTIONS(255), 1, + aux_sym_string_token3, + ACTIONS(1661), 1, + sym_identifier, + ACTIONS(1664), 1, + anon_sym_this, + STATE(431), 1, + aux_sym_member_expression_repeat1, + STATE(521), 1, + sym_member_expression, + STATE(526), 1, + sym__lhs_expression, + STATE(1025), 1, + sym_string, + ACTIONS(249), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(218), 6, + anon_sym_LPAREN, + anon_sym_COLON, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(223), 7, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, 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(88), 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, - [9701] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2025), 1, - sym__semicolon, - STATE(601), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [9768] = 12, + STATE(1177), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [13104] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2027), 1, - anon_sym_RBRACE, - STATE(591), 1, - aux_sym_expression_repeat1, - STATE(696), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1483), 1, + anon_sym_this, + ACTIONS(1655), 1, + sym_identifier, + STATE(433), 1, + aux_sym_member_expression_repeat1, + STATE(512), 1, + sym__lhs_expression, + STATE(516), 1, + sym_member_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(260), 6, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, 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(88), 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, - [9835] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2029), 1, - sym__semicolon, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [9902] = 12, + ACTIONS(258), 7, + anon_sym_LPAREN, + anon_sym_COLON, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + STATE(1192), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [13185] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2031), 1, - sym__semicolon, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, + ACTIONS(225), 1, + anon_sym_LBRACE, + ACTIONS(228), 1, + anon_sym_LBRACK, + ACTIONS(234), 1, + anon_sym_null, + ACTIONS(237), 1, + aux_sym_integer_token1, + ACTIONS(240), 1, + aux_sym_integer_token2, + ACTIONS(243), 1, + aux_sym_float_token1, + ACTIONS(246), 1, + aux_sym_float_token2, + ACTIONS(252), 1, + aux_sym_string_token1, + ACTIONS(255), 1, + aux_sym_string_token3, + ACTIONS(1667), 1, + sym_identifier, + ACTIONS(1670), 1, + anon_sym_this, + STATE(433), 1, + aux_sym_member_expression_repeat1, + STATE(512), 1, + sym__lhs_expression, + STATE(516), 1, + sym_member_expression, + STATE(1025), 1, + sym_string, + ACTIONS(249), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(223), 6, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, 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(88), 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, - [9969] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2033), 1, - anon_sym_RPAREN, - STATE(558), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [10036] = 12, + ACTIONS(218), 7, + anon_sym_LPAREN, + anon_sym_COLON, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + STATE(1192), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [13266] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2021), 1, - sym__semicolon, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1657), 1, + sym_identifier, + ACTIONS(1659), 1, + anon_sym_this, + STATE(431), 1, + aux_sym_member_expression_repeat1, + STATE(521), 1, + sym_member_expression, + STATE(526), 1, + sym__lhs_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(258), 6, + anon_sym_LPAREN, + anon_sym_COLON, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(260), 7, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, 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(88), 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, - [10103] = 12, + anon_sym_LT, + STATE(1177), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [13347] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2035), 1, - anon_sym_RPAREN, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1657), 1, + sym_identifier, + ACTIONS(1659), 1, + anon_sym_this, + STATE(431), 1, + aux_sym_member_expression_repeat1, + STATE(521), 1, + sym_member_expression, + STATE(526), 1, + sym__lhs_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(262), 6, + anon_sym_LPAREN, + anon_sym_COLON, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(264), 7, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, 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(88), 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, - [10170] = 12, + anon_sym_LT, + STATE(1177), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [13428] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2037), 1, - sym__semicolon, - STATE(566), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1673), 1, + sym_identifier, + ACTIONS(1675), 1, + anon_sym_this, + STATE(439), 1, + aux_sym_member_expression_repeat1, + STATE(521), 1, + sym_member_expression, + STATE(526), 1, + sym__lhs_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(208), 6, + anon_sym_LPAREN, + anon_sym_COLON, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(212), 6, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, 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(88), 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, - [10237] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2039), 1, - sym__semicolon, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [10304] = 12, + STATE(1179), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [13508] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2029), 1, - sym__semicolon, - STATE(590), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1673), 1, + sym_identifier, + ACTIONS(1675), 1, + anon_sym_this, + STATE(439), 1, + aux_sym_member_expression_repeat1, + STATE(521), 1, + sym_member_expression, + STATE(526), 1, + sym__lhs_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(258), 6, + anon_sym_LPAREN, + anon_sym_COLON, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(260), 6, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, 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(88), 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, - [10371] = 12, + anon_sym_LT, + STATE(1179), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [13588] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2041), 1, - sym__semicolon, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [10438] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - ACTIONS(2043), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1673), 1, + sym_identifier, + ACTIONS(1675), 1, + anon_sym_this, + STATE(439), 1, + aux_sym_member_expression_repeat1, + STATE(521), 1, + sym_member_expression, + STATE(526), 1, + sym__lhs_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(262), 6, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2045), 1, - sym__semicolon, - STATE(357), 1, - sym_operator, - 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, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(264), 6, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, anon_sym_EQ, - STATE(88), 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, - [10499] = 12, + anon_sym_LT, + STATE(1179), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [13668] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2047), 1, - sym__semicolon, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, + ACTIONS(225), 1, + anon_sym_LBRACE, + ACTIONS(228), 1, + anon_sym_LBRACK, + ACTIONS(234), 1, + anon_sym_null, + ACTIONS(237), 1, + aux_sym_integer_token1, + ACTIONS(240), 1, + aux_sym_integer_token2, + ACTIONS(243), 1, + aux_sym_float_token1, + ACTIONS(246), 1, + aux_sym_float_token2, + ACTIONS(252), 1, + aux_sym_string_token1, + ACTIONS(255), 1, + aux_sym_string_token3, + ACTIONS(1677), 1, + sym_identifier, + ACTIONS(1680), 1, + anon_sym_this, + STATE(439), 1, + aux_sym_member_expression_repeat1, + STATE(521), 1, + sym_member_expression, + STATE(526), 1, + sym__lhs_expression, + STATE(1025), 1, + sym_string, + ACTIONS(249), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(218), 6, + anon_sym_LPAREN, + anon_sym_COLON, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(223), 6, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, 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(88), 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, - [10566] = 12, + anon_sym_LT, + STATE(1179), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [13748] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2049), 1, - sym__semicolon, - STATE(544), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [10633] = 12, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(286), 1, + anon_sym_this, + ACTIONS(1683), 1, + sym_identifier, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1687), 1, + anon_sym_RPAREN, + STATE(28), 1, + sym_member_expression, + STATE(108), 1, + sym__lhs_expression, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(1025), 1, + sym_string, + STATE(1089), 1, + sym_type, + STATE(1219), 1, + sym__function_type_args, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1172), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [13834] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2051), 1, - sym__semicolon, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [10700] = 12, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(286), 1, + anon_sym_this, + ACTIONS(1683), 1, + sym_identifier, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1689), 1, + anon_sym_RPAREN, + STATE(28), 1, + sym_member_expression, + STATE(108), 1, + sym__lhs_expression, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(1025), 1, + sym_string, + STATE(1046), 1, + sym_type, + STATE(1255), 1, + sym__function_type_args, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1172), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [13920] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2051), 1, - sym__semicolon, - STATE(549), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [10767] = 12, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(286), 1, + anon_sym_this, + ACTIONS(1306), 1, + anon_sym_RPAREN, + ACTIONS(1683), 1, + sym_identifier, + ACTIONS(1685), 1, + anon_sym_LPAREN, + STATE(28), 1, + sym_member_expression, + STATE(108), 1, + sym__lhs_expression, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(1025), 1, + sym_string, + STATE(1046), 1, + sym_type, + STATE(1248), 1, + sym__function_type_args, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1172), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [14006] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2049), 1, - sym__semicolon, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, + ACTIONS(296), 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(88), 9, - sym__unaryOperator, + ACTIONS(300), 1, + aux_sym_member_expression_token1, + ACTIONS(330), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_in, + ACTIONS(1691), 1, + anon_sym_COLON, + ACTIONS(1693), 1, + sym__map_operator, + ACTIONS(294), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(306), 10, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(308), 16, + anon_sym_switch, + anon_sym_cast, + anon_sym_this, + anon_sym_QMARK, + anon_sym_new, 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, - [10834] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2053), 1, - sym__semicolon, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, 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(88), 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, - [10901] = 12, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [14064] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2055), 1, - sym__semicolon, - STATE(548), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, + ACTIONS(296), 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(88), 9, - sym__unaryOperator, + ACTIONS(330), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_in, + ACTIONS(382), 1, + aux_sym_member_expression_token1, + ACTIONS(1693), 2, + anon_sym_COLON, + sym__map_operator, + ACTIONS(294), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(306), 10, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(308), 16, + anon_sym_switch, + anon_sym_cast, + anon_sym_this, + anon_sym_QMARK, + anon_sym_new, 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, - [10968] = 12, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [14120] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2057), 1, - sym__semicolon, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [11035] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - ACTIONS(2059), 1, - anon_sym_COLON, - ACTIONS(2061), 1, - sym__semicolon, - STATE(352), 1, - sym_operator, - 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(88), 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, - [11096] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(324), 1, - anon_sym_DASH, - ACTIONS(2063), 1, - anon_sym_COLON, - ACTIONS(2065), 1, - sym__semicolon, - STATE(378), 1, - sym_operator, - 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(88), 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, - [11157] = 12, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1699), 1, + anon_sym_this, + STATE(108), 1, + sym__lhs_expression, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(781), 1, + sym_member_expression, + STATE(1025), 1, + sym_string, + STATE(1125), 1, + sym__type_param, + STATE(1126), 1, + sym_type, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1173), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [14203] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2039), 1, - sym__semicolon, - STATE(562), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [11224] = 12, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(284), 1, + sym_identifier, + ACTIONS(286), 1, + anon_sym_this, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1701), 1, + anon_sym_LBRACE, + STATE(28), 1, + sym_member_expression, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(1000), 1, + sym__lhs_expression, + STATE(1025), 1, + sym_string, + STATE(1027), 1, + sym_type, + STATE(1112), 1, + sym_structure_type, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1172), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [14286] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2067), 1, - sym__semicolon, - STATE(602), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [11291] = 12, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(284), 1, + sym_identifier, + ACTIONS(286), 1, + anon_sym_this, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1703), 1, + anon_sym_LBRACE, + STATE(28), 1, + sym_member_expression, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(125), 1, + sym__lhs_expression, + STATE(165), 1, + sym_type, + STATE(222), 1, + sym_block, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1172), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [14369] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2069), 1, - sym__semicolon, - STATE(557), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [11358] = 12, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1699), 1, + anon_sym_this, + STATE(108), 1, + sym__lhs_expression, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(781), 1, + sym_member_expression, + STATE(1025), 1, + sym_string, + STATE(1126), 1, + sym_type, + STATE(1169), 1, + sym__type_param, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1173), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [14452] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2071), 1, - sym__semicolon, - STATE(564), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [11425] = 12, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(284), 1, + sym_identifier, + ACTIONS(286), 1, + anon_sym_this, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1703), 1, + anon_sym_LBRACE, + STATE(28), 1, + sym_member_expression, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(127), 1, + sym__lhs_expression, + STATE(174), 1, + sym_type, + STATE(294), 1, + sym_block, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1172), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [14535] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2073), 1, - sym__semicolon, - STATE(571), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [11492] = 12, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1699), 1, + anon_sym_this, + STATE(108), 1, + sym__lhs_expression, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(781), 1, + sym_member_expression, + STATE(1025), 1, + sym_string, + STATE(1126), 1, + sym_type, + STATE(1167), 1, + sym__type_param, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1173), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [14618] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2073), 1, - sym__semicolon, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [11559] = 12, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(284), 1, + sym_identifier, + ACTIONS(286), 1, + anon_sym_this, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1703), 1, + anon_sym_LBRACE, + STATE(28), 1, + sym_member_expression, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(123), 1, + sym__lhs_expression, + STATE(171), 1, + sym_type, + STATE(265), 1, + sym_block, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1172), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [14701] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2075), 1, - sym__semicolon, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [11626] = 12, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(284), 1, + sym_identifier, + ACTIONS(286), 1, + anon_sym_this, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1703), 1, + anon_sym_LBRACE, + STATE(28), 1, + sym_member_expression, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(124), 1, + sym__lhs_expression, + STATE(166), 1, + sym_type, + STATE(190), 1, + sym_block, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1172), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [14784] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2077), 1, - sym__semicolon, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [11693] = 12, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(284), 1, + sym_identifier, + ACTIONS(286), 1, + anon_sym_this, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1701), 1, + anon_sym_LBRACE, + STATE(28), 1, + sym_member_expression, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(1002), 1, + sym__lhs_expression, + STATE(1025), 1, + sym_string, + STATE(1040), 1, + sym_type, + STATE(1067), 1, + sym_structure_type, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1172), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [14867] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2079), 1, - sym__semicolon, - STATE(579), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, + ACTIONS(1705), 1, + anon_sym_QMARK, + STATE(376), 1, 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, - [11760] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2067), 1, - sym__semicolon, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 9, - sym__unaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(314), 10, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, + sym__eitherUnaryOperator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(316), 12, + anon_sym_switch, + anon_sym_cast, + anon_sym_this, + aux_sym_member_expression_token1, + anon_sym_new, 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, - [11827] = 12, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [14921] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2081), 1, - sym__semicolon, - STATE(580), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, + STATE(376), 1, 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, - [11894] = 12, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(310), 14, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(312), 17, + anon_sym_switch, + anon_sym_cast, + anon_sym_this, + aux_sym_member_expression_token1, + anon_sym_QMARK, + anon_sym_new, + sym__prefixUnaryOperator, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [14967] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2081), 1, - sym__semicolon, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [11961] = 12, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(268), 1, + anon_sym_this, + ACTIONS(1707), 1, + anon_sym_LPAREN, + STATE(28), 1, + sym_member_expression, + STATE(744), 1, + sym_type, + STATE(882), 1, + sym_builtin_type, + STATE(883), 1, + sym__lhs_expression, + STATE(981), 1, + sym_function_type, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1709), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1197), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [15047] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2083), 1, - sym__semicolon, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [12028] = 12, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + sym_identifier, + ACTIONS(286), 1, + anon_sym_this, + ACTIONS(1685), 1, + anon_sym_LPAREN, + STATE(28), 1, + sym_member_expression, + STATE(108), 1, + sym__lhs_expression, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(153), 1, + sym_type, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1172), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [15127] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2085), 1, - sym__semicolon, - STATE(581), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [12095] = 12, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + sym_identifier, + ACTIONS(286), 1, + anon_sym_this, + ACTIONS(1685), 1, + anon_sym_LPAREN, + STATE(28), 1, + sym_member_expression, + STATE(108), 1, + sym__lhs_expression, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(164), 1, + sym_type, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1172), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [15207] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2085), 1, - sym__semicolon, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [12162] = 12, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1695), 1, + sym_identifier, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1699), 1, + anon_sym_this, + STATE(108), 1, + sym__lhs_expression, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(781), 1, + sym_member_expression, + STATE(1025), 1, + sym_string, + STATE(1139), 1, + sym_type, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1173), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [15287] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2087), 1, - sym__semicolon, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [12229] = 12, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + sym_identifier, + ACTIONS(286), 1, + anon_sym_this, + ACTIONS(1685), 1, + anon_sym_LPAREN, + STATE(28), 1, + sym_member_expression, + STATE(108), 1, + sym__lhs_expression, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(149), 1, + sym_type, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1172), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [15367] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2089), 1, - sym__semicolon, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [12296] = 12, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(268), 1, + anon_sym_this, + ACTIONS(1707), 1, + anon_sym_LPAREN, + STATE(28), 1, + sym_member_expression, + STATE(763), 1, + sym_type, + STATE(882), 1, + sym_builtin_type, + STATE(883), 1, + sym__lhs_expression, + STATE(981), 1, + sym_function_type, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1709), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1197), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [15447] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2091), 1, - anon_sym_RBRACE, - STATE(533), 1, - aux_sym_expression_repeat1, - STATE(816), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, + ACTIONS(296), 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(88), 9, - sym__unaryOperator, + ACTIONS(330), 1, + anon_sym_LBRACK, + ACTIONS(294), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(306), 11, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(308), 17, + anon_sym_switch, + anon_sym_cast, + anon_sym_this, + aux_sym_member_expression_token1, + anon_sym_QMARK, + anon_sym_new, 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, - [12363] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2093), 1, - sym__semicolon, - STATE(583), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, 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(88), 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, - [12430] = 12, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [15495] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2095), 1, - sym__semicolon, - STATE(568), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [12497] = 12, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(268), 1, + anon_sym_this, + ACTIONS(1707), 1, + anon_sym_LPAREN, + STATE(28), 1, + sym_member_expression, + STATE(882), 1, + sym_builtin_type, + STATE(883), 1, + sym__lhs_expression, + STATE(981), 1, + sym_function_type, + STATE(985), 1, + sym_type, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1709), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1197), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [15575] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2097), 1, - anon_sym_RBRACK, - STATE(596), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [12564] = 12, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + sym_identifier, + ACTIONS(286), 1, + anon_sym_this, + ACTIONS(1685), 1, + anon_sym_LPAREN, + STATE(28), 1, + sym_member_expression, + STATE(108), 1, + sym__lhs_expression, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(151), 1, + sym_type, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1172), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [15655] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2099), 1, - anon_sym_RBRACK, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [12631] = 12, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + sym_identifier, + ACTIONS(286), 1, + anon_sym_this, + ACTIONS(1685), 1, + anon_sym_LPAREN, + STATE(28), 1, + sym_member_expression, + STATE(108), 1, + sym__lhs_expression, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(1025), 1, + sym_string, + STATE(1104), 1, + sym_type, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1172), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [15735] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2101), 1, - anon_sym_RBRACK, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(296), 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(88), 9, - sym__unaryOperator, + ACTIONS(300), 1, + aux_sym_member_expression_token1, + ACTIONS(330), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_in, + ACTIONS(1693), 2, + anon_sym_COLON, + sym__map_operator, + ACTIONS(306), 11, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(308), 16, + anon_sym_switch, + anon_sym_cast, + anon_sym_this, + anon_sym_QMARK, + anon_sym_new, 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, - [12698] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2047), 1, - sym__semicolon, - STATE(589), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, 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(88), 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, - [12765] = 12, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [15789] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2103), 1, - sym__semicolon, - STATE(585), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [12832] = 12, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(268), 1, + anon_sym_this, + ACTIONS(1707), 1, + anon_sym_LPAREN, + STATE(28), 1, + sym_member_expression, + STATE(882), 1, + sym_builtin_type, + STATE(883), 1, + sym__lhs_expression, + STATE(980), 1, + sym_type, + STATE(981), 1, + sym_function_type, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1709), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1197), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [15869] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2105), 1, - sym__semicolon, - STATE(588), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(296), 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(88), 9, - sym__unaryOperator, + ACTIONS(300), 1, + aux_sym_member_expression_token1, + ACTIONS(330), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_in, + ACTIONS(1693), 1, + sym__map_operator, + ACTIONS(1711), 1, + anon_sym_COLON, + ACTIONS(306), 11, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(308), 16, + anon_sym_switch, + anon_sym_cast, + anon_sym_this, + anon_sym_QMARK, + anon_sym_new, 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, - [12899] = 12, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [15925] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2107), 1, - sym__semicolon, - STATE(586), 1, - aux_sym_expression_repeat1, - STATE(632), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [12966] = 12, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + sym_identifier, + ACTIONS(286), 1, + anon_sym_this, + ACTIONS(1685), 1, + anon_sym_LPAREN, + STATE(28), 1, + sym_member_expression, + STATE(108), 1, + sym__lhs_expression, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(122), 1, + sym_type, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1172), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [16005] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2107), 1, - sym__semicolon, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [13033] = 12, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + sym_identifier, + ACTIONS(286), 1, + anon_sym_this, + ACTIONS(1685), 1, + anon_sym_LPAREN, + STATE(28), 1, + sym_member_expression, + STATE(108), 1, + sym__lhs_expression, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(1025), 1, + sym_string, + STATE(1187), 1, + sym_type, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1172), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [16085] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2109), 1, - sym__semicolon, - STATE(493), 1, - aux_sym_expression_repeat1, - STATE(797), 1, - sym_operator, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(952), 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(88), 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, - [13100] = 20, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + sym_identifier, + ACTIONS(286), 1, + anon_sym_this, + ACTIONS(1685), 1, + anon_sym_LPAREN, + STATE(28), 1, + sym_member_expression, + STATE(108), 1, + sym__lhs_expression, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(119), 1, + sym_type, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1172), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [16165] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1749), 1, + ACTIONS(266), 1, sym_identifier, - ACTIONS(1751), 1, + ACTIONS(268), 1, anon_sym_this, - STATE(402), 1, + ACTIONS(1707), 1, + anon_sym_LPAREN, + STATE(28), 1, sym_member_expression, - STATE(605), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, + STATE(734), 1, + sym_type, + STATE(882), 1, + sym_builtin_type, + STATE(883), 1, sym__lhs_expression, - STATE(975), 1, + STATE(981), 1, + sym_function_type, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(254), 2, - anon_sym_extends, - anon_sym_implements, - STATE(1133), 9, + ACTIONS(1709), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1197), 9, sym__literal, sym_integer, sym_float, @@ -57441,57 +40710,55 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(252), 10, - 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, - sym__semicolon, - [13180] = 20, + [16245] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1749), 1, + ACTIONS(284), 1, sym_identifier, - ACTIONS(1751), 1, + ACTIONS(286), 1, anon_sym_this, - STATE(402), 1, + ACTIONS(1685), 1, + anon_sym_LPAREN, + STATE(28), 1, sym_member_expression, - STATE(605), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, + STATE(108), 1, sym__lhs_expression, - STATE(975), 1, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + STATE(1208), 1, + sym_type, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(310), 2, - anon_sym_extends, - anon_sym_implements, - STATE(1133), 9, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -57501,57 +40768,55 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(308), 10, - 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, - sym__semicolon, - [13260] = 20, + [16325] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(271), 1, - anon_sym_LBRACE, - ACTIONS(274), 1, + ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(280), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(283), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(286), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(289), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(292), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(298), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(301), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(2111), 1, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, sym_identifier, - ACTIONS(2114), 1, + ACTIONS(286), 1, anon_sym_this, - STATE(402), 1, + ACTIONS(1685), 1, + anon_sym_LPAREN, + STATE(28), 1, sym_member_expression, - STATE(605), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, + STATE(108), 1, sym__lhs_expression, - STATE(975), 1, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(133), 1, + sym_type, + STATE(1025), 1, sym_string, - ACTIONS(269), 2, - anon_sym_extends, - anon_sym_implements, - ACTIONS(295), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(1133), 9, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -57561,57 +40826,145 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(264), 10, + [16405] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_GT, + ACTIONS(296), 1, anon_sym_LT, - anon_sym_GT, + ACTIONS(330), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_in, + ACTIONS(382), 1, + aux_sym_member_expression_token1, + ACTIONS(1693), 2, + anon_sym_COLON, + sym__map_operator, + ACTIONS(306), 11, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(308), 16, + anon_sym_switch, + anon_sym_cast, + anon_sym_this, + anon_sym_QMARK, + anon_sym_new, + sym__prefixUnaryOperator, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, anon_sym_EQ, - sym__semicolon, - [13340] = 20, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [16459] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1705), 1, + anon_sym_QMARK, + STATE(376), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(314), 10, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, + sym__eitherUnaryOperator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(316), 12, + anon_sym_switch, + anon_sym_cast, + anon_sym_this, + aux_sym_member_expression_token1, + anon_sym_new, + sym__prefixUnaryOperator, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [16513] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1749), 1, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1751), 1, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1699), 1, anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(605), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, + STATE(108), 1, sym__lhs_expression, - STATE(975), 1, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(781), 1, + sym_member_expression, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + STATE(1140), 1, + sym_type, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(262), 2, - anon_sym_extends, - anon_sym_implements, - STATE(1133), 9, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1173), 9, sym__literal, sym_integer, sym_float, @@ -57621,57 +40974,55 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(260), 10, - 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, - sym__semicolon, - [13420] = 20, + [16593] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1749), 1, + ACTIONS(266), 1, sym_identifier, - ACTIONS(1751), 1, + ACTIONS(268), 1, anon_sym_this, - STATE(402), 1, + ACTIONS(1707), 1, + anon_sym_LPAREN, + STATE(28), 1, sym_member_expression, - STATE(605), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, + STATE(751), 1, + sym_type, + STATE(882), 1, + sym_builtin_type, + STATE(883), 1, sym__lhs_expression, - STATE(975), 1, + STATE(981), 1, + sym_function_type, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(248), 2, - anon_sym_extends, - anon_sym_implements, - STATE(1133), 9, + ACTIONS(1709), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1197), 9, sym__literal, sym_integer, sym_float, @@ -57681,57 +41032,55 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(244), 10, - 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, - sym__semicolon, - [13500] = 20, + [16673] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1749), 1, + ACTIONS(284), 1, sym_identifier, - ACTIONS(1751), 1, + ACTIONS(286), 1, anon_sym_this, - STATE(402), 1, + ACTIONS(1685), 1, + anon_sym_LPAREN, + STATE(28), 1, sym_member_expression, - STATE(605), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, + STATE(108), 1, sym__lhs_expression, - STATE(975), 1, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(118), 1, + sym_type, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(258), 2, - anon_sym_extends, - anon_sym_implements, - STATE(1133), 9, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -57741,57 +41090,55 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(256), 10, - 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, - sym__semicolon, - [13580] = 20, + [16753] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1749), 1, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(1751), 1, + ACTIONS(1697), 1, + anon_sym_LPAREN, + ACTIONS(1699), 1, anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(605), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, + STATE(108), 1, sym__lhs_expression, - STATE(975), 1, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(781), 1, + sym_member_expression, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(306), 2, - anon_sym_extends, - anon_sym_implements, - STATE(1133), 9, + STATE(1152), 1, + sym_type, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1173), 9, sym__literal, sym_integer, sym_float, @@ -57801,152 +41148,55 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(304), 10, - 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, - sym__semicolon, - [13660] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(424), 1, - anon_sym_LPAREN, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(430), 1, - anon_sym_DOT, - ACTIONS(432), 1, - anon_sym_QMARK, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2119), 1, - anon_sym_in, - ACTIONS(2117), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(508), 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(506), 20, - 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, - sym__semicolon, - [13719] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(424), 1, - anon_sym_LPAREN, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(594), 1, - anon_sym_DOT, - ACTIONS(596), 1, - anon_sym_QMARK, - ACTIONS(2119), 1, - anon_sym_in, - ACTIONS(2117), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(508), 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(506), 20, - 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, - sym__semicolon, - [13778] = 19, + [16833] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(2121), 1, + ACTIONS(266), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(268), 1, anon_sym_this, - STATE(618), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, + ACTIONS(1707), 1, + anon_sym_LPAREN, + STATE(28), 1, sym_member_expression, - STATE(942), 1, + STATE(783), 1, + sym_type, + STATE(882), 1, + sym_builtin_type, + STATE(883), 1, sym__lhs_expression, - STATE(975), 1, + STATE(981), 1, + sym_function_type, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(1143), 9, + ACTIONS(1709), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1197), 9, sym__literal, sym_integer, sym_float, @@ -57956,70 +41206,55 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(260), 10, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - sym__semicolon, - [13854] = 24, + [16913] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2125), 1, - sym_identifier, - ACTIONS(2128), 1, - anon_sym_LPAREN, - ACTIONS(2131), 1, - anon_sym_RPAREN, - ACTIONS(2133), 1, - anon_sym_LBRACE, - ACTIONS(2136), 1, + ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(2139), 1, - anon_sym_this, - ACTIONS(2145), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(2148), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(2151), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(2154), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(2157), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(2163), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(2166), 1, + ACTIONS(79), 1, aux_sym_string_token3, - STATE(118), 1, - sym_function_type, - STATE(402), 1, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(266), 1, + sym_identifier, + ACTIONS(268), 1, + anon_sym_this, + ACTIONS(1707), 1, + anon_sym_LPAREN, + STATE(28), 1, sym_member_expression, - STATE(975), 1, - sym_string, - STATE(1008), 1, + STATE(882), 1, sym_builtin_type, - STATE(1010), 1, + STATE(883), 1, sym__lhs_expression, - STATE(1091), 1, + STATE(973), 1, sym_type, - STATE(1282), 1, - sym__function_type_args, - ACTIONS(2160), 2, + STATE(981), 1, + sym_function_type, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(2142), 5, + ACTIONS(1709), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(1133), 9, + STATE(1197), 9, sym__literal, sym_integer, sym_float, @@ -58029,59 +41264,55 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [13940] = 24, + [16993] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1751), 1, - anon_sym_this, - ACTIONS(2169), 1, + ACTIONS(284), 1, sym_identifier, - ACTIONS(2171), 1, + ACTIONS(286), 1, + anon_sym_this, + ACTIONS(1685), 1, anon_sym_LPAREN, - ACTIONS(2173), 1, - anon_sym_RPAREN, - STATE(118), 1, - sym_function_type, - STATE(402), 1, + STATE(28), 1, sym_member_expression, - STATE(975), 1, - sym_string, - STATE(1008), 1, - sym_builtin_type, - STATE(1010), 1, + STATE(108), 1, sym__lhs_expression, - STATE(1080), 1, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(148), 1, sym_type, - STATE(1360), 1, - sym__function_type_args, - ACTIONS(83), 2, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(606), 5, + ACTIONS(1310), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(1133), 9, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -58091,43 +41322,55 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [14026] = 19, + [17073] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(2121), 1, + ACTIONS(284), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(286), 1, anon_sym_this, - STATE(618), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, + ACTIONS(1685), 1, + anon_sym_LPAREN, + STATE(28), 1, sym_member_expression, - STATE(942), 1, + STATE(108), 1, sym__lhs_expression, - STATE(975), 1, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(140), 1, + sym_type, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(1143), 9, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -58137,70 +41380,55 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(256), 10, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - sym__semicolon, - [14102] = 24, + [17153] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1751), 1, + ACTIONS(286), 1, anon_sym_this, - ACTIONS(2131), 1, - anon_sym_RPAREN, - ACTIONS(2169), 1, - sym_identifier, - ACTIONS(2171), 1, + ACTIONS(1685), 1, anon_sym_LPAREN, - STATE(118), 1, - sym_function_type, - STATE(402), 1, + ACTIONS(1713), 1, + sym_identifier, + STATE(28), 1, sym_member_expression, - STATE(975), 1, - sym_string, - STATE(1008), 1, - sym_builtin_type, - STATE(1010), 1, + STATE(108), 1, sym__lhs_expression, - STATE(1091), 1, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(1025), 1, + sym_string, + STATE(1154), 1, sym_type, - STATE(1282), 1, - sym__function_type_args, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(606), 5, + ACTIONS(1310), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(1133), 9, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -58210,43 +41438,55 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [14188] = 19, + [17233] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(2121), 1, + ACTIONS(284), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(286), 1, anon_sym_this, - STATE(618), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, + ACTIONS(1685), 1, + anon_sym_LPAREN, + STATE(28), 1, sym_member_expression, - STATE(942), 1, + STATE(108), 1, sym__lhs_expression, - STATE(975), 1, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + STATE(1190), 1, + sym_type, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(1143), 9, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -58256,54 +41496,55 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(244), 10, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - sym__semicolon, - [14264] = 19, + [17313] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(271), 1, - anon_sym_LBRACE, - ACTIONS(274), 1, + ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(280), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(283), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(286), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(289), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(292), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(298), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(301), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(2175), 1, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, sym_identifier, - ACTIONS(2178), 1, + ACTIONS(286), 1, anon_sym_this, - STATE(618), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, + ACTIONS(1685), 1, + anon_sym_LPAREN, + STATE(28), 1, sym_member_expression, - STATE(942), 1, + STATE(108), 1, sym__lhs_expression, - STATE(975), 1, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(156), 1, + sym_type, + STATE(1025), 1, sym_string, - ACTIONS(295), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(1143), 9, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -58313,54 +41554,96 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(264), 10, + [17393] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(376), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(310), 14, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(312), 17, + anon_sym_switch, + anon_sym_cast, + anon_sym_this, + aux_sym_member_expression_token1, anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - sym__semicolon, - [14340] = 19, + anon_sym_new, + sym__prefixUnaryOperator, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [17439] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(2121), 1, + ACTIONS(266), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(268), 1, anon_sym_this, - STATE(618), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, + ACTIONS(1707), 1, + anon_sym_LPAREN, + STATE(28), 1, sym_member_expression, - STATE(942), 1, + STATE(732), 1, + sym_type, + STATE(882), 1, + sym_builtin_type, + STATE(883), 1, sym__lhs_expression, - STATE(975), 1, + STATE(981), 1, + sym_function_type, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(1143), 9, + ACTIONS(1709), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1197), 9, sym__literal, sym_integer, sym_float, @@ -58370,54 +41653,55 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(304), 10, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - sym__semicolon, - [14416] = 19, + [17519] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(2121), 1, + ACTIONS(284), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(286), 1, anon_sym_this, - STATE(618), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, + ACTIONS(1685), 1, + anon_sym_LPAREN, + STATE(28), 1, sym_member_expression, - STATE(942), 1, + STATE(108), 1, sym__lhs_expression, - STATE(975), 1, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(144), 1, + sym_type, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(1143), 9, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -58427,54 +41711,55 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(308), 10, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - sym__semicolon, - [14492] = 19, + [17599] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(2121), 1, + ACTIONS(284), 1, sym_identifier, - ACTIONS(2123), 1, + ACTIONS(286), 1, anon_sym_this, - STATE(618), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, + ACTIONS(1685), 1, + anon_sym_LPAREN, + STATE(28), 1, sym_member_expression, - STATE(942), 1, + STATE(108), 1, sym__lhs_expression, - STATE(975), 1, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(158), 1, + sym_type, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(1143), 9, + ACTIONS(1310), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -58484,166 +41769,55 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(252), 10, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - sym__semicolon, - [14568] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(1811), 1, - anon_sym_DOT, - ACTIONS(1813), 1, - anon_sym_QMARK, - ACTIONS(2119), 1, - anon_sym_in, - ACTIONS(2117), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(424), 4, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(508), 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(506), 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, - [14626] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(424), 1, - anon_sym_LPAREN, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(594), 1, - anon_sym_DOT, - ACTIONS(596), 1, - anon_sym_QMARK, - ACTIONS(2183), 1, - anon_sym_in, - ACTIONS(2185), 1, - anon_sym_LBRACK, - ACTIONS(2181), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(508), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_EQ, - sym_identifier, - ACTIONS(506), 18, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [14684] = 24, + [17679] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(602), 1, - anon_sym_RPAREN, - ACTIONS(1751), 1, - anon_sym_this, - ACTIONS(2169), 1, + ACTIONS(284), 1, sym_identifier, - ACTIONS(2171), 1, + ACTIONS(286), 1, + anon_sym_this, + ACTIONS(1685), 1, anon_sym_LPAREN, - STATE(118), 1, - sym_function_type, - STATE(402), 1, + STATE(28), 1, sym_member_expression, - STATE(975), 1, - sym_string, - STATE(1008), 1, - sym_builtin_type, - STATE(1010), 1, + STATE(108), 1, sym__lhs_expression, - STATE(1091), 1, + STATE(109), 1, + sym_builtin_type, + STATE(116), 1, + sym_function_type, + STATE(147), 1, sym_type, - STATE(1309), 1, - sym__function_type_args, - ACTIONS(83), 2, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(606), 5, + ACTIONS(1310), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(1133), 9, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -58653,153 +41827,233 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [14770] = 10, + [17759] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(424), 1, - anon_sym_LPAREN, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(430), 1, - anon_sym_DOT, - ACTIONS(432), 1, + ACTIONS(332), 1, + sym__eitherUnaryOperator, + ACTIONS(1705), 1, anon_sym_QMARK, - ACTIONS(2183), 1, - anon_sym_in, - ACTIONS(2185), 1, + STATE(376), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(326), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, anon_sym_LBRACK, - ACTIONS(2181), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(508), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_EQ, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(328), 12, + anon_sym_switch, + anon_sym_cast, + anon_sym_this, + aux_sym_member_expression_token1, + anon_sym_new, + sym__prefixUnaryOperator, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, sym_identifier, - ACTIONS(506), 18, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [14828] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(454), 1, + [17815] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(330), 1, anon_sym_LBRACK, - ACTIONS(464), 1, - anon_sym_DOT, - ACTIONS(466), 1, + ACTIONS(1705), 1, anon_sym_QMARK, - ACTIONS(2119), 1, - anon_sym_in, - ACTIONS(2187), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(424), 4, + STATE(376), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(326), 9, anon_sym_LPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(508), 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_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + sym__eitherUnaryOperator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(328), 12, + anon_sym_switch, + anon_sym_cast, + anon_sym_this, + aux_sym_member_expression_token1, + anon_sym_new, + sym__prefixUnaryOperator, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [17871] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1705), 1, + anon_sym_QMARK, + STATE(376), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(326), 10, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, + sym__eitherUnaryOperator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(328), 12, + anon_sym_switch, + anon_sym_cast, + anon_sym_this, + aux_sym_member_expression_token1, + anon_sym_new, + sym__prefixUnaryOperator, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [17925] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(376), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(310), 14, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(312), 17, + anon_sym_switch, + anon_sym_cast, + anon_sym_this, + aux_sym_member_expression_token1, + anon_sym_QMARK, + anon_sym_new, + sym__prefixUnaryOperator, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, anon_sym_EQ, - ACTIONS(506), 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, - [14886] = 23, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [17971] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(326), 1, + ACTIONS(284), 1, sym_identifier, - ACTIONS(328), 1, + ACTIONS(286), 1, anon_sym_this, - ACTIONS(2189), 1, + ACTIONS(1685), 1, anon_sym_LPAREN, - STATE(101), 1, + STATE(28), 1, sym_member_expression, - STATE(115), 1, + STATE(108), 1, sym__lhs_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, + STATE(109), 1, sym_builtin_type, - STATE(507), 1, + STATE(116), 1, + sym_function_type, + STATE(152), 1, sym_type, - STATE(954), 1, - aux_sym_variable_declaration_repeat1, - STATE(975), 1, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, + ACTIONS(1310), 5, anon_sym_Void, anon_sym_Int, anon_sym_Float, anon_sym_Bool, anon_sym_Null, - STATE(1167), 9, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -58809,117 +42063,96 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [14969] = 23, + [18051] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1705), 1, + anon_sym_QMARK, + STATE(376), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(314), 10, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, + sym__eitherUnaryOperator, aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, aux_sym_float_token2, - ACTIONS(85), 1, aux_sym_string_token1, - ACTIONS(87), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(326), 1, - sym_identifier, - ACTIONS(328), 1, + ACTIONS(316), 12, + anon_sym_switch, + anon_sym_cast, anon_sym_this, - ACTIONS(2189), 1, - anon_sym_LPAREN, - STATE(101), 1, - sym_member_expression, - STATE(115), 1, - sym__lhs_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(520), 1, - sym_type, - STATE(629), 1, - aux_sym_variable_declaration_repeat1, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, + aux_sym_member_expression_token1, + anon_sym_new, + sym__prefixUnaryOperator, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [15052] = 23, + sym_identifier, + [18105] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(326), 1, - sym_identifier, - ACTIONS(328), 1, + ACTIONS(524), 1, anon_sym_this, - ACTIONS(2189), 1, - anon_sym_LPAREN, - STATE(101), 1, + ACTIONS(1715), 1, + sym_identifier, + STATE(28), 1, sym_member_expression, - STATE(115), 1, + STATE(29), 1, sym__lhs_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(501), 1, - sym_type, - STATE(954), 1, - aux_sym_variable_declaration_repeat1, - STATE(975), 1, + STATE(505), 1, + aux_sym_member_expression_repeat1, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, + ACTIONS(262), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_EQ, + anon_sym_LT, + STATE(1189), 9, sym__literal, sym_integer, sym_float, @@ -58929,223 +42162,215 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [15135] = 23, + [18178] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + STATE(326), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(310), 14, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, aux_sym_float_token2, - ACTIONS(85), 1, aux_sym_string_token1, - ACTIONS(87), 1, aux_sym_string_token3, - ACTIONS(1749), 1, - sym_identifier, - ACTIONS(1751), 1, + ACTIONS(312), 16, + anon_sym_switch, + anon_sym_cast, anon_sym_this, - ACTIONS(2193), 1, - anon_sym_LPAREN, - ACTIONS(2195), 1, - anon_sym_LBRACE, - STATE(402), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - STATE(988), 1, - sym__lhs_expression, - STATE(997), 1, - sym_builtin_type, - STATE(1033), 1, - sym_type, - STATE(1110), 1, - sym_structure_type, - STATE(1122), 1, - sym_function_type, - ACTIONS(83), 2, + anon_sym_QMARK, + anon_sym_new, + sym__prefixUnaryOperator, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, anon_sym_true, anon_sym_false, - ACTIONS(606), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1133), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [15218] = 10, + sym_identifier, + [18223] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(424), 1, + STATE(326), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(310), 14, anon_sym_LPAREN, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(454), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, anon_sym_LBRACK, - ACTIONS(594), 1, - anon_sym_DOT, - ACTIONS(596), 1, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(312), 16, + anon_sym_switch, + anon_sym_cast, + anon_sym_this, anon_sym_QMARK, - ACTIONS(2119), 1, - anon_sym_in, - ACTIONS(2187), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(508), 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_new, + sym__prefixUnaryOperator, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, anon_sym_EQ, - ACTIONS(506), 18, - anon_sym_RBRACE, - 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, - [15275] = 22, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [18268] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + STATE(326), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(310), 14, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, anon_sym_LBRACK, - ACTIONS(59), 1, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(312), 16, + anon_sym_switch, + anon_sym_cast, + anon_sym_this, + anon_sym_QMARK, + anon_sym_new, + sym__prefixUnaryOperator, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, anon_sym_null, - ACTIONS(75), 1, aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, aux_sym_float_token1, - ACTIONS(81), 1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [18313] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1721), 1, + anon_sym_QMARK, + STATE(326), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(1719), 10, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, + sym__eitherUnaryOperator, + aux_sym_integer_token2, aux_sym_float_token2, - ACTIONS(85), 1, aux_sym_string_token1, - ACTIONS(87), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(236), 1, + ACTIONS(1717), 11, + anon_sym_switch, + anon_sym_cast, anon_sym_this, - ACTIONS(1092), 1, anon_sym_new, - ACTIONS(2197), 1, - sym_identifier, - STATE(80), 1, - sym_member_expression, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(675), 1, - sym_string, - STATE(1059), 1, - sym__lhs_expression, - ACTIONS(83), 2, + sym__prefixUnaryOperator, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, anon_sym_true, anon_sym_false, - STATE(61), 2, - sym__rhs_expression, - sym_call_expression, - ACTIONS(240), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - sym__semicolon, - STATE(699), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [15356] = 23, + sym_identifier, + [18366] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(326), 1, - sym_identifier, - ACTIONS(328), 1, + ACTIONS(524), 1, anon_sym_this, - ACTIONS(2189), 1, - anon_sym_LPAREN, - STATE(101), 1, - sym_member_expression, - STATE(115), 1, - sym__lhs_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(516), 1, - sym_type, - STATE(954), 1, - aux_sym_variable_declaration_repeat1, - STATE(975), 1, + ACTIONS(1715), 1, + sym_identifier, + STATE(28), 1, + sym_member_expression, + STATE(29), 1, + sym__lhs_expression, + STATE(505), 1, + aux_sym_member_expression_repeat1, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, + ACTIONS(208), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_EQ, + anon_sym_LT, + STATE(1189), 9, sym__literal, sym_integer, sym_float, @@ -59155,102 +42380,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [15439] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(424), 1, - anon_sym_LPAREN, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(430), 1, - anon_sym_DOT, - ACTIONS(432), 1, - anon_sym_QMARK, - ACTIONS(2117), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(508), 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(506), 20, - 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, - sym__semicolon, - [15492] = 23, + [18439] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(225), 1, + anon_sym_LBRACE, + ACTIONS(228), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(234), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(237), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(240), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(243), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(246), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(252), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(255), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(326), 1, + ACTIONS(1723), 1, sym_identifier, - ACTIONS(328), 1, + ACTIONS(1726), 1, anon_sym_this, - ACTIONS(2189), 1, - anon_sym_LPAREN, - STATE(101), 1, + STATE(28), 1, sym_member_expression, - STATE(115), 1, + STATE(29), 1, sym__lhs_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(507), 1, - sym_type, - STATE(636), 1, - aux_sym_variable_declaration_repeat1, - STATE(975), 1, + STATE(505), 1, + aux_sym_member_expression_repeat1, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(249), 2, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, + ACTIONS(218), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_EQ, + anon_sym_LT, + STATE(1189), 9, sym__literal, sym_integer, sym_float, @@ -59260,57 +42434,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [15575] = 23, + [18512] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(326), 1, - sym_identifier, - ACTIONS(328), 1, + ACTIONS(524), 1, anon_sym_this, - ACTIONS(2189), 1, - anon_sym_LPAREN, - STATE(101), 1, + ACTIONS(1715), 1, + sym_identifier, + STATE(28), 1, sym_member_expression, - STATE(115), 1, + STATE(29), 1, sym__lhs_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(518), 1, - sym_type, - STATE(954), 1, - aux_sym_variable_declaration_repeat1, - STATE(975), 1, + STATE(505), 1, + aux_sym_member_expression_repeat1, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, + ACTIONS(258), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_EQ, + anon_sym_LT, + STATE(1189), 9, sym__literal, sym_integer, sym_float, @@ -59320,509 +42488,588 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [15658] = 10, + [18585] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(424), 1, + ACTIONS(1721), 1, + anon_sym_QMARK, + STATE(326), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(314), 10, anon_sym_LPAREN, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(430), 1, - anon_sym_DOT, - ACTIONS(432), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, + sym__eitherUnaryOperator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(316), 11, + anon_sym_switch, + anon_sym_cast, + anon_sym_this, + anon_sym_new, + sym__prefixUnaryOperator, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [18638] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1721), 1, + anon_sym_QMARK, + STATE(326), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(314), 10, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, + sym__eitherUnaryOperator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(316), 11, + anon_sym_switch, + anon_sym_cast, + anon_sym_this, + anon_sym_new, + sym__prefixUnaryOperator, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [18691] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1721), 1, anon_sym_QMARK, - ACTIONS(454), 1, + STATE(326), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(314), 10, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, anon_sym_LBRACK, - ACTIONS(2119), 1, - anon_sym_in, - ACTIONS(2187), 2, + sym__eitherUnaryOperator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(316), 11, + anon_sym_switch, + anon_sym_cast, + anon_sym_this, + anon_sym_new, + sym__prefixUnaryOperator, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [18744] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(330), 1, + anon_sym_LBRACK, + ACTIONS(1721), 1, + anon_sym_QMARK, + STATE(326), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(1719), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + sym__eitherUnaryOperator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(1717), 11, + anon_sym_switch, + anon_sym_cast, + anon_sym_this, + anon_sym_new, + sym__prefixUnaryOperator, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [18799] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(298), 1, anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(508), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(296), 14, + anon_sym_this, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, anon_sym_EQ, - ACTIONS(506), 18, + anon_sym_null, + anon_sym_LT, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(294), 18, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, 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, - [15715] = 23, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + sym__semicolon, + [18842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(304), 14, + anon_sym_this, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, anon_sym_null, - ACTIONS(75), 1, + anon_sym_LT, aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, aux_sym_float_token1, - ACTIONS(81), 1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(302), 19, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + sym__semicolon, + [18883] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(296), 1, + anon_sym_LT, + ACTIONS(300), 1, + aux_sym_member_expression_token1, + ACTIONS(1693), 2, + anon_sym_COLON, + sym__map_operator, + ACTIONS(306), 12, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + aux_sym_integer_token2, aux_sym_float_token2, - ACTIONS(85), 1, aux_sym_string_token1, - ACTIONS(87), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(326), 1, - sym_identifier, - ACTIONS(328), 1, + ACTIONS(308), 16, + anon_sym_switch, + anon_sym_cast, anon_sym_this, - ACTIONS(2189), 1, - anon_sym_LPAREN, - STATE(101), 1, - sym_member_expression, - STATE(115), 1, - sym__lhs_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(506), 1, - sym_type, - STATE(641), 1, - aux_sym_variable_declaration_repeat1, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, + anon_sym_QMARK, + anon_sym_new, + sym__prefixUnaryOperator, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [15798] = 23, + sym_identifier, + [18932] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(332), 1, + sym__eitherUnaryOperator, + ACTIONS(1721), 1, + anon_sym_QMARK, + STATE(326), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(1719), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, aux_sym_float_token2, - ACTIONS(85), 1, aux_sym_string_token1, - ACTIONS(87), 1, aux_sym_string_token3, - ACTIONS(326), 1, - sym_identifier, - ACTIONS(328), 1, + ACTIONS(1717), 11, + anon_sym_switch, + anon_sym_cast, anon_sym_this, - ACTIONS(2199), 1, - anon_sym_LPAREN, - ACTIONS(2201), 1, - anon_sym_LBRACE, - STATE(101), 1, - sym_member_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(132), 1, - sym__lhs_expression, - STATE(165), 1, - sym_type, - STATE(331), 1, - sym_block, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, + anon_sym_new, + sym__prefixUnaryOperator, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [15881] = 23, + sym_identifier, + [18987] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(298), 1, + anon_sym_COLON, + ACTIONS(1729), 1, + aux_sym_member_expression_token1, + ACTIONS(296), 13, + anon_sym_this, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, anon_sym_null, - ACTIONS(75), 1, + anon_sym_LT, aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(326), 1, + anon_sym_true, + anon_sym_false, sym_identifier, - ACTIONS(328), 1, - anon_sym_this, - ACTIONS(2199), 1, + ACTIONS(294), 18, anon_sym_LPAREN, - ACTIONS(2201), 1, + anon_sym_RPAREN, anon_sym_LBRACE, - STATE(101), 1, - sym_member_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(151), 1, - sym__lhs_expression, - STATE(159), 1, - sym_type, - STATE(200), 1, - sym_block, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [15964] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, + anon_sym_RBRACK, + anon_sym_DASH_GT, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, aux_sym_float_token2, - ACTIONS(85), 1, aux_sym_string_token1, - ACTIONS(87), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(326), 1, - sym_identifier, - ACTIONS(328), 1, + sym__semicolon, + [19032] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(296), 14, anon_sym_this, - ACTIONS(2189), 1, - anon_sym_LPAREN, - STATE(101), 1, - sym_member_expression, - STATE(115), 1, - sym__lhs_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(520), 1, - sym_type, - STATE(954), 1, - aux_sym_variable_declaration_repeat1, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + anon_sym_null, + anon_sym_LT, + aux_sym_integer_token1, + aux_sym_float_token1, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [16047] = 23, + sym_identifier, + ACTIONS(294), 19, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_GT, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + sym__semicolon, + [19073] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(296), 1, + anon_sym_LT, + ACTIONS(382), 1, + aux_sym_member_expression_token1, + ACTIONS(1693), 2, + anon_sym_COLON, + sym__map_operator, + ACTIONS(306), 12, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, aux_sym_float_token2, - ACTIONS(85), 1, aux_sym_string_token1, - ACTIONS(87), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(326), 1, - sym_identifier, - ACTIONS(328), 1, + ACTIONS(308), 16, + anon_sym_switch, + anon_sym_cast, anon_sym_this, - ACTIONS(2189), 1, - anon_sym_LPAREN, - STATE(101), 1, - sym_member_expression, - STATE(115), 1, - sym__lhs_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(505), 1, - sym_type, - STATE(633), 1, - aux_sym_variable_declaration_repeat1, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, + anon_sym_QMARK, + anon_sym_new, + sym__prefixUnaryOperator, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [16130] = 23, + sym_identifier, + [19122] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1693), 1, + anon_sym_COLON, + ACTIONS(432), 14, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, aux_sym_float_token2, - ACTIONS(85), 1, aux_sym_string_token1, - ACTIONS(87), 1, aux_sym_string_token3, - ACTIONS(326), 1, - sym_identifier, - ACTIONS(328), 1, + ACTIONS(434), 17, + anon_sym_switch, + anon_sym_cast, anon_sym_this, - ACTIONS(2199), 1, - anon_sym_LPAREN, - ACTIONS(2201), 1, - anon_sym_LBRACE, - STATE(101), 1, - sym_member_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(125), 1, - sym__lhs_expression, - STATE(168), 1, - sym_type, - STATE(242), 1, - sym_block, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, + aux_sym_member_expression_token1, + anon_sym_QMARK, + anon_sym_new, + sym__prefixUnaryOperator, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [16213] = 8, + sym_identifier, + [19164] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(424), 1, - anon_sym_LPAREN, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(594), 1, - anon_sym_DOT, - ACTIONS(596), 1, - anon_sym_QMARK, - ACTIONS(2117), 2, + ACTIONS(298), 1, anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(508), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(296), 14, + anon_sym_this, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, anon_sym_EQ, - ACTIONS(506), 20, + anon_sym_null, + anon_sym_LT, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(294), 16, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_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__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, sym__semicolon, - [16266] = 23, + [19205] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(326), 1, - sym_identifier, - ACTIONS(328), 1, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(216), 1, anon_sym_this, - ACTIONS(2199), 1, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(518), 1, anon_sym_LPAREN, - ACTIONS(2201), 1, - anon_sym_LBRACE, - STATE(101), 1, + ACTIONS(1731), 1, + sym_identifier, + STATE(30), 1, sym_member_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(147), 1, - sym__lhs_expression, - STATE(161), 1, - sym_type, - STATE(308), 1, - sym_block, - STATE(975), 1, + STATE(40), 1, + sym__constructor_call, + STATE(57), 1, + sym__call, + STATE(518), 1, sym_string, - ACTIONS(83), 2, + STATE(1045), 1, + sym__lhs_expression, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, + STATE(89), 2, + sym__rhs_expression, + sym_call_expression, + STATE(531), 9, sym__literal, sym_integer, sym_float, @@ -59832,117 +43079,88 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [16349] = 23, + [19282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(296), 14, + anon_sym_this, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, anon_sym_null, - ACTIONS(75), 1, + anon_sym_LT, aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, aux_sym_float_token1, - ACTIONS(81), 1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(294), 17, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + aux_sym_integer_token2, aux_sym_float_token2, - ACTIONS(85), 1, aux_sym_string_token1, - ACTIONS(87), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(326), 1, - sym_identifier, - ACTIONS(328), 1, - anon_sym_this, - ACTIONS(2189), 1, - anon_sym_LPAREN, - STATE(101), 1, - sym_member_expression, - STATE(115), 1, - sym__lhs_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(516), 1, - sym_type, - STATE(647), 1, - aux_sym_variable_declaration_repeat1, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [16432] = 23, + sym__semicolon, + [19321] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1328), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1340), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1342), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1344), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1346), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1350), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1352), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(326), 1, - sym_identifier, - ACTIONS(328), 1, + ACTIONS(1366), 1, anon_sym_this, - ACTIONS(2189), 1, + ACTIONS(1733), 1, + sym_identifier, + ACTIONS(1735), 1, anon_sym_LPAREN, - STATE(101), 1, + STATE(657), 1, sym_member_expression, - STATE(115), 1, - sym__lhs_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(502), 1, - sym_type, - STATE(954), 1, - aux_sym_variable_declaration_repeat1, - STATE(975), 1, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, sym_string, - ACTIONS(83), 2, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, + STATE(720), 2, + sym__rhs_expression, + sym_call_expression, + STATE(817), 9, sym__literal, sym_integer, sym_float, @@ -59952,57 +43170,52 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [16515] = 23, + [19398] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1328), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1340), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1342), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1344), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1346), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1350), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1352), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(326), 1, - sym_identifier, - ACTIONS(328), 1, + ACTIONS(1517), 1, anon_sym_this, - ACTIONS(2189), 1, + ACTIONS(1735), 1, anon_sym_LPAREN, - STATE(101), 1, + ACTIONS(1737), 1, + sym_identifier, + STATE(657), 1, sym_member_expression, - STATE(115), 1, - sym__lhs_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(500), 1, - sym_type, - STATE(627), 1, - aux_sym_variable_declaration_repeat1, - STATE(975), 1, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(979), 1, sym_string, - ACTIONS(83), 2, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, + STATE(720), 2, + sym__rhs_expression, + sym_call_expression, + STATE(986), 9, sym__literal, sym_integer, sym_float, @@ -60012,57 +43225,52 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [16598] = 23, + [19475] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1675), 1, + anon_sym_this, + ACTIONS(1739), 1, + sym_identifier, + ACTIONS(1741), 1, + anon_sym_LPAREN, + ACTIONS(1743), 1, + anon_sym_LBRACE, + ACTIONS(1745), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1747), 1, + anon_sym_new, + ACTIONS(1749), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1751), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1753), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1755), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1757), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1761), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1763), 1, aux_sym_string_token3, - ACTIONS(1749), 1, - sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - ACTIONS(2193), 1, - anon_sym_LPAREN, - ACTIONS(2195), 1, - anon_sym_LBRACE, - STATE(402), 1, + STATE(659), 1, sym_member_expression, - STATE(975), 1, - sym_string, - STATE(984), 1, - sym__lhs_expression, - STATE(997), 1, - sym_builtin_type, - STATE(1020), 1, - sym_type, - STATE(1055), 1, - sym_structure_type, - STATE(1122), 1, - sym_function_type, - ACTIONS(83), 2, + STATE(740), 1, + sym__call, + STATE(741), 1, + sym__constructor_call, + STATE(988), 1, + sym_string, + STATE(1092), 1, + sym__lhs_expression, + ACTIONS(1759), 2, anon_sym_true, anon_sym_false, - ACTIONS(606), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1133), 9, + STATE(772), 2, + sym__rhs_expression, + sym_call_expression, + STATE(990), 9, sym__literal, sym_integer, sym_float, @@ -60072,55 +43280,52 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [16681] = 22, + [19552] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1613), 1, + anon_sym_this, + ACTIONS(1741), 1, + anon_sym_LPAREN, + ACTIONS(1743), 1, + anon_sym_LBRACE, + ACTIONS(1745), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1747), 1, + anon_sym_new, + ACTIONS(1749), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1751), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1753), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1755), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1757), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1761), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1763), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(326), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(328), 1, - anon_sym_this, - ACTIONS(2199), 1, - anon_sym_LPAREN, - STATE(101), 1, + STATE(659), 1, sym_member_expression, - STATE(115), 1, - sym__lhs_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(153), 1, - sym_type, - STATE(975), 1, + STATE(740), 1, + sym__call, + STATE(741), 1, + sym__constructor_call, + STATE(789), 1, sym_string, - ACTIONS(83), 2, + STATE(1092), 1, + sym__lhs_expression, + ACTIONS(1759), 2, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, + STATE(772), 2, + sym__rhs_expression, + sym_call_expression, + STATE(824), 9, sym__literal, sym_integer, sym_float, @@ -60130,55 +43335,88 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [16761] = 22, + [19629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(304), 14, + anon_sym_this, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + anon_sym_null, + anon_sym_LT, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(302), 17, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(59), 1, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + sym__semicolon, + [19668] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1635), 1, + anon_sym_this, + ACTIONS(1741), 1, + anon_sym_LPAREN, + ACTIONS(1743), 1, + anon_sym_LBRACE, + ACTIONS(1745), 1, + anon_sym_LBRACK, + ACTIONS(1747), 1, + anon_sym_new, + ACTIONS(1749), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1751), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1753), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1755), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1757), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1761), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1763), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(326), 1, + ACTIONS(1767), 1, sym_identifier, - ACTIONS(328), 1, - anon_sym_this, - ACTIONS(2199), 1, - anon_sym_LPAREN, - STATE(101), 1, + STATE(659), 1, sym_member_expression, - STATE(115), 1, - sym__lhs_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(149), 1, - sym_type, - STATE(975), 1, + STATE(740), 1, + sym__call, + STATE(741), 1, + sym__constructor_call, + STATE(947), 1, sym_string, - ACTIONS(83), 2, + STATE(1092), 1, + sym__lhs_expression, + ACTIONS(1759), 2, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, + STATE(772), 2, + sym__rhs_expression, + sym_call_expression, + STATE(977), 9, sym__literal, sym_integer, sym_float, @@ -60188,55 +43426,52 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [16841] = 22, + [19745] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1749), 1, - sym_identifier, - ACTIONS(1751), 1, + ACTIONS(268), 1, anon_sym_this, - ACTIONS(2193), 1, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(516), 1, + sym_identifier, + ACTIONS(518), 1, anon_sym_LPAREN, - STATE(402), 1, + STATE(30), 1, sym_member_expression, - STATE(975), 1, + STATE(40), 1, + sym__constructor_call, + STATE(57), 1, + sym__call, + STATE(65), 1, sym_string, - STATE(997), 1, - sym_builtin_type, - STATE(1009), 1, + STATE(1045), 1, sym__lhs_expression, - STATE(1048), 1, - sym_type, - STATE(1122), 1, - sym_function_type, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(606), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1133), 9, + STATE(89), 2, + sym__rhs_expression, + sym_call_expression, + STATE(104), 9, sym__literal, sym_integer, sym_float, @@ -60246,55 +43481,52 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [16921] = 22, + [19822] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1635), 1, + anon_sym_this, + ACTIONS(1741), 1, + anon_sym_LPAREN, + ACTIONS(1743), 1, + anon_sym_LBRACE, + ACTIONS(1745), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1747), 1, + anon_sym_new, + ACTIONS(1749), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1751), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1753), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1755), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1757), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1761), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1763), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, + ACTIONS(1769), 1, sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - ACTIONS(2193), 1, - anon_sym_LPAREN, - STATE(402), 1, + STATE(659), 1, sym_member_expression, - STATE(975), 1, + STATE(740), 1, + sym__call, + STATE(741), 1, + sym__constructor_call, + STATE(789), 1, sym_string, - STATE(997), 1, - sym_builtin_type, - STATE(1009), 1, + STATE(1092), 1, sym__lhs_expression, - STATE(1046), 1, - sym_type, - STATE(1122), 1, - sym_function_type, - ACTIONS(83), 2, + ACTIONS(1759), 2, anon_sym_true, anon_sym_false, - ACTIONS(606), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1133), 9, + STATE(772), 2, + sym__rhs_expression, + sym_call_expression, + STATE(823), 9, sym__literal, sym_integer, sym_float, @@ -60304,55 +43536,52 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [17001] = 22, + [19899] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1749), 1, - sym_identifier, - ACTIONS(1751), 1, + ACTIONS(216), 1, anon_sym_this, - ACTIONS(2193), 1, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(518), 1, anon_sym_LPAREN, - STATE(402), 1, + ACTIONS(1771), 1, + sym_identifier, + STATE(30), 1, sym_member_expression, - STATE(975), 1, + STATE(40), 1, + sym__constructor_call, + STATE(57), 1, + sym__call, + STATE(65), 1, sym_string, - STATE(997), 1, - sym_builtin_type, - STATE(1009), 1, - sym__lhs_expression, STATE(1045), 1, - sym_type, - STATE(1122), 1, - sym_function_type, - ACTIONS(83), 2, + sym__lhs_expression, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(606), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1133), 9, + STATE(89), 2, + sym__rhs_expression, + sym_call_expression, + STATE(102), 9, sym__literal, sym_integer, sym_float, @@ -60362,55 +43591,128 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [17081] = 22, + [19976] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(510), 1, + aux_sym_member_expression_token1, + ACTIONS(1693), 1, + sym__map_operator, + ACTIONS(306), 13, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(308), 16, + anon_sym_switch, + anon_sym_cast, + anon_sym_this, + anon_sym_QMARK, + anon_sym_new, + sym__prefixUnaryOperator, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [20019] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(298), 1, + anon_sym_COLON, + ACTIONS(1773), 1, + aux_sym_member_expression_token1, + ACTIONS(296), 13, + anon_sym_this, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + anon_sym_null, + anon_sym_LT, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(294), 16, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + sym__semicolon, + [20062] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_this, + ACTIONS(1741), 1, + anon_sym_LPAREN, + ACTIONS(1743), 1, + anon_sym_LBRACE, + ACTIONS(1745), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1747), 1, + anon_sym_new, + ACTIONS(1749), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1751), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1753), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1755), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1757), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1761), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1763), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, + ACTIONS(1775), 1, sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - ACTIONS(2171), 1, - anon_sym_LPAREN, - STATE(118), 1, - sym_function_type, - STATE(402), 1, + STATE(659), 1, sym_member_expression, - STATE(975), 1, + STATE(740), 1, + sym__call, + STATE(741), 1, + sym__constructor_call, + STATE(988), 1, sym_string, - STATE(1008), 1, - sym_builtin_type, - STATE(1010), 1, + STATE(1092), 1, sym__lhs_expression, - STATE(1105), 1, - sym_type, - ACTIONS(83), 2, + ACTIONS(1759), 2, anon_sym_true, anon_sym_false, - ACTIONS(606), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1133), 9, + STATE(772), 2, + sym__rhs_expression, + sym_call_expression, + STATE(989), 9, sym__literal, sym_integer, sym_float, @@ -60420,55 +43722,52 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [17161] = 22, + [20139] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(326), 1, - sym_identifier, - ACTIONS(328), 1, + ACTIONS(268), 1, anon_sym_this, - ACTIONS(2199), 1, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(518), 1, anon_sym_LPAREN, - STATE(101), 1, + ACTIONS(1777), 1, + sym_identifier, + STATE(30), 1, sym_member_expression, - STATE(115), 1, - sym__lhs_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(139), 1, - sym_type, - STATE(975), 1, + STATE(40), 1, + sym__constructor_call, + STATE(57), 1, + sym__call, + STATE(518), 1, sym_string, - ACTIONS(83), 2, + STATE(1045), 1, + sym__lhs_expression, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, + STATE(89), 2, + sym__rhs_expression, + sym_call_expression, + STATE(537), 9, sym__literal, sym_integer, sym_float, @@ -60478,99 +43777,52 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [17241] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(424), 1, - anon_sym_LPAREN, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(594), 1, - anon_sym_DOT, - ACTIONS(596), 1, - anon_sym_QMARK, - ACTIONS(2181), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(508), 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(506), 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, - [17293] = 22, + [20216] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1328), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1340), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1342), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1344), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1346), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1350), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1352), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(326), 1, - sym_identifier, - ACTIONS(328), 1, + ACTIONS(1366), 1, anon_sym_this, - ACTIONS(2199), 1, + ACTIONS(1735), 1, anon_sym_LPAREN, - STATE(101), 1, + ACTIONS(1779), 1, + sym_identifier, + STATE(657), 1, sym_member_expression, - STATE(115), 1, - sym__lhs_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(143), 1, - sym_type, - STATE(975), 1, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(929), 1, sym_string, - ACTIONS(83), 2, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, + STATE(720), 2, + sym__rhs_expression, + sym_call_expression, + STATE(942), 9, sym__literal, sym_integer, sym_float, @@ -60580,55 +43832,52 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [17373] = 22, + [20293] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1613), 1, + anon_sym_this, + ACTIONS(1741), 1, + anon_sym_LPAREN, + ACTIONS(1743), 1, + anon_sym_LBRACE, + ACTIONS(1745), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1747), 1, + anon_sym_new, + ACTIONS(1749), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1751), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1753), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1755), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1757), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1761), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1763), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(326), 1, + ACTIONS(1781), 1, sym_identifier, - ACTIONS(328), 1, - anon_sym_this, - ACTIONS(2199), 1, - anon_sym_LPAREN, - STATE(101), 1, + STATE(659), 1, sym_member_expression, - STATE(115), 1, - sym__lhs_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(138), 1, - sym_type, - STATE(975), 1, + STATE(740), 1, + sym__call, + STATE(741), 1, + sym__constructor_call, + STATE(947), 1, sym_string, - ACTIONS(83), 2, + STATE(1092), 1, + sym__lhs_expression, + ACTIONS(1759), 2, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, + STATE(772), 2, + sym__rhs_expression, + sym_call_expression, + STATE(972), 9, sym__literal, sym_integer, sym_float, @@ -60638,55 +43887,85 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [17453] = 22, + [20370] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(512), 1, + aux_sym_member_expression_token1, + ACTIONS(1693), 1, + sym__map_operator, + ACTIONS(306), 13, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, aux_sym_float_token2, - ACTIONS(85), 1, aux_sym_string_token1, - ACTIONS(87), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(326), 1, + ACTIONS(308), 16, + anon_sym_switch, + anon_sym_cast, + anon_sym_this, + anon_sym_QMARK, + anon_sym_new, + sym__prefixUnaryOperator, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, sym_identifier, - ACTIONS(328), 1, + [20413] = 18, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(208), 1, + sym_escape_sequence, + ACTIONS(1783), 1, + sym_identifier, + ACTIONS(1785), 1, + anon_sym_LBRACE, + ACTIONS(1787), 1, + anon_sym_LBRACK, + ACTIONS(1789), 1, anon_sym_this, - ACTIONS(2199), 1, - anon_sym_LPAREN, - STATE(101), 1, + ACTIONS(1791), 1, + aux_sym_string_token1, + ACTIONS(1793), 1, + aux_sym_string_token3, + ACTIONS(1795), 1, + sym_comment, + STATE(557), 1, + aux_sym_member_expression_repeat1, + STATE(745), 1, sym_member_expression, - STATE(115), 1, + STATE(779), 1, sym__lhs_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(124), 1, - sym_type, - STATE(975), 1, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(67), 2, + aux_sym_integer_token1, + aux_sym_integer_token2, + ACTIONS(71), 2, + aux_sym_float_token1, + aux_sym_float_token2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, + ACTIONS(212), 3, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + STATE(1198), 9, sym__literal, sym_integer, sym_float, @@ -60696,55 +43975,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [17533] = 22, + [20481] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(326), 1, - sym_identifier, - ACTIONS(328), 1, + ACTIONS(216), 1, anon_sym_this, - ACTIONS(2199), 1, - anon_sym_LPAREN, - STATE(101), 1, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(1771), 1, + sym_identifier, + STATE(30), 1, sym_member_expression, - STATE(115), 1, - sym__lhs_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(127), 1, - sym_type, - STATE(975), 1, + STATE(40), 1, + sym__constructor_call, + STATE(57), 1, + sym__call, + STATE(65), 1, sym_string, - ACTIONS(83), 2, + STATE(1045), 1, + sym__lhs_expression, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, + STATE(96), 2, + sym__rhs_expression, + sym_call_expression, + STATE(102), 9, sym__literal, sym_integer, sym_float, @@ -60754,99 +44028,48 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [17613] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(424), 1, - anon_sym_LPAREN, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(430), 1, - anon_sym_DOT, - ACTIONS(432), 1, - anon_sym_QMARK, - ACTIONS(2181), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(508), 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(506), 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, - [17665] = 22, + [20555] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1751), 1, - anon_sym_this, - ACTIONS(2171), 1, - anon_sym_LPAREN, - ACTIONS(2203), 1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1695), 1, sym_identifier, - STATE(118), 1, - sym_function_type, - STATE(402), 1, + ACTIONS(1699), 1, + anon_sym_this, + STATE(541), 1, + aux_sym_member_expression_repeat1, + STATE(752), 1, + sym__lhs_expression, + STATE(781), 1, sym_member_expression, - STATE(975), 1, + STATE(1025), 1, sym_string, - STATE(1008), 1, - sym_builtin_type, - STATE(1010), 1, - sym__lhs_expression, - STATE(1172), 1, - sym_type, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(606), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1133), 9, + ACTIONS(208), 4, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LT, + anon_sym_GT, + STATE(1173), 9, sym__literal, sym_integer, sym_float, @@ -60856,55 +44079,48 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [17745] = 22, + [20625] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(225), 1, + anon_sym_LBRACE, + ACTIONS(228), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(234), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(237), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(240), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(243), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(246), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(252), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(255), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(326), 1, + ACTIONS(1797), 1, sym_identifier, - ACTIONS(328), 1, + ACTIONS(1800), 1, anon_sym_this, - ACTIONS(2199), 1, - anon_sym_LPAREN, - STATE(101), 1, - sym_member_expression, - STATE(115), 1, + STATE(541), 1, + aux_sym_member_expression_repeat1, + STATE(752), 1, sym__lhs_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(155), 1, - sym_type, - STATE(975), 1, + STATE(781), 1, + sym_member_expression, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(249), 2, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, + ACTIONS(218), 4, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LT, + anon_sym_GT, + STATE(1173), 9, sym__literal, sym_integer, sym_float, @@ -60914,55 +44130,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [17825] = 22, + [20695] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1613), 1, + anon_sym_this, + ACTIONS(1743), 1, + anon_sym_LBRACE, + ACTIONS(1745), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1747), 1, + anon_sym_new, + ACTIONS(1749), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1751), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1753), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1755), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1757), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1761), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1763), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(326), 1, + ACTIONS(1781), 1, sym_identifier, - ACTIONS(328), 1, - anon_sym_this, - ACTIONS(2199), 1, - anon_sym_LPAREN, - STATE(101), 1, + STATE(659), 1, sym_member_expression, - STATE(115), 1, - sym__lhs_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(134), 1, - sym_type, - STATE(975), 1, + STATE(740), 1, + sym__call, + STATE(741), 1, + sym__constructor_call, + STATE(947), 1, sym_string, - ACTIONS(83), 2, + STATE(1092), 1, + sym__lhs_expression, + ACTIONS(1759), 2, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, + STATE(771), 2, + sym__rhs_expression, + sym_call_expression, + STATE(972), 9, sym__literal, sym_integer, sym_float, @@ -60972,55 +44183,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [17905] = 22, + [20769] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(326), 1, - sym_identifier, - ACTIONS(328), 1, + ACTIONS(286), 1, anon_sym_this, - ACTIONS(2199), 1, - anon_sym_LPAREN, - STATE(101), 1, + ACTIONS(526), 1, + anon_sym_new, + ACTIONS(1803), 1, + sym_identifier, + STATE(30), 1, sym_member_expression, - STATE(115), 1, - sym__lhs_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(141), 1, - sym_type, - STATE(975), 1, + STATE(40), 1, + sym__constructor_call, + STATE(57), 1, + sym__call, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + STATE(1105), 1, + sym__lhs_expression, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, + STATE(1216), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1043), 9, sym__literal, sym_integer, sym_float, @@ -61030,55 +44236,48 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [17985] = 22, + [20843] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(326), 1, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(328), 1, + ACTIONS(1699), 1, anon_sym_this, - ACTIONS(2199), 1, - anon_sym_LPAREN, - STATE(101), 1, - sym_member_expression, - STATE(115), 1, + STATE(541), 1, + aux_sym_member_expression_repeat1, + STATE(752), 1, sym__lhs_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(131), 1, - sym_type, - STATE(975), 1, + STATE(781), 1, + sym_member_expression, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, + ACTIONS(262), 4, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LT, + anon_sym_GT, + STATE(1173), 9, sym__literal, sym_integer, sym_float, @@ -61088,55 +44287,48 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [18065] = 22, + [20913] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(326), 1, + ACTIONS(1695), 1, sym_identifier, - ACTIONS(328), 1, + ACTIONS(1699), 1, anon_sym_this, - ACTIONS(2199), 1, - anon_sym_LPAREN, - STATE(101), 1, - sym_member_expression, - STATE(115), 1, + STATE(541), 1, + aux_sym_member_expression_repeat1, + STATE(752), 1, sym__lhs_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(130), 1, - sym_type, - STATE(975), 1, + STATE(781), 1, + sym_member_expression, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, + ACTIONS(258), 4, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LT, + anon_sym_GT, + STATE(1173), 9, sym__literal, sym_integer, sym_float, @@ -61146,55 +44338,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [18145] = 22, + [20983] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1659), 1, + anon_sym_this, + ACTIONS(1743), 1, + anon_sym_LBRACE, + ACTIONS(1745), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1747), 1, + anon_sym_new, + ACTIONS(1749), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1751), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1753), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1755), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1757), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1761), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1763), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(326), 1, + ACTIONS(1775), 1, sym_identifier, - ACTIONS(328), 1, - anon_sym_this, - ACTIONS(2199), 1, - anon_sym_LPAREN, - STATE(101), 1, + STATE(659), 1, sym_member_expression, - STATE(115), 1, - sym__lhs_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(129), 1, - sym_type, - STATE(975), 1, + STATE(740), 1, + sym__call, + STATE(741), 1, + sym__constructor_call, + STATE(988), 1, sym_string, - ACTIONS(83), 2, + STATE(1092), 1, + sym__lhs_expression, + ACTIONS(1759), 2, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, + STATE(771), 2, + sym__rhs_expression, + sym_call_expression, + STATE(989), 9, sym__literal, sym_integer, sym_float, @@ -61204,55 +44391,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [18225] = 22, + [21057] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1328), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1340), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1342), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1344), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1346), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1350), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1352), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, - sym_identifier, - ACTIONS(1751), 1, + ACTIONS(1366), 1, anon_sym_this, - ACTIONS(2171), 1, - anon_sym_LPAREN, - STATE(118), 1, - sym_function_type, - STATE(402), 1, + ACTIONS(1733), 1, + sym_identifier, + STATE(657), 1, sym_member_expression, - STATE(975), 1, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(743), 1, sym_string, - STATE(1008), 1, - sym_builtin_type, - STATE(1010), 1, + STATE(1073), 1, sym__lhs_expression, - STATE(1040), 1, - sym_type, - ACTIONS(83), 2, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - ACTIONS(606), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1133), 9, + STATE(724), 2, + sym__rhs_expression, + sym_call_expression, + STATE(817), 9, sym__literal, sym_integer, sym_float, @@ -61262,55 +44444,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [18305] = 22, + [21131] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1749), 1, - sym_identifier, - ACTIONS(1751), 1, + ACTIONS(216), 1, anon_sym_this, - ACTIONS(2171), 1, - anon_sym_LPAREN, - STATE(118), 1, - sym_function_type, - STATE(402), 1, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(1731), 1, + sym_identifier, + STATE(30), 1, sym_member_expression, - STATE(975), 1, + STATE(40), 1, + sym__constructor_call, + STATE(57), 1, + sym__call, + STATE(518), 1, sym_string, - STATE(1008), 1, - sym_builtin_type, - STATE(1010), 1, + STATE(1045), 1, sym__lhs_expression, - STATE(1197), 1, - sym_type, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(606), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1133), 9, + STATE(96), 2, + sym__rhs_expression, + sym_call_expression, + STATE(531), 9, sym__literal, sym_integer, sym_float, @@ -61320,55 +44497,97 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [18385] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, + [21205] = 18, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(258), 1, + sym_escape_sequence, + ACTIONS(1783), 1, + sym_identifier, + ACTIONS(1785), 1, + anon_sym_LBRACE, + ACTIONS(1787), 1, + anon_sym_LBRACK, + ACTIONS(1789), 1, + anon_sym_this, + ACTIONS(1791), 1, + aux_sym_string_token1, + ACTIONS(1793), 1, + aux_sym_string_token3, + ACTIONS(1795), 1, + sym_comment, + STATE(557), 1, + aux_sym_member_expression_repeat1, + STATE(745), 1, + sym_member_expression, + STATE(779), 1, + sym__lhs_expression, + STATE(1025), 1, + sym_string, + ACTIONS(67), 2, aux_sym_integer_token1, - ACTIONS(77), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 2, aux_sym_float_token1, - ACTIONS(81), 1, aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(260), 3, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + STATE(1198), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [21273] = 18, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(262), 1, + sym_escape_sequence, + ACTIONS(1783), 1, sym_identifier, - ACTIONS(1751), 1, + ACTIONS(1785), 1, + anon_sym_LBRACE, + ACTIONS(1787), 1, + anon_sym_LBRACK, + ACTIONS(1789), 1, anon_sym_this, - ACTIONS(2171), 1, - anon_sym_LPAREN, - STATE(118), 1, - sym_function_type, - STATE(402), 1, + ACTIONS(1791), 1, + aux_sym_string_token1, + ACTIONS(1793), 1, + aux_sym_string_token3, + ACTIONS(1795), 1, + sym_comment, + STATE(557), 1, + aux_sym_member_expression_repeat1, + STATE(745), 1, sym_member_expression, - STATE(975), 1, - sym_string, - STATE(1008), 1, - sym_builtin_type, - STATE(1010), 1, + STATE(779), 1, sym__lhs_expression, - STATE(1037), 1, - sym_type, - ACTIONS(83), 2, + STATE(1025), 1, + sym_string, + ACTIONS(67), 2, + aux_sym_integer_token1, + aux_sym_integer_token2, + ACTIONS(71), 2, + aux_sym_float_token1, + aux_sym_float_token2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(606), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1133), 9, + ACTIONS(264), 3, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + STATE(1198), 9, sym__literal, sym_integer, sym_float, @@ -61378,55 +44597,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [18465] = 22, + [21341] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1675), 1, + anon_sym_this, + ACTIONS(1739), 1, + sym_identifier, + ACTIONS(1743), 1, + anon_sym_LBRACE, + ACTIONS(1745), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1747), 1, + anon_sym_new, + ACTIONS(1749), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1751), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1753), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1755), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1757), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1761), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1763), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, - sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - ACTIONS(2171), 1, - anon_sym_LPAREN, - STATE(118), 1, - sym_function_type, - STATE(402), 1, + STATE(659), 1, sym_member_expression, - STATE(975), 1, + STATE(740), 1, + sym__call, + STATE(741), 1, + sym__constructor_call, + STATE(988), 1, sym_string, - STATE(1008), 1, - sym_builtin_type, - STATE(1010), 1, + STATE(1092), 1, sym__lhs_expression, - STATE(1041), 1, - sym_type, - ACTIONS(83), 2, + ACTIONS(1759), 2, anon_sym_true, anon_sym_false, - ACTIONS(606), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1133), 9, + STATE(771), 2, + sym__rhs_expression, + sym_call_expression, + STATE(990), 9, sym__literal, sym_integer, sym_float, @@ -61436,55 +44650,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [18545] = 22, + [21415] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1749), 1, - sym_identifier, - ACTIONS(1751), 1, + ACTIONS(286), 1, anon_sym_this, - ACTIONS(2171), 1, - anon_sym_LPAREN, - STATE(118), 1, - sym_function_type, - STATE(402), 1, + ACTIONS(526), 1, + anon_sym_new, + ACTIONS(1803), 1, + sym_identifier, + STATE(30), 1, sym_member_expression, - STATE(975), 1, + STATE(40), 1, + sym__constructor_call, + STATE(57), 1, + sym__call, + STATE(1025), 1, sym_string, - STATE(1008), 1, - sym_builtin_type, - STATE(1010), 1, + STATE(1105), 1, sym__lhs_expression, - STATE(1196), 1, - sym_type, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(606), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1133), 9, + STATE(1195), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1043), 9, sym__literal, sym_integer, sym_float, @@ -61494,95 +44703,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [18625] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2117), 1, - anon_sym_COLON, - ACTIONS(588), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(586), 21, - 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_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym__semicolon, - [18669] = 22, + [21489] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1635), 1, + anon_sym_this, + ACTIONS(1743), 1, + anon_sym_LBRACE, + ACTIONS(1745), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1747), 1, + anon_sym_new, + ACTIONS(1749), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1751), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1753), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1755), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1757), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1761), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1763), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(326), 1, + ACTIONS(1769), 1, sym_identifier, - ACTIONS(328), 1, - anon_sym_this, - ACTIONS(2199), 1, - anon_sym_LPAREN, - STATE(101), 1, + STATE(659), 1, sym_member_expression, - STATE(115), 1, - sym__lhs_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(144), 1, - sym_type, - STATE(975), 1, + STATE(740), 1, + sym__call, + STATE(741), 1, + sym__constructor_call, + STATE(789), 1, sym_string, - ACTIONS(83), 2, + STATE(1092), 1, + sym__lhs_expression, + ACTIONS(1759), 2, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, + STATE(771), 2, + sym__rhs_expression, + sym_call_expression, + STATE(823), 9, sym__literal, sym_integer, sym_float, @@ -61592,101 +44756,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [18749] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(430), 1, - anon_sym_DOT, - ACTIONS(432), 1, - anon_sym_QMARK, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2119), 1, - anon_sym_in, - ACTIONS(424), 2, - anon_sym_LPAREN, - anon_sym_RBRACE, - ACTIONS(2187), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(508), 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(506), 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, - [18805] = 22, + [21563] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1613), 1, + anon_sym_this, + ACTIONS(1743), 1, + anon_sym_LBRACE, + ACTIONS(1745), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1747), 1, + anon_sym_new, + ACTIONS(1749), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1751), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1753), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1755), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1757), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1761), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1763), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(326), 1, + ACTIONS(1765), 1, sym_identifier, - ACTIONS(328), 1, - anon_sym_this, - ACTIONS(2199), 1, - anon_sym_LPAREN, - STATE(101), 1, + STATE(659), 1, sym_member_expression, - STATE(115), 1, - sym__lhs_expression, - STATE(118), 1, - sym_function_type, - STATE(120), 1, - sym_builtin_type, - STATE(148), 1, - sym_type, - STATE(975), 1, + STATE(740), 1, + sym__call, + STATE(741), 1, + sym__constructor_call, + STATE(789), 1, sym_string, - ACTIONS(83), 2, + STATE(1092), 1, + sym__lhs_expression, + ACTIONS(1759), 2, anon_sym_true, anon_sym_false, - ACTIONS(2191), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(1167), 9, + STATE(771), 2, + sym__rhs_expression, + sym_call_expression, + STATE(824), 9, sym__literal, sym_integer, sym_float, @@ -61696,93 +44809,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [18885] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(424), 1, - anon_sym_LPAREN, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(2185), 1, - anon_sym_LBRACK, - ACTIONS(508), 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(506), 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, - [18933] = 19, + [21637] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(2205), 1, - sym_identifier, - ACTIONS(2207), 1, + ACTIONS(286), 1, anon_sym_this, - STATE(683), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, + ACTIONS(526), 1, + anon_sym_new, + ACTIONS(1803), 1, + sym_identifier, + STATE(30), 1, sym_member_expression, - STATE(942), 1, - sym__lhs_expression, - STATE(975), 1, + STATE(40), 1, + sym__constructor_call, + STATE(57), 1, + sym__call, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + STATE(1105), 1, + sym__lhs_expression, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(252), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(1138), 9, + STATE(1214), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1043), 9, sym__literal, sym_integer, sym_float, @@ -61792,51 +44862,100 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [19006] = 19, + [21711] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(2205), 1, + ACTIONS(286), 1, + anon_sym_this, + ACTIONS(526), 1, + anon_sym_new, + ACTIONS(1803), 1, + sym_identifier, + STATE(30), 1, + sym_member_expression, + STATE(40), 1, + sym__constructor_call, + STATE(57), 1, + sym__call, + STATE(1025), 1, + sym_string, + STATE(1105), 1, + sym__lhs_expression, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + STATE(1241), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1043), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [21785] = 18, + ACTIONS(218), 1, + sym_escape_sequence, + ACTIONS(234), 1, + anon_sym_null, + ACTIONS(1795), 1, + sym_comment, + ACTIONS(1805), 1, sym_identifier, - ACTIONS(2207), 1, + ACTIONS(1808), 1, + anon_sym_LBRACE, + ACTIONS(1811), 1, + anon_sym_LBRACK, + ACTIONS(1814), 1, anon_sym_this, - STATE(683), 1, + ACTIONS(1817), 1, + aux_sym_string_token1, + ACTIONS(1820), 1, + aux_sym_string_token3, + STATE(557), 1, aux_sym_member_expression_repeat1, - STATE(941), 1, + STATE(745), 1, sym_member_expression, - STATE(942), 1, + STATE(779), 1, sym__lhs_expression, - STATE(975), 1, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(237), 2, + aux_sym_integer_token1, + aux_sym_integer_token2, + ACTIONS(243), 2, + aux_sym_float_token1, + aux_sym_float_token2, + ACTIONS(249), 2, anon_sym_true, anon_sym_false, - ACTIONS(308), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(1138), 9, + ACTIONS(223), 3, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + STATE(1198), 9, sym__literal, sym_integer, sym_float, @@ -61846,51 +44965,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [19079] = 19, + [21853] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1328), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1340), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1342), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1344), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1346), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1350), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1352), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2205), 1, - sym_identifier, - ACTIONS(2207), 1, + ACTIONS(1517), 1, anon_sym_this, - STATE(683), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, + ACTIONS(1737), 1, + sym_identifier, + STATE(657), 1, sym_member_expression, - STATE(942), 1, - sym__lhs_expression, - STATE(975), 1, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(979), 1, sym_string, - ACTIONS(83), 2, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - ACTIONS(304), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(1138), 9, + STATE(724), 2, + sym__rhs_expression, + sym_call_expression, + STATE(986), 9, sym__literal, sym_integer, sym_float, @@ -61900,51 +45018,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [19152] = 19, + [21927] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(271), 1, - anon_sym_LBRACE, - ACTIONS(274), 1, + ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(280), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(283), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(286), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(289), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(292), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(298), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(301), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(2209), 1, - sym_identifier, - ACTIONS(2212), 1, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(268), 1, anon_sym_this, - STATE(683), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(1777), 1, + sym_identifier, + STATE(30), 1, sym_member_expression, - STATE(942), 1, - sym__lhs_expression, - STATE(975), 1, + STATE(40), 1, + sym__constructor_call, + STATE(57), 1, + sym__call, + STATE(518), 1, sym_string, - ACTIONS(295), 2, + STATE(1045), 1, + sym__lhs_expression, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(264), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(1138), 9, + STATE(96), 2, + sym__rhs_expression, + sym_call_expression, + STATE(537), 9, sym__literal, sym_integer, sym_float, @@ -61954,51 +45071,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [19225] = 19, + [22001] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1322), 1, + anon_sym_LBRACE, + ACTIONS(1328), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1332), 1, + anon_sym_new, + ACTIONS(1338), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1340), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1342), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1344), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1346), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1350), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1352), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2205), 1, - sym_identifier, - ACTIONS(2207), 1, + ACTIONS(1366), 1, anon_sym_this, - STATE(683), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, + ACTIONS(1779), 1, + sym_identifier, + STATE(657), 1, sym_member_expression, - STATE(942), 1, - sym__lhs_expression, - STATE(975), 1, + STATE(710), 1, + sym__constructor_call, + STATE(712), 1, + sym__call, + STATE(929), 1, sym_string, - ACTIONS(83), 2, + STATE(1073), 1, + sym__lhs_expression, + ACTIONS(1348), 2, anon_sym_true, anon_sym_false, - ACTIONS(260), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(1138), 9, + STATE(724), 2, + sym__rhs_expression, + sym_call_expression, + STATE(942), 9, sym__literal, sym_integer, sym_float, @@ -62008,204 +45124,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [19298] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(576), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(574), 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, - sym_identifier, - [19339] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(422), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(420), 21, - 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_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_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, - [19380] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(462), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(460), 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, - sym_identifier, - [19421] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2185), 1, - anon_sym_LBRACK, - ACTIONS(322), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(320), 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, - [19464] = 19, + [22075] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(2205), 1, - sym_identifier, - ACTIONS(2207), 1, + ACTIONS(268), 1, anon_sym_this, - STATE(683), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, + ACTIONS(282), 1, + anon_sym_new, + ACTIONS(516), 1, + sym_identifier, + STATE(30), 1, sym_member_expression, - STATE(942), 1, - sym__lhs_expression, - STATE(975), 1, + STATE(40), 1, + sym__constructor_call, + STATE(57), 1, + sym__call, + STATE(65), 1, sym_string, - ACTIONS(83), 2, + STATE(1045), 1, + sym__lhs_expression, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(244), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(1138), 9, + STATE(96), 2, + sym__rhs_expression, + sym_call_expression, + STATE(104), 9, sym__literal, sym_integer, sym_float, @@ -62215,51 +45177,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [19537] = 19, + [22149] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1635), 1, + anon_sym_this, + ACTIONS(1743), 1, + anon_sym_LBRACE, + ACTIONS(1745), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1747), 1, + anon_sym_new, + ACTIONS(1749), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(1751), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(1753), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(1755), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(1757), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(1761), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(1763), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2205), 1, + ACTIONS(1767), 1, sym_identifier, - ACTIONS(2207), 1, - anon_sym_this, - STATE(683), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, + STATE(659), 1, sym_member_expression, - STATE(942), 1, - sym__lhs_expression, - STATE(975), 1, + STATE(740), 1, + sym__call, + STATE(741), 1, + sym__constructor_call, + STATE(947), 1, sym_string, - ACTIONS(83), 2, + STATE(1092), 1, + sym__lhs_expression, + ACTIONS(1759), 2, anon_sym_true, anon_sym_false, - ACTIONS(256), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(1138), 9, + STATE(771), 2, + sym__rhs_expression, + sym_call_expression, + STATE(977), 9, sym__literal, sym_integer, sym_float, @@ -62269,260 +45230,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [19610] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(424), 1, - anon_sym_LPAREN, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(594), 1, - anon_sym_DOT, - ACTIONS(596), 1, - anon_sym_QMARK, - ACTIONS(2187), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(508), 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(506), 18, - anon_sym_RBRACE, - 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, - [19661] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2181), 1, - anon_sym_COLON, - ACTIONS(588), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(586), 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, - [19704] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(424), 1, - anon_sym_LPAREN, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(430), 1, - anon_sym_DOT, - ACTIONS(432), 1, - anon_sym_QMARK, - ACTIONS(2187), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(508), 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(506), 18, - anon_sym_RBRACE, - 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, - [19755] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(612), 1, - anon_sym_DOT, - ACTIONS(614), 1, - anon_sym_QMARK, - ACTIONS(2117), 1, - anon_sym_EQ_GT, - ACTIONS(508), 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(506), 20, - 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, - sym__semicolon, - [19802] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(424), 1, - anon_sym_LPAREN, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(508), 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(506), 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, - [19847] = 22, + [22223] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(236), 1, + ACTIONS(286), 1, anon_sym_this, - ACTIONS(1092), 1, + ACTIONS(526), 1, anon_sym_new, - ACTIONS(2215), 1, + ACTIONS(1803), 1, sym_identifier, - STATE(80), 1, + STATE(30), 1, sym_member_expression, - STATE(89), 1, + STATE(40), 1, sym__constructor_call, - STATE(91), 1, + STATE(57), 1, sym__call, - STATE(743), 1, + STATE(1025), 1, sym_string, - STATE(1059), 1, + STATE(1105), 1, sym__lhs_expression, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(61), 2, + STATE(1178), 2, sym__rhs_expression, sym_call_expression, - ACTIONS(240), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - STATE(764), 9, + STATE(1043), 9, sym__literal, sym_integer, sym_float, @@ -62532,218 +45283,50 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [19926] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(424), 1, - anon_sym_LPAREN, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2119), 1, - anon_sym_in, - ACTIONS(2219), 1, - anon_sym_DOT, - ACTIONS(2221), 1, - anon_sym_QMARK, - ACTIONS(2217), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(508), 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(506), 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, - [19981] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2223), 1, - anon_sym_COMMA, - ACTIONS(2225), 1, - anon_sym_RBRACK, - STATE(1175), 1, - aux_sym_map_repeat1, - ACTIONS(588), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(586), 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, - [20028] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(660), 1, - anon_sym_DOT, - ACTIONS(662), 1, - anon_sym_QMARK, - ACTIONS(2117), 1, - anon_sym_EQ_GT, - ACTIONS(508), 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(506), 20, - 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, - sym__semicolon, - [20075] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2223), 1, - anon_sym_COMMA, - ACTIONS(2227), 1, - anon_sym_RBRACK, - STATE(1140), 1, - aux_sym_map_repeat1, - ACTIONS(588), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(586), 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, - [20122] = 19, + [22297] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, - sym_identifier, - ACTIONS(2231), 1, + ACTIONS(286), 1, anon_sym_this, - STATE(736), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, + ACTIONS(526), 1, + anon_sym_new, + ACTIONS(1803), 1, + sym_identifier, + STATE(30), 1, sym_member_expression, - STATE(942), 1, - sym__lhs_expression, - STATE(975), 1, + STATE(40), 1, + sym__constructor_call, + STATE(57), 1, + sym__call, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + STATE(1105), 1, + sym__lhs_expression, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(260), 6, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(1141), 9, + STATE(1176), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1043), 9, sym__literal, sym_integer, sym_float, @@ -62753,463 +45336,45 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [20194] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(542), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(540), 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, - [20234] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(452), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(450), 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, - [20274] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(478), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(476), 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, - [20314] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(488), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(486), 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, - [20354] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(492), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(490), 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, - [20394] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(612), 1, - anon_sym_DOT, - ACTIONS(614), 1, - anon_sym_QMARK, - ACTIONS(2181), 1, - anon_sym_EQ_GT, - ACTIONS(508), 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(506), 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, - [20440] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(342), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(340), 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, - [20480] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(504), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(502), 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, - [20520] = 3, + [22371] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(512), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(510), 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, - [20560] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(242), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(240), 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, - [20600] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(534), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(532), 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, - [20640] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(236), 1, - anon_sym_this, - ACTIONS(242), 1, - sym_identifier, - ACTIONS(1659), 1, - anon_sym_LBRACE, - ACTIONS(1665), 1, + ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(1669), 1, - anon_sym_new, - ACTIONS(1671), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(1673), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(1675), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(1677), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(1679), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(1683), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(1685), 1, + ACTIONS(79), 1, aux_sym_string_token3, - STATE(692), 1, - sym_string, - STATE(695), 1, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(524), 1, + anon_sym_this, + ACTIONS(1715), 1, + sym_identifier, + ACTIONS(1823), 1, + anon_sym_RPAREN, + STATE(28), 1, sym_member_expression, - STATE(702), 1, - sym__constructor_call, - STATE(726), 1, - sym__call, - STATE(1075), 1, + STATE(1020), 1, sym__lhs_expression, - ACTIONS(240), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1681), 2, + STATE(1025), 1, + sym_string, + STATE(1135), 1, + sym_function_arg, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(708), 2, - sym__rhs_expression, - sym_call_expression, - STATE(724), 9, + STATE(1189), 9, sym__literal, sym_integer, sym_float, @@ -63219,756 +45384,200 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [20718] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(436), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(434), 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, - [20758] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(572), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(570), 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, - [20798] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(448), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(446), 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, - [20838] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(530), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(528), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [20878] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(418), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(416), 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, - [20918] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(568), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(566), 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, - [20958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(496), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(494), 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, - [20998] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(444), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(442), 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, - [21038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(564), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(562), 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, - [21078] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(546), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(544), 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, - [21118] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(660), 1, - anon_sym_DOT, - ACTIONS(662), 1, - anon_sym_QMARK, - ACTIONS(2181), 1, - anon_sym_EQ_GT, - ACTIONS(508), 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(506), 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, - [21164] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(322), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(320), 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, - [21204] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(551), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(548), 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, - [21244] = 3, + [22438] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(584), 12, - anon_sym_DOT, + ACTIONS(1825), 1, + aux_sym_member_expression_token1, + ACTIONS(294), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_LBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(296), 13, + 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, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, anon_sym_EQ, - ACTIONS(582), 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, - [21284] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(500), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_null, anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(498), 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, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, sym_identifier, - [21324] = 3, + [22475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(580), 12, - anon_sym_DOT, + ACTIONS(294), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_LBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(296), 14, + anon_sym_this, + aux_sym_member_expression_token1, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, 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, - sym_identifier, - [21364] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(522), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_null, anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(520), 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, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, sym_identifier, - [21404] = 3, + [22510] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(458), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(456), 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(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1633), 1, sym_identifier, - [21444] = 3, + ACTIONS(1635), 1, + anon_sym_this, + STATE(422), 1, + aux_sym_member_expression_repeat1, + STATE(521), 1, + sym_member_expression, + STATE(526), 1, + sym__lhs_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + STATE(1207), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [22574] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(440), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(438), 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(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(266), 1, sym_identifier, - [21484] = 19, + ACTIONS(268), 1, + anon_sym_this, + STATE(18), 1, + aux_sym_member_expression_repeat1, + STATE(28), 1, + sym_member_expression, + STATE(29), 1, + sym__lhs_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + STATE(1197), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [22638] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(1633), 1, sym_identifier, - ACTIONS(2231), 1, + ACTIONS(1635), 1, anon_sym_this, - STATE(736), 1, + STATE(421), 1, aux_sym_member_expression_repeat1, - STATE(941), 1, + STATE(521), 1, sym_member_expression, - STATE(942), 1, + STATE(526), 1, sym__lhs_expression, - STATE(975), 1, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(252), 6, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(1141), 9, + STATE(1207), 9, sym__literal, sym_integer, sym_float, @@ -63978,50 +45587,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [21556] = 19, + [22702] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, - sym_identifier, - ACTIONS(2231), 1, + ACTIONS(524), 1, anon_sym_this, - STATE(736), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, + ACTIONS(1715), 1, + sym_identifier, + STATE(28), 1, sym_member_expression, - STATE(942), 1, + STATE(29), 1, sym__lhs_expression, - STATE(975), 1, + STATE(504), 1, + aux_sym_member_expression_repeat1, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(308), 6, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(1141), 9, + STATE(1189), 9, sym__literal, sym_integer, sym_float, @@ -64031,50 +45633,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [21628] = 19, + [22766] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(1633), 1, sym_identifier, - ACTIONS(2231), 1, + ACTIONS(1635), 1, anon_sym_this, - STATE(736), 1, + STATE(417), 1, aux_sym_member_expression_repeat1, - STATE(941), 1, + STATE(521), 1, sym_member_expression, - STATE(942), 1, + STATE(526), 1, sym__lhs_expression, - STATE(975), 1, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(304), 6, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(1141), 9, + STATE(1207), 9, sym__literal, sym_integer, sym_float, @@ -64084,50 +45679,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [21700] = 19, + [22830] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(271), 1, - anon_sym_LBRACE, - ACTIONS(274), 1, + ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(280), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(283), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(286), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(289), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(292), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(298), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(301), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(2233), 1, - sym_identifier, - ACTIONS(2236), 1, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1330), 1, anon_sym_this, - STATE(736), 1, + ACTIONS(1581), 1, + sym_identifier, + STATE(401), 1, aux_sym_member_expression_repeat1, - STATE(941), 1, - sym_member_expression, - STATE(942), 1, + STATE(512), 1, sym__lhs_expression, - STATE(975), 1, + STATE(516), 1, + sym_member_expression, + STATE(1025), 1, sym_string, - ACTIONS(295), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(264), 6, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(1141), 9, + STATE(1191), 9, sym__literal, sym_integer, sym_float, @@ -64137,124 +45725,89 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [21772] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(560), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(558), 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, - [21812] = 3, + [22894] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(556), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(554), 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(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1581), 1, sym_identifier, - [21852] = 19, + STATE(397), 1, + aux_sym_member_expression_repeat1, + STATE(512), 1, + sym__lhs_expression, + STATE(516), 1, + sym_member_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + STATE(1191), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [22958] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(1783), 1, sym_identifier, - ACTIONS(2231), 1, + ACTIONS(1789), 1, anon_sym_this, - STATE(736), 1, + STATE(549), 1, aux_sym_member_expression_repeat1, - STATE(941), 1, + STATE(745), 1, sym_member_expression, - STATE(942), 1, + STATE(779), 1, sym__lhs_expression, - STATE(975), 1, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(244), 6, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(1141), 9, + STATE(1198), 9, sym__literal, sym_integer, sym_float, @@ -64264,273 +45817,135 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [21924] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(470), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(468), 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, - [21964] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(414), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(412), 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, - [22004] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(402), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(400), 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, - [22044] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2187), 1, - anon_sym_COLON, - ACTIONS(588), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(586), 19, - anon_sym_RBRACE, - 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, - [22086] = 3, + [23022] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(406), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(404), 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(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1330), 1, + anon_sym_this, + ACTIONS(1581), 1, sym_identifier, - [22126] = 3, + STATE(398), 1, + aux_sym_member_expression_repeat1, + STATE(512), 1, + sym__lhs_expression, + STATE(516), 1, + sym_member_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + STATE(1191), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [23086] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(410), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(408), 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(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1783), 1, sym_identifier, - [22166] = 19, + ACTIONS(1789), 1, + anon_sym_this, + STATE(550), 1, + aux_sym_member_expression_repeat1, + STATE(745), 1, + sym_member_expression, + STATE(779), 1, + sym__lhs_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + STATE(1198), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [23150] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(1783), 1, sym_identifier, - ACTIONS(2231), 1, + ACTIONS(1789), 1, anon_sym_this, - STATE(736), 1, + STATE(538), 1, aux_sym_member_expression_repeat1, - STATE(941), 1, + STATE(745), 1, sym_member_expression, - STATE(942), 1, + STATE(779), 1, sym__lhs_expression, - STATE(975), 1, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(256), 6, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(1141), 9, + STATE(1198), 9, sym__literal, sym_integer, sym_float, @@ -64540,52 +45955,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [22238] = 22, + [23214] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(250), 1, - anon_sym_this, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(1747), 1, - anon_sym_LPAREN, - ACTIONS(1777), 1, + ACTIONS(284), 1, sym_identifier, - STATE(80), 1, + ACTIONS(286), 1, + anon_sym_this, + STATE(28), 1, sym_member_expression, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, + STATE(747), 1, sym__call, - STATE(675), 1, + STATE(1025), 1, sym_string, - STATE(1059), 1, + STATE(1092), 1, sym__lhs_expression, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(55), 2, - sym__rhs_expression, - sym_call_expression, - STATE(694), 9, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -64595,52 +46001,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [22315] = 22, + [23278] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1659), 1, - anon_sym_LBRACE, - ACTIONS(1665), 1, + ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(1669), 1, - anon_sym_new, - ACTIONS(1671), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(1673), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(1675), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(1677), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(1679), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(1683), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(1685), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(2123), 1, - anon_sym_this, - ACTIONS(2239), 1, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(266), 1, sym_identifier, - ACTIONS(2241), 1, - anon_sym_LPAREN, - STATE(702), 1, - sym__constructor_call, - STATE(726), 1, - sym__call, - STATE(961), 1, + ACTIONS(268), 1, + anon_sym_this, + STATE(19), 1, + aux_sym_member_expression_repeat1, + STATE(28), 1, sym_member_expression, - STATE(986), 1, - sym_string, - STATE(1075), 1, + STATE(29), 1, sym__lhs_expression, - ACTIONS(1681), 2, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(718), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1015), 9, + STATE(1197), 9, sym__literal, sym_integer, sym_float, @@ -64650,91 +46047,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [22392] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1817), 1, - anon_sym_DOT, - ACTIONS(1819), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, - anon_sym_EQ_GT, - ACTIONS(508), 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(506), 18, - anon_sym_RBRACE, - 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, - [22437] = 22, + [23342] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(1747), 1, - anon_sym_LPAREN, - ACTIONS(2123), 1, + ACTIONS(216), 1, anon_sym_this, - ACTIONS(2243), 1, - sym_identifier, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(961), 1, + STATE(15), 1, + aux_sym_member_expression_repeat1, + STATE(28), 1, sym_member_expression, - STATE(1004), 1, - sym_string, - STATE(1059), 1, + STATE(29), 1, sym__lhs_expression, - ACTIONS(83), 2, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(55), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1021), 9, + STATE(1194), 9, sym__literal, sym_integer, sym_float, @@ -64744,91 +46093,89 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [22514] = 6, + [23406] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(612), 1, - anon_sym_DOT, - ACTIONS(614), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, - anon_sym_EQ_GT, - ACTIONS(508), 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(506), 18, - anon_sym_RBRACE, - 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, - [22559] = 22, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(216), 1, + anon_sym_this, + STATE(16), 1, + aux_sym_member_expression_repeat1, + STATE(28), 1, + sym_member_expression, + STATE(29), 1, + sym__lhs_expression, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + STATE(1194), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [23470] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(1747), 1, - anon_sym_LPAREN, - ACTIONS(2207), 1, + ACTIONS(216), 1, anon_sym_this, - ACTIONS(2245), 1, - sym_identifier, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(961), 1, + STATE(13), 1, + aux_sym_member_expression_repeat1, + STATE(28), 1, sym_member_expression, - STATE(1004), 1, - sym_string, - STATE(1059), 1, + STATE(29), 1, sym__lhs_expression, - ACTIONS(83), 2, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(55), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1023), 9, + STATE(1194), 9, sym__literal, sym_integer, sym_float, @@ -64838,49 +46185,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [22636] = 19, + [23534] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(2247), 1, + ACTIONS(284), 1, sym_identifier, - ACTIONS(2249), 1, + ACTIONS(286), 1, anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(759), 1, + STATE(23), 1, aux_sym_member_expression_repeat1, - STATE(830), 1, + STATE(28), 1, + sym_member_expression, + STATE(29), 1, sym__lhs_expression, - STATE(975), 1, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(252), 5, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ, - STATE(1159), 9, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -64890,49 +46231,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [22707] = 19, + [23598] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(2247), 1, + ACTIONS(284), 1, sym_identifier, - ACTIONS(2249), 1, + ACTIONS(286), 1, anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(759), 1, + STATE(24), 1, aux_sym_member_expression_repeat1, - STATE(830), 1, + STATE(28), 1, + sym_member_expression, + STATE(29), 1, sym__lhs_expression, - STATE(975), 1, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(308), 5, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ, - STATE(1159), 9, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -64942,52 +46277,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [22778] = 22, + [23662] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(236), 1, + ACTIONS(1483), 1, anon_sym_this, - ACTIONS(238), 1, - anon_sym_new, - ACTIONS(1747), 1, - anon_sym_LPAREN, - ACTIONS(2251), 1, + ACTIONS(1655), 1, sym_identifier, - STATE(80), 1, + STATE(432), 1, + aux_sym_member_expression_repeat1, + STATE(512), 1, + sym__lhs_expression, + STATE(516), 1, sym_member_expression, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(462), 1, + STATE(1025), 1, sym_string, - STATE(1054), 1, - sym__lhs_expression, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(55), 2, - sym__rhs_expression, - sym_call_expression, - STATE(464), 9, + STATE(1192), 9, sym__literal, sym_integer, sym_float, @@ -64997,52 +46323,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [22855] = 22, + [23726] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(238), 1, - anon_sym_new, - ACTIONS(250), 1, + ACTIONS(1483), 1, anon_sym_this, - ACTIONS(1747), 1, - anon_sym_LPAREN, - ACTIONS(2253), 1, + ACTIONS(1655), 1, sym_identifier, - STATE(80), 1, + STATE(429), 1, + aux_sym_member_expression_repeat1, + STATE(512), 1, + sym__lhs_expression, + STATE(516), 1, sym_member_expression, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(105), 1, + STATE(1025), 1, sym_string, - STATE(1054), 1, - sym__lhs_expression, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(55), 2, - sym__rhs_expression, - sym_call_expression, - STATE(113), 9, + STATE(1192), 9, sym__literal, sym_integer, sym_float, @@ -65052,49 +46369,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [22932] = 19, + [23790] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(2247), 1, - sym_identifier, - ACTIONS(2249), 1, + ACTIONS(1483), 1, anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(759), 1, + ACTIONS(1655), 1, + sym_identifier, + STATE(428), 1, aux_sym_member_expression_repeat1, - STATE(830), 1, + STATE(512), 1, sym__lhs_expression, - STATE(975), 1, + STATE(516), 1, + sym_member_expression, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(304), 5, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ, - STATE(1159), 9, + STATE(1192), 9, sym__literal, sym_integer, sym_float, @@ -65104,90 +46415,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [23003] = 8, + [23854] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(424), 1, - anon_sym_LPAREN, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(2219), 1, - anon_sym_DOT, - ACTIONS(2221), 1, - anon_sym_QMARK, - ACTIONS(2217), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(508), 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(506), 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, - [23052] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(271), 1, - anon_sym_LBRACE, - ACTIONS(274), 1, + ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(280), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(283), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(286), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(289), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(292), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(298), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(301), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(2255), 1, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, sym_identifier, - ACTIONS(2258), 1, + ACTIONS(286), 1, anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(759), 1, + STATE(22), 1, aux_sym_member_expression_repeat1, - STATE(830), 1, + STATE(28), 1, + sym_member_expression, + STATE(29), 1, sym__lhs_expression, - STATE(975), 1, + STATE(1025), 1, sym_string, - ACTIONS(295), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(264), 5, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ, - STATE(1159), 9, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -65197,49 +46461,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [23123] = 19, + [23918] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(2247), 1, - sym_identifier, - ACTIONS(2249), 1, + ACTIONS(524), 1, anon_sym_this, - STATE(402), 1, + ACTIONS(1715), 1, + sym_identifier, + STATE(28), 1, sym_member_expression, - STATE(759), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, + STATE(1020), 1, sym__lhs_expression, - STATE(975), 1, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + STATE(1196), 1, + sym_function_arg, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(260), 5, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ, - STATE(1159), 9, + STATE(1189), 9, sym__literal, sym_integer, sym_float, @@ -65249,52 +46507,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [23194] = 22, + [23982] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1659), 1, - anon_sym_LBRACE, - ACTIONS(1665), 1, + ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(1669), 1, - anon_sym_new, - ACTIONS(1671), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(1673), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(1675), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(1677), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(1679), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(1683), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(1685), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(1751), 1, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1366), 1, anon_sym_this, - ACTIONS(2241), 1, - anon_sym_LPAREN, - ACTIONS(2261), 1, + ACTIONS(1563), 1, sym_identifier, - STATE(702), 1, - sym__constructor_call, - STATE(726), 1, - sym__call, - STATE(961), 1, + STATE(396), 1, + aux_sym_member_expression_repeat1, + STATE(512), 1, + sym__lhs_expression, + STATE(516), 1, sym_member_expression, - STATE(986), 1, + STATE(1025), 1, sym_string, - STATE(1075), 1, - sym__lhs_expression, - ACTIONS(1681), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(718), 2, - sym__rhs_expression, - sym_call_expression, - STATE(999), 9, + STATE(1186), 9, sym__literal, sym_integer, sym_float, @@ -65304,52 +46553,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [23271] = 22, + [24046] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(238), 1, - anon_sym_new, - ACTIONS(250), 1, + ACTIONS(1366), 1, anon_sym_this, - ACTIONS(1747), 1, - anon_sym_LPAREN, - ACTIONS(2263), 1, + ACTIONS(1563), 1, sym_identifier, - STATE(80), 1, + STATE(391), 1, + aux_sym_member_expression_repeat1, + STATE(512), 1, + sym__lhs_expression, + STATE(516), 1, sym_member_expression, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(462), 1, + STATE(1025), 1, sym_string, - STATE(1054), 1, - sym__lhs_expression, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(55), 2, - sym__rhs_expression, - sym_call_expression, - STATE(465), 9, + STATE(1186), 9, sym__literal, sym_integer, sym_float, @@ -65359,49 +46599,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [23348] = 19, + [24110] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(2247), 1, - sym_identifier, - ACTIONS(2249), 1, + ACTIONS(1517), 1, anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(759), 1, + ACTIONS(1653), 1, + sym_identifier, + STATE(426), 1, aux_sym_member_expression_repeat1, - STATE(830), 1, + STATE(512), 1, sym__lhs_expression, - STATE(975), 1, + STATE(516), 1, + sym_member_expression, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(244), 5, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ, - STATE(1159), 9, + STATE(1180), 9, sym__literal, sym_integer, sym_float, @@ -65411,88 +46645,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [23419] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(660), 1, - anon_sym_DOT, - ACTIONS(662), 1, - anon_sym_QMARK, - ACTIONS(2187), 1, - anon_sym_EQ_GT, - ACTIONS(508), 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(506), 18, - anon_sym_RBRACE, - 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, - [23464] = 19, + [24174] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(2247), 1, - sym_identifier, - ACTIONS(2249), 1, + ACTIONS(1366), 1, anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(759), 1, + ACTIONS(1563), 1, + sym_identifier, + STATE(395), 1, aux_sym_member_expression_repeat1, - STATE(830), 1, + STATE(512), 1, sym__lhs_expression, - STATE(975), 1, + STATE(516), 1, + sym_member_expression, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(256), 5, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ, - STATE(1159), 9, + STATE(1186), 9, sym__literal, sym_integer, sym_float, @@ -65502,52 +46691,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [23535] = 22, + [24238] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(236), 1, + ACTIONS(1517), 1, anon_sym_this, - ACTIONS(238), 1, - anon_sym_new, - ACTIONS(1745), 1, + ACTIONS(1653), 1, sym_identifier, - ACTIONS(1747), 1, - anon_sym_LPAREN, - STATE(80), 1, + STATE(427), 1, + aux_sym_member_expression_repeat1, + STATE(512), 1, + sym__lhs_expression, + STATE(516), 1, sym_member_expression, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(105), 1, + STATE(1025), 1, sym_string, - STATE(1054), 1, - sym__lhs_expression, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(55), 2, - sym__rhs_expression, - sym_call_expression, - STATE(123), 9, + STATE(1180), 9, sym__literal, sym_integer, sym_float, @@ -65557,52 +46737,75 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [23612] = 22, + [24302] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1827), 1, + aux_sym_member_expression_token1, + ACTIONS(294), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_LBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(296), 13, + anon_sym_this, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + anon_sym_null, + anon_sym_LT, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [24338] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(1747), 1, - anon_sym_LPAREN, - ACTIONS(2123), 1, - anon_sym_this, - ACTIONS(2265), 1, + ACTIONS(266), 1, sym_identifier, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(961), 1, + ACTIONS(268), 1, + anon_sym_this, + STATE(17), 1, + aux_sym_member_expression_repeat1, + STATE(28), 1, sym_member_expression, - STATE(975), 1, - sym_string, - STATE(1059), 1, + STATE(29), 1, sym__lhs_expression, - ACTIONS(83), 2, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(55), 2, - sym__rhs_expression, - sym_call_expression, - STATE(993), 9, + STATE(1197), 9, sym__literal, sym_integer, sym_float, @@ -65612,52 +46815,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [23689] = 22, + [24402] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(250), 1, + ACTIONS(1517), 1, anon_sym_this, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(1747), 1, - anon_sym_LPAREN, - ACTIONS(1783), 1, + ACTIONS(1653), 1, sym_identifier, - STATE(80), 1, + STATE(425), 1, + aux_sym_member_expression_repeat1, + STATE(512), 1, + sym__lhs_expression, + STATE(516), 1, sym_member_expression, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(743), 1, + STATE(1025), 1, sym_string, - STATE(1059), 1, - sym__lhs_expression, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(55), 2, - sym__rhs_expression, - sym_call_expression, - STATE(751), 9, + STATE(1180), 9, sym__literal, sym_integer, sym_float, @@ -65667,52 +46861,74 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [23766] = 22, + [24466] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_LBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(296), 14, + anon_sym_this, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + anon_sym_null, + anon_sym_LT, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [24500] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(1747), 1, - anon_sym_LPAREN, - ACTIONS(2231), 1, - anon_sym_this, - ACTIONS(2267), 1, + ACTIONS(1673), 1, sym_identifier, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(961), 1, + ACTIONS(1675), 1, + anon_sym_this, + STATE(437), 1, + aux_sym_member_expression_repeat1, + STATE(521), 1, sym_member_expression, - STATE(1059), 1, + STATE(526), 1, sym__lhs_expression, - STATE(1120), 1, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(55), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1060), 9, + STATE(1179), 9, sym__literal, sym_integer, sym_float, @@ -65722,52 +46938,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [23843] = 22, + [24564] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(1707), 1, - anon_sym_this, - ACTIONS(1747), 1, - anon_sym_LPAREN, - ACTIONS(1785), 1, + ACTIONS(1673), 1, sym_identifier, - STATE(80), 1, + ACTIONS(1675), 1, + anon_sym_this, + STATE(438), 1, + aux_sym_member_expression_repeat1, + STATE(521), 1, sym_member_expression, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(782), 1, - sym_string, - STATE(1059), 1, + STATE(526), 1, sym__lhs_expression, - ACTIONS(83), 2, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(55), 2, - sym__rhs_expression, - sym_call_expression, - STATE(779), 9, + STATE(1179), 9, sym__literal, sym_integer, sym_float, @@ -65777,52 +46984,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [23920] = 22, + [24628] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(1747), 1, - anon_sym_LPAREN, - ACTIONS(1751), 1, - anon_sym_this, - ACTIONS(2269), 1, + ACTIONS(1673), 1, sym_identifier, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(961), 1, + ACTIONS(1675), 1, + anon_sym_this, + STATE(436), 1, + aux_sym_member_expression_repeat1, + STATE(521), 1, sym_member_expression, - STATE(1004), 1, - sym_string, - STATE(1059), 1, + STATE(526), 1, sym__lhs_expression, - ACTIONS(83), 2, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(55), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1077), 9, + STATE(1179), 9, sym__literal, sym_integer, sym_float, @@ -65832,52 +47030,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [23997] = 22, + [24692] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(1747), 1, - anon_sym_LPAREN, - ACTIONS(1751), 1, - anon_sym_this, - ACTIONS(2271), 1, + ACTIONS(1611), 1, sym_identifier, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(961), 1, + ACTIONS(1613), 1, + anon_sym_this, + STATE(416), 1, + aux_sym_member_expression_repeat1, + STATE(521), 1, sym_member_expression, - STATE(975), 1, - sym_string, - STATE(1059), 1, + STATE(526), 1, sym__lhs_expression, - ACTIONS(83), 2, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(55), 2, - sym__rhs_expression, - sym_call_expression, - STATE(992), 9, + STATE(1168), 9, sym__literal, sym_integer, sym_float, @@ -65887,52 +47076,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [24074] = 22, + [24756] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(1747), 1, - anon_sym_LPAREN, - ACTIONS(2207), 1, - anon_sym_this, - ACTIONS(2273), 1, + ACTIONS(1611), 1, sym_identifier, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(961), 1, + ACTIONS(1613), 1, + anon_sym_this, + STATE(408), 1, + aux_sym_member_expression_repeat1, + STATE(521), 1, sym_member_expression, - STATE(975), 1, - sym_string, - STATE(1059), 1, + STATE(526), 1, sym__lhs_expression, - ACTIONS(83), 2, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(55), 2, - sym__rhs_expression, - sym_call_expression, - STATE(994), 9, + STATE(1168), 9, sym__literal, sym_integer, sym_float, @@ -65942,52 +47122,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [24151] = 22, + [24820] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(250), 1, - anon_sym_this, - ACTIONS(1659), 1, - anon_sym_LBRACE, - ACTIONS(1665), 1, + ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(1669), 1, - anon_sym_new, - ACTIONS(1671), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(1673), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(1675), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(1677), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(1679), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(1683), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(1685), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(2241), 1, - anon_sym_LPAREN, - ACTIONS(2275), 1, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1611), 1, sym_identifier, - STATE(692), 1, - sym_string, - STATE(695), 1, + ACTIONS(1613), 1, + anon_sym_this, + STATE(410), 1, + aux_sym_member_expression_repeat1, + STATE(521), 1, sym_member_expression, - STATE(702), 1, - sym__constructor_call, - STATE(726), 1, - sym__call, - STATE(1075), 1, + STATE(526), 1, sym__lhs_expression, - ACTIONS(1681), 2, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(718), 2, - sym__rhs_expression, - sym_call_expression, - STATE(707), 9, + STATE(1168), 9, sym__literal, sym_integer, sym_float, @@ -65997,50 +47168,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [24228] = 21, + [24884] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(250), 1, - anon_sym_this, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(1783), 1, + ACTIONS(1657), 1, sym_identifier, - STATE(80), 1, + ACTIONS(1659), 1, + anon_sym_this, + STATE(434), 1, + aux_sym_member_expression_repeat1, + STATE(521), 1, sym_member_expression, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(743), 1, - sym_string, - STATE(1059), 1, + STATE(526), 1, sym__lhs_expression, - ACTIONS(83), 2, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(85), 2, - sym__rhs_expression, - sym_call_expression, - STATE(751), 9, + STATE(1177), 9, sym__literal, sym_integer, sym_float, @@ -66050,100 +47214,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [24302] = 21, + [24948] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(2123), 1, - anon_sym_this, - ACTIONS(2243), 1, - sym_identifier, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(961), 1, - sym_member_expression, - STATE(1004), 1, - sym_string, - STATE(1059), 1, - sym__lhs_expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(85), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1021), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [24376] = 18, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(256), 1, - sym_escape_sequence, - ACTIONS(2277), 1, + ACTIONS(1657), 1, sym_identifier, - ACTIONS(2279), 1, - anon_sym_LBRACE, - ACTIONS(2281), 1, - anon_sym_LBRACK, - ACTIONS(2283), 1, + ACTIONS(1659), 1, anon_sym_this, - ACTIONS(2285), 1, - aux_sym_string_token1, - ACTIONS(2287), 1, - aux_sym_string_token3, - ACTIONS(2289), 1, - sym_comment, - STATE(811), 1, + STATE(435), 1, aux_sym_member_expression_repeat1, - STATE(959), 1, + STATE(521), 1, sym_member_expression, - STATE(960), 1, + STATE(526), 1, sym__lhs_expression, - STATE(975), 1, + STATE(1025), 1, sym_string, ACTIONS(75), 2, - aux_sym_integer_token1, - aux_sym_integer_token2, - ACTIONS(79), 2, - aux_sym_float_token1, - aux_sym_float_token2, - ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(258), 3, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - STATE(1164), 9, + STATE(1177), 9, sym__literal, sym_integer, sym_float, @@ -66153,50 +47260,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [24444] = 21, + [25012] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(250), 1, - anon_sym_this, - ACTIONS(1659), 1, - anon_sym_LBRACE, - ACTIONS(1665), 1, + ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(1669), 1, - anon_sym_new, - ACTIONS(1671), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(1673), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(1675), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(1677), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(1679), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(1683), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(1685), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(2275), 1, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1657), 1, sym_identifier, - STATE(692), 1, - sym_string, - STATE(695), 1, + ACTIONS(1659), 1, + anon_sym_this, + STATE(430), 1, + aux_sym_member_expression_repeat1, + STATE(521), 1, sym_member_expression, - STATE(702), 1, - sym__constructor_call, - STATE(726), 1, - sym__call, - STATE(1075), 1, + STATE(526), 1, sym__lhs_expression, - ACTIONS(1681), 2, - anon_sym_true, - anon_sym_false, - STATE(708), 2, - sym__rhs_expression, - sym_call_expression, - STATE(707), 9, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + STATE(1177), 9, sym__literal, sym_integer, sym_float, @@ -66206,88 +47306,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [24518] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2217), 1, - anon_sym_EQ_GT, - ACTIONS(2291), 1, - anon_sym_DOT, - ACTIONS(2293), 1, - anon_sym_QMARK, - ACTIONS(508), 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(506), 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, - [24562] = 21, + [25076] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(250), 1, - anon_sym_this, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(1777), 1, + ACTIONS(284), 1, sym_identifier, - STATE(80), 1, + ACTIONS(286), 1, + anon_sym_this, + STATE(28), 1, sym_member_expression, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, + STATE(59), 1, sym__call, - STATE(675), 1, + STATE(1025), 1, sym_string, - STATE(1059), 1, + STATE(1045), 1, sym__lhs_expression, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(85), 2, - sym__rhs_expression, - sym_call_expression, - STATE(694), 9, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -66297,50 +47352,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [24636] = 21, + [25140] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(236), 1, - anon_sym_this, - ACTIONS(238), 1, - anon_sym_new, - ACTIONS(1745), 1, + ACTIONS(1695), 1, sym_identifier, - STATE(80), 1, + ACTIONS(1699), 1, + anon_sym_this, + STATE(540), 1, + aux_sym_member_expression_repeat1, + STATE(752), 1, + sym__lhs_expression, + STATE(781), 1, sym_member_expression, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(105), 1, + STATE(1025), 1, sym_string, - STATE(1054), 1, - sym__lhs_expression, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(85), 2, - sym__rhs_expression, - sym_call_expression, - STATE(123), 9, + STATE(1173), 9, sym__literal, sym_integer, sym_float, @@ -66350,86 +47398,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [24710] = 4, + [25204] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2295), 1, - anon_sym_COLON, - ACTIONS(588), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(586), 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, - [24750] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(250), 1, - anon_sym_this, - ACTIONS(1659), 1, - anon_sym_LBRACE, - ACTIONS(1665), 1, + ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(1669), 1, - anon_sym_new, - ACTIONS(1671), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(1673), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(1675), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(1677), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(1679), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(1683), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(1685), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(2275), 1, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, sym_identifier, - STATE(692), 1, - sym_string, - STATE(695), 1, + ACTIONS(286), 1, + anon_sym_this, + STATE(28), 1, sym_member_expression, - STATE(702), 1, - sym__constructor_call, - STATE(726), 1, + STATE(694), 1, sym__call, - STATE(1075), 1, + STATE(1025), 1, + sym_string, + STATE(1073), 1, sym__lhs_expression, - ACTIONS(1681), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(711), 2, - sym__rhs_expression, - sym_call_expression, - STATE(707), 9, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -66439,50 +47444,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [24824] = 21, + [25268] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(238), 1, - anon_sym_new, - ACTIONS(250), 1, - anon_sym_this, - ACTIONS(2253), 1, + ACTIONS(284), 1, sym_identifier, - STATE(80), 1, + ACTIONS(286), 1, + anon_sym_this, + STATE(28), 1, sym_member_expression, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, + STATE(59), 1, sym__call, - STATE(105), 1, + STATE(1025), 1, sym_string, - STATE(1054), 1, + STATE(1105), 1, sym__lhs_expression, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(61), 2, - sym__rhs_expression, - sym_call_expression, - STATE(113), 9, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -66492,50 +47490,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [24898] = 21, + [25332] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(1751), 1, + ACTIONS(524), 1, anon_sym_this, - ACTIONS(2269), 1, + ACTIONS(1715), 1, sym_identifier, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(961), 1, + STATE(28), 1, sym_member_expression, - STATE(1004), 1, - sym_string, - STATE(1059), 1, + STATE(29), 1, sym__lhs_expression, - ACTIONS(83), 2, + STATE(499), 1, + aux_sym_member_expression_repeat1, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(85), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1077), 9, + STATE(1189), 9, sym__literal, sym_integer, sym_float, @@ -66545,50 +47536,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [24972] = 21, + [25396] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(2207), 1, - anon_sym_this, - ACTIONS(2273), 1, + ACTIONS(1695), 1, sym_identifier, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(961), 1, + ACTIONS(1699), 1, + anon_sym_this, + STATE(544), 1, + aux_sym_member_expression_repeat1, + STATE(752), 1, + sym__lhs_expression, + STATE(781), 1, sym_member_expression, - STATE(975), 1, + STATE(1025), 1, sym_string, - STATE(1059), 1, - sym__lhs_expression, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(85), 2, - sym__rhs_expression, - sym_call_expression, - STATE(994), 9, + STATE(1173), 9, sym__literal, sym_integer, sym_float, @@ -66598,50 +47582,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [25046] = 21, + [25460] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(250), 1, - anon_sym_this, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(1783), 1, + ACTIONS(1695), 1, sym_identifier, - STATE(80), 1, + ACTIONS(1699), 1, + anon_sym_this, + STATE(545), 1, + aux_sym_member_expression_repeat1, + STATE(752), 1, + sym__lhs_expression, + STATE(781), 1, sym_member_expression, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(743), 1, + STATE(1025), 1, sym_string, - STATE(1059), 1, - sym__lhs_expression, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(61), 2, - sym__rhs_expression, - sym_call_expression, - STATE(751), 9, + STATE(1173), 9, sym__literal, sym_integer, sym_float, @@ -66651,47 +47628,43 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [25120] = 18, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(304), 1, - sym_escape_sequence, - ACTIONS(2277), 1, - sym_identifier, - ACTIONS(2279), 1, - anon_sym_LBRACE, - ACTIONS(2281), 1, + [25524] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(2283), 1, - anon_sym_this, - ACTIONS(2285), 1, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(2287), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(2289), 1, - sym_comment, - STATE(811), 1, - aux_sym_member_expression_repeat1, - STATE(959), 1, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(524), 1, + anon_sym_this, + ACTIONS(1715), 1, + sym_identifier, + STATE(28), 1, sym_member_expression, - STATE(960), 1, + STATE(29), 1, sym__lhs_expression, - STATE(975), 1, + STATE(506), 1, + aux_sym_member_expression_repeat1, + STATE(1025), 1, sym_string, ACTIONS(75), 2, - aux_sym_integer_token1, - aux_sym_integer_token2, - ACTIONS(79), 2, - aux_sym_float_token1, - aux_sym_float_token2, - ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(306), 3, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - STATE(1164), 9, + STATE(1189), 9, sym__literal, sym_integer, sym_float, @@ -66701,50 +47674,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [25188] = 21, + [25588] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(238), 1, - anon_sym_new, - ACTIONS(250), 1, - anon_sym_this, - ACTIONS(2253), 1, + ACTIONS(284), 1, sym_identifier, - STATE(80), 1, + ACTIONS(286), 1, + anon_sym_this, + STATE(28), 1, sym_member_expression, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(105), 1, + STATE(1025), 1, sym_string, - STATE(1054), 1, + STATE(1065), 1, sym__lhs_expression, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(85), 2, - sym__rhs_expression, - sym_call_expression, - STATE(113), 9, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -66754,88 +47718,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [25262] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(426), 1, - anon_sym_LT, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(424), 2, - anon_sym_LPAREN, - anon_sym_RBRACE, - ACTIONS(508), 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(506), 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, - [25306] = 21, + [25649] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(1707), 1, - anon_sym_this, - ACTIONS(1785), 1, + ACTIONS(284), 1, sym_identifier, - STATE(80), 1, + ACTIONS(286), 1, + anon_sym_this, + STATE(28), 1, sym_member_expression, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(782), 1, - sym_string, - STATE(1059), 1, + STATE(1016), 1, sym__lhs_expression, - ACTIONS(83), 2, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(85), 2, - sym__rhs_expression, - sym_call_expression, - STATE(779), 9, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -66845,50 +47762,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [25380] = 21, + [25710] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(2231), 1, - anon_sym_this, - ACTIONS(2267), 1, + ACTIONS(284), 1, sym_identifier, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(961), 1, + ACTIONS(286), 1, + anon_sym_this, + STATE(28), 1, sym_member_expression, - STATE(1059), 1, + STATE(1011), 1, sym__lhs_expression, - STATE(1120), 1, + STATE(1025), 1, sym_string, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(85), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1060), 9, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -66898,50 +47806,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [25454] = 21, + [25771] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1659), 1, - anon_sym_LBRACE, - ACTIONS(1665), 1, + ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(1669), 1, - anon_sym_new, - ACTIONS(1671), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(1673), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(1675), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(1677), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(1679), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(1683), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(1685), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(2123), 1, - anon_sym_this, - ACTIONS(2239), 1, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, sym_identifier, - STATE(702), 1, - sym__constructor_call, - STATE(726), 1, - sym__call, - STATE(961), 1, + ACTIONS(286), 1, + anon_sym_this, + STATE(28), 1, sym_member_expression, - STATE(986), 1, - sym_string, - STATE(1075), 1, + STATE(1008), 1, sym__lhs_expression, - ACTIONS(1681), 2, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(711), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1015), 9, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -66951,50 +47850,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [25528] = 21, + [25832] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(236), 1, - anon_sym_this, - ACTIONS(238), 1, - anon_sym_new, - ACTIONS(2251), 1, + ACTIONS(284), 1, sym_identifier, - STATE(80), 1, + ACTIONS(286), 1, + anon_sym_this, + STATE(28), 1, sym_member_expression, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(462), 1, + STATE(1025), 1, sym_string, - STATE(1054), 1, + STATE(1061), 1, sym__lhs_expression, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(61), 2, - sym__rhs_expression, - sym_call_expression, - STATE(464), 9, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -67004,50 +47894,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [25602] = 21, + [25893] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(1707), 1, - anon_sym_this, - ACTIONS(1785), 1, + ACTIONS(284), 1, sym_identifier, - STATE(80), 1, + ACTIONS(286), 1, + anon_sym_this, + STATE(28), 1, sym_member_expression, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(782), 1, - sym_string, - STATE(1059), 1, + STATE(1013), 1, sym__lhs_expression, - ACTIONS(83), 2, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(61), 2, - sym__rhs_expression, - sym_call_expression, - STATE(779), 9, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -67057,50 +47938,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [25676] = 21, + [25954] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(236), 1, - anon_sym_this, - ACTIONS(1659), 1, - anon_sym_LBRACE, - ACTIONS(1665), 1, + ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(1669), 1, - anon_sym_new, - ACTIONS(1671), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(1673), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(1675), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(1677), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(1679), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(1683), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(1685), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(2298), 1, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, sym_identifier, - STATE(692), 1, - sym_string, - STATE(695), 1, + ACTIONS(286), 1, + anon_sym_this, + STATE(28), 1, sym_member_expression, - STATE(702), 1, - sym__constructor_call, - STATE(726), 1, - sym__call, - STATE(1075), 1, + STATE(1019), 1, sym__lhs_expression, - ACTIONS(1681), 2, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(708), 2, - sym__rhs_expression, - sym_call_expression, - STATE(724), 9, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -67110,50 +47982,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [25750] = 21, + [26015] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(236), 1, - anon_sym_this, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(2197), 1, + ACTIONS(284), 1, sym_identifier, - STATE(80), 1, + ACTIONS(286), 1, + anon_sym_this, + STATE(28), 1, sym_member_expression, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(675), 1, - sym_string, - STATE(1059), 1, + STATE(394), 1, sym__lhs_expression, - ACTIONS(83), 2, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(61), 2, - sym__rhs_expression, - sym_call_expression, - STATE(699), 9, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -67163,47 +48026,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [25824] = 18, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(244), 1, - sym_escape_sequence, - ACTIONS(2277), 1, - sym_identifier, - ACTIONS(2279), 1, - anon_sym_LBRACE, - ACTIONS(2281), 1, + [26076] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(2283), 1, - anon_sym_this, - ACTIONS(2285), 1, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(2287), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(2289), 1, - sym_comment, - STATE(811), 1, - aux_sym_member_expression_repeat1, - STATE(959), 1, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + sym_identifier, + ACTIONS(286), 1, + anon_sym_this, + STATE(28), 1, sym_member_expression, - STATE(960), 1, + STATE(1012), 1, sym__lhs_expression, - STATE(975), 1, + STATE(1025), 1, sym_string, ACTIONS(75), 2, - aux_sym_integer_token1, - aux_sym_integer_token2, - ACTIONS(79), 2, - aux_sym_float_token1, - aux_sym_float_token2, - ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(248), 3, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - STATE(1164), 9, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -67213,50 +48070,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [25892] = 21, + [26137] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(238), 1, - anon_sym_new, - ACTIONS(250), 1, - anon_sym_this, - ACTIONS(2263), 1, + ACTIONS(284), 1, sym_identifier, - STATE(80), 1, + ACTIONS(286), 1, + anon_sym_this, + STATE(28), 1, sym_member_expression, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(462), 1, - sym_string, - STATE(1054), 1, + STATE(1023), 1, sym__lhs_expression, - ACTIONS(83), 2, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(61), 2, - sym__rhs_expression, - sym_call_expression, - STATE(465), 9, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -67266,50 +48114,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [25966] = 21, + [26198] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1659), 1, - anon_sym_LBRACE, - ACTIONS(1665), 1, + ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(1669), 1, - anon_sym_new, - ACTIONS(1671), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(1673), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(1675), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(1677), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(1679), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(1683), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(1685), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(1751), 1, - anon_sym_this, - ACTIONS(2261), 1, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, sym_identifier, - STATE(702), 1, - sym__constructor_call, - STATE(726), 1, - sym__call, - STATE(961), 1, + ACTIONS(286), 1, + anon_sym_this, + STATE(28), 1, sym_member_expression, - STATE(986), 1, - sym_string, - STATE(1075), 1, + STATE(1017), 1, sym__lhs_expression, - ACTIONS(1681), 2, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(711), 2, - sym__rhs_expression, - sym_call_expression, - STATE(999), 9, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -67319,50 +48158,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [26040] = 21, + [26259] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(236), 1, - anon_sym_this, - ACTIONS(238), 1, - anon_sym_new, - ACTIONS(2251), 1, + ACTIONS(284), 1, sym_identifier, - STATE(80), 1, + ACTIONS(286), 1, + anon_sym_this, + STATE(28), 1, sym_member_expression, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(462), 1, - sym_string, - STATE(1054), 1, + STATE(1014), 1, sym__lhs_expression, - ACTIONS(83), 2, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(85), 2, - sym__rhs_expression, - sym_call_expression, - STATE(464), 9, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -67372,47 +48202,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [26114] = 18, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(308), 1, - sym_escape_sequence, - ACTIONS(2277), 1, - sym_identifier, - ACTIONS(2279), 1, - anon_sym_LBRACE, - ACTIONS(2281), 1, + [26320] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(2283), 1, - anon_sym_this, - ACTIONS(2285), 1, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(2287), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(2289), 1, - sym_comment, - STATE(811), 1, - aux_sym_member_expression_repeat1, - STATE(959), 1, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + sym_identifier, + ACTIONS(286), 1, + anon_sym_this, + STATE(28), 1, sym_member_expression, - STATE(960), 1, + STATE(1021), 1, sym__lhs_expression, - STATE(975), 1, + STATE(1025), 1, sym_string, ACTIONS(75), 2, - aux_sym_integer_token1, - aux_sym_integer_token2, - ACTIONS(79), 2, - aux_sym_float_token1, - aux_sym_float_token2, - ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(310), 3, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - STATE(1164), 9, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -67422,50 +48246,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [26182] = 21, + [26381] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(238), 1, - anon_sym_new, - ACTIONS(250), 1, + ACTIONS(1789), 1, anon_sym_this, - ACTIONS(2263), 1, + ACTIONS(1829), 1, sym_identifier, - STATE(80), 1, - sym_member_expression, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(462), 1, + STATE(1025), 1, sym_string, - STATE(1054), 1, + STATE(1026), 1, sym__lhs_expression, - ACTIONS(83), 2, + STATE(1034), 1, + sym_member_expression, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(85), 2, - sym__rhs_expression, - sym_call_expression, - STATE(465), 9, + STATE(1198), 9, sym__literal, sym_integer, sym_float, @@ -67475,50 +48290,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [26256] = 21, + [26442] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(2123), 1, - anon_sym_this, - ACTIONS(2265), 1, + ACTIONS(284), 1, sym_identifier, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(961), 1, + ACTIONS(286), 1, + anon_sym_this, + STATE(28), 1, sym_member_expression, - STATE(975), 1, - sym_string, - STATE(1059), 1, + STATE(1022), 1, sym__lhs_expression, - ACTIONS(83), 2, + STATE(1025), 1, + sym_string, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(85), 2, - sym__rhs_expression, - sym_call_expression, - STATE(993), 9, + STATE(1172), 9, sym__literal, sym_integer, sym_float, @@ -67528,50 +48334,41 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [26330] = 21, + [26503] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(250), 1, - anon_sym_this, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(1777), 1, + ACTIONS(1831), 1, sym_identifier, - STATE(80), 1, - sym_member_expression, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(675), 1, + ACTIONS(1833), 1, + anon_sym_RBRACE, + STATE(101), 1, + sym_pair, + STATE(1148), 1, + sym_structure_type_pair, + STATE(1188), 1, sym_string, - STATE(1059), 1, - sym__lhs_expression, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(61), 2, - sym__rhs_expression, - sym_call_expression, - STATE(694), 9, + STATE(1223), 8, sym__literal, sym_integer, sym_float, @@ -67580,48 +48377,80 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [26404] = 18, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(260), 1, - sym_escape_sequence, - ACTIONS(2277), 1, - sym_identifier, - ACTIONS(2279), 1, - anon_sym_LBRACE, - ACTIONS(2281), 1, + [26563] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(2283), 1, - anon_sym_this, - ACTIONS(2285), 1, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(2287), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(2289), 1, - sym_comment, - STATE(811), 1, - aux_sym_member_expression_repeat1, - STATE(959), 1, - sym_member_expression, - STATE(960), 1, - sym__lhs_expression, - STATE(975), 1, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1835), 1, + sym_identifier, + ACTIONS(1837), 1, + anon_sym_RBRACE, + STATE(101), 1, + sym_pair, + STATE(1188), 1, sym_string, ACTIONS(75), 2, + anon_sym_true, + anon_sym_false, + STATE(1223), 8, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + [26620] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, aux_sym_integer_token1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 2, + ACTIONS(71), 1, aux_sym_float_token1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(83), 2, + ACTIONS(77), 1, + aux_sym_string_token1, + ACTIONS(79), 1, + aux_sym_string_token3, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1835), 1, + sym_identifier, + ACTIONS(1839), 1, + anon_sym_RBRACE, + STATE(1076), 1, + sym_pair, + STATE(1188), 1, + sym_string, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(262), 3, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - STATE(1164), 9, + STATE(1223), 8, sym__literal, sym_integer, sym_float, @@ -67630,51 +48459,39 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [26472] = 21, + [26677] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(1751), 1, - anon_sym_this, - ACTIONS(2271), 1, + ACTIONS(1835), 1, sym_identifier, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(961), 1, - sym_member_expression, - STATE(975), 1, + ACTIONS(1841), 1, + anon_sym_RBRACE, + STATE(1106), 1, + sym_pair, + STATE(1188), 1, sym_string, - STATE(1059), 1, - sym__lhs_expression, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(1279), 2, - sym__rhs_expression, - sym_call_expression, - STATE(992), 9, + STATE(1223), 8, sym__literal, sym_integer, sym_float, @@ -67683,51 +48500,66 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [26546] = 21, + [26734] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(298), 1, + sym__map_operator, + ACTIONS(1843), 1, + aux_sym_member_expression_token1, + ACTIONS(296), 9, + anon_sym_this, + anon_sym_QMARK, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(294), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_LT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [26768] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(2207), 1, - anon_sym_this, - ACTIONS(2245), 1, + ACTIONS(1845), 1, sym_identifier, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(961), 1, - sym_member_expression, - STATE(1004), 1, + STATE(1084), 1, sym_string, - STATE(1059), 1, - sym__lhs_expression, - ACTIONS(83), 2, + STATE(1103), 1, + sym_pair, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(85), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1023), 9, + STATE(1236), 8, sym__literal, sym_integer, sym_float, @@ -67736,51 +48568,35 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [26620] = 21, + [26822] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(1751), 1, - anon_sym_this, - ACTIONS(2271), 1, + ACTIONS(1845), 1, sym_identifier, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(961), 1, - sym_member_expression, - STATE(975), 1, + STATE(1084), 1, sym_string, - STATE(1059), 1, - sym__lhs_expression, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(1230), 2, - sym__rhs_expression, - sym_call_expression, - STATE(992), 9, + STATE(1130), 9, sym__literal, sym_integer, sym_float, @@ -67790,50 +48606,37 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [26694] = 21, + [26874] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(1751), 1, - anon_sym_this, - ACTIONS(2271), 1, + ACTIONS(1835), 1, sym_identifier, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(961), 1, - sym_member_expression, - STATE(975), 1, + STATE(1103), 1, + sym_pair, + STATE(1188), 1, sym_string, - STATE(1059), 1, - sym__lhs_expression, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(85), 2, - sym__rhs_expression, - sym_call_expression, - STATE(992), 9, + STATE(1223), 8, sym__literal, sym_integer, sym_float, @@ -67842,48 +48645,35 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [26768] = 18, - ACTIONS(264), 1, - sym_escape_sequence, - ACTIONS(280), 1, - anon_sym_null, - ACTIONS(2289), 1, + [26928] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - sym_identifier, - ACTIONS(2303), 1, - anon_sym_LBRACE, - ACTIONS(2306), 1, + ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(2309), 1, - anon_sym_this, - ACTIONS(2312), 1, + ACTIONS(51), 1, + anon_sym_null, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(71), 1, + aux_sym_float_token1, + ACTIONS(73), 1, + aux_sym_float_token2, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(2315), 1, + ACTIONS(79), 1, aux_sym_string_token3, - STATE(811), 1, - aux_sym_member_expression_repeat1, - STATE(959), 1, - sym_member_expression, - STATE(960), 1, - sym__lhs_expression, - STATE(975), 1, + ACTIONS(214), 1, + anon_sym_LBRACE, + ACTIONS(1845), 1, + sym_identifier, + STATE(1084), 1, sym_string, - ACTIONS(283), 2, - aux_sym_integer_token1, - aux_sym_integer_token2, - ACTIONS(289), 2, - aux_sym_float_token1, - aux_sym_float_token2, - ACTIONS(295), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - ACTIONS(269), 3, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - STATE(1164), 9, + STATE(1119), 9, sym__literal, sym_integer, sym_float, @@ -67893,50 +48683,64 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [26836] = 21, + [26980] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1851), 1, + anon_sym_EQ, + STATE(656), 1, + sym__assignment_operator, + ACTIONS(1849), 9, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, + sym__eitherUnaryOperator, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(1847), 11, + anon_sym_switch, + anon_sym_cast, + anon_sym_this, + anon_sym_new, + sym__prefixUnaryOperator, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [27014] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(236), 1, - anon_sym_this, - ACTIONS(238), 1, - anon_sym_new, - ACTIONS(1745), 1, + ACTIONS(1845), 1, sym_identifier, - STATE(80), 1, - sym_member_expression, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(105), 1, + STATE(1084), 1, sym_string, - STATE(1054), 1, - sym__lhs_expression, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(61), 2, - sym__rhs_expression, - sym_call_expression, - STATE(123), 9, + STATE(1147), 9, sym__literal, sym_integer, sym_float, @@ -67946,50 +48750,35 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [26910] = 21, + [27066] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(51), 1, anon_sym_null, - ACTIONS(75), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - ACTIONS(79), 1, + ACTIONS(71), 1, aux_sym_float_token1, - ACTIONS(81), 1, + ACTIONS(73), 1, aux_sym_float_token2, - ACTIONS(85), 1, + ACTIONS(77), 1, aux_sym_string_token1, - ACTIONS(87), 1, + ACTIONS(79), 1, aux_sym_string_token3, - ACTIONS(232), 1, + ACTIONS(214), 1, anon_sym_LBRACE, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(1751), 1, - anon_sym_this, - ACTIONS(2271), 1, + ACTIONS(1845), 1, sym_identifier, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(961), 1, - sym_member_expression, - STATE(975), 1, + STATE(1084), 1, sym_string, - STATE(1059), 1, - sym__lhs_expression, - ACTIONS(83), 2, + ACTIONS(75), 2, anon_sym_true, anon_sym_false, - STATE(1278), 2, - sym__rhs_expression, - sym_call_expression, - STATE(992), 9, + STATE(1144), 9, sym__literal, sym_integer, sym_float, @@ -67999,10911 +48788,12065 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [26984] = 18, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(252), 1, - sym_escape_sequence, - ACTIONS(2277), 1, + [27118] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(296), 1, + anon_sym_LT, + ACTIONS(1855), 1, + anon_sym_in, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1859), 1, + aux_sym_member_expression_token1, + ACTIONS(1853), 2, + anon_sym_COLON, + sym__map_operator, + ACTIONS(308), 6, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, sym_identifier, - ACTIONS(2279), 1, + ACTIONS(306), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [27159] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(296), 1, + anon_sym_LT, + ACTIONS(1859), 1, + aux_sym_member_expression_token1, + ACTIONS(1861), 1, + anon_sym_in, + ACTIONS(1863), 1, + anon_sym_LBRACK, + ACTIONS(1853), 2, + anon_sym_COLON, + sym__map_operator, + ACTIONS(308), 6, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + sym_identifier, + ACTIONS(306), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [27200] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(296), 1, + anon_sym_LT, + ACTIONS(1729), 1, + aux_sym_member_expression_token1, + ACTIONS(1855), 1, + anon_sym_in, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1853), 2, + anon_sym_COLON, + sym__map_operator, + ACTIONS(308), 6, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + sym_identifier, + ACTIONS(306), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [27241] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(296), 1, + anon_sym_LT, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(294), 2, + anon_sym_LPAREN, + anon_sym_RBRACE, + ACTIONS(308), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(306), 11, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, + sym__semicolon, + [27276] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(328), 1, + aux_sym_member_expression_token1, + ACTIONS(1863), 1, + anon_sym_LBRACK, + ACTIONS(1865), 1, + anon_sym_QMARK, + STATE(332), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(326), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym_identifier, + sym__semicolon, + [27318] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1849), 9, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(2281), 1, + anon_sym_DOLLARtype, anon_sym_LBRACK, - ACTIONS(2283), 1, - anon_sym_this, - ACTIONS(2285), 1, + sym__eitherUnaryOperator, + aux_sym_integer_token2, + aux_sym_float_token2, aux_sym_string_token1, - ACTIONS(2287), 1, aux_sym_string_token3, - ACTIONS(2289), 1, - sym_comment, - STATE(811), 1, - aux_sym_member_expression_repeat1, - STATE(959), 1, - sym_member_expression, - STATE(960), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(75), 2, + ACTIONS(1847), 11, + anon_sym_switch, + anon_sym_cast, + anon_sym_this, + anon_sym_new, + sym__prefixUnaryOperator, + anon_sym_null, aux_sym_integer_token1, - aux_sym_integer_token2, - ACTIONS(79), 2, aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [27346] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(316), 1, + aux_sym_member_expression_token1, + ACTIONS(1863), 1, + anon_sym_LBRACK, + ACTIONS(1865), 1, + anon_sym_QMARK, + STATE(332), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(314), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym_identifier, + sym__semicolon, + [27388] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 9, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, + sym__eitherUnaryOperator, + aux_sym_integer_token2, aux_sym_float_token2, - ACTIONS(83), 2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(1867), 11, + anon_sym_switch, + anon_sym_cast, + anon_sym_this, + anon_sym_new, + sym__prefixUnaryOperator, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, anon_sym_true, anon_sym_false, - ACTIONS(254), 3, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - STATE(1164), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [27052] = 21, + sym_identifier, + [27416] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1863), 1, + anon_sym_LBRACK, + STATE(332), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(312), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(310), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, + sym__semicolon, + [27450] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1871), 1, + aux_sym_member_expression_token1, + ACTIONS(298), 2, + anon_sym_COLON, + sym__map_operator, + ACTIONS(296), 7, + anon_sym_this, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(294), 10, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, + 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, + [27482] = 5, + ACTIONS(294), 1, + sym_escape_sequence, + ACTIONS(1795), 1, + sym_comment, + ACTIONS(1875), 1, + aux_sym_member_expression_token1, + ACTIONS(1873), 2, + anon_sym_COLON, + sym__map_operator, + ACTIONS(296), 16, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(59), 1, + anon_sym_this, anon_sym_null, - ACTIONS(75), 1, aux_sym_integer_token1, - ACTIONS(77), 1, aux_sym_integer_token2, - ACTIONS(79), 1, aux_sym_float_token1, - ACTIONS(81), 1, aux_sym_float_token2, - ACTIONS(85), 1, + anon_sym_true, + anon_sym_false, aux_sym_string_token1, - ACTIONS(87), 1, + aux_sym_string_token2, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1092), 1, - anon_sym_new, - ACTIONS(1751), 1, - anon_sym_this, - ACTIONS(2271), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, sym_identifier, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(961), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - STATE(1059), 1, - sym__lhs_expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1243), 2, - sym__rhs_expression, - sym_call_expression, - STATE(992), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [27126] = 21, + [27514] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(296), 1, + anon_sym_LT, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, + ACTIONS(308), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(306), 11, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, + sym__semicolon, + [27548] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1879), 9, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, + sym__eitherUnaryOperator, aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, aux_sym_float_token2, - ACTIONS(85), 1, aux_sym_string_token1, - ACTIONS(87), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(236), 1, + ACTIONS(1877), 11, + anon_sym_switch, + anon_sym_cast, anon_sym_this, - ACTIONS(1092), 1, anon_sym_new, - ACTIONS(2215), 1, - sym_identifier, - STATE(80), 1, - sym_member_expression, - STATE(89), 1, - sym__constructor_call, - STATE(91), 1, - sym__call, - STATE(743), 1, - sym_string, - STATE(1059), 1, - sym__lhs_expression, - ACTIONS(83), 2, + sym__prefixUnaryOperator, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, anon_sym_true, anon_sym_false, - STATE(61), 2, - sym__rhs_expression, - sym_call_expression, - STATE(764), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [27200] = 5, + sym_identifier, + [27576] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, - anon_sym_RPAREN, - STATE(817), 1, - aux_sym_variable_declaration_repeat2, - ACTIONS(2323), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(296), 1, anon_sym_LT, - anon_sym_GT, + ACTIONS(308), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, anon_sym_EQ, - ACTIONS(2321), 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, + ACTIONS(306), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, sym__semicolon, - [27242] = 6, + [27608] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2325), 1, - anon_sym_DOT, - ACTIONS(2327), 1, - anon_sym_QMARK, - ACTIONS(428), 2, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(296), 1, + anon_sym_LT, + ACTIONS(1859), 1, + aux_sym_member_expression_token1, + ACTIONS(1853), 2, anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(426), 10, - anon_sym_this, + sym__map_operator, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, 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(306), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(424), 15, + sym__semicolon, + [27643] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 1, anon_sym_LPAREN, + ACTIONS(296), 1, + anon_sym_LT, + ACTIONS(308), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(306), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, + sym__semicolon, + [27674] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(316), 1, + aux_sym_member_expression_token1, + ACTIONS(1881), 1, + anon_sym_QMARK, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + STATE(381), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(314), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym_identifier, + sym__semicolon, + [27715] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(328), 1, + aux_sym_member_expression_token1, + ACTIONS(1865), 1, + anon_sym_QMARK, + STATE(332), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(326), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym_identifier, + sym__semicolon, + [27754] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(328), 1, + aux_sym_member_expression_token1, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1881), 1, + anon_sym_QMARK, + STATE(381), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(326), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym_identifier, + sym__semicolon, + [27795] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(500), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(498), 13, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DASH_GT, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, + sym__semicolon, + [27822] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(328), 1, + aux_sym_member_expression_token1, + ACTIONS(1865), 1, + anon_sym_QMARK, + ACTIONS(1885), 1, + sym__eitherUnaryOperator, + STATE(332), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(326), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym_identifier, + sym__semicolon, + [27863] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(316), 1, + aux_sym_member_expression_token1, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1881), 1, + anon_sym_QMARK, + STATE(381), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(314), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym_identifier, + sym__semicolon, + [27904] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + STATE(381), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(312), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(310), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, + sym__semicolon, + [27937] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(296), 1, anon_sym_LT, - anon_sym_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1859), 1, + aux_sym_member_expression_token1, + ACTIONS(1887), 1, + anon_sym_in, + ACTIONS(1853), 2, + anon_sym_COLON, + sym__map_operator, + ACTIONS(294), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(306), 4, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [27976] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1889), 1, + anon_sym_LPAREN, + ACTIONS(1891), 1, + anon_sym_COLON, + ACTIONS(1893), 1, + sym__prefixUnaryOperator, + ACTIONS(1895), 1, + sym__eitherUnaryOperator, + ACTIONS(1897), 1, + sym__semicolon, + STATE(324), 1, + sym_operator, + STATE(776), 1, + sym_access_identifiers, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + STATE(651), 2, + sym__unaryOperator, + sym__binaryOperator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [28023] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(332), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(312), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(310), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, sym__semicolon, - [27285] = 19, + [28054] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1737), 1, - anon_sym_this, - ACTIONS(2329), 1, + ACTIONS(316), 1, + aux_sym_member_expression_token1, + ACTIONS(1865), 1, + anon_sym_QMARK, + STATE(332), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(314), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, sym_identifier, - STATE(402), 1, - sym_member_expression, - STATE(823), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(308), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - STATE(1174), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [27354] = 19, + sym__semicolon, + [28093] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1737), 1, - anon_sym_this, - ACTIONS(2329), 1, + STATE(332), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(312), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(310), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - STATE(402), 1, - sym_member_expression, - STATE(823), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(256), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - STATE(1174), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [27423] = 19, + sym__semicolon, + [28124] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1737), 1, - anon_sym_this, - ACTIONS(2329), 1, + ACTIONS(328), 1, + aux_sym_member_expression_token1, + ACTIONS(1881), 1, + anon_sym_QMARK, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + STATE(381), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(326), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, sym_identifier, - STATE(402), 1, - sym_member_expression, - STATE(823), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(244), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - STATE(1174), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [27492] = 19, + sym__semicolon, + [28165] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1737), 1, - anon_sym_this, - ACTIONS(2329), 1, - sym_identifier, - STATE(402), 1, - sym_member_expression, - STATE(823), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(260), 3, + ACTIONS(1889), 1, anon_sym_LPAREN, + ACTIONS(1893), 1, + sym__prefixUnaryOperator, + ACTIONS(1895), 1, + sym__eitherUnaryOperator, + ACTIONS(1899), 1, anon_sym_COLON, - anon_sym_LT, - STATE(1174), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [27561] = 19, + ACTIONS(1901), 1, + sym__semicolon, + STATE(330), 1, + sym_operator, + STATE(727), 1, + sym_access_identifiers, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + STATE(651), 2, + sym__unaryOperator, + sym__binaryOperator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [28212] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(271), 1, - anon_sym_LBRACE, - ACTIONS(274), 1, + ACTIONS(296), 1, + anon_sym_LT, + ACTIONS(1729), 1, + aux_sym_member_expression_token1, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(280), 1, - anon_sym_null, - ACTIONS(283), 1, - aux_sym_integer_token1, - ACTIONS(286), 1, - aux_sym_integer_token2, - ACTIONS(289), 1, - aux_sym_float_token1, - ACTIONS(292), 1, - aux_sym_float_token2, - ACTIONS(298), 1, - aux_sym_string_token1, - ACTIONS(301), 1, - aux_sym_string_token3, - ACTIONS(2331), 1, - sym_identifier, - ACTIONS(2334), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(823), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(295), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(264), 3, - anon_sym_LPAREN, + ACTIONS(1887), 1, + anon_sym_in, + ACTIONS(1903), 2, anon_sym_COLON, - anon_sym_LT, - STATE(1174), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [27630] = 19, + sym__map_operator, + ACTIONS(294), 4, + anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(306), 4, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [28251] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1737), 1, - anon_sym_this, - ACTIONS(2329), 1, - sym_identifier, - STATE(402), 1, - sym_member_expression, - STATE(823), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(304), 3, + ACTIONS(1889), 1, anon_sym_LPAREN, + ACTIONS(1893), 1, + sym__prefixUnaryOperator, + ACTIONS(1895), 1, + sym__eitherUnaryOperator, + ACTIONS(1905), 1, anon_sym_COLON, - anon_sym_LT, - STATE(1174), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [27699] = 6, + ACTIONS(1907), 1, + sym__semicolon, + STATE(390), 1, + sym_operator, + STATE(735), 1, + sym_access_identifiers, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + STATE(651), 2, + sym__unaryOperator, + sym__binaryOperator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [28298] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1821), 1, - anon_sym_DOT, - ACTIONS(1823), 1, + ACTIONS(1857), 1, + anon_sym_LBRACK, + STATE(381), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(312), 6, + aux_sym_member_expression_token1, anon_sym_QMARK, - ACTIONS(2117), 1, - anon_sym_EQ_GT, - ACTIONS(508), 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, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, anon_sym_EQ, - ACTIONS(506), 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, - [27742] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2339), 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, + ACTIONS(310), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, + sym__semicolon, + [28331] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(316), 1, + aux_sym_member_expression_token1, + ACTIONS(1865), 1, + anon_sym_QMARK, + STATE(332), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(314), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym_identifier, + sym__semicolon, + [28370] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(364), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, anon_sym_EQ, - ACTIONS(2337), 19, + ACTIONS(362), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, 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, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, sym__semicolon, - [27779] = 3, + [28396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2343), 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, + ACTIONS(372), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, anon_sym_EQ, - ACTIONS(2341), 19, + ACTIONS(370), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, 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, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, sym__semicolon, - [27816] = 19, + [28422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(500), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(498), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1737), 1, - anon_sym_this, - ACTIONS(2329), 1, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - STATE(402), 1, - sym_member_expression, - STATE(823), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(252), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - STATE(1174), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [27885] = 19, + sym__semicolon, + [28448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2247), 1, + ACTIONS(356), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(354), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(2249), 1, - anon_sym_this, - ACTIONS(2345), 1, + sym__semicolon, + [28474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(348), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(346), 12, anon_sym_RPAREN, - STATE(402), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - STATE(1012), 1, - sym__lhs_expression, - STATE(1158), 1, - sym_function_arg, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1159), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [27952] = 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, + sym__semicolon, + [28500] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(474), 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, + ACTIONS(328), 1, + aux_sym_member_expression_token1, + ACTIONS(1881), 1, + anon_sym_QMARK, + STATE(381), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(326), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, sym_identifier, - ACTIONS(472), 18, - anon_sym_LPAREN, + sym__semicolon, + [28538] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(350), 12, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, + sym__semicolon, + [28564] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(476), 6, + aux_sym_member_expression_token1, anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_LT, - anon_sym_GT, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, anon_sym_EQ, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, + ACTIONS(474), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, sym__semicolon, - [27987] = 18, + [28590] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(296), 1, + anon_sym_LT, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1753), 1, - sym_identifier, - ACTIONS(1755), 1, - anon_sym_this, - STATE(60), 1, - sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(453), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1162), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [28051] = 18, + ACTIONS(1859), 1, + aux_sym_member_expression_token1, + ACTIONS(1887), 1, + anon_sym_in, + ACTIONS(1903), 2, + anon_sym_COLON, + sym__map_operator, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(306), 6, + anon_sym_RBRACE, + anon_sym_COMMA, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + [28628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1737), 1, - anon_sym_this, - ACTIONS(2329), 1, + ACTIONS(376), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(374), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - STATE(402), 1, - sym_member_expression, - STATE(821), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1174), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [28115] = 18, + sym__semicolon, + [28654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(246), 1, + ACTIONS(394), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(392), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(250), 1, - anon_sym_this, - STATE(17), 1, - aux_sym_member_expression_repeat1, - STATE(60), 1, - sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1152), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [28179] = 18, + sym__semicolon, + [28680] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(246), 1, + STATE(346), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(312), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(310), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(250), 1, - anon_sym_this, - STATE(15), 1, - aux_sym_member_expression_repeat1, - STATE(60), 1, - sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1152), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [28243] = 18, + sym__semicolon, + [28712] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(326), 1, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + STATE(346), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(312), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(310), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(328), 1, - anon_sym_this, - STATE(38), 1, - aux_sym_member_expression_repeat1, - STATE(101), 1, - sym_member_expression, - STATE(102), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1167), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [28307] = 18, + sym__semicolon, + [28744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2205), 1, + ACTIONS(426), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(424), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(2207), 1, - anon_sym_this, - STATE(680), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, - sym_member_expression, - STATE(942), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1138), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [28371] = 18, + sym__semicolon, + [28770] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1729), 1, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(296), 1, + anon_sym_LT, + ACTIONS(1909), 1, + aux_sym_member_expression_token1, + ACTIONS(298), 2, + anon_sym_COLON, + sym__map_operator, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(306), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(1731), 1, - anon_sym_this, - STATE(72), 1, - sym__lhs_expression, - STATE(398), 1, - aux_sym_member_expression_repeat1, - STATE(402), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1139), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [28435] = 18, + sym__semicolon, + [28804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1729), 1, + ACTIONS(416), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(414), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(1731), 1, - anon_sym_this, - STATE(72), 1, - sym__lhs_expression, - STATE(393), 1, - aux_sym_member_expression_repeat1, - STATE(402), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1139), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [28499] = 18, + sym__semicolon, + [28830] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(412), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(410), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, + sym__semicolon, + [28856] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(342), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, + sym__semicolon, + [28882] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(296), 1, + anon_sym_LT, + ACTIONS(1729), 1, + aux_sym_member_expression_token1, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2247), 1, + ACTIONS(1887), 1, + anon_sym_in, + ACTIONS(1903), 2, + anon_sym_COLON, + sym__map_operator, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(306), 6, + anon_sym_RBRACE, + anon_sym_COMMA, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + [28920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(386), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(384), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(2249), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(753), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1159), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [28563] = 18, + sym__semicolon, + [28946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(326), 1, + ACTIONS(488), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(486), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(328), 1, - anon_sym_this, - STATE(34), 1, - aux_sym_member_expression_repeat1, - STATE(101), 1, - sym_member_expression, - STATE(102), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1167), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [28627] = 18, + sym__semicolon, + [28972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1729), 1, + ACTIONS(442), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(440), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(1731), 1, - anon_sym_this, - STATE(72), 1, - sym__lhs_expression, - STATE(396), 1, - aux_sym_member_expression_repeat1, - STATE(402), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1139), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [28691] = 18, + sym__semicolon, + [28998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1729), 1, + ACTIONS(398), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(396), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(1731), 1, - anon_sym_this, - STATE(72), 1, - sym__lhs_expression, - STATE(397), 1, - aux_sym_member_expression_repeat1, - STATE(402), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1139), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [28755] = 18, + sym__semicolon, + [29024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, + ACTIONS(408), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(406), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - STATE(96), 1, - sym__call, - STATE(402), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - STATE(1054), 1, - sym__lhs_expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1133), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [28819] = 18, + sym__semicolon, + [29050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1729), 1, + ACTIONS(340), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(338), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(1731), 1, - anon_sym_this, - STATE(72), 1, - sym__lhs_expression, - STATE(395), 1, - aux_sym_member_expression_repeat1, - STATE(402), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1139), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [28883] = 18, + sym__semicolon, + [29076] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(436), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, + sym__semicolon, + [29102] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2205), 1, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(296), 1, + anon_sym_LT, + ACTIONS(1773), 1, + aux_sym_member_expression_token1, + ACTIONS(298), 2, + anon_sym_COLON, + sym__map_operator, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(306), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(2207), 1, - anon_sym_this, - STATE(681), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, - sym_member_expression, - STATE(942), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1138), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [28947] = 18, + sym__semicolon, + [29136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(326), 1, + ACTIONS(430), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(428), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(328), 1, - anon_sym_this, - STATE(26), 1, - aux_sym_member_expression_repeat1, - STATE(101), 1, - sym_member_expression, - STATE(102), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1167), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [29011] = 18, + sym__semicolon, + [29162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, + ACTIONS(450), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(448), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(607), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1133), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [29075] = 18, + sym__semicolon, + [29188] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, + STATE(381), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(312), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(310), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(606), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1133), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [29139] = 18, + sym__semicolon, + [29218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1729), 1, + ACTIONS(484), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(482), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(1731), 1, - anon_sym_this, - STATE(72), 1, - sym__lhs_expression, - STATE(394), 1, - aux_sym_member_expression_repeat1, - STATE(402), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1139), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [29203] = 18, + sym__semicolon, + [29244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1707), 1, - anon_sym_this, - ACTIONS(1793), 1, + ACTIONS(504), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(502), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - STATE(60), 1, - sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(446), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1149), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [29267] = 18, + sym__semicolon, + [29270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1707), 1, - anon_sym_this, - ACTIONS(1793), 1, + ACTIONS(336), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(334), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - STATE(60), 1, - sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(445), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1149), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [29331] = 18, + sym__semicolon, + [29296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2121), 1, + ACTIONS(472), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(470), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(2123), 1, - anon_sym_this, - STATE(619), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, - sym_member_expression, - STATE(942), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1143), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [29395] = 18, + sym__semicolon, + [29322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1753), 1, + ACTIONS(403), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(400), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(1755), 1, - anon_sym_this, - STATE(60), 1, - sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(447), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1162), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [29459] = 18, + sym__semicolon, + [29348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(368), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(366), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(2231), 1, - anon_sym_this, - STATE(734), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, - sym_member_expression, - STATE(942), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1141), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [29523] = 18, + sym__semicolon, + [29374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, + ACTIONS(360), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(358), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(609), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1133), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [29587] = 18, + sym__semicolon, + [29400] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, + ACTIONS(1911), 1, + anon_sym_QMARK, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(314), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(604), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1133), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [29651] = 18, + sym__semicolon, + [29438] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1911), 1, + anon_sym_QMARK, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(314), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(603), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1133), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [29715] = 18, + sym__semicolon, + [29476] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(316), 1, + aux_sym_member_expression_token1, + ACTIONS(1881), 1, + anon_sym_QMARK, + STATE(381), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(314), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym_identifier, + sym__semicolon, + [29514] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(296), 1, + anon_sym_LT, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2247), 1, + ACTIONS(294), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(306), 5, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(308), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [29546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(390), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(388), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(2249), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(765), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1159), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [29779] = 18, + sym__semicolon, + [29572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, + ACTIONS(480), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(478), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(608), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1133), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [29843] = 18, + sym__semicolon, + [29598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2205), 1, + ACTIONS(496), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(494), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(2207), 1, - anon_sym_this, - STATE(682), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, - sym_member_expression, - STATE(942), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1138), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [29907] = 18, + sym__semicolon, + [29624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(326), 1, + ACTIONS(464), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(462), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(328), 1, - anon_sym_this, - STATE(28), 1, - aux_sym_member_expression_repeat1, - STATE(101), 1, - sym_member_expression, - STATE(102), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1167), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [29971] = 18, + sym__semicolon, + [29650] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(296), 1, + anon_sym_LT, + ACTIONS(1859), 1, + aux_sym_member_expression_token1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1707), 1, - anon_sym_this, - ACTIONS(1793), 1, + ACTIONS(1913), 1, + anon_sym_in, + ACTIONS(1903), 2, + anon_sym_COLON, + sym__map_operator, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(306), 6, + anon_sym_RBRACE, + anon_sym_COMMA, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + [29688] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(492), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(490), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - STATE(60), 1, - sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(442), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1149), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [30035] = 18, + sym__semicolon, + [29714] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(328), 1, + aux_sym_member_expression_token1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2121), 1, - sym_identifier, - ACTIONS(2123), 1, - anon_sym_this, - STATE(612), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, - sym_member_expression, - STATE(942), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1143), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [30099] = 18, + ACTIONS(1915), 1, + anon_sym_QMARK, + STATE(352), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(326), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + sym__eitherUnaryOperator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [29753] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1753), 1, - sym_identifier, - ACTIONS(1755), 1, - anon_sym_this, - STATE(60), 1, - sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(449), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1162), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [30163] = 18, + STATE(352), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(312), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(310), 7, + anon_sym_RBRACE, + anon_sym_COMMA, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [29784] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(326), 1, + ACTIONS(1893), 1, + sym__prefixUnaryOperator, + ACTIONS(1895), 1, + sym__eitherUnaryOperator, + ACTIONS(1917), 1, + anon_sym_COLON, + ACTIONS(1919), 1, + sym__semicolon, + STATE(342), 1, + sym_operator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + STATE(651), 2, + sym__unaryOperator, + sym__binaryOperator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [29825] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(464), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(462), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(328), 1, - anon_sym_this, - STATE(29), 1, - aux_sym_member_expression_repeat1, - STATE(101), 1, - sym_member_expression, - STATE(102), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1167), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [30227] = 18, + sym__semicolon, + [29850] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1707), 1, - anon_sym_this, - ACTIONS(1793), 1, + ACTIONS(1911), 1, + anon_sym_QMARK, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(314), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, sym_identifier, - STATE(60), 1, - sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(440), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1149), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [30291] = 18, + sym__semicolon, + [29885] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1753), 1, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1755), 1, - anon_sym_this, - STATE(60), 1, - sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(451), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1162), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [30355] = 18, + ACTIONS(1923), 1, + anon_sym_COMMA, + ACTIONS(1925), 1, + anon_sym_RBRACK, + STATE(346), 1, + sym__binaryOperator, + STATE(1162), 1, + aux_sym_array_repeat1, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [29928] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(236), 1, - anon_sym_this, - ACTIONS(318), 1, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(1921), 1, sym_identifier, - STATE(35), 1, - aux_sym_member_expression_repeat1, - STATE(60), 1, - sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1124), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [30419] = 18, + ACTIONS(1923), 1, + anon_sym_COMMA, + ACTIONS(1925), 1, + anon_sym_RBRACK, + STATE(346), 1, + sym__binaryOperator, + STATE(1162), 1, + aux_sym_array_repeat1, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [29971] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1707), 1, - anon_sym_this, - ACTIONS(1793), 1, + ACTIONS(1893), 1, + sym__prefixUnaryOperator, + ACTIONS(1895), 1, + sym__eitherUnaryOperator, + ACTIONS(1927), 1, + anon_sym_DASH_GT, + ACTIONS(1929), 1, + sym__semicolon, + STATE(328), 1, + sym_operator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + STATE(651), 2, + sym__unaryOperator, + sym__binaryOperator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [30012] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(476), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(474), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - STATE(60), 1, - sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(443), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1149), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [30483] = 18, + sym__semicolon, + [30037] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym__prefixUnaryOperator, + ACTIONS(1895), 1, + sym__eitherUnaryOperator, + ACTIONS(1927), 1, + anon_sym_DASH_GT, + ACTIONS(1931), 1, + sym__semicolon, + STATE(366), 1, + sym_operator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + STATE(651), 2, + sym__unaryOperator, + sym__binaryOperator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [30078] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1707), 1, - anon_sym_this, - ACTIONS(1793), 1, - sym_identifier, - STATE(60), 1, - sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(444), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1149), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [30547] = 18, + ACTIONS(1893), 1, + sym__prefixUnaryOperator, + ACTIONS(1895), 1, + sym__eitherUnaryOperator, + ACTIONS(1933), 1, + anon_sym_COLON, + ACTIONS(1935), 1, + sym__semicolon, + STATE(331), 1, + sym_operator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + STATE(651), 2, + sym__unaryOperator, + sym__binaryOperator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [30119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1753), 1, + ACTIONS(390), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(388), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(1755), 1, - anon_sym_this, - STATE(60), 1, - sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(452), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1162), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [30611] = 18, + sym__semicolon, + [30144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(326), 1, + ACTIONS(360), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(358), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(328), 1, - anon_sym_this, - STATE(30), 1, - aux_sym_member_expression_repeat1, - STATE(101), 1, - sym_member_expression, - STATE(102), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1167), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [30675] = 18, + sym__semicolon, + [30169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1753), 1, + ACTIONS(364), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(362), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(1755), 1, - anon_sym_this, - STATE(60), 1, - sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(448), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1162), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [30739] = 18, + sym__semicolon, + [30194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(998), 1, - anon_sym_this, - ACTIONS(1769), 1, + ACTIONS(368), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(366), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - STATE(101), 1, - sym_member_expression, - STATE(102), 1, - sym__lhs_expression, - STATE(424), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1151), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [30803] = 18, + sym__semicolon, + [30219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2121), 1, + ACTIONS(403), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(400), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(2123), 1, - anon_sym_this, - STATE(617), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, - sym_member_expression, - STATE(942), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1143), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [30867] = 18, + sym__semicolon, + [30244] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(336), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(334), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, + sym__semicolon, + [30269] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(296), 1, + anon_sym_LT, + ACTIONS(1729), 1, + aux_sym_member_expression_token1, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(1887), 1, + anon_sym_in, + ACTIONS(294), 2, + anon_sym_LPAREN, + anon_sym_RBRACE, + ACTIONS(1903), 2, + anon_sym_COLON, + sym__map_operator, + ACTIONS(306), 4, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [30306] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1853), 1, + anon_sym_COLON, + ACTIONS(434), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(432), 10, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(2231), 1, - anon_sym_this, - STATE(735), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, - sym_member_expression, - STATE(942), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1141), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [30931] = 18, + sym__semicolon, + [30333] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1893), 1, + sym__prefixUnaryOperator, + ACTIONS(1895), 1, + sym__eitherUnaryOperator, + ACTIONS(1927), 1, + anon_sym_DASH_GT, + ACTIONS(1937), 1, + sym__semicolon, + STATE(363), 1, + sym_operator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + STATE(651), 2, + sym__unaryOperator, + sym__binaryOperator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [30374] = 3, + ACTIONS(294), 1, + sym_escape_sequence, + ACTIONS(1795), 1, + sym_comment, + ACTIONS(296), 16, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(59), 1, + anon_sym_this, anon_sym_null, - ACTIONS(75), 1, aux_sym_integer_token1, - ACTIONS(77), 1, aux_sym_integer_token2, - ACTIONS(79), 1, aux_sym_float_token1, - ACTIONS(81), 1, aux_sym_float_token2, - ACTIONS(85), 1, + anon_sym_true, + anon_sym_false, aux_sym_string_token1, - ACTIONS(87), 1, + aux_sym_string_token2, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2121), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, sym_identifier, - ACTIONS(2123), 1, - anon_sym_this, - STATE(621), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, - sym_member_expression, - STATE(942), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1143), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [30995] = 18, + [30399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2121), 1, + ACTIONS(340), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(338), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(2123), 1, - anon_sym_this, - STATE(620), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, - sym_member_expression, - STATE(942), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1143), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [31059] = 18, + sym__semicolon, + [30424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(412), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(410), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(2231), 1, - anon_sym_this, - STATE(733), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, - sym_member_expression, - STATE(942), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1141), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [31123] = 18, + sym__semicolon, + [30449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(246), 1, + ACTIONS(416), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(414), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(250), 1, - anon_sym_this, - STATE(18), 1, - aux_sym_member_expression_repeat1, - STATE(60), 1, - sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1152), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [31187] = 18, + sym__semicolon, + [30474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2205), 1, + ACTIONS(394), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(392), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(2207), 1, - anon_sym_this, - STATE(684), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, - sym_member_expression, - STATE(942), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1138), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [31251] = 18, + sym__semicolon, + [30499] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(376), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(374), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, + sym__semicolon, + [30524] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym__prefixUnaryOperator, + ACTIONS(1895), 1, + sym__eitherUnaryOperator, + ACTIONS(1927), 1, + anon_sym_DASH_GT, + ACTIONS(1939), 1, + sym__semicolon, + STATE(353), 1, + sym_operator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + STATE(651), 2, + sym__unaryOperator, + sym__binaryOperator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [30565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(304), 7, + anon_sym_this, anon_sym_null, - ACTIONS(75), 1, aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2247), 1, - sym_identifier, - ACTIONS(2249), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(760), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, anon_sym_true, anon_sym_false, - STATE(1159), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [31315] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, + sym_identifier, + ACTIONS(302), 10, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, + anon_sym_DASH_GT, + anon_sym_LT, + anon_sym_GT, aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, aux_sym_float_token2, - ACTIONS(85), 1, aux_sym_string_token1, - ACTIONS(87), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(236), 1, - anon_sym_this, - ACTIONS(318), 1, + [30590] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(372), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(370), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - STATE(37), 1, - aux_sym_member_expression_repeat1, - STATE(60), 1, - sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1124), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [31379] = 18, + sym__semicolon, + [30615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(246), 1, + ACTIONS(356), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(354), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(250), 1, - anon_sym_this, - STATE(20), 1, - aux_sym_member_expression_repeat1, - STATE(60), 1, - sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1152), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [31443] = 18, + sym__semicolon, + [30640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1737), 1, - anon_sym_this, - ACTIONS(2329), 1, + ACTIONS(352), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(350), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - STATE(402), 1, - sym_member_expression, - STATE(820), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1174), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [31507] = 18, + sym__semicolon, + [30665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2121), 1, + ACTIONS(504), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(502), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(2123), 1, - anon_sym_this, - STATE(615), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, - sym_member_expression, - STATE(942), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1143), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [31571] = 18, + sym__semicolon, + [30690] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(1923), 1, + anon_sym_COMMA, + ACTIONS(1941), 1, sym_identifier, - ACTIONS(2231), 1, - anon_sym_this, - STATE(701), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, - sym_member_expression, - STATE(942), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1141), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [31635] = 18, + ACTIONS(1943), 1, + anon_sym_RBRACK, + STATE(346), 1, + sym__binaryOperator, + STATE(1114), 1, + aux_sym_array_repeat1, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [30733] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(430), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(428), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, + sym__semicolon, + [30758] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(348), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(346), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, + sym__semicolon, + [30783] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(436), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, + sym__semicolon, + [30808] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(1923), 1, + anon_sym_COMMA, + ACTIONS(1941), 1, sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - STATE(1093), 1, - sym__lhs_expression, - STATE(1146), 1, - sym_type_param, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1133), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [31699] = 18, + ACTIONS(1943), 1, + anon_sym_RBRACK, + STATE(346), 1, + sym__binaryOperator, + STATE(1114), 1, + aux_sym_array_repeat1, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [30851] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(496), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(494), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, + sym__semicolon, + [30876] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(236), 1, - anon_sym_this, - ACTIONS(318), 1, - sym_identifier, - STATE(24), 1, - aux_sym_member_expression_repeat1, - STATE(60), 1, - sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1124), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [31763] = 18, + ACTIONS(1893), 1, + sym__prefixUnaryOperator, + ACTIONS(1895), 1, + sym__eitherUnaryOperator, + ACTIONS(1927), 1, + anon_sym_DASH_GT, + ACTIONS(1945), 1, + sym__semicolon, + STATE(382), 1, + sym_operator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + STATE(651), 2, + sym__unaryOperator, + sym__binaryOperator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [30917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1737), 1, - anon_sym_this, - ACTIONS(2329), 1, + ACTIONS(450), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(448), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - STATE(402), 1, - sym_member_expression, - STATE(822), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1174), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [31827] = 18, + sym__semicolon, + [30942] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(998), 1, - anon_sym_this, - ACTIONS(1769), 1, + STATE(346), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(312), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(310), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - STATE(101), 1, - sym_member_expression, - STATE(102), 1, - sym__lhs_expression, - STATE(426), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1151), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [31891] = 18, + sym__semicolon, + [30971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(246), 1, + ACTIONS(426), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(424), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(250), 1, - anon_sym_this, - STATE(21), 1, - aux_sym_member_expression_repeat1, - STATE(60), 1, - sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1152), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [31955] = 18, + sym__semicolon, + [30996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(246), 1, + ACTIONS(484), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(482), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(250), 1, - anon_sym_this, - STATE(16), 1, - aux_sym_member_expression_repeat1, - STATE(60), 1, - sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1152), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [32019] = 18, + sym__semicolon, + [31021] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(342), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, + sym__semicolon, + [31046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2247), 1, + ACTIONS(442), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(440), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(2249), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(763), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1159), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [32083] = 18, + sym__semicolon, + [31071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1737), 1, - anon_sym_this, - ACTIONS(2329), 1, + ACTIONS(386), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(384), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - STATE(402), 1, - sym_member_expression, - STATE(824), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1174), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [32147] = 18, + sym__semicolon, + [31096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2277), 1, + ACTIONS(492), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(490), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(2283), 1, - anon_sym_this, - STATE(814), 1, - aux_sym_member_expression_repeat1, - STATE(959), 1, - sym_member_expression, - STATE(960), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1164), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [32211] = 18, + sym__semicolon, + [31121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(236), 1, - anon_sym_this, - ACTIONS(318), 1, + ACTIONS(480), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(478), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - STATE(39), 1, - aux_sym_member_expression_repeat1, - STATE(60), 1, - sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1124), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [32275] = 18, + sym__semicolon, + [31146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2277), 1, + ACTIONS(398), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(396), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(2283), 1, - anon_sym_this, - STATE(802), 1, - aux_sym_member_expression_repeat1, - STATE(959), 1, - sym_member_expression, - STATE(960), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1164), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [32339] = 18, + sym__semicolon, + [31171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2277), 1, + ACTIONS(408), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(406), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(2283), 1, - anon_sym_this, - STATE(788), 1, - aux_sym_member_expression_repeat1, - STATE(959), 1, - sym_member_expression, - STATE(960), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1164), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [32403] = 18, + sym__semicolon, + [31196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(470), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, + sym__semicolon, + [31221] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1893), 1, + sym__prefixUnaryOperator, + ACTIONS(1895), 1, + sym__eitherUnaryOperator, + ACTIONS(1947), 1, + anon_sym_COLON, + ACTIONS(1949), 1, + sym__semicolon, + STATE(369), 1, + sym_operator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + STATE(651), 2, + sym__unaryOperator, + sym__binaryOperator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [31262] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(1923), 1, + anon_sym_COMMA, + ACTIONS(1951), 1, + sym_identifier, + ACTIONS(1953), 1, + anon_sym_RBRACK, + STATE(346), 1, + sym__binaryOperator, + STATE(1159), 1, + aux_sym_array_repeat1, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [31305] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(488), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(486), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, + sym__semicolon, + [31330] = 3, + ACTIONS(302), 1, + sym_escape_sequence, + ACTIONS(1795), 1, + sym_comment, + ACTIONS(304), 16, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(59), 1, + anon_sym_this, anon_sym_null, - ACTIONS(75), 1, aux_sym_integer_token1, - ACTIONS(77), 1, aux_sym_integer_token2, - ACTIONS(79), 1, aux_sym_float_token1, - ACTIONS(81), 1, aux_sym_float_token2, - ACTIONS(85), 1, + anon_sym_true, + anon_sym_false, aux_sym_string_token1, - ACTIONS(87), 1, + aux_sym_string_token2, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(236), 1, - anon_sym_this, - ACTIONS(318), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, sym_identifier, - STATE(33), 1, - aux_sym_member_expression_repeat1, - STATE(60), 1, - sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1124), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [32467] = 18, + [31355] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(59), 1, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(1923), 1, + anon_sym_COMMA, + ACTIONS(1951), 1, + sym_identifier, + ACTIONS(1953), 1, + anon_sym_RBRACK, + STATE(346), 1, + sym__binaryOperator, + STATE(1159), 1, + aux_sym_array_repeat1, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [31398] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(296), 7, + anon_sym_this, anon_sym_null, - ACTIONS(75), 1, aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, - sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - STATE(1093), 1, - sym__lhs_expression, - STATE(1127), 1, - sym_type_param, - ACTIONS(83), 2, anon_sym_true, anon_sym_false, - STATE(1133), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [32531] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, + sym_identifier, + ACTIONS(294), 10, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, + anon_sym_DASH_GT, + anon_sym_LT, + anon_sym_GT, aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, aux_sym_float_token2, - ACTIONS(85), 1, aux_sym_string_token1, - ACTIONS(87), 1, aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2277), 1, + [31423] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(316), 1, + aux_sym_member_expression_token1, + ACTIONS(1863), 1, + anon_sym_LBRACK, + ACTIONS(1915), 1, + anon_sym_QMARK, + STATE(352), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(314), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + sym__eitherUnaryOperator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [31462] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym__prefixUnaryOperator, + ACTIONS(1895), 1, + sym__eitherUnaryOperator, + ACTIONS(1927), 1, + anon_sym_DASH_GT, + ACTIONS(1955), 1, + sym__semicolon, + STATE(322), 1, + sym_operator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + STATE(651), 2, + sym__unaryOperator, + sym__binaryOperator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [31503] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(1957), 1, + anon_sym_RPAREN, + ACTIONS(1959), 1, + anon_sym_COMMA, + STATE(346), 1, + sym__binaryOperator, + STATE(1163), 1, + aux_sym__arg_list_repeat1, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [31543] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(296), 1, + anon_sym_LT, + ACTIONS(1825), 1, + aux_sym_member_expression_token1, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1887), 1, + anon_sym_in, + ACTIONS(1961), 2, + anon_sym_COLON, + sym__map_operator, + ACTIONS(306), 4, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [31579] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(316), 1, + aux_sym_member_expression_token1, + ACTIONS(1915), 1, + anon_sym_QMARK, + STATE(352), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(314), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + sym__eitherUnaryOperator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [31615] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(316), 1, + aux_sym_member_expression_token1, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1963), 1, + anon_sym_QMARK, + STATE(386), 1, + sym__binaryOperator, + ACTIONS(314), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [31653] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(316), 1, + aux_sym_member_expression_token1, + ACTIONS(1915), 1, + anon_sym_QMARK, + STATE(352), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(314), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + sym__eitherUnaryOperator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [31689] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(298), 1, + anon_sym_COLON, + ACTIONS(434), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(432), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(2283), 1, - anon_sym_this, - STATE(806), 1, - aux_sym_member_expression_repeat1, - STATE(959), 1, - sym_member_expression, - STATE(960), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1164), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [32595] = 18, + sym__semicolon, + [31715] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(1923), 1, + anon_sym_COMMA, + ACTIONS(1941), 1, + sym_identifier, + ACTIONS(1943), 1, + anon_sym_RBRACK, + STATE(346), 1, + sym__binaryOperator, + STATE(1114), 1, + aux_sym_array_repeat1, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [31755] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(1923), 1, + anon_sym_COMMA, + ACTIONS(1951), 1, + sym_identifier, + ACTIONS(1953), 1, + anon_sym_RBRACK, + STATE(346), 1, + sym__binaryOperator, + STATE(1159), 1, + aux_sym_array_repeat1, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [31795] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(352), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(312), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(310), 7, + anon_sym_RBRACE, + anon_sym_COMMA, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [31823] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + STATE(386), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(310), 6, + anon_sym_RBRACE, + anon_sym_COMMA, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(312), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [31853] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(1959), 1, + anon_sym_COMMA, + ACTIONS(1965), 1, + anon_sym_RPAREN, + STATE(346), 1, + sym__binaryOperator, + STATE(1117), 1, + aux_sym__arg_list_repeat1, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [31893] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(352), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(312), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(310), 7, + anon_sym_RBRACE, + anon_sym_COMMA, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [31921] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2205), 1, - sym_identifier, - ACTIONS(2207), 1, - anon_sym_this, - STATE(689), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, - sym_member_expression, - STATE(942), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1138), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [32659] = 18, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1911), 1, + anon_sym_QMARK, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(326), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [31957] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(296), 1, + anon_sym_LT, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1737), 1, - anon_sym_this, - ACTIONS(2329), 1, - sym_identifier, - STATE(402), 1, - sym_member_expression, - STATE(819), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1174), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [32723] = 18, + ACTIONS(1913), 1, + anon_sym_in, + ACTIONS(1967), 1, + aux_sym_member_expression_token1, + ACTIONS(1961), 2, + anon_sym_COLON, + sym__map_operator, + ACTIONS(306), 4, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [31993] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(998), 1, - anon_sym_this, - ACTIONS(1769), 1, - sym_identifier, - STATE(101), 1, - sym_member_expression, - STATE(102), 1, - sym__lhs_expression, - STATE(421), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1151), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [32787] = 18, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(1959), 1, + anon_sym_COMMA, + ACTIONS(1965), 1, + anon_sym_RPAREN, + STATE(346), 1, + sym__binaryOperator, + STATE(1117), 1, + aux_sym__arg_list_repeat1, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [32033] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2277), 1, + ACTIONS(328), 1, + aux_sym_member_expression_token1, + ACTIONS(1885), 1, + sym__eitherUnaryOperator, + ACTIONS(1915), 1, + anon_sym_QMARK, + STATE(352), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(326), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [32071] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(2283), 1, - anon_sym_this, - STATE(798), 1, - aux_sym_member_expression_repeat1, - STATE(959), 1, - sym_member_expression, - STATE(960), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1164), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [32851] = 18, + ACTIONS(1923), 1, + anon_sym_COMMA, + ACTIONS(1925), 1, + anon_sym_RBRACK, + STATE(346), 1, + sym__binaryOperator, + STATE(1162), 1, + aux_sym_array_repeat1, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [32111] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(328), 1, + aux_sym_member_expression_token1, + ACTIONS(1915), 1, + anon_sym_QMARK, + STATE(352), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(326), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + sym__eitherUnaryOperator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [32147] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2277), 1, - sym_identifier, - ACTIONS(2283), 1, - anon_sym_this, - STATE(777), 1, - aux_sym_member_expression_repeat1, - STATE(959), 1, - sym_member_expression, - STATE(960), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1164), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [32915] = 18, + STATE(386), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(310), 6, + anon_sym_RBRACE, + anon_sym_COMMA, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(312), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [32177] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1737), 1, - anon_sym_this, - ACTIONS(2329), 1, - sym_identifier, - STATE(402), 1, - sym_member_expression, - STATE(828), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1174), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [32979] = 18, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(1959), 1, + anon_sym_COMMA, + ACTIONS(1969), 1, + anon_sym_RPAREN, + STATE(346), 1, + sym__binaryOperator, + STATE(1143), 1, + aux_sym__arg_list_repeat1, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [32217] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(296), 1, + anon_sym_LT, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(308), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(306), 7, + anon_sym_RBRACE, + anon_sym_COMMA, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [32247] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(316), 1, + aux_sym_member_expression_token1, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1963), 1, + anon_sym_QMARK, + STATE(386), 1, + sym__binaryOperator, + ACTIONS(314), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [32285] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(296), 1, + anon_sym_LT, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2247), 1, - sym_identifier, - ACTIONS(2249), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(757), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1159), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [33043] = 18, + ACTIONS(308), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(306), 7, + anon_sym_RBRACE, + anon_sym_COMMA, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [32315] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2229), 1, - sym_identifier, - ACTIONS(2231), 1, - anon_sym_this, - STATE(739), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, - sym_member_expression, - STATE(942), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1141), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [33107] = 18, + ACTIONS(328), 1, + aux_sym_member_expression_token1, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1963), 1, + anon_sym_QMARK, + STATE(386), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(326), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [32353] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(328), 1, + aux_sym_member_expression_token1, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, - sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - STATE(96), 1, - sym__call, - STATE(402), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - STATE(1059), 1, - sym__lhs_expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1133), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [33171] = 18, + ACTIONS(1963), 1, + anon_sym_QMARK, + STATE(386), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(326), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [32391] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(998), 1, - anon_sym_this, - ACTIONS(1769), 1, - sym_identifier, - STATE(101), 1, - sym_member_expression, - STATE(102), 1, - sym__lhs_expression, - STATE(428), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1151), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [33235] = 18, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(296), 1, + anon_sym_LT, + ACTIONS(1859), 1, + aux_sym_member_expression_token1, + ACTIONS(1903), 2, + anon_sym_COLON, + sym__map_operator, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(306), 6, + anon_sym_RBRACE, + anon_sym_COMMA, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + [32423] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(1959), 1, + anon_sym_COMMA, + ACTIONS(1969), 1, + anon_sym_RPAREN, + STATE(346), 1, + sym__binaryOperator, + STATE(1143), 1, + aux_sym__arg_list_repeat1, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [32463] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(296), 1, + anon_sym_LT, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(236), 1, - anon_sym_this, - ACTIONS(318), 1, - sym_identifier, - STATE(32), 1, - aux_sym_member_expression_repeat1, - STATE(60), 1, - sym_member_expression, - STATE(72), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1124), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [33299] = 18, + ACTIONS(1887), 1, + anon_sym_in, + ACTIONS(1967), 1, + aux_sym_member_expression_token1, + ACTIONS(1961), 2, + anon_sym_COLON, + sym__map_operator, + ACTIONS(306), 4, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [32499] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2205), 1, - sym_identifier, - ACTIONS(2207), 1, - anon_sym_this, - STATE(690), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, - sym_member_expression, - STATE(942), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1138), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [33363] = 18, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(1959), 1, + anon_sym_COMMA, + ACTIONS(1971), 1, + anon_sym_RPAREN, + STATE(346), 1, + sym__binaryOperator, + STATE(1155), 1, + aux_sym__arg_list_repeat1, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [32539] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2247), 1, - sym_identifier, - ACTIONS(2249), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(754), 1, - aux_sym_member_expression_repeat1, - STATE(830), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1159), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [33427] = 18, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(1959), 1, + anon_sym_COMMA, + ACTIONS(1971), 1, + anon_sym_RPAREN, + STATE(346), 1, + sym__binaryOperator, + STATE(1155), 1, + aux_sym__arg_list_repeat1, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [32579] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(1957), 1, + anon_sym_RPAREN, + ACTIONS(1959), 1, + anon_sym_COMMA, + STATE(346), 1, + sym__binaryOperator, + STATE(1163), 1, + aux_sym__arg_list_repeat1, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [32619] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(316), 1, + aux_sym_member_expression_token1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2247), 1, - sym_identifier, - ACTIONS(2249), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - STATE(1012), 1, - sym__lhs_expression, - STATE(1245), 1, - sym_function_arg, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1159), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [33491] = 18, + ACTIONS(1973), 1, + anon_sym_QMARK, + STATE(370), 1, + sym__binaryOperator, + ACTIONS(314), 2, + anon_sym_COLON, + sym__eitherUnaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [32657] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, - sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(715), 1, - sym__call, - STATE(975), 1, - sym_string, - STATE(1075), 1, - sym__lhs_expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1133), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [33555] = 18, + STATE(370), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(310), 6, + anon_sym_COLON, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(312), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [32687] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(998), 1, - anon_sym_this, - ACTIONS(1769), 1, + ACTIONS(1853), 1, + sym__map_operator, + ACTIONS(1975), 1, + aux_sym_member_expression_token1, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(306), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - STATE(101), 1, - sym_member_expression, - STATE(102), 1, - sym__lhs_expression, - STATE(427), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1151), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [33619] = 18, + sym__semicolon, + [32715] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(328), 1, + aux_sym_member_expression_token1, + ACTIONS(1863), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, + ACTIONS(1973), 1, + anon_sym_QMARK, + STATE(370), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(326), 2, + anon_sym_COLON, + sym__eitherUnaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [32753] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1853), 1, + sym__map_operator, + ACTIONS(1977), 1, + aux_sym_member_expression_token1, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(306), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - STATE(1093), 1, - sym__lhs_expression, - STATE(1248), 1, - sym_type_param, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1133), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [33683] = 18, + sym__semicolon, + [32781] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2229), 1, - sym_identifier, - ACTIONS(2231), 1, - anon_sym_this, - STATE(746), 1, - aux_sym_member_expression_repeat1, - STATE(941), 1, - sym_member_expression, - STATE(942), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1141), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [33747] = 18, + ACTIONS(1911), 1, + anon_sym_QMARK, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(326), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [32817] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1911), 1, + anon_sym_QMARK, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(326), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [32850] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(998), 1, - anon_sym_this, - ACTIONS(1769), 1, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1979), 1, + anon_sym_QMARK, + STATE(348), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(326), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [32885] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(298), 1, + sym__map_operator, + ACTIONS(1981), 1, + aux_sym_member_expression_token1, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(306), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - STATE(101), 1, - sym_member_expression, - STATE(102), 1, - sym__lhs_expression, - STATE(425), 1, - aux_sym_member_expression_repeat1, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1151), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [33811] = 17, + sym__semicolon, + [32912] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, + ACTIONS(298), 1, + sym__map_operator, + ACTIONS(1983), 1, + aux_sym_member_expression_token1, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(306), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - STATE(1007), 1, - sym__lhs_expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1133), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [33872] = 17, + sym__semicolon, + [32939] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(328), 1, + aux_sym_member_expression_token1, + ACTIONS(1973), 1, + anon_sym_QMARK, + STATE(370), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(326), 2, + anon_sym_COLON, + sym__eitherUnaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [32974] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, - sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - STATE(983), 1, - sym__lhs_expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1133), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [33933] = 17, + ACTIONS(1979), 1, + anon_sym_QMARK, + STATE(348), 1, + sym__binaryOperator, + ACTIONS(314), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [33009] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, - sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - STATE(1121), 1, - sym__lhs_expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1133), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [33994] = 17, + STATE(364), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(310), 5, + anon_sym_COLON, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(312), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [33038] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(326), 1, + anon_sym_COLON, + ACTIONS(328), 1, + aux_sym_member_expression_token1, + ACTIONS(1885), 1, + sym__eitherUnaryOperator, + ACTIONS(1973), 1, + anon_sym_QMARK, + STATE(370), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [33075] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(1957), 1, + anon_sym_RPAREN, + ACTIONS(1959), 1, + anon_sym_COMMA, + STATE(346), 1, + sym__binaryOperator, + STATE(1163), 1, + aux_sym__arg_list_repeat1, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [33112] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(296), 1, + anon_sym_LT, + ACTIONS(1773), 1, + aux_sym_member_expression_token1, + ACTIONS(1985), 2, + anon_sym_COLON, + sym__map_operator, + ACTIONS(306), 5, + anon_sym_RBRACE, + anon_sym_COMMA, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [33143] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, - sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - STATE(995), 1, - sym__lhs_expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1133), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [34055] = 17, + STATE(348), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(312), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(310), 6, + anon_sym_RBRACE, + anon_sym_COMMA, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [33172] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(370), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(310), 6, + anon_sym_COLON, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(312), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [33199] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(316), 1, + aux_sym_member_expression_token1, + ACTIONS(1973), 1, + anon_sym_QMARK, + STATE(370), 1, + sym__binaryOperator, + ACTIONS(314), 2, + anon_sym_COLON, + sym__eitherUnaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [33234] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + STATE(348), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(312), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(310), 6, + anon_sym_RBRACE, + anon_sym_COMMA, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [33263] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, - sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - STATE(1005), 1, - sym__lhs_expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1133), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [34116] = 17, + ACTIONS(316), 1, + aux_sym_member_expression_token1, + ACTIONS(1973), 1, + anon_sym_QMARK, + STATE(370), 1, + sym__binaryOperator, + ACTIONS(314), 2, + anon_sym_COLON, + sym__eitherUnaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [33298] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, - sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - STATE(1002), 1, - sym__lhs_expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1133), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [34177] = 17, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1911), 1, + anon_sym_QMARK, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(1987), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [33333] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1729), 1, - sym_identifier, - ACTIONS(1731), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(479), 1, - sym__lhs_expression, - STATE(975), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1139), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [34238] = 17, + ACTIONS(1911), 1, + anon_sym_QMARK, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(1987), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [33368] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, - sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - STATE(1014), 1, - sym__lhs_expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1133), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [34299] = 17, + STATE(370), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(310), 6, + anon_sym_COLON, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(312), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [33395] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, - sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - STATE(990), 1, - sym__lhs_expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1133), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [34360] = 17, + ACTIONS(1979), 1, + anon_sym_QMARK, + STATE(348), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(326), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [33430] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, - sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - STATE(1017), 1, - sym__lhs_expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1133), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [34421] = 17, + ACTIONS(314), 1, + anon_sym_COLON, + ACTIONS(316), 1, + aux_sym_member_expression_token1, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1989), 1, + anon_sym_QMARK, + STATE(364), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [33467] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, - sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - STATE(1119), 1, - sym__lhs_expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1133), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [34482] = 5, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + STATE(364), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(310), 5, + anon_sym_COLON, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(312), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [33496] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2351), 1, - anon_sym_EQ, - STATE(84), 1, - sym__assignmentOperator, - ACTIONS(2347), 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(2349), 15, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1979), 1, + anon_sym_QMARK, + STATE(348), 1, + sym__binaryOperator, + ACTIONS(314), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [33531] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(1959), 1, + anon_sym_COMMA, + ACTIONS(1971), 1, anon_sym_RPAREN, - anon_sym_LBRACE, + STATE(346), 1, + sym__binaryOperator, + STATE(1155), 1, + aux_sym__arg_list_repeat1, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [33568] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(296), 1, + anon_sym_LT, + ACTIONS(1909), 1, + aux_sym_member_expression_token1, + ACTIONS(1985), 2, + anon_sym_COLON, + sym__map_operator, + ACTIONS(306), 5, + anon_sym_RBRACE, + anon_sym_COMMA, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [33599] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(328), 1, + aux_sym_member_expression_token1, + ACTIONS(1963), 1, + anon_sym_QMARK, + STATE(386), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(326), 2, anon_sym_RBRACE, + anon_sym_COMMA, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [33634] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(326), 1, anon_sym_COLON, + ACTIONS(328), 1, + aux_sym_member_expression_token1, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1989), 1, + anon_sym_QMARK, + STATE(364), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [33671] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1991), 1, anon_sym_COMMA, - anon_sym_LBRACK, + ACTIONS(1993), 1, anon_sym_RBRACK, - anon_sym_DOT, + STATE(1161), 1, + aux_sym_map_repeat1, + ACTIONS(432), 6, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, + ACTIONS(434), 6, + aux_sym_member_expression_token1, anon_sym_QMARK, - anon_sym_EQ_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - sym__semicolon, - [34519] = 17, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [33700] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, - sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - STATE(1013), 1, - sym__lhs_expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1133), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [34580] = 17, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(1959), 1, + anon_sym_COMMA, + ACTIONS(1965), 1, + anon_sym_RPAREN, + STATE(346), 1, + sym__binaryOperator, + STATE(1117), 1, + aux_sym__arg_list_repeat1, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [33737] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(326), 1, + anon_sym_COLON, + ACTIONS(328), 1, + aux_sym_member_expression_token1, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, - sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - STATE(1000), 1, - sym__lhs_expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1133), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [34641] = 17, + ACTIONS(1989), 1, + anon_sym_QMARK, + STATE(364), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [33774] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2283), 1, - anon_sym_this, - ACTIONS(2353), 1, - sym_identifier, - STATE(975), 1, - sym_string, - STATE(1024), 1, - sym_member_expression, - STATE(1031), 1, - sym__lhs_expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1164), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [34702] = 17, + STATE(386), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(310), 6, + anon_sym_RBRACE, + anon_sym_COMMA, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(312), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [33801] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(1749), 1, - sym_identifier, - ACTIONS(1751), 1, - anon_sym_this, - STATE(402), 1, - sym_member_expression, - STATE(975), 1, - sym_string, - STATE(998), 1, - sym__lhs_expression, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1133), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [34763] = 4, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(1959), 1, + anon_sym_COMMA, + ACTIONS(1969), 1, + anon_sym_RPAREN, + STATE(346), 1, + sym__binaryOperator, + STATE(1143), 1, + aux_sym__arg_list_repeat1, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [33838] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2355), 1, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1911), 1, + anon_sym_QMARK, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, anon_sym_EQ, - ACTIONS(483), 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(480), 15, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(1995), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [33873] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1991), 1, anon_sym_COMMA, + ACTIONS(1997), 1, + anon_sym_RBRACK, + STATE(1156), 1, + aux_sym_map_repeat1, + ACTIONS(432), 6, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, + ACTIONS(434), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [33902] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(314), 1, + anon_sym_COLON, + ACTIONS(316), 1, + aux_sym_member_expression_token1, + ACTIONS(1857), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, + ACTIONS(1989), 1, anon_sym_QMARK, - anon_sym_EQ_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - sym__semicolon, - [34797] = 4, + STATE(364), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [33939] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(428), 1, - anon_sym_COLON, - ACTIONS(426), 7, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(424), 16, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1991), 1, anon_sym_COMMA, - anon_sym_LBRACK, + ACTIONS(1999), 1, anon_sym_RBRACK, - anon_sym_DOT, + STATE(1165), 1, + aux_sym_map_repeat1, + ACTIONS(432), 6, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym_identifier, + ACTIONS(434), 6, + aux_sym_member_expression_token1, 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, - sym__semicolon, - [34831] = 17, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [33968] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2357), 1, - sym_identifier, - ACTIONS(2359), 1, + ACTIONS(1911), 1, + anon_sym_QMARK, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(1995), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34003] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(316), 1, + aux_sym_member_expression_token1, + ACTIONS(1963), 1, + anon_sym_QMARK, + STATE(386), 1, + sym__binaryOperator, + ACTIONS(314), 2, anon_sym_RBRACE, - STATE(119), 1, - sym_pair, - STATE(1123), 1, - sym_structure_type_pair, - STATE(1252), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1273), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [34891] = 3, + anon_sym_COMMA, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34038] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(426), 7, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(424), 17, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(1857), 1, anon_sym_LBRACK, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2001), 1, anon_sym_RBRACK, - anon_sym_DOT, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34072] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1911), 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, + ACTIONS(2003), 1, sym__semicolon, - [34923] = 3, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34106] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(474), 7, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(472), 17, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(1857), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, + ACTIONS(1911), 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, + ACTIONS(2005), 1, sym__semicolon, - [34955] = 16, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34140] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2361), 1, - sym_identifier, - ACTIONS(2363), 1, - anon_sym_RBRACE, - STATE(119), 1, - sym_pair, - STATE(1252), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1273), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [35012] = 6, + ACTIONS(2007), 1, + anon_sym_COLON, + ACTIONS(2009), 1, + anon_sym_QMARK, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34174] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(428), 1, - anon_sym_COLON, - ACTIONS(2365), 1, - anon_sym_DOT, - ACTIONS(2367), 1, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1911), 1, anon_sym_QMARK, - ACTIONS(426), 7, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(424), 13, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - [35049] = 16, + ACTIONS(2005), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34208] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2361), 1, - sym_identifier, - ACTIONS(2369), 1, - anon_sym_RBRACE, - STATE(1068), 1, - sym_pair, - STATE(1252), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1273), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [35106] = 15, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(2009), 1, + anon_sym_QMARK, + ACTIONS(2011), 1, + anon_sym_COLON, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34242] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2361), 1, - sym_identifier, - STATE(1095), 1, - sym_pair, - STATE(1252), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1273), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [35160] = 14, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2013), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34276] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2371), 1, - sym_identifier, - STATE(1102), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1148), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [35212] = 14, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2013), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34310] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2371), 1, - sym_identifier, - STATE(1102), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1169), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [35264] = 14, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2015), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34344] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2371), 1, - sym_identifier, - STATE(1102), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1135), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [35316] = 15, + ACTIONS(2009), 1, + anon_sym_QMARK, + ACTIONS(2011), 1, + anon_sym_COLON, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34378] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2371), 1, - sym_identifier, - STATE(1095), 1, - sym_pair, - STATE(1102), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1303), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [35370] = 14, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(2009), 1, + anon_sym_QMARK, + ACTIONS(2017), 1, + anon_sym_COLON, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34412] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(1857), 1, anon_sym_LBRACK, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(79), 1, - aux_sym_float_token1, - ACTIONS(81), 1, - aux_sym_float_token2, - ACTIONS(85), 1, - aux_sym_string_token1, - ACTIONS(87), 1, - aux_sym_string_token3, - ACTIONS(232), 1, - anon_sym_LBRACE, - ACTIONS(2371), 1, - sym_identifier, - STATE(1102), 1, - sym_string, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - STATE(1177), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [35422] = 5, + ACTIONS(2009), 1, + anon_sym_QMARK, + ACTIONS(2017), 1, + anon_sym_COLON, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34446] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2373), 1, - anon_sym_EQ, - STATE(84), 1, - sym__assignmentOperator, - ACTIONS(2347), 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(2349), 11, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(2009), 1, + anon_sym_QMARK, + ACTIONS(2019), 1, + anon_sym_COLON, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34480] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1857), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - sym__semicolon, - [35455] = 6, - ACTIONS(424), 1, - sym_escape_sequence, - ACTIONS(2289), 1, + ACTIONS(2009), 1, + anon_sym_QMARK, + ACTIONS(2021), 1, + anon_sym_COLON, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34514] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_DOT, - ACTIONS(2379), 1, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(2009), 1, anon_sym_QMARK, - ACTIONS(2375), 2, + ACTIONS(2021), 1, anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(426), 16, - anon_sym_LBRACE, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34548] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1857), 1, 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, - [35490] = 5, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2015), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34582] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2383), 1, - anon_sym_LPAREN, - STATE(954), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(2386), 6, - anon_sym_LBRACE, + ACTIONS(1857), 1, anon_sym_LBRACK, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - ACTIONS(2381), 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, - [35522] = 5, + ACTIONS(2009), 1, + anon_sym_QMARK, + ACTIONS(2019), 1, + anon_sym_COLON, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34616] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(428), 1, - anon_sym_EQ_GT, - ACTIONS(2388), 1, - anon_sym_DOT, - ACTIONS(426), 8, - anon_sym_this, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(2009), 1, + anon_sym_QMARK, + ACTIONS(2023), 1, + anon_sym_COLON, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34650] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1911), 1, + anon_sym_QMARK, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, anon_sym_EQ, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(424), 10, + ACTIONS(1987), 2, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, anon_sym_COMMA, - anon_sym_LBRACK, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34682] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(2009), 1, anon_sym_QMARK, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [35554] = 4, + ACTIONS(2025), 1, + anon_sym_COLON, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34716] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2390), 1, - anon_sym_EQ, - ACTIONS(483), 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(480), 11, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(1857), 1, anon_sym_LBRACK, + ACTIONS(2009), 1, + anon_sym_QMARK, + ACTIONS(2025), 1, + anon_sym_COLON, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34750] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2027), 1, anon_sym_RBRACK, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - sym__semicolon, - [35584] = 3, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34784] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(426), 7, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(424), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_COLON, + ACTIONS(1857), 1, anon_sym_LBRACK, - anon_sym_DOT, + ACTIONS(1911), 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, - [35611] = 6, + ACTIONS(2027), 1, + anon_sym_RBRACK, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34818] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(428), 1, - anon_sym_EQ_GT, - ACTIONS(2392), 1, - anon_sym_DOT, - ACTIONS(2394), 1, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(2009), 1, anon_sym_QMARK, - ACTIONS(426), 7, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(424), 9, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(2029), 1, 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, - [35644] = 3, - ACTIONS(424), 1, - sym_escape_sequence, - ACTIONS(2289), 1, - sym_comment, - ACTIONS(426), 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, - [35669] = 3, - ACTIONS(472), 1, - sym_escape_sequence, - ACTIONS(2289), 1, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34852] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(474), 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, - [35694] = 3, + ACTIONS(2031), 1, + anon_sym_LT, + STATE(978), 1, + sym_type_params, + ACTIONS(536), 5, + sym__prefixUnaryOperator, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(534), 7, + anon_sym_DASH_GT, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [34878] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(424), 2, - anon_sym_LPAREN, + ACTIONS(2031), 1, anon_sym_LT, - ACTIONS(506), 10, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_COMMA, + STATE(974), 1, + sym_type_params, + ACTIONS(530), 5, + sym__prefixUnaryOperator, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(528), 7, + anon_sym_DASH_GT, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [34904] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2001), 1, anon_sym_RBRACK, - anon_sym_DOT, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34938] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(2009), 1, anon_sym_QMARK, - anon_sym_EQ_GT, - sym_identifier, - sym__semicolon, - [35714] = 2, + ACTIONS(2029), 1, + anon_sym_COLON, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [34972] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(694), 10, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [35730] = 2, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(2009), 1, + anon_sym_QMARK, + ACTIONS(2033), 1, + anon_sym_COLON, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35006] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(812), 10, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [35746] = 6, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(2009), 1, + anon_sym_QMARK, + ACTIONS(2035), 1, + anon_sym_COLON, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35040] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2325), 1, - anon_sym_DOT, - ACTIONS(2327), 1, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(2009), 1, anon_sym_QMARK, - ACTIONS(424), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(428), 2, + ACTIONS(2035), 1, anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(506), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35074] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2037), 1, sym__semicolon, - [35770] = 6, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35108] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2396), 1, - anon_sym_DOT, - ACTIONS(2398), 1, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1911), 1, anon_sym_QMARK, - ACTIONS(424), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(428), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(506), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2037), 1, sym__semicolon, - [35794] = 6, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35142] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2396), 1, - anon_sym_DOT, - ACTIONS(2398), 1, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(2009), 1, anon_sym_QMARK, - ACTIONS(424), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(2400), 2, + ACTIONS(2033), 1, anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(506), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - sym_identifier, - [35817] = 6, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35176] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2325), 1, - anon_sym_DOT, - ACTIONS(2327), 1, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(2009), 1, anon_sym_QMARK, - ACTIONS(424), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(2400), 2, + ACTIONS(2039), 1, anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(506), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - sym_identifier, - [35840] = 6, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35210] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2365), 1, - anon_sym_DOT, - ACTIONS(2367), 1, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(2009), 1, anon_sym_QMARK, - ACTIONS(424), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(428), 2, + ACTIONS(2023), 1, anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(506), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [35863] = 8, - ACTIONS(2289), 1, - sym_comment, - ACTIONS(2402), 1, - aux_sym_string_token1, - ACTIONS(2404), 1, - aux_sym_string_token2, - ACTIONS(2406), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2408), 1, - anon_sym_DOLLAR, - ACTIONS(2410), 1, - sym_escape_sequence, - STATE(971), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(1028), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [35890] = 8, - ACTIONS(2289), 1, - sym_comment, - ACTIONS(2406), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2408), 1, - anon_sym_DOLLAR, - ACTIONS(2412), 1, - aux_sym_string_token1, - ACTIONS(2414), 1, - aux_sym_string_token2, - ACTIONS(2416), 1, - sym_escape_sequence, - STATE(969), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(1028), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [35917] = 8, - ACTIONS(2289), 1, - sym_comment, - ACTIONS(2418), 1, - aux_sym_string_token1, - ACTIONS(2420), 1, - aux_sym_string_token2, - ACTIONS(2423), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2426), 1, - anon_sym_DOLLAR, - ACTIONS(2429), 1, - sym_escape_sequence, - STATE(971), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(1028), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [35944] = 6, - ACTIONS(424), 1, - sym_escape_sequence, - ACTIONS(2289), 1, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35244] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_DOT, - ACTIONS(2379), 1, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(2009), 1, anon_sym_QMARK, - ACTIONS(2375), 2, + ACTIONS(2039), 1, anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(426), 4, - aux_sym_string_token1, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - [35967] = 8, - ACTIONS(2289), 1, - sym_comment, - ACTIONS(2406), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2408), 1, - anon_sym_DOLLAR, - ACTIONS(2432), 1, - aux_sym_string_token1, - ACTIONS(2434), 1, - aux_sym_string_token2, - ACTIONS(2436), 1, - sym_escape_sequence, - STATE(974), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(1028), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [35994] = 8, - ACTIONS(2289), 1, - sym_comment, - ACTIONS(2404), 1, - aux_sym_string_token2, - ACTIONS(2406), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2408), 1, - anon_sym_DOLLAR, - ACTIONS(2410), 1, - sym_escape_sequence, - ACTIONS(2438), 1, - aux_sym_string_token1, - STATE(971), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(1028), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [36021] = 3, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35278] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(428), 1, - anon_sym_COLON, - ACTIONS(586), 7, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2041), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35312] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1911), 1, anon_sym_QMARK, - anon_sym_EQ_GT, + ACTIONS(2043), 1, sym__semicolon, - [36037] = 6, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35346] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(428), 1, - anon_sym_EQ_GT, - ACTIONS(2325), 1, - anon_sym_DOT, - ACTIONS(2327), 1, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1911), 1, anon_sym_QMARK, - ACTIONS(2440), 1, - anon_sym_COLON, - ACTIONS(424), 4, + ACTIONS(2041), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LT, - [36059] = 6, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35380] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(428), 1, - anon_sym_EQ_GT, - ACTIONS(2325), 1, - anon_sym_DOT, - ACTIONS(2327), 1, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1911), 1, anon_sym_QMARK, - ACTIONS(2442), 1, - anon_sym_COLON, - ACTIONS(424), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LT, - [36081] = 6, + ACTIONS(2043), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35414] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2396), 1, - anon_sym_DOT, - ACTIONS(2398), 1, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1911), 1, anon_sym_QMARK, - ACTIONS(424), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(506), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2444), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [36103] = 6, + ACTIONS(2045), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35448] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1897), 1, - anon_sym_LPAREN, - ACTIONS(2446), 1, - anon_sym_LT, - STATE(87), 1, - sym__arg_list, - STATE(1001), 1, - sym_type_params, - ACTIONS(620), 4, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DASH_GT, - [36125] = 6, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2045), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35482] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2365), 1, - anon_sym_DOT, - ACTIONS(2367), 1, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(2009), 1, anon_sym_QMARK, - ACTIONS(424), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(506), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2444), 2, + ACTIONS(2047), 1, anon_sym_COLON, - anon_sym_EQ_GT, - [36147] = 6, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35516] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1911), 1, + anon_sym_QMARK, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(1995), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35548] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, - anon_sym_LT, - ACTIONS(2448), 1, - anon_sym_LPAREN, - STATE(87), 1, - sym__arg_list, - STATE(1030), 1, - sym_type_params, - ACTIONS(620), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - [36168] = 3, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(2009), 1, + anon_sym_QMARK, + ACTIONS(2049), 1, + anon_sym_COLON, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35582] = 9, ACTIONS(3), 1, sym_comment, - STATE(1307), 1, - sym__access_identifier, - ACTIONS(2450), 6, - anon_sym_default, - anon_sym_null, - anon_sym_get, - anon_sym_set, - anon_sym_dynamic, - anon_sym_never, - [36183] = 8, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(2009), 1, + anon_sym_QMARK, + ACTIONS(2049), 1, + anon_sym_COLON, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35616] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, - anon_sym_LT, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2454), 1, - anon_sym_extends, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(269), 1, - sym_block, - STATE(1022), 1, - sym_type_params, - STATE(1058), 1, - aux_sym_class_declaration_repeat2, - [36208] = 7, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(2007), 1, + anon_sym_COLON, + ACTIONS(2009), 1, + anon_sym_QMARK, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35650] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_DASH_GT, - ACTIONS(2446), 1, - anon_sym_LT, - ACTIONS(2460), 1, - anon_sym_EQ, - STATE(951), 1, - sym__assignmentOperator, - STATE(1107), 1, - sym_type_params, - ACTIONS(2458), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [36231] = 8, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2051), 1, + anon_sym_RBRACK, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35684] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, - anon_sym_LT, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - ACTIONS(2462), 1, - anon_sym_extends, - STATE(188), 1, - sym_block, - STATE(1019), 1, - sym_type_params, - STATE(1066), 1, - aux_sym_class_declaration_repeat2, - [36256] = 3, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2051), 1, + anon_sym_RBRACK, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35718] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2400), 1, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1979), 1, + anon_sym_QMARK, + ACTIONS(2053), 1, + anon_sym_RBRACE, + STATE(348), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35752] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(364), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(310), 5, anon_sym_COLON, - ACTIONS(586), 6, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(312), 6, + aux_sym_member_expression_token1, anon_sym_QMARK, - anon_sym_EQ_GT, - sym_identifier, - [36271] = 6, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [35778] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(506), 1, - anon_sym_RBRACE, - ACTIONS(2325), 1, - anon_sym_DOT, - ACTIONS(2327), 1, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(2009), 1, anon_sym_QMARK, - ACTIONS(424), 2, + ACTIONS(2047), 1, + anon_sym_COLON, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35812] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 1, anon_sym_LPAREN, + ACTIONS(296), 1, anon_sym_LT, - ACTIONS(2444), 2, + ACTIONS(1967), 1, + aux_sym_member_expression_token1, + ACTIONS(1961), 2, anon_sym_COLON, - anon_sym_EQ_GT, - [36292] = 7, + sym__map_operator, + ACTIONS(306), 4, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [35842] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_DASH_GT, - ACTIONS(2446), 1, - anon_sym_LT, - ACTIONS(2466), 1, - anon_sym_EQ, - STATE(948), 1, - sym__assignmentOperator, - STATE(1107), 1, - sym_type_params, - ACTIONS(2464), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [36315] = 3, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1979), 1, + anon_sym_QMARK, + ACTIONS(2053), 1, + anon_sym_RBRACE, + STATE(348), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35876] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(314), 1, + anon_sym_COLON, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(2009), 1, + anon_sym_QMARK, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35910] = 9, ACTIONS(3), 1, sym_comment, - STATE(1254), 1, - sym__access_identifier, - ACTIONS(2450), 6, - anon_sym_default, - anon_sym_null, - anon_sym_get, - anon_sym_set, - anon_sym_dynamic, - anon_sym_never, - [36330] = 8, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2055), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35944] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, - anon_sym_LT, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - ACTIONS(2468), 1, - anon_sym_extends, - STATE(275), 1, - sym_block, - STATE(1032), 1, - sym_type_params, - STATE(1071), 1, - aux_sym_class_declaration_repeat2, - [36355] = 8, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2057), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [35978] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, - anon_sym_LT, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - ACTIONS(2470), 1, - anon_sym_extends, - STATE(330), 1, - sym_block, - STATE(1029), 1, - sym_type_params, - STATE(1097), 1, - aux_sym_class_declaration_repeat2, - [36380] = 5, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2059), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [36012] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(428), 1, - anon_sym_EQ_GT, - ACTIONS(2472), 1, - anon_sym_DOT, - ACTIONS(2474), 1, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1911), 1, anon_sym_QMARK, - ACTIONS(506), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2057), 1, sym__semicolon, - [36399] = 5, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [36046] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(428), 1, - anon_sym_EQ_GT, - ACTIONS(2476), 1, - anon_sym_DOT, - ACTIONS(2478), 1, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1911), 1, anon_sym_QMARK, - ACTIONS(506), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2055), 1, sym__semicolon, - [36418] = 5, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [36080] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(428), 1, - anon_sym_EQ_GT, - ACTIONS(2480), 1, - anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(326), 1, + anon_sym_COLON, + ACTIONS(328), 1, + aux_sym_member_expression_token1, + ACTIONS(1989), 1, anon_sym_QMARK, - ACTIONS(506), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [36436] = 7, + STATE(364), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [36114] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(314), 1, + anon_sym_COLON, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(2009), 1, + anon_sym_QMARK, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [36148] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, - anon_sym_LT, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(171), 1, - sym_block, - STATE(1072), 1, - aux_sym_class_declaration_repeat2, - STATE(1073), 1, - sym_type_params, - [36458] = 4, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2059), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [36182] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2486), 1, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + STATE(371), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(310), 5, + anon_sym_COLON, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(312), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, anon_sym_EQ, - ACTIONS(2484), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(510), 3, - anon_sym_DOT, + [36210] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1911), 1, anon_sym_QMARK, - anon_sym_EQ_GT, - [36474] = 4, + ACTIONS(2061), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [36244] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, - anon_sym_LT, - STATE(1111), 1, - sym_type_params, - ACTIONS(638), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, + ACTIONS(1979), 1, + anon_sym_QMARK, + STATE(348), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, anon_sym_EQ, - [36490] = 7, + ACTIONS(326), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [36276] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, - anon_sym_LT, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(263), 1, - sym_block, - STATE(1056), 1, - sym_type_params, - STATE(1057), 1, - aux_sym_class_declaration_repeat2, - [36512] = 5, + ACTIONS(314), 1, + anon_sym_COLON, + ACTIONS(316), 1, + aux_sym_member_expression_token1, + ACTIONS(1989), 1, + anon_sym_QMARK, + STATE(364), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [36310] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2063), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [36344] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2400), 1, - anon_sym_EQ_GT, - ACTIONS(2472), 1, - anon_sym_DOT, - ACTIONS(2474), 1, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2061), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [36378] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(348), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(312), 5, anon_sym_QMARK, - ACTIONS(506), 3, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(310), 6, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - sym_identifier, - [36530] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2446), 1, - anon_sym_LT, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2488), 1, - anon_sym_extends, - STATE(278), 1, - sym_block, - STATE(1115), 1, - sym_type_params, - STATE(1116), 1, - aux_sym_interface_declaration_repeat1, - [36552] = 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [36404] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1897), 1, - anon_sym_LPAREN, - STATE(58), 1, - sym__arg_list, - ACTIONS(626), 4, - anon_sym_RPAREN, + ACTIONS(1903), 1, + anon_sym_COLON, + ACTIONS(434), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(432), 7, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DASH_GT, - [36568] = 7, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [36428] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, - anon_sym_LT, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(177), 1, - sym_block, - STATE(1067), 1, - aux_sym_class_declaration_repeat2, - STATE(1087), 1, - sym_type_params, - [36590] = 5, + ACTIONS(1857), 1, + anon_sym_LBRACK, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2003), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [36462] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2492), 1, - anon_sym_DOT, - ACTIONS(2494), 1, + ACTIONS(1883), 1, + sym__eitherUnaryOperator, + ACTIONS(1911), 1, anon_sym_QMARK, - ACTIONS(424), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(2490), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [36608] = 3, + ACTIONS(2063), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [36496] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2444), 1, + ACTIONS(1857), 1, + anon_sym_LBRACK, + STATE(371), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(310), 5, anon_sym_COLON, - ACTIONS(586), 5, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(312), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [36524] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1979), 1, + anon_sym_QMARK, + STATE(348), 1, + sym__binaryOperator, + ACTIONS(314), 2, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DOT, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [36556] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1911), 1, anon_sym_QMARK, - anon_sym_EQ_GT, - [36622] = 7, + ACTIONS(2059), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [36587] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, - anon_sym_LT, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(229), 1, - sym_block, - STATE(1047), 1, - sym_type_params, - STATE(1049), 1, - aux_sym_class_declaration_repeat2, - [36644] = 2, + ACTIONS(2009), 1, + anon_sym_QMARK, + ACTIONS(2049), 1, + anon_sym_COLON, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [36618] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(314), 1, + anon_sym_COLON, + ACTIONS(2009), 1, + anon_sym_QMARK, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [36649] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2003), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [36680] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2013), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [36711] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2061), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [36742] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(683), 6, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LT, - anon_sym_EQ, - [36656] = 7, + ACTIONS(2009), 1, + anon_sym_QMARK, + ACTIONS(2021), 1, + anon_sym_COLON, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [36773] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, - anon_sym_LT, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(277), 1, - sym_block, - STATE(1062), 1, - sym_type_params, - STATE(1063), 1, - aux_sym_class_declaration_repeat2, - [36678] = 4, + ACTIONS(2009), 1, + anon_sym_QMARK, + ACTIONS(2011), 1, + anon_sym_COLON, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [36804] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, - anon_sym_LT, - STATE(111), 1, - sym_type_params, - ACTIONS(638), 4, - anon_sym_RPAREN, + ACTIONS(1903), 1, + sym__map_operator, + ACTIONS(1975), 1, + aux_sym_member_expression_token1, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(306), 6, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DASH_GT, - [36694] = 4, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + [36829] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, - anon_sym_LT, - STATE(1107), 1, - sym_type_params, - ACTIONS(620), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, + STATE(371), 1, + sym__binaryOperator, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(310), 5, + anon_sym_COLON, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(312), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, anon_sym_EQ, - [36710] = 4, + [36854] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, - anon_sym_LT, - STATE(116), 1, - sym_type_params, - ACTIONS(620), 4, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DASH_GT, - [36726] = 7, + ACTIONS(2009), 1, + anon_sym_QMARK, + ACTIONS(2017), 1, + anon_sym_COLON, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [36885] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, + ACTIONS(2009), 1, + anon_sym_QMARK, + ACTIONS(2023), 1, + anon_sym_COLON, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [36916] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(296), 1, anon_sym_LT, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2488), 1, - anon_sym_extends, - STATE(192), 1, - sym_block, - STATE(1069), 1, - sym_type_params, - STATE(1070), 1, - aux_sym_interface_declaration_repeat1, - [36748] = 6, + ACTIONS(2067), 1, + aux_sym_member_expression_token1, + ACTIONS(2065), 2, + anon_sym_COLON, + sym__map_operator, + ACTIONS(306), 3, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [36945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2498), 1, + ACTIONS(1985), 1, anon_sym_COLON, - ACTIONS(2500), 1, + ACTIONS(432), 6, + anon_sym_RBRACE, + anon_sym_COMMA, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(434), 6, + aux_sym_member_expression_token1, anon_sym_QMARK, - ACTIONS(2502), 1, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, anon_sym_EQ, - STATE(949), 1, - sym__assignmentOperator, - ACTIONS(2496), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [36768] = 7, + [36968] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, - anon_sym_LT, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(209), 1, - sym_block, - STATE(1086), 1, - sym_type_params, - STATE(1088), 1, - aux_sym_class_declaration_repeat2, - [36790] = 7, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2063), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [36999] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, + ACTIONS(2009), 1, + anon_sym_QMARK, + ACTIONS(2019), 1, + anon_sym_COLON, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [37030] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(296), 1, anon_sym_LT, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(212), 1, - sym_block, - STATE(1038), 1, - aux_sym_class_declaration_repeat2, - STATE(1079), 1, - sym_type_params, - [36812] = 5, + ACTIONS(1827), 1, + aux_sym_member_expression_token1, + ACTIONS(2065), 2, + anon_sym_COLON, + sym__map_operator, + ACTIONS(306), 3, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [37059] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2400), 1, - anon_sym_EQ_GT, - ACTIONS(2476), 1, - anon_sym_DOT, - ACTIONS(2478), 1, + ACTIONS(1911), 1, anon_sym_QMARK, - ACTIONS(506), 3, - anon_sym_COMMA, + ACTIONS(2015), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [37090] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2009), 1, + anon_sym_QMARK, + ACTIONS(2025), 1, + anon_sym_COLON, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [37121] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2041), 1, + anon_sym_RPAREN, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [37152] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2001), 1, anon_sym_RBRACK, - sym_identifier, - [36830] = 5, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [37183] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2027), 1, + anon_sym_RBRACK, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [37214] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2392), 1, - anon_sym_DOT, - ACTIONS(2394), 1, + ACTIONS(2009), 1, anon_sym_QMARK, - ACTIONS(424), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(2490), 2, + ACTIONS(2033), 1, anon_sym_COLON, - anon_sym_EQ_GT, - [36848] = 7, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [37245] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2057), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [37276] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, - anon_sym_LT, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(185), 1, - sym_block, - STATE(1090), 1, - aux_sym_class_declaration_repeat2, - STATE(1101), 1, - sym_type_params, - [36870] = 6, + ACTIONS(2009), 1, + anon_sym_QMARK, + ACTIONS(2047), 1, + anon_sym_COLON, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [37307] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1897), 1, - anon_sym_LPAREN, - ACTIONS(2446), 1, - anon_sym_LT, - ACTIONS(2504), 1, + ACTIONS(1903), 1, + sym__map_operator, + ACTIONS(1977), 1, + aux_sym_member_expression_token1, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(306), 6, anon_sym_RBRACE, - STATE(87), 1, - sym__arg_list, - STATE(1262), 1, - sym_type_params, - [36889] = 6, + anon_sym_COMMA, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + [37332] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - ACTIONS(2506), 1, - anon_sym_extends, - STATE(296), 1, - sym_block, - STATE(1117), 1, - aux_sym_class_declaration_repeat2, - [36908] = 5, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2005), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [37363] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2460), 1, + ACTIONS(2009), 1, + anon_sym_QMARK, + ACTIONS(2035), 1, + anon_sym_COLON, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [37394] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2055), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [37425] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(540), 6, + sym__prefixUnaryOperator, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, anon_sym_EQ, - ACTIONS(2508), 1, + anon_sym_LT, + ACTIONS(538), 7, anon_sym_DASH_GT, - STATE(951), 1, - sym__assignmentOperator, - ACTIONS(2458), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [36925] = 5, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [37446] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2444), 1, - anon_sym_EQ_GT, - ACTIONS(2476), 1, - anon_sym_DOT, - ACTIONS(2478), 1, + ACTIONS(1911), 1, anon_sym_QMARK, - ACTIONS(506), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [36942] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - ACTIONS(2510), 1, - anon_sym_extends, - STATE(174), 1, - sym_block, - STATE(1106), 1, - aux_sym_class_declaration_repeat2, - [36961] = 5, + ACTIONS(2037), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [37477] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2444), 1, - anon_sym_EQ_GT, - ACTIONS(2480), 1, - anon_sym_DOT, - ACTIONS(2482), 1, + ACTIONS(2009), 1, anon_sym_QMARK, - ACTIONS(506), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [36978] = 3, - ACTIONS(424), 1, - sym_escape_sequence, - ACTIONS(2289), 1, - sym_comment, - ACTIONS(426), 4, - aux_sym_string_token1, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - [36991] = 6, + ACTIONS(2029), 1, + anon_sym_COLON, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [37508] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1871), 1, - anon_sym_COMMA, - ACTIONS(1903), 1, - sym_identifier, - ACTIONS(1905), 1, + ACTIONS(2009), 1, + anon_sym_QMARK, + ACTIONS(2039), 1, + anon_sym_COLON, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [37539] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2043), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [37570] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2051), 1, anon_sym_RBRACK, - ACTIONS(2185), 1, - anon_sym_LBRACK, - STATE(1186), 1, - aux_sym_array_repeat1, - [37010] = 3, - ACTIONS(2289), 1, - sym_comment, - ACTIONS(2514), 1, - sym_escape_sequence, - ACTIONS(2512), 4, - aux_sym_string_token1, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - [37023] = 3, - ACTIONS(2289), 1, - sym_comment, - ACTIONS(2518), 1, - sym_escape_sequence, - ACTIONS(2516), 4, - aux_sym_string_token1, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - [37036] = 3, - ACTIONS(2289), 1, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [37601] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 1, - sym_escape_sequence, - ACTIONS(2520), 4, - aux_sym_string_token1, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - [37049] = 6, + ACTIONS(2007), 1, + anon_sym_COLON, + ACTIONS(2009), 1, + anon_sym_QMARK, + STATE(371), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [37632] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1911), 1, + anon_sym_QMARK, + ACTIONS(2045), 1, + sym__semicolon, + STATE(346), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [37663] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - ACTIONS(2524), 1, - anon_sym_extends, - STATE(253), 1, - sym_block, - STATE(1052), 1, - aux_sym_class_declaration_repeat2, - [37068] = 4, + ACTIONS(1979), 1, + anon_sym_QMARK, + ACTIONS(2053), 1, + anon_sym_RBRACE, + STATE(348), 1, + sym__binaryOperator, + ACTIONS(320), 2, + sym__arithmetic_operator, + sym__bitwise_operator, + ACTIONS(324), 2, + sym__comparison_operator, + anon_sym_EQ, + STATE(649), 2, + sym__assignment_operator, + sym__compound_assignment_operator, + ACTIONS(322), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + [37694] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2448), 1, - anon_sym_LPAREN, - STATE(58), 1, - sym__arg_list, - ACTIONS(626), 3, - anon_sym_RPAREN, + ACTIONS(1983), 1, + aux_sym_member_expression_token1, + ACTIONS(1985), 1, + sym__map_operator, + ACTIONS(306), 5, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DASH_GT, - [37083] = 3, - ACTIONS(2289), 1, - sym_comment, - ACTIONS(2528), 1, - sym_escape_sequence, - ACTIONS(2526), 4, - aux_sym_string_token1, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - [37096] = 6, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [37718] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - ACTIONS(2530), 1, - anon_sym_extends, - STATE(221), 1, - sym_block, - STATE(1082), 1, - aux_sym_class_declaration_repeat2, - [37115] = 5, + ACTIONS(1927), 1, + anon_sym_DASH_GT, + ACTIONS(578), 5, + sym__prefixUnaryOperator, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(576), 6, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [37740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2466), 1, + ACTIONS(548), 5, + sym__prefixUnaryOperator, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, anon_sym_EQ, - ACTIONS(2508), 1, + ACTIONS(546), 7, anon_sym_DASH_GT, - STATE(948), 1, - sym__assignmentOperator, - ACTIONS(2464), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [37132] = 3, - ACTIONS(2289), 1, - sym_comment, - ACTIONS(2534), 1, - sym_escape_sequence, - ACTIONS(2532), 4, - aux_sym_string_token1, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - [37145] = 6, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [37760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1871), 1, - anon_sym_COMMA, - ACTIONS(1883), 1, - sym_identifier, - ACTIONS(1885), 1, - anon_sym_RBRACK, - ACTIONS(2185), 1, - anon_sym_LBRACK, - STATE(1137), 1, - aux_sym_array_repeat1, - [37164] = 5, + ACTIONS(2071), 5, + sym__prefixUnaryOperator, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(2069), 7, + anon_sym_COLON, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [37780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 1, - anon_sym_COLON, - ACTIONS(2540), 1, + ACTIONS(2075), 5, + sym__prefixUnaryOperator, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, anon_sym_EQ, - STATE(947), 1, - sym__assignmentOperator, - ACTIONS(2536), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [37181] = 3, + ACTIONS(2073), 7, + anon_sym_COLON, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [37800] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, - anon_sym_DASH_GT, - ACTIONS(706), 3, - anon_sym_RPAREN, + ACTIONS(1981), 1, + aux_sym_member_expression_token1, + ACTIONS(1985), 1, + sym__map_operator, + ACTIONS(306), 5, anon_sym_RBRACE, anon_sym_COMMA, - [37193] = 5, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [37824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(335), 1, - sym_block, - STATE(1147), 1, - aux_sym_class_declaration_repeat2, - [37209] = 5, + ACTIONS(544), 5, + sym__prefixUnaryOperator, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(542), 7, + anon_sym_DASH_GT, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [37844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(1915), 1, - anon_sym_COMMA, - ACTIONS(1953), 1, - anon_sym_RPAREN, - STATE(1131), 1, - aux_sym__arg_list_repeat1, - [37225] = 3, + ACTIONS(2077), 1, + anon_sym_COLON, + ACTIONS(432), 5, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(434), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [37866] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(1927), 1, anon_sym_DASH_GT, - ACTIONS(698), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [37237] = 3, + ACTIONS(574), 5, + sym__prefixUnaryOperator, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(572), 6, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [37888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(564), 5, + sym__prefixUnaryOperator, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(562), 7, anon_sym_DASH_GT, - ACTIONS(702), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [37249] = 5, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [37908] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, - anon_sym_DASH_GT, - ACTIONS(2544), 1, - anon_sym_RPAREN, - ACTIONS(2547), 1, - anon_sym_COMMA, - STATE(1157), 1, - aux_sym__function_type_args_repeat1, - [37265] = 5, + ACTIONS(1961), 1, + sym__map_operator, + ACTIONS(2080), 1, + aux_sym_member_expression_token1, + ACTIONS(306), 5, + anon_sym_COLON, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [37932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(2549), 1, - sym_identifier, - STATE(1295), 1, - sym_integer, - [37281] = 5, + ACTIONS(560), 5, + sym__prefixUnaryOperator, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(558), 7, + anon_sym_DASH_GT, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [37952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(180), 1, - sym_block, - STATE(1147), 1, - aux_sym_class_declaration_repeat2, - [37297] = 3, + ACTIONS(552), 5, + sym__prefixUnaryOperator, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(550), 7, + anon_sym_DASH_GT, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [37972] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2508), 1, + ACTIONS(1927), 1, anon_sym_DASH_GT, - ACTIONS(698), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [37309] = 3, + ACTIONS(568), 5, + sym__prefixUnaryOperator, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(566), 6, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [37994] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2508), 1, - anon_sym_DASH_GT, - ACTIONS(702), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1961), 1, + sym__map_operator, + ACTIONS(2082), 1, + aux_sym_member_expression_token1, + ACTIONS(306), 5, + anon_sym_COLON, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, anon_sym_EQ, - [37321] = 5, + [38018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(184), 1, - sym_block, - STATE(1074), 1, - aux_sym_class_declaration_repeat2, - [37337] = 3, + ACTIONS(556), 5, + sym__prefixUnaryOperator, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + ACTIONS(554), 7, + anon_sym_DASH_GT, + sym__eitherUnaryOperator, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + sym__semicolon, + [38038] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2508), 1, - anon_sym_DASH_GT, - ACTIONS(706), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2084), 1, + anon_sym_COLON, + ACTIONS(432), 4, + sym__logical_operator, + sym__map_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(434), 6, + aux_sym_member_expression_token1, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, anon_sym_EQ, - [37349] = 5, + [38059] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(187), 1, - sym_block, - STATE(1147), 1, - aux_sym_class_declaration_repeat2, - [37365] = 5, + ACTIONS(2065), 1, + sym__map_operator, + ACTIONS(2087), 1, + aux_sym_member_expression_token1, + ACTIONS(306), 4, + anon_sym_COLON, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [38082] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, - anon_sym_DASH_GT, - ACTIONS(2547), 1, - anon_sym_COMMA, - ACTIONS(2551), 1, - anon_sym_RPAREN, - STATE(1157), 1, - aux_sym__function_type_args_repeat1, - [37381] = 5, - ACTIONS(2289), 1, + ACTIONS(2065), 1, + sym__map_operator, + ACTIONS(2089), 1, + aux_sym_member_expression_token1, + ACTIONS(306), 4, + anon_sym_COLON, + sym__logical_operator, + sym__null_colalese_operator, + sym__range_operator, + ACTIONS(308), 5, + anon_sym_QMARK, + sym__arithmetic_operator, + sym__bitwise_operator, + sym__comparison_operator, + anon_sym_EQ, + [38105] = 8, + ACTIONS(1795), 1, sym_comment, - ACTIONS(2432), 1, - aux_sym_string_token3, - ACTIONS(2553), 1, - aux_sym_string_token4, - ACTIONS(2555), 1, + ACTIONS(2091), 1, + aux_sym_string_token1, + ACTIONS(2093), 1, + aux_sym_string_token2, + ACTIONS(2095), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2097), 1, + anon_sym_DOLLAR, + ACTIONS(2099), 1, + sym_escape_sequence, + STATE(992), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(1037), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [38132] = 8, + ACTIONS(1795), 1, + sym_comment, + ACTIONS(2095), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2097), 1, + anon_sym_DOLLAR, + ACTIONS(2101), 1, + aux_sym_string_token1, + ACTIONS(2103), 1, + aux_sym_string_token2, + ACTIONS(2105), 1, + sym_escape_sequence, + STATE(994), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(1037), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [38159] = 8, + ACTIONS(1795), 1, + sym_comment, + ACTIONS(2095), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2097), 1, + anon_sym_DOLLAR, + ACTIONS(2107), 1, + aux_sym_string_token1, + ACTIONS(2109), 1, + aux_sym_string_token2, + ACTIONS(2111), 1, + sym_escape_sequence, + STATE(995), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(1037), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [38186] = 8, + ACTIONS(1795), 1, + sym_comment, + ACTIONS(2113), 1, + aux_sym_string_token1, + ACTIONS(2115), 1, + aux_sym_string_token2, + ACTIONS(2118), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2121), 1, + anon_sym_DOLLAR, + ACTIONS(2124), 1, + sym_escape_sequence, + STATE(994), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(1037), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [38213] = 8, + ACTIONS(1795), 1, + sym_comment, + ACTIONS(2095), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2097), 1, + anon_sym_DOLLAR, + ACTIONS(2103), 1, + aux_sym_string_token2, + ACTIONS(2105), 1, + sym_escape_sequence, + ACTIONS(2127), 1, + aux_sym_string_token1, + STATE(994), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(1037), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [38240] = 8, + ACTIONS(1795), 1, + sym_comment, + ACTIONS(2095), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2097), 1, + anon_sym_DOLLAR, + ACTIONS(2129), 1, + aux_sym_string_token1, + ACTIONS(2131), 1, + aux_sym_string_token2, + ACTIONS(2133), 1, sym_escape_sequence, - STATE(1085), 1, - aux_sym_string_repeat2, - [37397] = 5, - ACTIONS(3), 1, + STATE(997), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(1037), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [38267] = 8, + ACTIONS(1795), 1, sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(189), 1, - sym_block, - STATE(1147), 1, - aux_sym_class_declaration_repeat2, - [37413] = 5, - ACTIONS(3), 1, + ACTIONS(2095), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2097), 1, + anon_sym_DOLLAR, + ACTIONS(2103), 1, + aux_sym_string_token2, + ACTIONS(2105), 1, + sym_escape_sequence, + ACTIONS(2135), 1, + aux_sym_string_token1, + STATE(994), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(1037), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [38294] = 5, + ACTIONS(294), 1, + sym_escape_sequence, + ACTIONS(1795), 1, sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(196), 1, - sym_block, - STATE(1147), 1, - aux_sym_class_declaration_repeat2, - [37429] = 5, + ACTIONS(1875), 1, + aux_sym_member_expression_token1, + ACTIONS(1873), 2, + anon_sym_COLON, + sym__map_operator, + ACTIONS(296), 4, + aux_sym_string_token1, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [38314] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, + ACTIONS(532), 1, anon_sym_LT, - ACTIONS(2448), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, - STATE(87), 1, + STATE(688), 1, sym__arg_list, - STATE(1217), 1, + STATE(1018), 1, sym_type_params, - [37445] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2460), 1, - anon_sym_EQ, - STATE(951), 1, - sym__assignmentOperator, - ACTIONS(2458), 2, + ACTIONS(528), 4, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - [37459] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(199), 1, - sym_block, - STATE(1078), 1, - aux_sym_class_declaration_repeat2, - [37475] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(206), 1, - sym_block, - STATE(1147), 1, - aux_sym_class_declaration_repeat2, - [37491] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(175), 1, - sym_block, - STATE(1147), 1, - aux_sym_class_declaration_repeat2, - [37507] = 5, + anon_sym_DASH_GT, + [38336] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1897), 1, - anon_sym_LPAREN, - ACTIONS(2446), 1, + ACTIONS(528), 1, + anon_sym_DASH_GT, + ACTIONS(532), 1, anon_sym_LT, - STATE(87), 1, - sym__arg_list, - STATE(1262), 1, + ACTIONS(2141), 1, + anon_sym_EQ, + STATE(112), 1, sym_type_params, - [37523] = 5, + STATE(638), 1, + sym__assignment_operator, + ACTIONS(2139), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [38359] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(506), 1, + ACTIONS(298), 1, + sym__map_operator, + ACTIONS(514), 1, + aux_sym_member_expression_token1, + ACTIONS(2143), 1, anon_sym_COLON, - ACTIONS(2490), 1, - anon_sym_EQ_GT, - ACTIONS(2557), 1, - anon_sym_DOT, - ACTIONS(2559), 1, - anon_sym_QMARK, - [37539] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(231), 1, - sym_block, - STATE(1147), 1, - aux_sym_class_declaration_repeat2, - [37555] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(236), 1, - sym_block, - STATE(1083), 1, - aux_sym_class_declaration_repeat2, - [37571] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(237), 1, - sym_block, - STATE(1147), 1, - aux_sym_class_declaration_repeat2, - [37587] = 5, - ACTIONS(2289), 1, - sym_comment, - ACTIONS(2402), 1, - aux_sym_string_token3, - ACTIONS(2561), 1, - aux_sym_string_token4, - ACTIONS(2563), 1, - sym_escape_sequence, - STATE(1089), 1, - aux_sym_string_repeat2, - [37603] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1871), 1, + ACTIONS(294), 4, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1883), 1, - sym_identifier, - ACTIONS(1885), 1, - anon_sym_RBRACK, - STATE(1137), 1, - aux_sym_array_repeat1, - [37619] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(298), 1, - sym_block, - STATE(1147), 1, - aux_sym_class_declaration_repeat2, - [37635] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(259), 1, - sym_block, - STATE(1147), 1, - aux_sym_class_declaration_repeat2, - [37651] = 5, + anon_sym_DASH_GT, + anon_sym_LT, + [38378] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(586), 1, - anon_sym_EQ_GT, - ACTIONS(636), 1, + ACTIONS(528), 1, + anon_sym_DASH_GT, + ACTIONS(532), 1, + anon_sym_LT, + ACTIONS(2147), 1, + anon_sym_EQ, + STATE(112), 1, + sym_type_params, + STATE(640), 1, + sym__assignment_operator, + ACTIONS(2145), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2565), 1, - anon_sym_RBRACE, - STATE(1170), 1, - aux_sym_map_repeat1, - [37667] = 5, + [38401] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2488), 1, - anon_sym_extends, - STATE(301), 1, - sym_block, - STATE(1112), 1, - aux_sym_interface_declaration_repeat1, - [37683] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2452), 1, + ACTIONS(532), 1, + anon_sym_LT, + ACTIONS(2149), 1, anon_sym_LBRACE, - ACTIONS(2488), 1, + ACTIONS(2151), 1, anon_sym_extends, - STATE(303), 1, - sym_block, - STATE(1153), 1, - aux_sym_interface_declaration_repeat1, - [37699] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(218), 1, - sym_block, - STATE(1147), 1, - aux_sym_class_declaration_repeat2, - [37715] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(179), 1, - sym_block, - STATE(1147), 1, - aux_sym_class_declaration_repeat2, - [37731] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(181), 1, - sym_block, - STATE(1104), 1, - aux_sym_class_declaration_repeat2, - [37747] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, + ACTIONS(2153), 1, anon_sym_implements, - STATE(292), 1, + STATE(184), 1, sym_block, - STATE(1147), 1, + STATE(1032), 1, + sym_type_params, + STATE(1085), 1, aux_sym_class_declaration_repeat2, - [37763] = 5, + [38426] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, + ACTIONS(532), 1, anon_sym_LT, - ACTIONS(2567), 1, + ACTIONS(2155), 1, anon_sym_LPAREN, - STATE(712), 1, + STATE(55), 1, sym__arg_list, - STATE(1239), 1, + STATE(1038), 1, sym_type_params, - [37779] = 5, - ACTIONS(2289), 1, - sym_comment, - ACTIONS(2412), 1, - aux_sym_string_token3, - ACTIONS(2569), 1, - aux_sym_string_token4, - ACTIONS(2571), 1, - sym_escape_sequence, - STATE(1064), 1, - aux_sym_string_repeat2, - [37795] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(506), 1, - anon_sym_RBRACE, - ACTIONS(2444), 1, - anon_sym_EQ_GT, - ACTIONS(2472), 1, - anon_sym_DOT, - ACTIONS(2474), 1, - anon_sym_QMARK, - [37811] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(324), 1, - sym_block, - STATE(1147), 1, - aux_sym_class_declaration_repeat2, - [37827] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(325), 1, - sym_block, - STATE(1098), 1, - aux_sym_class_declaration_repeat2, - [37843] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2542), 1, - anon_sym_DASH_GT, - ACTIONS(2547), 1, + ACTIONS(528), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2573), 1, + anon_sym_DASH_GT, + [38447] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(514), 1, + aux_sym_member_expression_token1, + ACTIONS(294), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(298), 2, + anon_sym_COLON, + sym__map_operator, + ACTIONS(306), 2, anon_sym_RPAREN, - STATE(1188), 1, - aux_sym__function_type_args_repeat1, - [37859] = 5, + anon_sym_COMMA, + [38466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2488), 1, - anon_sym_extends, - STATE(203), 1, - sym_block, - STATE(1153), 1, - aux_sym_interface_declaration_repeat1, - [37875] = 5, + STATE(1185), 1, + sym__access_identifier, + ACTIONS(2157), 6, + anon_sym_default, + anon_sym_null, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_never, + [38481] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 1, + ACTIONS(532), 1, + anon_sym_LT, + ACTIONS(2149), 1, anon_sym_LBRACE, - ACTIONS(2456), 1, + ACTIONS(2153), 1, anon_sym_implements, - STATE(204), 1, + ACTIONS(2159), 1, + anon_sym_extends, + STATE(273), 1, sym_block, - STATE(1147), 1, + STATE(1036), 1, + sym_type_params, + STATE(1059), 1, aux_sym_class_declaration_repeat2, - [37891] = 5, + [38506] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 1, + ACTIONS(532), 1, + anon_sym_LT, + ACTIONS(2149), 1, anon_sym_LBRACE, - ACTIONS(2456), 1, + ACTIONS(2153), 1, anon_sym_implements, - STATE(329), 1, + ACTIONS(2161), 1, + anon_sym_extends, + STATE(269), 1, sym_block, - STATE(1147), 1, + STATE(1024), 1, + sym_type_params, + STATE(1087), 1, aux_sym_class_declaration_repeat2, - [37907] = 5, + [38531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - ACTIONS(2576), 1, - sym_identifier, - STATE(1302), 1, - sym_integer, - [37923] = 5, - ACTIONS(2289), 1, + STATE(1218), 1, + sym__access_identifier, + ACTIONS(2157), 6, + anon_sym_default, + anon_sym_null, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_never, + [38546] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, - aux_sym_string_token3, - ACTIONS(2561), 1, - aux_sym_string_token4, - ACTIONS(2563), 1, - sym_escape_sequence, - STATE(1089), 1, - aux_sym_string_repeat2, - [37939] = 5, + ACTIONS(298), 1, + sym__map_operator, + ACTIONS(514), 1, + aux_sym_member_expression_token1, + ACTIONS(2163), 1, + anon_sym_COLON, + ACTIONS(294), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LT, + [38565] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 1, + ACTIONS(532), 1, + anon_sym_LT, + ACTIONS(2149), 1, anon_sym_LBRACE, - ACTIONS(2456), 1, + ACTIONS(2153), 1, anon_sym_implements, - STATE(225), 1, + ACTIONS(2165), 1, + anon_sym_extends, + STATE(240), 1, sym_block, - STATE(1044), 1, + STATE(1031), 1, + sym_type_params, + STATE(1107), 1, aux_sym_class_declaration_repeat2, - [37955] = 5, + [38590] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 1, + ACTIONS(532), 1, + anon_sym_LT, + ACTIONS(2149), 1, anon_sym_LBRACE, - ACTIONS(2456), 1, - anon_sym_implements, - STATE(256), 1, + ACTIONS(2167), 1, + anon_sym_extends, + STATE(272), 1, sym_block, - STATE(1053), 1, - aux_sym_class_declaration_repeat2, - [37971] = 5, + STATE(1081), 1, + aux_sym_interface_declaration_repeat1, + STATE(1086), 1, + sym_type_params, + [38612] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 1, + ACTIONS(532), 1, + anon_sym_LT, + ACTIONS(2149), 1, anon_sym_LBRACE, - ACTIONS(2456), 1, + ACTIONS(2153), 1, anon_sym_implements, - STATE(227), 1, + STATE(264), 1, sym_block, - STATE(1147), 1, + STATE(1050), 1, aux_sym_class_declaration_repeat2, - [37987] = 5, - ACTIONS(2289), 1, - sym_comment, - ACTIONS(2578), 1, - aux_sym_string_token3, - ACTIONS(2580), 1, - aux_sym_string_token4, - ACTIONS(2583), 1, - sym_escape_sequence, - STATE(1089), 1, - aux_sym_string_repeat2, - [38003] = 5, + STATE(1051), 1, + sym_type_params, + [38634] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 1, + ACTIONS(532), 1, + anon_sym_LT, + ACTIONS(2149), 1, anon_sym_LBRACE, - ACTIONS(2456), 1, + ACTIONS(2153), 1, anon_sym_implements, - STATE(274), 1, + STATE(258), 1, sym_block, - STATE(1147), 1, + STATE(1054), 1, aux_sym_class_declaration_repeat2, - [38019] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2542), 1, - anon_sym_DASH_GT, - ACTIONS(2547), 1, - anon_sym_COMMA, - ACTIONS(2586), 1, - anon_sym_RPAREN, - STATE(1188), 1, - aux_sym__function_type_args_repeat1, - [38035] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2446), 1, - anon_sym_LT, - ACTIONS(2589), 1, - anon_sym_LPAREN, - STATE(142), 1, - sym__function_arg_list, - STATE(1210), 1, + STATE(1055), 1, sym_type_params, - [38051] = 4, + [38656] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, + ACTIONS(532), 1, anon_sym_LT, - STATE(1235), 1, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2167), 1, + anon_sym_extends, + STATE(188), 1, + sym_block, + STATE(1088), 1, sym_type_params, - ACTIONS(2591), 2, - anon_sym_COMMA, - anon_sym_GT, - [38065] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(506), 1, - anon_sym_COLON, - ACTIONS(2490), 1, - anon_sym_EQ_GT, - ACTIONS(2593), 1, - anon_sym_DOT, - ACTIONS(2595), 1, - anon_sym_QMARK, - [38081] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(586), 1, - anon_sym_EQ_GT, - ACTIONS(2597), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - [38093] = 5, + STATE(1090), 1, + aux_sym_interface_declaration_repeat1, + [38678] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, + ACTIONS(532), 1, anon_sym_LT, - ACTIONS(2589), 1, - anon_sym_LPAREN, - STATE(137), 1, - sym__function_arg_list, - STATE(1225), 1, - sym_type_params, - [38109] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2452), 1, + ACTIONS(2149), 1, anon_sym_LBRACE, - ACTIONS(2456), 1, + ACTIONS(2153), 1, anon_sym_implements, - STATE(244), 1, + STATE(259), 1, sym_block, - STATE(1147), 1, + STATE(1096), 1, + sym_type_params, + STATE(1111), 1, aux_sym_class_declaration_repeat2, - [38125] = 5, + [38700] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 1, + ACTIONS(532), 1, + anon_sym_LT, + ACTIONS(2149), 1, anon_sym_LBRACE, - ACTIONS(2456), 1, + ACTIONS(2153), 1, anon_sym_implements, - STATE(311), 1, + STATE(255), 1, sym_block, - STATE(1147), 1, + STATE(1077), 1, aux_sym_class_declaration_repeat2, - [38141] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2446), 1, - anon_sym_LT, - ACTIONS(2589), 1, - anon_sym_LPAREN, - STATE(157), 1, - sym__function_arg_list, - STATE(1204), 1, + STATE(1078), 1, sym_type_params, - [38157] = 5, + [38722] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, - anon_sym_LT, - ACTIONS(2589), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, - STATE(158), 1, - sym__function_arg_list, - STATE(1201), 1, - sym_type_params, - [38173] = 5, + STATE(695), 1, + sym__arg_list, + ACTIONS(546), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DASH_GT, + [38738] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 1, + ACTIONS(532), 1, + anon_sym_LT, + ACTIONS(2149), 1, anon_sym_LBRACE, - ACTIONS(2456), 1, + ACTIONS(2153), 1, anon_sym_implements, - STATE(273), 1, + STATE(202), 1, sym_block, - STATE(1061), 1, + STATE(1099), 1, + sym_type_params, + STATE(1100), 1, aux_sym_class_declaration_repeat2, - [38189] = 3, + [38760] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2599), 1, + ACTIONS(2171), 1, anon_sym_COLON, - ACTIONS(586), 3, + ACTIONS(2173), 1, + anon_sym_QMARK, + ACTIONS(2175), 1, + anon_sym_EQ, + STATE(642), 1, + sym__assignment_operator, + ACTIONS(2169), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ_GT, - [38201] = 2, + [38780] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_EQ, - [38211] = 5, + ACTIONS(532), 1, + anon_sym_LT, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(186), 1, + sym_block, + STATE(1058), 1, + aux_sym_class_declaration_repeat2, + STATE(1060), 1, + sym_type_params, + [38802] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 1, + ACTIONS(532), 1, + anon_sym_LT, + ACTIONS(2149), 1, anon_sym_LBRACE, - ACTIONS(2456), 1, + ACTIONS(2153), 1, anon_sym_implements, - STATE(254), 1, + STATE(200), 1, sym_block, - STATE(1147), 1, + STATE(1097), 1, + sym_type_params, + STATE(1101), 1, aux_sym_class_declaration_repeat2, - [38227] = 3, + [38824] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, - anon_sym_DASH_GT, - ACTIONS(2601), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [38239] = 5, + ACTIONS(532), 1, + anon_sym_LT, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(225), 1, + sym_block, + STATE(1082), 1, + aux_sym_class_declaration_repeat2, + STATE(1102), 1, + sym_type_params, + [38846] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 1, + ACTIONS(2149), 1, anon_sym_LBRACE, - ACTIONS(2456), 1, + ACTIONS(2153), 1, anon_sym_implements, - STATE(264), 1, + ACTIONS(2177), 1, + anon_sym_extends, + STATE(220), 1, sym_block, - STATE(1147), 1, + STATE(1066), 1, aux_sym_class_declaration_repeat2, - [38255] = 2, + [38865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(626), 4, + ACTIONS(298), 1, + anon_sym_COLON, + ACTIONS(432), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_EQ, - [38265] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1871), 1, - anon_sym_COMMA, - ACTIONS(1903), 1, - sym_identifier, - ACTIONS(1905), 1, - anon_sym_RBRACK, - STATE(1186), 1, - aux_sym_array_repeat1, - [38281] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2446), 1, - anon_sym_LT, - ACTIONS(2589), 1, - anon_sym_LPAREN, - STATE(152), 1, - sym__function_arg_list, - STATE(1218), 1, - sym_type_params, - [38297] = 4, - ACTIONS(3), 1, + aux_sym_member_expression_token1, + sym__map_operator, + [38878] = 3, + ACTIONS(1795), 1, sym_comment, - ACTIONS(2466), 1, - anon_sym_EQ, - STATE(948), 1, - sym__assignmentOperator, - ACTIONS(2464), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [38311] = 2, + ACTIONS(2181), 1, + sym_escape_sequence, + ACTIONS(2179), 4, + aux_sym_string_token1, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [38891] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(570), 1, anon_sym_DASH_GT, + ACTIONS(2141), 1, anon_sym_EQ, - [38321] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2488), 1, - anon_sym_extends, - STATE(270), 1, - sym_block, - STATE(1153), 1, - aux_sym_interface_declaration_repeat1, - [38337] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(1915), 1, - anon_sym_COMMA, - ACTIONS(1929), 1, + STATE(638), 1, + sym__assignment_operator, + ACTIONS(2139), 2, anon_sym_RPAREN, - STATE(1132), 1, - aux_sym__arg_list_repeat1, - [38353] = 5, + anon_sym_COMMA, + [38908] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, + ACTIONS(532), 1, anon_sym_LT, - ACTIONS(2589), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, - STATE(150), 1, - sym__function_arg_list, - STATE(1226), 1, + ACTIONS(2183), 1, + anon_sym_RBRACE, + STATE(688), 1, + sym__arg_list, + STATE(1170), 1, sym_type_params, - [38369] = 5, - ACTIONS(3), 1, + [38927] = 3, + ACTIONS(1795), 1, sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - ACTIONS(2488), 1, - anon_sym_extends, - STATE(216), 1, - sym_block, - STATE(1081), 1, - aux_sym_interface_declaration_repeat1, - [38385] = 5, + ACTIONS(2187), 1, + sym_escape_sequence, + ACTIONS(2185), 4, + aux_sym_string_token1, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [38940] = 3, + ACTIONS(1795), 1, + sym_comment, + ACTIONS(2191), 1, + sym_escape_sequence, + ACTIONS(2189), 4, + aux_sym_string_token1, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [38953] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 1, + ACTIONS(2149), 1, anon_sym_LBRACE, - ACTIONS(2488), 1, + ACTIONS(2153), 1, + anon_sym_implements, + ACTIONS(2193), 1, anon_sym_extends, - STATE(214), 1, + STATE(176), 1, sym_block, - STATE(1153), 1, - aux_sym_interface_declaration_repeat1, - [38401] = 5, + STATE(1083), 1, + aux_sym_class_declaration_repeat2, + [38972] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 1, + ACTIONS(2149), 1, anon_sym_LBRACE, - ACTIONS(2456), 1, + ACTIONS(2153), 1, anon_sym_implements, - STATE(257), 1, + ACTIONS(2195), 1, + anon_sym_extends, + STATE(286), 1, sym_block, - STATE(1147), 1, + STATE(1064), 1, aux_sym_class_declaration_repeat2, - [38417] = 5, + [38991] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(1915), 1, - anon_sym_COMMA, - ACTIONS(1951), 1, + ACTIONS(2199), 1, + anon_sym_EQ, + ACTIONS(374), 2, + aux_sym_member_expression_token1, + sym__map_operator, + ACTIONS(2197), 2, anon_sym_RPAREN, - STATE(1134), 1, - aux_sym__arg_list_repeat1, - [38433] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + [39006] = 3, + ACTIONS(294), 1, + sym_escape_sequence, + ACTIONS(1795), 1, sym_comment, - ACTIONS(2446), 1, - anon_sym_LT, - STATE(1237), 1, - sym_type_params, - ACTIONS(2603), 2, - anon_sym_LBRACE, - anon_sym_extends, - [38447] = 3, + ACTIONS(296), 4, + aux_sym_string_token1, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [39019] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2605), 1, + ACTIONS(1843), 1, + aux_sym_member_expression_token1, + ACTIONS(294), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(2065), 2, anon_sym_COLON, - ACTIONS(586), 3, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_EQ_GT, - [38459] = 4, + sym__map_operator, + [39034] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, - anon_sym_LT, - STATE(1238), 1, - sym_type_params, - ACTIONS(2608), 2, + ACTIONS(2149), 1, anon_sym_LBRACE, + ACTIONS(2153), 1, anon_sym_implements, - [38473] = 2, + ACTIONS(2201), 1, + anon_sym_extends, + STATE(257), 1, + sym_block, + STATE(1042), 1, + aux_sym_class_declaration_repeat2, + [39053] = 3, + ACTIONS(1795), 1, + sym_comment, + ACTIONS(2205), 1, + sym_escape_sequence, + ACTIONS(2203), 4, + aux_sym_string_token1, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [39066] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(630), 4, + ACTIONS(2155), 1, + anon_sym_LPAREN, + STATE(42), 1, + sym__arg_list, + ACTIONS(546), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DASH_GT, - anon_sym_EQ, - [38483] = 4, + [39081] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2610), 1, - anon_sym_RBRACE, - ACTIONS(2612), 1, + ACTIONS(2209), 1, + anon_sym_COLON, + ACTIONS(2211), 1, + anon_sym_EQ, + STATE(643), 1, + sym__assignment_operator, + ACTIONS(2207), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1166), 1, - aux_sym_structure_type_repeat1, - [38496] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(428), 1, - anon_sym_EQ_GT, - ACTIONS(2614), 1, - anon_sym_DOT, - ACTIONS(2616), 1, - anon_sym_QMARK, - [38509] = 4, + [39098] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2597), 1, - anon_sym_RBRACE, - ACTIONS(2618), 1, + ACTIONS(570), 1, + anon_sym_DASH_GT, + ACTIONS(2147), 1, + anon_sym_EQ, + STATE(640), 1, + sym__assignment_operator, + ACTIONS(2145), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1125), 1, - aux_sym_map_repeat1, - [38522] = 4, + [39115] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1673), 1, + ACTIONS(67), 1, aux_sym_integer_token1, - ACTIONS(1675), 1, + ACTIONS(69), 1, aux_sym_integer_token2, - STATE(737), 1, + ACTIONS(2213), 1, + sym_identifier, + STATE(1238), 1, sym_integer, - [38535] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2621), 1, - anon_sym_COMMA, - ACTIONS(2623), 1, - anon_sym_GT, - STATE(1185), 1, - aux_sym_type_params_repeat1, - [38548] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2007), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [38559] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1871), 1, - anon_sym_COMMA, - ACTIONS(2625), 1, - anon_sym_RBRACK, - STATE(1130), 1, - aux_sym_array_repeat1, - [38572] = 4, + [39131] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2007), 1, - anon_sym_RBRACK, - ACTIONS(2627), 1, - anon_sym_COMMA, - STATE(1130), 1, - aux_sym_array_repeat1, - [38585] = 4, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(224), 1, + sym_block, + STATE(1141), 1, + aux_sym_class_declaration_repeat2, + [39147] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1913), 1, + ACTIONS(298), 1, + sym__map_operator, + ACTIONS(2215), 1, + aux_sym_member_expression_token1, + ACTIONS(306), 2, anon_sym_RPAREN, - ACTIONS(1915), 1, - anon_sym_COMMA, - STATE(1179), 1, - aux_sym__arg_list_repeat1, - [38598] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1915), 1, anon_sym_COMMA, - ACTIONS(1955), 1, - anon_sym_RPAREN, - STATE(1179), 1, - aux_sym__arg_list_repeat1, - [38611] = 4, - ACTIONS(3), 1, + [39161] = 5, + ACTIONS(1795), 1, sym_comment, - ACTIONS(428), 1, - anon_sym_EQ_GT, - ACTIONS(2472), 1, - anon_sym_DOT, - ACTIONS(2474), 1, - anon_sym_QMARK, - [38624] = 4, + ACTIONS(2091), 1, + aux_sym_string_token3, + ACTIONS(2217), 1, + aux_sym_string_token4, + ACTIONS(2219), 1, + sym_escape_sequence, + STATE(1068), 1, + aux_sym_string_repeat2, + [39177] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_RPAREN, - STATE(1179), 1, - aux_sym__arg_list_repeat1, - [38637] = 3, + ACTIONS(532), 1, + anon_sym_LT, + ACTIONS(2155), 1, + anon_sym_LPAREN, + STATE(55), 1, + sym__arg_list, + STATE(1205), 1, + sym_type_params, + [39193] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2599), 1, - anon_sym_EQ_GT, - ACTIONS(2630), 2, + ACTIONS(570), 1, + anon_sym_DASH_GT, + ACTIONS(2221), 1, anon_sym_RPAREN, + ACTIONS(2224), 1, anon_sym_COMMA, - [38648] = 4, + STATE(1137), 1, + aux_sym__function_type_args_repeat1, + [39209] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(570), 1, + anon_sym_DASH_GT, + ACTIONS(2224), 1, anon_sym_COMMA, - ACTIONS(2632), 1, + ACTIONS(2226), 1, anon_sym_RPAREN, - STATE(1179), 1, - aux_sym__arg_list_repeat1, - [38661] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1871), 1, - anon_sym_COMMA, - ACTIONS(1889), 1, - anon_sym_RBRACK, - STATE(1130), 1, - aux_sym_array_repeat1, - [38674] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(428), 1, - anon_sym_EQ_GT, - ACTIONS(2480), 1, - anon_sym_DOT, - ACTIONS(2482), 1, - anon_sym_QMARK, - [38687] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(428), 1, - anon_sym_EQ_GT, - ACTIONS(2634), 1, - anon_sym_DOT, - ACTIONS(2636), 1, - anon_sym_QMARK, - [38700] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2223), 1, - anon_sym_COMMA, - ACTIONS(2638), 1, - anon_sym_RBRACK, - STATE(1145), 1, - aux_sym_map_repeat1, - [38713] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(428), 1, - anon_sym_EQ_GT, - ACTIONS(2557), 1, - anon_sym_DOT, - ACTIONS(2559), 1, - anon_sym_QMARK, - [38726] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2640), 1, - anon_sym_COMMA, - ACTIONS(2643), 1, - anon_sym_GT, STATE(1142), 1, - aux_sym_type_params_repeat1, - [38739] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(428), 1, - anon_sym_EQ_GT, - ACTIONS(2476), 1, - anon_sym_DOT, - ACTIONS(2478), 1, - anon_sym_QMARK, - [38752] = 4, + aux_sym__function_type_args_repeat1, + [39225] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(636), 1, - anon_sym_COMMA, - ACTIONS(2645), 1, - anon_sym_RBRACE, - STATE(1125), 1, - aux_sym_map_repeat1, - [38765] = 4, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(243), 1, + sym_block, + STATE(1141), 1, + aux_sym_class_declaration_repeat2, + [39241] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2597), 1, - anon_sym_RBRACK, - ACTIONS(2647), 1, - anon_sym_COMMA, - STATE(1145), 1, - aux_sym_map_repeat1, - [38778] = 4, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(193), 1, + sym_block, + STATE(1141), 1, + aux_sym_class_declaration_repeat2, + [39257] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2621), 1, - anon_sym_COMMA, - ACTIONS(2650), 1, - anon_sym_GT, - STATE(1168), 1, - aux_sym_type_params_repeat1, - [38791] = 4, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(211), 1, + sym_block, + STATE(1141), 1, + aux_sym_class_declaration_repeat2, + [39273] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2652), 1, + ACTIONS(2149), 1, anon_sym_LBRACE, - ACTIONS(2654), 1, + ACTIONS(2153), 1, anon_sym_implements, - STATE(1147), 1, + STATE(238), 1, + sym_block, + STATE(1048), 1, aux_sym_class_declaration_repeat2, - [38804] = 3, + [39289] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2599), 1, - anon_sym_EQ_GT, - ACTIONS(2657), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [38815] = 4, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(233), 1, + sym_block, + STATE(1141), 1, + aux_sym_class_declaration_repeat2, + [39305] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(428), 1, - anon_sym_EQ_GT, - ACTIONS(2659), 1, - anon_sym_DOT, - ACTIONS(2661), 1, - anon_sym_QMARK, - [38828] = 4, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(183), 1, + sym_block, + STATE(1141), 1, + aux_sym_class_declaration_repeat2, + [39321] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2663), 1, - anon_sym_RPAREN, - ACTIONS(2665), 1, - anon_sym_COMMA, - STATE(1165), 1, - aux_sym__function_arg_list_repeat1, - [38841] = 4, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(241), 1, + sym_block, + STATE(1141), 1, + aux_sym_class_declaration_repeat2, + [39337] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(428), 1, - anon_sym_EQ_GT, - ACTIONS(2667), 1, - anon_sym_DOT, - ACTIONS(2669), 1, - anon_sym_QMARK, - [38854] = 4, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(252), 1, + sym_block, + STATE(1049), 1, + aux_sym_class_declaration_repeat2, + [39353] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(428), 1, - anon_sym_EQ_GT, - ACTIONS(2671), 1, - anon_sym_DOT, - ACTIONS(2673), 1, - anon_sym_QMARK, - [38867] = 4, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(253), 1, + sym_block, + STATE(1141), 1, + aux_sym_class_declaration_repeat2, + [39369] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2675), 1, + ACTIONS(2149), 1, anon_sym_LBRACE, - ACTIONS(2677), 1, + ACTIONS(2167), 1, anon_sym_extends, - STATE(1153), 1, + STATE(192), 1, + sym_block, + STATE(1138), 1, aux_sym_interface_declaration_repeat1, - [38880] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1915), 1, - anon_sym_COMMA, - ACTIONS(1929), 1, - anon_sym_RPAREN, - STATE(1132), 1, - aux_sym__arg_list_repeat1, - [38893] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1871), 1, - anon_sym_COMMA, - ACTIONS(2680), 1, - anon_sym_RBRACK, - STATE(1130), 1, - aux_sym_array_repeat1, - [38906] = 4, + [39385] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, - anon_sym_COMMA, - ACTIONS(1951), 1, - anon_sym_RPAREN, - STATE(1134), 1, - aux_sym__arg_list_repeat1, - [38919] = 4, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(267), 1, + sym_block, + STATE(1141), 1, + aux_sym_class_declaration_repeat2, + [39401] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2547), 1, - anon_sym_COMMA, - ACTIONS(2682), 1, - anon_sym_RPAREN, - STATE(1171), 1, - aux_sym__function_type_args_repeat1, - [38932] = 4, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(261), 1, + sym_block, + STATE(1141), 1, + aux_sym_class_declaration_repeat2, + [39417] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2665), 1, - anon_sym_COMMA, - ACTIONS(2684), 1, - anon_sym_RPAREN, - STATE(1150), 1, - aux_sym__function_arg_list_repeat1, - [38945] = 4, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(270), 1, + sym_block, + STATE(1052), 1, + aux_sym_class_declaration_repeat2, + [39433] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(428), 1, - anon_sym_EQ_GT, - ACTIONS(2686), 1, - anon_sym_DOT, - ACTIONS(2688), 1, - anon_sym_QMARK, - [38958] = 4, + ACTIONS(532), 1, + anon_sym_LT, + STATE(1193), 1, + sym_type_params, + ACTIONS(2229), 2, + anon_sym_LBRACE, + anon_sym_extends, + [39447] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2690), 1, - sym_identifier, - ACTIONS(2692), 1, + ACTIONS(532), 1, + anon_sym_LT, + ACTIONS(2231), 1, anon_sym_LPAREN, - STATE(720), 1, - sym__parenthesized_expression, - [38971] = 4, + STATE(150), 1, + sym__function_arg_list, + STATE(1201), 1, + sym_type_params, + [39463] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(75), 1, - aux_sym_integer_token1, - ACTIONS(77), 1, - aux_sym_integer_token2, - STATE(93), 1, - sym_integer, - [38984] = 4, + ACTIONS(532), 1, + anon_sym_LT, + ACTIONS(2231), 1, + anon_sym_LPAREN, + STATE(129), 1, + sym__function_arg_list, + STATE(1211), 1, + sym_type_params, + [39479] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(428), 1, - anon_sym_EQ_GT, - ACTIONS(2694), 1, - anon_sym_DOT, - ACTIONS(2696), 1, - anon_sym_QMARK, - [38997] = 2, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(196), 1, + sym_block, + STATE(1141), 1, + aux_sym_class_declaration_repeat2, + [39495] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2698), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [39006] = 4, + ACTIONS(532), 1, + anon_sym_LT, + STATE(1175), 1, + sym_type_params, + ACTIONS(2233), 2, + anon_sym_LBRACE, + anon_sym_implements, + [39509] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(428), 1, - anon_sym_EQ_GT, - ACTIONS(2700), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_QMARK, - [39019] = 4, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(221), 1, + sym_block, + STATE(1141), 1, + aux_sym_class_declaration_repeat2, + [39525] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 1, + ACTIONS(2147), 1, + anon_sym_EQ, + STATE(640), 1, + sym__assignment_operator, + ACTIONS(2145), 2, anon_sym_RPAREN, - ACTIONS(2706), 1, - anon_sym_COMMA, - STATE(1165), 1, - aux_sym__function_arg_list_repeat1, - [39032] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2612), 1, anon_sym_COMMA, - ACTIONS(2709), 1, - anon_sym_RBRACE, - STATE(1178), 1, - aux_sym_structure_type_repeat1, - [39045] = 4, - ACTIONS(3), 1, + [39539] = 5, + ACTIONS(1795), 1, sym_comment, - ACTIONS(428), 1, - anon_sym_EQ_GT, - ACTIONS(2711), 1, - anon_sym_DOT, - ACTIONS(2713), 1, - anon_sym_QMARK, - [39058] = 4, + ACTIONS(2101), 1, + aux_sym_string_token3, + ACTIONS(2235), 1, + aux_sym_string_token4, + ACTIONS(2237), 1, + sym_escape_sequence, + STATE(1109), 1, + aux_sym_string_repeat2, + [39555] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2621), 1, - anon_sym_COMMA, - ACTIONS(2715), 1, - anon_sym_GT, - STATE(1142), 1, - aux_sym_type_params_repeat1, - [39071] = 3, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(2239), 1, + sym_identifier, + STATE(1222), 1, + sym_integer, + [39571] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2599), 1, - anon_sym_EQ_GT, - ACTIONS(2717), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [39082] = 4, - ACTIONS(3), 1, + ACTIONS(532), 1, + anon_sym_LT, + ACTIONS(2231), 1, + anon_sym_LPAREN, + STATE(154), 1, + sym__function_arg_list, + STATE(1209), 1, + sym_type_params, + [39587] = 5, + ACTIONS(1795), 1, sym_comment, - ACTIONS(636), 1, - anon_sym_COMMA, - ACTIONS(2719), 1, - anon_sym_RBRACE, - STATE(1125), 1, - aux_sym_map_repeat1, - [39095] = 4, + ACTIONS(2107), 1, + aux_sym_string_token3, + ACTIONS(2241), 1, + aux_sym_string_token4, + ACTIONS(2243), 1, + sym_escape_sequence, + STATE(1079), 1, + aux_sym_string_repeat2, + [39603] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2721), 1, - anon_sym_RPAREN, - ACTIONS(2723), 1, - anon_sym_COMMA, - STATE(1171), 1, - aux_sym__function_type_args_repeat1, - [39108] = 3, + ACTIONS(532), 1, + anon_sym_LT, + ACTIONS(2231), 1, + anon_sym_LPAREN, + STATE(128), 1, + sym__function_arg_list, + STATE(1210), 1, + sym_type_params, + [39619] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, - anon_sym_DASH_GT, - ACTIONS(2721), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [39119] = 4, + ACTIONS(532), 1, + anon_sym_LT, + ACTIONS(2137), 1, + anon_sym_LPAREN, + STATE(688), 1, + sym__arg_list, + STATE(1170), 1, + sym_type_params, + [39635] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, - anon_sym_COMMA, - ACTIONS(1953), 1, - anon_sym_RPAREN, - STATE(1131), 1, - aux_sym__arg_list_repeat1, - [39132] = 4, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(275), 1, + sym_block, + STATE(1141), 1, + aux_sym_class_declaration_repeat2, + [39651] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(428), 1, - anon_sym_EQ_GT, - ACTIONS(2593), 1, - anon_sym_DOT, - ACTIONS(2595), 1, - anon_sym_QMARK, - [39145] = 4, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2167), 1, + anon_sym_extends, + STATE(246), 1, + sym_block, + STATE(1138), 1, + aux_sym_interface_declaration_repeat1, + [39667] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2223), 1, + ACTIONS(432), 1, + sym__map_operator, + ACTIONS(508), 1, anon_sym_COMMA, - ACTIONS(2726), 1, - anon_sym_RBRACK, - STATE(1145), 1, + ACTIONS(2245), 1, + anon_sym_RBRACE, + STATE(1160), 1, aux_sym_map_repeat1, - [39158] = 4, + [39683] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, - anon_sym_LT, - ACTIONS(2728), 1, - anon_sym_EQ, - STATE(1315), 1, - sym_type_params, - [39171] = 3, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(277), 1, + sym_block, + STATE(1141), 1, + aux_sym_class_declaration_repeat2, + [39699] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2599), 1, - anon_sym_EQ_GT, - ACTIONS(2730), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [39182] = 4, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(278), 1, + sym_block, + STATE(1053), 1, + aux_sym_class_declaration_repeat2, + [39715] = 5, + ACTIONS(1795), 1, + sym_comment, + ACTIONS(2127), 1, + aux_sym_string_token3, + ACTIONS(2235), 1, + aux_sym_string_token4, + ACTIONS(2237), 1, + sym_escape_sequence, + STATE(1109), 1, + aux_sym_string_repeat2, + [39731] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2732), 1, - anon_sym_RBRACE, - ACTIONS(2734), 1, - anon_sym_COMMA, - STATE(1178), 1, - aux_sym_structure_type_repeat1, - [39195] = 4, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(279), 1, + sym_block, + STATE(1141), 1, + aux_sym_class_declaration_repeat2, + [39747] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2001), 1, - anon_sym_RPAREN, - ACTIONS(2737), 1, - anon_sym_COMMA, - STATE(1179), 1, - aux_sym__arg_list_repeat1, - [39208] = 2, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2167), 1, + anon_sym_extends, + STATE(215), 1, + sym_block, + STATE(1138), 1, + aux_sym_interface_declaration_repeat1, + [39763] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2740), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [39217] = 4, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(229), 1, + sym_block, + STATE(1141), 1, + aux_sym_class_declaration_repeat2, + [39779] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, - anon_sym_COMMA, - ACTIONS(2742), 1, - anon_sym_RPAREN, - STATE(1179), 1, - aux_sym__arg_list_repeat1, - [39230] = 3, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(194), 1, + sym_block, + STATE(1141), 1, + aux_sym_class_declaration_repeat2, + [39795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2001), 2, + ACTIONS(2247), 1, + anon_sym_COLON, + ACTIONS(432), 3, anon_sym_RPAREN, anon_sym_COMMA, - [39241] = 4, + sym__map_operator, + [39807] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 1, - anon_sym_LPAREN, - ACTIONS(2744), 1, - sym_identifier, - STATE(77), 1, - sym__parenthesized_expression, - [39254] = 4, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(288), 1, + sym_block, + STATE(1141), 1, + aux_sym_class_declaration_repeat2, + [39823] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 1, - anon_sym_LT, - ACTIONS(2746), 1, - anon_sym_EQ, - STATE(1286), 1, - sym_type_params, - [39267] = 4, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2167), 1, + anon_sym_extends, + STATE(216), 1, + sym_block, + STATE(1075), 1, + aux_sym_interface_declaration_repeat1, + [39839] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2621), 1, - anon_sym_COMMA, - ACTIONS(2748), 1, - anon_sym_GT, - STATE(1142), 1, - aux_sym_type_params_repeat1, - [39280] = 4, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(217), 1, + sym_block, + STATE(1141), 1, + aux_sym_class_declaration_repeat2, + [39855] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1871), 1, - anon_sym_COMMA, - ACTIONS(1873), 1, - anon_sym_RBRACK, - STATE(1130), 1, - aux_sym_array_repeat1, - [39293] = 4, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2167), 1, + anon_sym_extends, + STATE(291), 1, + sym_block, + STATE(1057), 1, + aux_sym_interface_declaration_repeat1, + [39871] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, + ACTIONS(570), 1, + anon_sym_DASH_GT, + ACTIONS(2224), 1, anon_sym_COMMA, - ACTIONS(2750), 1, + ACTIONS(2249), 1, anon_sym_RPAREN, - STATE(1179), 1, - aux_sym__arg_list_repeat1, - [39306] = 4, + STATE(1137), 1, + aux_sym__function_type_args_repeat1, + [39887] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2547), 1, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2167), 1, + anon_sym_extends, + STATE(292), 1, + sym_block, + STATE(1138), 1, + aux_sym_interface_declaration_repeat1, + [39903] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(570), 1, + anon_sym_DASH_GT, + ACTIONS(2224), 1, anon_sym_COMMA, - ACTIONS(2752), 1, + ACTIONS(2252), 1, anon_sym_RPAREN, - STATE(1171), 1, + STATE(1142), 1, aux_sym__function_type_args_repeat1, - [39319] = 3, + [39919] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, - anon_sym_DASH_GT, - ACTIONS(2754), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [39330] = 3, + ACTIONS(532), 1, + anon_sym_LT, + ACTIONS(2254), 1, + anon_sym_LPAREN, + STATE(749), 1, + sym__arg_list, + STATE(1203), 1, + sym_type_params, + [39935] = 5, + ACTIONS(1795), 1, + sym_comment, + ACTIONS(2129), 1, + aux_sym_string_token3, + ACTIONS(2256), 1, + aux_sym_string_token4, + ACTIONS(2258), 1, + sym_escape_sequence, + STATE(1098), 1, + aux_sym_string_repeat2, + [39951] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2037), 1, - sym__semicolon, - [39340] = 3, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(295), 1, + sym_block, + STATE(1141), 1, + aux_sym_class_declaration_repeat2, + [39967] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2756), 1, - anon_sym_DOT, - ACTIONS(2758), 1, - anon_sym_QMARK, - [39350] = 3, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + ACTIONS(2260), 1, + sym_identifier, + STATE(1229), 1, + sym_integer, + [39983] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2093), 1, - sym__semicolon, - [39360] = 3, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(290), 1, + sym_block, + STATE(1074), 1, + aux_sym_class_declaration_repeat2, + [39999] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2095), 1, - sym__semicolon, - [39370] = 3, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(180), 1, + sym_block, + STATE(1080), 1, + aux_sym_class_declaration_repeat2, + [40015] = 5, + ACTIONS(1795), 1, + sym_comment, + ACTIONS(2135), 1, + aux_sym_string_token3, + ACTIONS(2235), 1, + aux_sym_string_token4, + ACTIONS(2237), 1, + sym_escape_sequence, + STATE(1109), 1, + aux_sym_string_repeat2, + [40031] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2760), 1, - anon_sym_DOT, - ACTIONS(2762), 1, - anon_sym_QMARK, - [39380] = 3, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(271), 1, + sym_block, + STATE(1094), 1, + aux_sym_class_declaration_repeat2, + [40047] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2023), 1, - anon_sym_RBRACK, - [39390] = 3, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(262), 1, + sym_block, + STATE(1141), 1, + aux_sym_class_declaration_repeat2, + [40063] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, - anon_sym_DASH_GT, - ACTIONS(2764), 1, - anon_sym_RPAREN, - [39400] = 3, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(181), 1, + sym_block, + STATE(1141), 1, + aux_sym_class_declaration_repeat2, + [40079] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, - anon_sym_DASH_GT, - ACTIONS(2766), 1, - anon_sym_RPAREN, - [39410] = 2, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(223), 1, + sym_block, + STATE(1056), 1, + aux_sym_class_declaration_repeat2, + [40095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2007), 2, + ACTIONS(432), 1, + sym__map_operator, + ACTIONS(2262), 3, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, - [39418] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2025), 1, - sym__semicolon, - [39428] = 3, + [40107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2768), 1, - aux_sym_preprocessor_statement_token1, - ACTIONS(2770), 1, - aux_sym_preprocessor_statement_token2, - [39438] = 3, + ACTIONS(570), 1, + anon_sym_DASH_GT, + ACTIONS(2264), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [40119] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2589), 1, + ACTIONS(532), 1, + anon_sym_LT, + ACTIONS(1599), 1, anon_sym_LPAREN, - STATE(121), 1, - sym__function_arg_list, - [39448] = 2, + STATE(55), 1, + sym__arg_list, + STATE(1182), 1, + sym_type_params, + [40135] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2001), 2, - anon_sym_RPAREN, + ACTIONS(432), 1, + sym__map_operator, + ACTIONS(508), 1, anon_sym_COMMA, - [39456] = 3, + ACTIONS(2266), 1, + anon_sym_RBRACE, + STATE(1153), 1, + aux_sym_map_repeat1, + [40151] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_RBRACE, - [39466] = 3, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(237), 1, + sym_block, + STATE(1141), 1, + aux_sym_class_declaration_repeat2, + [40167] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2589), 1, + ACTIONS(532), 1, + anon_sym_LT, + ACTIONS(2231), 1, anon_sym_LPAREN, - STATE(133), 1, + STATE(159), 1, sym__function_arg_list, - [39476] = 3, - ACTIONS(3), 1, + STATE(1202), 1, + sym_type_params, + [40183] = 5, + ACTIONS(1795), 1, sym_comment, - ACTIONS(2772), 1, - anon_sym_DOT, - ACTIONS(2774), 1, - anon_sym_QMARK, - [39486] = 3, + ACTIONS(2268), 1, + aux_sym_string_token3, + ACTIONS(2270), 1, + aux_sym_string_token4, + ACTIONS(2273), 1, + sym_escape_sequence, + STATE(1109), 1, + aux_sym_string_repeat2, + [40199] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2029), 1, - sym__semicolon, - [39496] = 3, + ACTIONS(532), 1, + anon_sym_LT, + ACTIONS(2231), 1, + anon_sym_LPAREN, + STATE(157), 1, + sym__function_arg_list, + STATE(1206), 1, + sym_type_params, + [40215] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2067), 1, - sym__semicolon, - [39506] = 2, + ACTIONS(2149), 1, + anon_sym_LBRACE, + ACTIONS(2153), 1, + anon_sym_implements, + STATE(280), 1, + sym_block, + STATE(1141), 1, + aux_sym_class_declaration_repeat2, + [40231] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2732), 2, - anon_sym_RBRACE, + ACTIONS(2141), 1, + anon_sym_EQ, + STATE(638), 1, + sym__assignment_operator, + ACTIONS(2139), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [39514] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2776), 1, - anon_sym_DOT, - ACTIONS(2778), 1, - anon_sym_QMARK, - [39524] = 3, + [40245] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2589), 1, - anon_sym_LPAREN, - STATE(122), 1, - sym__function_arg_list, - [39534] = 3, + ACTIONS(1995), 1, + anon_sym_RBRACK, + ACTIONS(2276), 1, + anon_sym_COMMA, + STATE(1113), 1, + aux_sym_array_repeat1, + [40258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2071), 1, - sym__semicolon, - [39544] = 3, + ACTIONS(1923), 1, + anon_sym_COMMA, + ACTIONS(2279), 1, + anon_sym_RBRACK, + STATE(1113), 1, + aux_sym_array_repeat1, + [40271] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2047), 1, - sym__semicolon, - [39554] = 3, + ACTIONS(1340), 1, + aux_sym_integer_token1, + ACTIONS(1342), 1, + aux_sym_integer_token2, + STATE(722), 1, + sym_integer, + [40284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2039), 1, - sym__semicolon, - [39564] = 3, + ACTIONS(2084), 1, + anon_sym_COLON, + ACTIONS(432), 2, + aux_sym_member_expression_token1, + sym__map_operator, + [40295] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2097), 1, - anon_sym_RBRACK, - [39574] = 2, + ACTIONS(1959), 1, + anon_sym_COMMA, + ACTIONS(2281), 1, + anon_sym_RPAREN, + STATE(1145), 1, + aux_sym__arg_list_repeat1, + [40308] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2780), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [39582] = 3, + ACTIONS(2283), 1, + anon_sym_COMMA, + ACTIONS(2285), 1, + anon_sym_GT, + STATE(1146), 1, + aux_sym_type_params_repeat1, + [40321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2782), 1, - anon_sym_DOT, - ACTIONS(2784), 1, - anon_sym_QMARK, - [39592] = 3, + ACTIONS(2247), 1, + sym__map_operator, + ACTIONS(2287), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [40332] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2448), 1, - anon_sym_LPAREN, - STATE(58), 1, - sym__arg_list, - [39602] = 3, + ACTIONS(2262), 1, + anon_sym_RBRACE, + ACTIONS(2289), 1, + anon_sym_COMMA, + STATE(1120), 1, + aux_sym_map_repeat1, + [40345] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2589), 1, - anon_sym_LPAREN, - STATE(156), 1, - sym__function_arg_list, - [39612] = 2, + ACTIONS(2292), 1, + anon_sym_RBRACE, + ACTIONS(2294), 1, + anon_sym_COMMA, + STATE(1121), 1, + aux_sym_structure_type_repeat1, + [40358] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2599), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [39620] = 3, + ACTIONS(2297), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [40367] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2105), 1, - sym__semicolon, - [39630] = 3, + ACTIONS(532), 1, + anon_sym_LT, + ACTIONS(2299), 1, + anon_sym_EQ, + STATE(1231), 1, + sym_type_params, + [40380] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2786), 1, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(2301), 1, sym_identifier, - STATE(1208), 1, - sym_structure_type_pair, - [39640] = 3, + STATE(86), 1, + sym__parenthesized_expression, + [40393] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2107), 1, - sym__semicolon, - [39650] = 3, + ACTIONS(2283), 1, + anon_sym_COMMA, + ACTIONS(2303), 1, + anon_sym_GT, + STATE(1118), 1, + aux_sym_type_params_repeat1, + [40406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2788), 1, - anon_sym_DOT, - ACTIONS(2790), 1, - anon_sym_QMARK, - [39660] = 3, + ACTIONS(2307), 1, + anon_sym_DASH_GT, + ACTIONS(2305), 2, + anon_sym_COMMA, + anon_sym_GT, + [40417] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - sym__semicolon, - [39670] = 3, + ACTIONS(67), 1, + aux_sym_integer_token1, + ACTIONS(69), 1, + aux_sym_integer_token2, + STATE(80), 1, + sym_integer, + [40430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2589), 1, - anon_sym_LPAREN, - STATE(145), 1, - sym__function_arg_list, - [39680] = 3, + ACTIONS(570), 1, + anon_sym_DASH_GT, + ACTIONS(2309), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [40441] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2589), 1, + ACTIONS(2311), 1, + sym_identifier, + ACTIONS(2313), 1, anon_sym_LPAREN, - STATE(154), 1, - sym__function_arg_list, - [39690] = 3, + STATE(711), 1, + sym__parenthesized_expression, + [40454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2792), 1, - anon_sym_DOT, - ACTIONS(2794), 1, - anon_sym_QMARK, - [39700] = 3, + ACTIONS(2247), 1, + sym__map_operator, + ACTIONS(2315), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [40465] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2017), 1, - sym__semicolon, - [39710] = 3, + ACTIONS(2317), 1, + anon_sym_RBRACE, + ACTIONS(2319), 1, + anon_sym_COMMA, + STATE(1121), 1, + aux_sym_structure_type_repeat1, + [40478] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2051), 1, - sym__semicolon, - [39720] = 3, + ACTIONS(2321), 1, + anon_sym_RPAREN, + ACTIONS(2323), 1, + anon_sym_COMMA, + STATE(1150), 1, + aux_sym__function_arg_list_repeat1, + [40491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2796), 1, + ACTIONS(2325), 3, anon_sym_RPAREN, - ACTIONS(2798), 1, anon_sym_COMMA, - [39730] = 3, + anon_sym_EQ, + [40500] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2055), 1, - sym__semicolon, - [39740] = 3, + ACTIONS(306), 1, + anon_sym_COLON, + ACTIONS(2065), 1, + sym__map_operator, + ACTIONS(2327), 1, + aux_sym_member_expression_token1, + [40513] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2021), 1, - sym__semicolon, - [39750] = 3, + ACTIONS(2323), 1, + anon_sym_COMMA, + ACTIONS(2329), 1, + anon_sym_RPAREN, + STATE(1132), 1, + aux_sym__function_arg_list_repeat1, + [40526] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, - anon_sym_DOT, - ACTIONS(1895), 1, - anon_sym_QMARK, - [39760] = 3, + ACTIONS(532), 1, + anon_sym_LT, + ACTIONS(2331), 1, + anon_sym_EQ, + STATE(1225), 1, + sym_type_params, + [40539] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2103), 1, - sym__semicolon, - [39770] = 2, + ACTIONS(2224), 1, + anon_sym_COMMA, + ACTIONS(2333), 1, + anon_sym_RPAREN, + STATE(1158), 1, + aux_sym__function_type_args_repeat1, + [40552] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2335), 1, + anon_sym_LBRACE, + ACTIONS(2337), 1, + anon_sym_extends, + STATE(1138), 1, + aux_sym_interface_declaration_repeat1, + [40565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2800), 2, + ACTIONS(2307), 1, + anon_sym_DASH_GT, + ACTIONS(566), 2, anon_sym_COMMA, anon_sym_GT, - [39778] = 3, + [40576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2802), 1, - anon_sym_DOT, - ACTIONS(2804), 1, - anon_sym_QMARK, - [39788] = 2, + ACTIONS(2307), 1, + anon_sym_DASH_GT, + ACTIONS(576), 2, + anon_sym_COMMA, + anon_sym_GT, + [40587] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2806), 2, + ACTIONS(2340), 1, anon_sym_LBRACE, - anon_sym_extends, - [39796] = 2, + ACTIONS(2342), 1, + anon_sym_implements, + STATE(1141), 1, + aux_sym_class_declaration_repeat2, + [40600] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2808), 2, - anon_sym_LBRACE, - anon_sym_implements, - [39804] = 3, + ACTIONS(2224), 1, + anon_sym_COMMA, + ACTIONS(2345), 1, + anon_sym_RPAREN, + STATE(1158), 1, + aux_sym__function_type_args_repeat1, + [40613] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2567), 1, - anon_sym_LPAREN, - STATE(714), 1, - sym__arg_list, - [39814] = 3, + ACTIONS(1959), 1, + anon_sym_COMMA, + ACTIONS(2347), 1, + anon_sym_RPAREN, + STATE(1145), 1, + aux_sym__arg_list_repeat1, + [40626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2049), 1, - sym__semicolon, - [39824] = 3, + ACTIONS(2247), 1, + sym__map_operator, + ACTIONS(2349), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [40637] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2780), 1, - anon_sym_EQ_GT, - ACTIONS(2810), 1, - anon_sym_COLON, - [39834] = 3, + ACTIONS(1987), 1, + anon_sym_RPAREN, + ACTIONS(2351), 1, + anon_sym_COMMA, + STATE(1145), 1, + aux_sym__arg_list_repeat1, + [40650] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2085), 1, - sym__semicolon, - [39844] = 3, + ACTIONS(2354), 1, + anon_sym_COMMA, + ACTIONS(2357), 1, + anon_sym_GT, + STATE(1146), 1, + aux_sym_type_params_repeat1, + [40663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2812), 1, + ACTIONS(2247), 1, + sym__map_operator, + ACTIONS(2359), 2, anon_sym_RPAREN, - ACTIONS(2814), 1, anon_sym_COMMA, - [39854] = 3, + [40674] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2816), 1, - anon_sym_DOT, - ACTIONS(2818), 1, - anon_sym_QMARK, - [39864] = 2, + ACTIONS(2319), 1, + anon_sym_COMMA, + ACTIONS(2361), 1, + anon_sym_RBRACE, + STATE(1131), 1, + aux_sym_structure_type_repeat1, + [40687] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 2, - anon_sym_RPAREN, + ACTIONS(508), 1, anon_sym_COMMA, - [39872] = 3, + ACTIONS(2363), 1, + anon_sym_RBRACE, + STATE(1120), 1, + aux_sym_map_repeat1, + [40700] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2081), 1, - sym__semicolon, - [39882] = 3, + ACTIONS(2365), 1, + anon_sym_RPAREN, + ACTIONS(2367), 1, + anon_sym_COMMA, + STATE(1150), 1, + aux_sym__function_arg_list_repeat1, + [40713] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2079), 1, - sym__semicolon, - [39892] = 2, + ACTIONS(2370), 1, + sym_identifier, + ACTIONS(2372), 1, + anon_sym_LPAREN, + STATE(775), 1, + sym__parenthesized_expression, + [40726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2643), 2, + ACTIONS(2307), 1, + anon_sym_DASH_GT, + ACTIONS(572), 2, anon_sym_COMMA, anon_sym_GT, - [39900] = 3, + [40737] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2069), 1, - sym__semicolon, - [39910] = 3, + ACTIONS(508), 1, + anon_sym_COMMA, + ACTIONS(2374), 1, + anon_sym_RBRACE, + STATE(1120), 1, + aux_sym_map_repeat1, + [40750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2820), 1, - anon_sym_DOT, - ACTIONS(2822), 1, - anon_sym_QMARK, - [39920] = 3, + ACTIONS(570), 1, + anon_sym_DASH_GT, + ACTIONS(2376), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [40761] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2824), 1, - anon_sym_DOT, - ACTIONS(2826), 1, - anon_sym_QMARK, - [39930] = 3, + ACTIONS(1959), 1, + anon_sym_COMMA, + ACTIONS(2378), 1, + anon_sym_RPAREN, + STATE(1145), 1, + aux_sym__arg_list_repeat1, + [40774] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(586), 1, - anon_sym_EQ_GT, - ACTIONS(2780), 1, - anon_sym_COLON, - [39940] = 3, + ACTIONS(1991), 1, + anon_sym_COMMA, + ACTIONS(2380), 1, + anon_sym_RBRACK, + STATE(1164), 1, + aux_sym_map_repeat1, + [40787] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2073), 1, - sym__semicolon, - [39950] = 3, + ACTIONS(2283), 1, + anon_sym_COMMA, + ACTIONS(2382), 1, + anon_sym_GT, + STATE(1146), 1, + aux_sym_type_params_repeat1, + [40800] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 1, + ACTIONS(2376), 1, anon_sym_RPAREN, - ACTIONS(2830), 1, + ACTIONS(2384), 1, anon_sym_COMMA, - [39960] = 2, + STATE(1158), 1, + aux_sym__function_type_args_repeat1, + [40813] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 2, - anon_sym_RPAREN, + ACTIONS(1923), 1, anon_sym_COMMA, - [39968] = 3, + ACTIONS(2387), 1, + anon_sym_RBRACK, + STATE(1113), 1, + aux_sym_array_repeat1, + [40826] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - STATE(272), 1, - sym_block, - [39978] = 3, + ACTIONS(508), 1, + anon_sym_COMMA, + ACTIONS(2389), 1, + anon_sym_RBRACE, + STATE(1120), 1, + aux_sym_map_repeat1, + [40839] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2834), 1, - anon_sym_DOT, - ACTIONS(2836), 1, - anon_sym_QMARK, - [39988] = 3, + ACTIONS(1991), 1, + anon_sym_COMMA, + ACTIONS(2391), 1, + anon_sym_RBRACK, + STATE(1164), 1, + aux_sym_map_repeat1, + [40852] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2838), 1, - anon_sym_DOT, - ACTIONS(2840), 1, - anon_sym_QMARK, - [39998] = 3, + ACTIONS(1923), 1, + anon_sym_COMMA, + ACTIONS(2393), 1, + anon_sym_RBRACK, + STATE(1113), 1, + aux_sym_array_repeat1, + [40865] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2013), 1, - sym__semicolon, - [40008] = 3, + ACTIONS(1959), 1, + anon_sym_COMMA, + ACTIONS(2395), 1, + anon_sym_RPAREN, + STATE(1145), 1, + aux_sym__arg_list_repeat1, + [40878] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 1, - anon_sym_LBRACE, - STATE(226), 1, - sym_block, - [40018] = 3, + ACTIONS(2262), 1, + anon_sym_RBRACK, + ACTIONS(2397), 1, + anon_sym_COMMA, + STATE(1164), 1, + aux_sym_map_repeat1, + [40891] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1991), 1, + anon_sym_COMMA, + ACTIONS(2400), 1, + anon_sym_RBRACK, + STATE(1164), 1, + aux_sym_map_repeat1, + [40904] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1751), 1, + aux_sym_integer_token1, + ACTIONS(1753), 1, + aux_sym_integer_token2, + STATE(728), 1, + sym_integer, + [40917] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2283), 1, + anon_sym_COMMA, + ACTIONS(2402), 1, + anon_sym_GT, + STATE(1157), 1, + aux_sym_type_params_repeat1, + [40930] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(298), 1, + sym__map_operator, + ACTIONS(2404), 1, + aux_sym_member_expression_token1, + [40940] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(454), 1, - anon_sym_LBRACK, - ACTIONS(2033), 1, - anon_sym_RPAREN, - [40028] = 3, + ACTIONS(2357), 2, + anon_sym_COMMA, + anon_sym_GT, + [40948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1897), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, - STATE(58), 1, + STATE(695), 1, sym__arg_list, - [40038] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2029), 1, - sym__semicolon, - [40045] = 2, + [40958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, - anon_sym_DOT, - [40052] = 2, + ACTIONS(2149), 1, + anon_sym_LBRACE, + STATE(266), 1, + sym_block, + [40968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2013), 1, - sym__semicolon, - [40059] = 2, + ACTIONS(298), 1, + sym__map_operator, + ACTIONS(2215), 1, + aux_sym_member_expression_token1, + [40978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2680), 1, - anon_sym_RBRACK, - [40066] = 2, + ACTIONS(298), 1, + sym__map_operator, + ACTIONS(2406), 1, + aux_sym_member_expression_token1, + [40988] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2844), 1, - sym__semicolon, - [40073] = 2, + ACTIONS(2292), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [40996] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - sym__semicolon, - [40080] = 2, + ACTIONS(2408), 2, + anon_sym_LBRACE, + anon_sym_implements, + [41004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2846), 1, - anon_sym_DOT, - [40087] = 2, + ACTIONS(2410), 1, + anon_sym_RPAREN, + ACTIONS(2412), 1, + anon_sym_COMMA, + [41014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2848), 1, - anon_sym_DOT, - [40094] = 2, + ACTIONS(298), 1, + sym__map_operator, + ACTIONS(2414), 1, + aux_sym_member_expression_token1, + [41024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2033), 1, + ACTIONS(2416), 1, anon_sym_RPAREN, - [40101] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2850), 1, - anon_sym_DOT, - [40108] = 2, + ACTIONS(2418), 1, + anon_sym_COMMA, + [41034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2780), 1, - anon_sym_EQ_GT, - [40115] = 2, + ACTIONS(298), 1, + sym__map_operator, + ACTIONS(2420), 1, + aux_sym_member_expression_token1, + [41044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1889), 1, - anon_sym_RBRACK, - [40122] = 2, + ACTIONS(298), 1, + sym__map_operator, + ACTIONS(2422), 1, + aux_sym_member_expression_token1, + [41054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2852), 1, - anon_sym_DOT, - [40129] = 2, + ACTIONS(2247), 2, + anon_sym_COLON, + sym__map_operator, + [41062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2854), 1, - sym__semicolon, - [40136] = 2, + ACTIONS(1599), 1, + anon_sym_LPAREN, + STATE(42), 1, + sym__arg_list, + [41072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, - anon_sym_DOT, - [40143] = 2, + ACTIONS(2149), 1, + anon_sym_LBRACE, + STATE(228), 1, + sym_block, + [41082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2858), 1, + ACTIONS(2424), 2, anon_sym_RPAREN, - [40150] = 2, + anon_sym_COMMA, + [41090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2860), 1, + ACTIONS(2426), 1, anon_sym_RPAREN, - [40157] = 2, + ACTIONS(2428), 1, + anon_sym_COMMA, + [41100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, - anon_sym_RBRACK, - [40164] = 2, + ACTIONS(298), 1, + sym__map_operator, + ACTIONS(2430), 1, + aux_sym_member_expression_token1, + [41110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2862), 1, + ACTIONS(570), 1, anon_sym_DASH_GT, - [40171] = 2, + ACTIONS(2432), 1, + anon_sym_RPAREN, + [41120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2864), 1, - anon_sym_RPAREN, - [40178] = 2, + ACTIONS(432), 1, + sym__map_operator, + ACTIONS(2434), 1, + anon_sym_COLON, + [41130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2866), 1, + ACTIONS(298), 1, + sym__map_operator, + ACTIONS(2327), 1, + aux_sym_member_expression_token1, + [41140] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(570), 1, anon_sym_DASH_GT, - [40185] = 2, + ACTIONS(2436), 1, + anon_sym_RPAREN, + [41150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2049), 1, - sym__semicolon, - [40192] = 2, + ACTIONS(298), 1, + sym__map_operator, + ACTIONS(2438), 1, + aux_sym_member_expression_token1, + [41160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 1, - ts_builtin_sym_end, - [40199] = 2, + ACTIONS(298), 1, + sym__map_operator, + ACTIONS(2440), 1, + aux_sym_member_expression_token1, + [41170] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2870), 1, - anon_sym_EQ, - [40206] = 2, + ACTIONS(2442), 2, + anon_sym_LBRACE, + anon_sym_extends, + [41178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2055), 1, - sym__semicolon, - [40213] = 2, + ACTIONS(298), 1, + sym__map_operator, + ACTIONS(2444), 1, + aux_sym_member_expression_token1, + [41188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2021), 1, - sym__semicolon, - [40220] = 2, + ACTIONS(2446), 1, + anon_sym_RPAREN, + ACTIONS(2448), 1, + anon_sym_COMMA, + [41198] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2051), 1, - sym__semicolon, - [40227] = 2, + ACTIONS(2365), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [41206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2017), 1, - sym__semicolon, - [40234] = 2, + ACTIONS(298), 1, + sym__map_operator, + ACTIONS(2450), 1, + aux_sym_member_expression_token1, + [41216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2015), 1, - sym__semicolon, - [40241] = 2, + ACTIONS(298), 1, + sym__map_operator, + ACTIONS(2452), 1, + aux_sym_member_expression_token1, + [41226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 1, - sym__semicolon, - [40248] = 2, + ACTIONS(2434), 1, + sym__map_operator, + ACTIONS(2454), 1, + anon_sym_COLON, + [41236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2097), 1, - anon_sym_RBRACK, - [40255] = 2, + ACTIONS(2456), 1, + sym_identifier, + STATE(1174), 1, + sym_structure_type_pair, + [41246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2039), 1, - sym__semicolon, - [40262] = 2, + ACTIONS(2231), 1, + anon_sym_LPAREN, + STATE(137), 1, + sym__function_arg_list, + [41256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2874), 1, - sym__rangeOperator, - [40269] = 2, + ACTIONS(2231), 1, + anon_sym_LPAREN, + STATE(145), 1, + sym__function_arg_list, + [41266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2876), 1, - anon_sym_DASH_GT, - [40276] = 2, + ACTIONS(2254), 1, + anon_sym_LPAREN, + STATE(768), 1, + sym__arg_list, + [41276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2071), 1, - sym__semicolon, - [40283] = 2, + ACTIONS(2458), 1, + aux_sym_preprocessor_statement_token1, + ACTIONS(2460), 1, + aux_sym_preprocessor_statement_token2, + [41286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2878), 1, - anon_sym_DOT, - [40290] = 2, + ACTIONS(2155), 1, + anon_sym_LPAREN, + STATE(42), 1, + sym__arg_list, + [41296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2880), 1, - anon_sym_DASH_GT, - [40297] = 2, + ACTIONS(2231), 1, + anon_sym_LPAREN, + STATE(134), 1, + sym__function_arg_list, + [41306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2027), 1, - anon_sym_RBRACE, - [40304] = 2, + ACTIONS(298), 1, + sym__map_operator, + ACTIONS(2462), 1, + aux_sym_member_expression_token1, + [41316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2025), 1, - sym__semicolon, - [40311] = 2, + ACTIONS(570), 1, + anon_sym_DASH_GT, + ACTIONS(2464), 1, + anon_sym_RPAREN, + [41326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2882), 1, - sym__rangeOperator, - [40318] = 2, + ACTIONS(2231), 1, + anon_sym_LPAREN, + STATE(142), 1, + sym__function_arg_list, + [41336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2599), 1, - anon_sym_EQ_GT, - [40325] = 2, + ACTIONS(2231), 1, + anon_sym_LPAREN, + STATE(161), 1, + sym__function_arg_list, + [41346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2884), 1, - anon_sym_DASH_GT, - [40332] = 2, + ACTIONS(2231), 1, + anon_sym_LPAREN, + STATE(138), 1, + sym__function_arg_list, + [41356] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2023), 1, - anon_sym_RBRACK, - [40339] = 2, + ACTIONS(2434), 2, + anon_sym_COLON, + sym__map_operator, + [41364] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2095), 1, - sym__semicolon, - [40346] = 2, + ACTIONS(1631), 1, + aux_sym_member_expression_token1, + [41371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2886), 1, + ACTIONS(2466), 1, anon_sym_RPAREN, - [40353] = 2, + [41378] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2037), 1, - sym__semicolon, - [40360] = 2, + ACTIONS(2387), 1, + anon_sym_RBRACK, + [41385] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2888), 1, + ACTIONS(2468), 1, anon_sym_RPAREN, - [40367] = 2, + [41392] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2890), 1, + ACTIONS(2470), 1, anon_sym_DASH_GT, - [40374] = 2, + [41399] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2892), 1, + ACTIONS(2472), 1, anon_sym_RPAREN, - [40381] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2894), 1, - anon_sym_DOT, - [40388] = 2, + [41406] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2896), 1, - anon_sym_DOT, - [40395] = 2, + ACTIONS(2474), 1, + anon_sym_RPAREN, + [41413] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 1, - anon_sym_DOT, - [40402] = 2, + ACTIONS(2476), 1, + aux_sym_member_expression_token1, + [41420] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2900), 1, - anon_sym_EQ, - [40409] = 2, + ACTIONS(2478), 1, + anon_sym_DASH_GT, + [41427] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2067), 1, - sym__semicolon, - [40416] = 2, + ACTIONS(2480), 1, + sym__range_operator, + [41434] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2902), 1, - anon_sym_LPAREN, - [40423] = 2, + ACTIONS(2434), 1, + sym__map_operator, + [41441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2904), 1, - anon_sym_COLON, - [40430] = 2, + ACTIONS(2482), 1, + aux_sym_member_expression_token1, + [41448] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2906), 1, - anon_sym_DOT, - [40437] = 2, + ACTIONS(2484), 1, + anon_sym_EQ, + [41455] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2908), 1, - anon_sym_COLON, - [40444] = 2, + ACTIONS(2486), 1, + aux_sym_member_expression_token1, + [41462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2910), 1, - anon_sym_DOT, - [40451] = 2, + ACTIONS(2488), 1, + anon_sym_DASH_GT, + [41469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2047), 1, - sym__semicolon, - [40458] = 2, + ACTIONS(2490), 1, + aux_sym_member_expression_token1, + [41476] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2912), 1, - anon_sym_DOT, - [40465] = 2, + ACTIONS(2492), 1, + sym__range_operator, + [41483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2914), 1, - anon_sym_DOT, - [40472] = 2, + ACTIONS(2494), 1, + anon_sym_RPAREN, + [41490] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2916), 1, - anon_sym_DOT, - [40479] = 2, + ACTIONS(2496), 1, + anon_sym_EQ, + [41497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2105), 1, - sym__semicolon, - [40486] = 2, + ACTIONS(2279), 1, + anon_sym_RBRACK, + [41504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2107), 1, - sym__semicolon, - [40493] = 2, + ACTIONS(2498), 1, + anon_sym_RPAREN, + [41511] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 1, - anon_sym_DOT, - [40500] = 2, + ACTIONS(2500), 1, + aux_sym_member_expression_token1, + [41518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2920), 1, - anon_sym_DOT, - [40507] = 2, + ACTIONS(2502), 1, + anon_sym_COLON, + [41525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_DOT, - [40514] = 2, + ACTIONS(2247), 1, + sym__map_operator, + [41532] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, - sym__semicolon, - [40521] = 2, + ACTIONS(2504), 1, + anon_sym_COLON, + [41539] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2924), 1, - anon_sym_DOT, - [40528] = 2, + ACTIONS(2506), 1, + sym__range_operator, + [41546] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2926), 1, - anon_sym_DOT, - [40535] = 2, + ACTIONS(2508), 1, + anon_sym_RPAREN, + [41553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2928), 1, - anon_sym_DOT, - [40542] = 2, + ACTIONS(2510), 1, + aux_sym_member_expression_token1, + [41560] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2930), 1, - anon_sym_DOT, - [40549] = 2, + ACTIONS(2512), 1, + anon_sym_RPAREN, + [41567] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2085), 1, + ACTIONS(2514), 1, sym__semicolon, - [40556] = 2, + [41574] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2932), 1, - anon_sym_DOT, - [40563] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2934), 1, - anon_sym_DOT, - [40570] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2936), 1, - anon_sym_DOT, - [40577] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2938), 1, - anon_sym_RPAREN, - [40584] = 2, + ACTIONS(2516), 1, + anon_sym_LPAREN, + [41581] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2940), 1, - anon_sym_DOT, - [40591] = 2, + ACTIONS(2393), 1, + anon_sym_RBRACK, + [41588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2942), 1, - anon_sym_DOT, - [40598] = 2, + ACTIONS(2518), 1, + anon_sym_DASH_GT, + [41595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2944), 1, - anon_sym_DOT, - [40605] = 2, + ACTIONS(2520), 1, + aux_sym_member_expression_token1, + [41602] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2081), 1, + ACTIONS(2522), 1, sym__semicolon, - [40612] = 2, + [41609] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2946), 1, - anon_sym_DOT, - [40619] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2948), 1, - anon_sym_DOT, - [40626] = 2, + ACTIONS(2524), 1, + anon_sym_RPAREN, + [41616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2079), 1, - sym__semicolon, - [40633] = 2, + ACTIONS(2526), 1, + aux_sym_member_expression_token1, + [41623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2950), 1, - anon_sym_DOT, - [40640] = 2, + ACTIONS(2528), 1, + aux_sym_member_expression_token1, + [41630] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, - anon_sym_DOT, - [40647] = 2, + ACTIONS(2530), 1, + anon_sym_DASH_GT, + [41637] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2954), 1, - anon_sym_DOT, - [40654] = 2, + ACTIONS(2532), 1, + aux_sym_member_expression_token1, + [41644] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2073), 1, + ACTIONS(2534), 1, sym__semicolon, - [40661] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2956), 1, - anon_sym_DOT, - [40668] = 2, + [41651] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2958), 1, - anon_sym_DOT, - [40675] = 2, + ACTIONS(2536), 1, + aux_sym_member_expression_token1, + [41658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2960), 1, - anon_sym_DOT, - [40682] = 2, + ACTIONS(2538), 1, + anon_sym_RPAREN, + [41665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2069), 1, - sym__semicolon, - [40689] = 2, + ACTIONS(2540), 1, + ts_builtin_sym_end, + [41672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2962), 1, - anon_sym_DOT, - [40696] = 2, + ACTIONS(2542), 1, + aux_sym_member_expression_token1, + [41679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2964), 1, - anon_sym_DOT, - [40703] = 2, + ACTIONS(2544), 1, + anon_sym_DASH_GT, + [41686] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2966), 1, - anon_sym_DOT, - [40710] = 2, + ACTIONS(2546), 1, + aux_sym_member_expression_token1, + [41693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 1, + ACTIONS(2548), 1, anon_sym_LPAREN, - [40717] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2970), 1, - anon_sym_RPAREN, - [40724] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2625), 1, - anon_sym_RBRACK, - [40731] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_DOT, - [40738] = 2, + [41700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, - anon_sym_DOT, + ACTIONS(2550), 1, + anon_sym_LPAREN, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(421)] = 0, - [SMALL_STATE(422)] = 105, - [SMALL_STATE(423)] = 210, - [SMALL_STATE(424)] = 321, - [SMALL_STATE(425)] = 426, - [SMALL_STATE(426)] = 531, - [SMALL_STATE(427)] = 636, - [SMALL_STATE(428)] = 741, - [SMALL_STATE(429)] = 846, - [SMALL_STATE(430)] = 930, - [SMALL_STATE(431)] = 1006, - [SMALL_STATE(432)] = 1089, - [SMALL_STATE(433)] = 1196, - [SMALL_STATE(434)] = 1285, - [SMALL_STATE(435)] = 1394, - [SMALL_STATE(436)] = 1483, - [SMALL_STATE(437)] = 1591, - [SMALL_STATE(438)] = 1678, - [SMALL_STATE(439)] = 1753, - [SMALL_STATE(440)] = 1834, - [SMALL_STATE(441)] = 1933, - [SMALL_STATE(442)] = 2032, - [SMALL_STATE(443)] = 2131, - [SMALL_STATE(444)] = 2230, - [SMALL_STATE(445)] = 2329, - [SMALL_STATE(446)] = 2428, - [SMALL_STATE(447)] = 2527, - [SMALL_STATE(448)] = 2625, - [SMALL_STATE(449)] = 2723, - [SMALL_STATE(450)] = 2821, - [SMALL_STATE(451)] = 2919, - [SMALL_STATE(452)] = 3017, - [SMALL_STATE(453)] = 3115, - [SMALL_STATE(454)] = 3213, - [SMALL_STATE(455)] = 3289, - [SMALL_STATE(456)] = 3363, - [SMALL_STATE(457)] = 3424, - [SMALL_STATE(458)] = 3489, - [SMALL_STATE(459)] = 3563, - [SMALL_STATE(460)] = 3635, - [SMALL_STATE(461)] = 3707, - [SMALL_STATE(462)] = 3774, - [SMALL_STATE(463)] = 3833, - [SMALL_STATE(464)] = 3900, - [SMALL_STATE(465)] = 3962, - [SMALL_STATE(466)] = 4024, - [SMALL_STATE(467)] = 4086, - [SMALL_STATE(468)] = 4148, - [SMALL_STATE(469)] = 4224, - [SMALL_STATE(470)] = 4280, - [SMALL_STATE(471)] = 4340, - [SMALL_STATE(472)] = 4414, - [SMALL_STATE(473)] = 4488, - [SMALL_STATE(474)] = 4562, - [SMALL_STATE(475)] = 4630, - [SMALL_STATE(476)] = 4687, - [SMALL_STATE(477)] = 4744, - [SMALL_STATE(478)] = 4817, - [SMALL_STATE(479)] = 4884, - [SMALL_STATE(480)] = 4939, - [SMALL_STATE(481)] = 5012, - [SMALL_STATE(482)] = 5085, - [SMALL_STATE(483)] = 5161, - [SMALL_STATE(484)] = 5219, - [SMALL_STATE(485)] = 5271, - [SMALL_STATE(486)] = 5347, - [SMALL_STATE(487)] = 5419, - [SMALL_STATE(488)] = 5495, - [SMALL_STATE(489)] = 5551, - [SMALL_STATE(490)] = 5623, - [SMALL_STATE(491)] = 5679, - [SMALL_STATE(492)] = 5745, - [SMALL_STATE(493)] = 5797, - [SMALL_STATE(494)] = 5867, - [SMALL_STATE(495)] = 5925, - [SMALL_STATE(496)] = 5997, - [SMALL_STATE(497)] = 6049, - [SMALL_STATE(498)] = 6125, - [SMALL_STATE(499)] = 6179, - [SMALL_STATE(500)] = 6252, - [SMALL_STATE(501)] = 6319, - [SMALL_STATE(502)] = 6386, - [SMALL_STATE(503)] = 6453, - [SMALL_STATE(504)] = 6526, - [SMALL_STATE(505)] = 6593, - [SMALL_STATE(506)] = 6660, - [SMALL_STATE(507)] = 6727, - [SMALL_STATE(508)] = 6794, - [SMALL_STATE(509)] = 6863, - [SMALL_STATE(510)] = 6916, - [SMALL_STATE(511)] = 6989, - [SMALL_STATE(512)] = 7060, - [SMALL_STATE(513)] = 7125, - [SMALL_STATE(514)] = 7198, - [SMALL_STATE(515)] = 7269, - [SMALL_STATE(516)] = 7342, - [SMALL_STATE(517)] = 7409, - [SMALL_STATE(518)] = 7478, - [SMALL_STATE(519)] = 7545, - [SMALL_STATE(520)] = 7618, - [SMALL_STATE(521)] = 7685, - [SMALL_STATE(522)] = 7752, - [SMALL_STATE(523)] = 7819, - [SMALL_STATE(524)] = 7890, - [SMALL_STATE(525)] = 7959, - [SMALL_STATE(526)] = 8027, - [SMALL_STATE(527)] = 8091, - [SMALL_STATE(528)] = 8155, - [SMALL_STATE(529)] = 8219, - [SMALL_STATE(530)] = 8269, - [SMALL_STATE(531)] = 8321, - [SMALL_STATE(532)] = 8385, - [SMALL_STATE(533)] = 8449, - [SMALL_STATE(534)] = 8517, - [SMALL_STATE(535)] = 8581, - [SMALL_STATE(536)] = 8649, - [SMALL_STATE(537)] = 8701, - [SMALL_STATE(538)] = 8765, - [SMALL_STATE(539)] = 8833, - [SMALL_STATE(540)] = 8901, - [SMALL_STATE(541)] = 8965, - [SMALL_STATE(542)] = 9033, - [SMALL_STATE(543)] = 9097, - [SMALL_STATE(544)] = 9165, - [SMALL_STATE(545)] = 9232, - [SMALL_STATE(546)] = 9299, - [SMALL_STATE(547)] = 9366, - [SMALL_STATE(548)] = 9433, - [SMALL_STATE(549)] = 9500, - [SMALL_STATE(550)] = 9567, - [SMALL_STATE(551)] = 9634, - [SMALL_STATE(552)] = 9701, - [SMALL_STATE(553)] = 9768, - [SMALL_STATE(554)] = 9835, - [SMALL_STATE(555)] = 9902, - [SMALL_STATE(556)] = 9969, - [SMALL_STATE(557)] = 10036, - [SMALL_STATE(558)] = 10103, - [SMALL_STATE(559)] = 10170, - [SMALL_STATE(560)] = 10237, - [SMALL_STATE(561)] = 10304, - [SMALL_STATE(562)] = 10371, - [SMALL_STATE(563)] = 10438, - [SMALL_STATE(564)] = 10499, - [SMALL_STATE(565)] = 10566, - [SMALL_STATE(566)] = 10633, - [SMALL_STATE(567)] = 10700, - [SMALL_STATE(568)] = 10767, - [SMALL_STATE(569)] = 10834, - [SMALL_STATE(570)] = 10901, - [SMALL_STATE(571)] = 10968, - [SMALL_STATE(572)] = 11035, - [SMALL_STATE(573)] = 11096, - [SMALL_STATE(574)] = 11157, - [SMALL_STATE(575)] = 11224, - [SMALL_STATE(576)] = 11291, - [SMALL_STATE(577)] = 11358, - [SMALL_STATE(578)] = 11425, - [SMALL_STATE(579)] = 11492, - [SMALL_STATE(580)] = 11559, - [SMALL_STATE(581)] = 11626, - [SMALL_STATE(582)] = 11693, - [SMALL_STATE(583)] = 11760, - [SMALL_STATE(584)] = 11827, - [SMALL_STATE(585)] = 11894, - [SMALL_STATE(586)] = 11961, - [SMALL_STATE(587)] = 12028, - [SMALL_STATE(588)] = 12095, - [SMALL_STATE(589)] = 12162, - [SMALL_STATE(590)] = 12229, - [SMALL_STATE(591)] = 12296, - [SMALL_STATE(592)] = 12363, - [SMALL_STATE(593)] = 12430, - [SMALL_STATE(594)] = 12497, - [SMALL_STATE(595)] = 12564, - [SMALL_STATE(596)] = 12631, - [SMALL_STATE(597)] = 12698, - [SMALL_STATE(598)] = 12765, - [SMALL_STATE(599)] = 12832, - [SMALL_STATE(600)] = 12899, - [SMALL_STATE(601)] = 12966, - [SMALL_STATE(602)] = 13033, - [SMALL_STATE(603)] = 13100, - [SMALL_STATE(604)] = 13180, - [SMALL_STATE(605)] = 13260, - [SMALL_STATE(606)] = 13340, - [SMALL_STATE(607)] = 13420, - [SMALL_STATE(608)] = 13500, - [SMALL_STATE(609)] = 13580, - [SMALL_STATE(610)] = 13660, - [SMALL_STATE(611)] = 13719, - [SMALL_STATE(612)] = 13778, - [SMALL_STATE(613)] = 13854, - [SMALL_STATE(614)] = 13940, - [SMALL_STATE(615)] = 14026, - [SMALL_STATE(616)] = 14102, - [SMALL_STATE(617)] = 14188, - [SMALL_STATE(618)] = 14264, - [SMALL_STATE(619)] = 14340, - [SMALL_STATE(620)] = 14416, - [SMALL_STATE(621)] = 14492, - [SMALL_STATE(622)] = 14568, - [SMALL_STATE(623)] = 14626, - [SMALL_STATE(624)] = 14684, - [SMALL_STATE(625)] = 14770, - [SMALL_STATE(626)] = 14828, - [SMALL_STATE(627)] = 14886, - [SMALL_STATE(628)] = 14969, - [SMALL_STATE(629)] = 15052, - [SMALL_STATE(630)] = 15135, - [SMALL_STATE(631)] = 15218, - [SMALL_STATE(632)] = 15275, - [SMALL_STATE(633)] = 15356, - [SMALL_STATE(634)] = 15439, - [SMALL_STATE(635)] = 15492, - [SMALL_STATE(636)] = 15575, - [SMALL_STATE(637)] = 15658, - [SMALL_STATE(638)] = 15715, - [SMALL_STATE(639)] = 15798, - [SMALL_STATE(640)] = 15881, - [SMALL_STATE(641)] = 15964, - [SMALL_STATE(642)] = 16047, - [SMALL_STATE(643)] = 16130, - [SMALL_STATE(644)] = 16213, - [SMALL_STATE(645)] = 16266, - [SMALL_STATE(646)] = 16349, - [SMALL_STATE(647)] = 16432, - [SMALL_STATE(648)] = 16515, - [SMALL_STATE(649)] = 16598, - [SMALL_STATE(650)] = 16681, - [SMALL_STATE(651)] = 16761, - [SMALL_STATE(652)] = 16841, - [SMALL_STATE(653)] = 16921, - [SMALL_STATE(654)] = 17001, - [SMALL_STATE(655)] = 17081, - [SMALL_STATE(656)] = 17161, - [SMALL_STATE(657)] = 17241, - [SMALL_STATE(658)] = 17293, - [SMALL_STATE(659)] = 17373, - [SMALL_STATE(660)] = 17453, - [SMALL_STATE(661)] = 17533, - [SMALL_STATE(662)] = 17613, - [SMALL_STATE(663)] = 17665, - [SMALL_STATE(664)] = 17745, - [SMALL_STATE(665)] = 17825, - [SMALL_STATE(666)] = 17905, - [SMALL_STATE(667)] = 17985, - [SMALL_STATE(668)] = 18065, - [SMALL_STATE(669)] = 18145, - [SMALL_STATE(670)] = 18225, - [SMALL_STATE(671)] = 18305, - [SMALL_STATE(672)] = 18385, - [SMALL_STATE(673)] = 18465, - [SMALL_STATE(674)] = 18545, - [SMALL_STATE(675)] = 18625, - [SMALL_STATE(676)] = 18669, - [SMALL_STATE(677)] = 18749, - [SMALL_STATE(678)] = 18805, - [SMALL_STATE(679)] = 18885, - [SMALL_STATE(680)] = 18933, - [SMALL_STATE(681)] = 19006, - [SMALL_STATE(682)] = 19079, - [SMALL_STATE(683)] = 19152, - [SMALL_STATE(684)] = 19225, - [SMALL_STATE(685)] = 19298, - [SMALL_STATE(686)] = 19339, - [SMALL_STATE(687)] = 19380, - [SMALL_STATE(688)] = 19421, - [SMALL_STATE(689)] = 19464, - [SMALL_STATE(690)] = 19537, - [SMALL_STATE(691)] = 19610, - [SMALL_STATE(692)] = 19661, - [SMALL_STATE(693)] = 19704, - [SMALL_STATE(694)] = 19755, - [SMALL_STATE(695)] = 19802, - [SMALL_STATE(696)] = 19847, - [SMALL_STATE(697)] = 19926, - [SMALL_STATE(698)] = 19981, - [SMALL_STATE(699)] = 20028, - [SMALL_STATE(700)] = 20075, - [SMALL_STATE(701)] = 20122, - [SMALL_STATE(702)] = 20194, - [SMALL_STATE(703)] = 20234, - [SMALL_STATE(704)] = 20274, - [SMALL_STATE(705)] = 20314, - [SMALL_STATE(706)] = 20354, - [SMALL_STATE(707)] = 20394, - [SMALL_STATE(708)] = 20440, - [SMALL_STATE(709)] = 20480, - [SMALL_STATE(710)] = 20520, - [SMALL_STATE(711)] = 20560, - [SMALL_STATE(712)] = 20600, - [SMALL_STATE(713)] = 20640, - [SMALL_STATE(714)] = 20718, - [SMALL_STATE(715)] = 20758, - [SMALL_STATE(716)] = 20798, - [SMALL_STATE(717)] = 20838, - [SMALL_STATE(718)] = 20878, - [SMALL_STATE(719)] = 20918, - [SMALL_STATE(720)] = 20958, - [SMALL_STATE(721)] = 20998, - [SMALL_STATE(722)] = 21038, - [SMALL_STATE(723)] = 21078, - [SMALL_STATE(724)] = 21118, - [SMALL_STATE(725)] = 21164, - [SMALL_STATE(726)] = 21204, - [SMALL_STATE(727)] = 21244, - [SMALL_STATE(728)] = 21284, - [SMALL_STATE(729)] = 21324, - [SMALL_STATE(730)] = 21364, - [SMALL_STATE(731)] = 21404, - [SMALL_STATE(732)] = 21444, - [SMALL_STATE(733)] = 21484, - [SMALL_STATE(734)] = 21556, - [SMALL_STATE(735)] = 21628, - [SMALL_STATE(736)] = 21700, - [SMALL_STATE(737)] = 21772, - [SMALL_STATE(738)] = 21812, - [SMALL_STATE(739)] = 21852, - [SMALL_STATE(740)] = 21924, - [SMALL_STATE(741)] = 21964, - [SMALL_STATE(742)] = 22004, - [SMALL_STATE(743)] = 22044, - [SMALL_STATE(744)] = 22086, - [SMALL_STATE(745)] = 22126, - [SMALL_STATE(746)] = 22166, - [SMALL_STATE(747)] = 22238, - [SMALL_STATE(748)] = 22315, - [SMALL_STATE(749)] = 22392, - [SMALL_STATE(750)] = 22437, - [SMALL_STATE(751)] = 22514, - [SMALL_STATE(752)] = 22559, - [SMALL_STATE(753)] = 22636, - [SMALL_STATE(754)] = 22707, - [SMALL_STATE(755)] = 22778, - [SMALL_STATE(756)] = 22855, - [SMALL_STATE(757)] = 22932, - [SMALL_STATE(758)] = 23003, - [SMALL_STATE(759)] = 23052, - [SMALL_STATE(760)] = 23123, - [SMALL_STATE(761)] = 23194, - [SMALL_STATE(762)] = 23271, - [SMALL_STATE(763)] = 23348, - [SMALL_STATE(764)] = 23419, - [SMALL_STATE(765)] = 23464, - [SMALL_STATE(766)] = 23535, - [SMALL_STATE(767)] = 23612, - [SMALL_STATE(768)] = 23689, - [SMALL_STATE(769)] = 23766, - [SMALL_STATE(770)] = 23843, - [SMALL_STATE(771)] = 23920, - [SMALL_STATE(772)] = 23997, - [SMALL_STATE(773)] = 24074, - [SMALL_STATE(774)] = 24151, - [SMALL_STATE(775)] = 24228, - [SMALL_STATE(776)] = 24302, - [SMALL_STATE(777)] = 24376, - [SMALL_STATE(778)] = 24444, - [SMALL_STATE(779)] = 24518, - [SMALL_STATE(780)] = 24562, - [SMALL_STATE(781)] = 24636, - [SMALL_STATE(782)] = 24710, - [SMALL_STATE(783)] = 24750, - [SMALL_STATE(784)] = 24824, - [SMALL_STATE(785)] = 24898, - [SMALL_STATE(786)] = 24972, - [SMALL_STATE(787)] = 25046, - [SMALL_STATE(788)] = 25120, - [SMALL_STATE(789)] = 25188, - [SMALL_STATE(790)] = 25262, - [SMALL_STATE(791)] = 25306, - [SMALL_STATE(792)] = 25380, - [SMALL_STATE(793)] = 25454, - [SMALL_STATE(794)] = 25528, - [SMALL_STATE(795)] = 25602, - [SMALL_STATE(796)] = 25676, - [SMALL_STATE(797)] = 25750, - [SMALL_STATE(798)] = 25824, - [SMALL_STATE(799)] = 25892, - [SMALL_STATE(800)] = 25966, - [SMALL_STATE(801)] = 26040, - [SMALL_STATE(802)] = 26114, - [SMALL_STATE(803)] = 26182, - [SMALL_STATE(804)] = 26256, - [SMALL_STATE(805)] = 26330, - [SMALL_STATE(806)] = 26404, - [SMALL_STATE(807)] = 26472, - [SMALL_STATE(808)] = 26546, - [SMALL_STATE(809)] = 26620, - [SMALL_STATE(810)] = 26694, - [SMALL_STATE(811)] = 26768, - [SMALL_STATE(812)] = 26836, - [SMALL_STATE(813)] = 26910, - [SMALL_STATE(814)] = 26984, - [SMALL_STATE(815)] = 27052, - [SMALL_STATE(816)] = 27126, - [SMALL_STATE(817)] = 27200, - [SMALL_STATE(818)] = 27242, - [SMALL_STATE(819)] = 27285, - [SMALL_STATE(820)] = 27354, - [SMALL_STATE(821)] = 27423, - [SMALL_STATE(822)] = 27492, - [SMALL_STATE(823)] = 27561, - [SMALL_STATE(824)] = 27630, - [SMALL_STATE(825)] = 27699, - [SMALL_STATE(826)] = 27742, - [SMALL_STATE(827)] = 27779, - [SMALL_STATE(828)] = 27816, - [SMALL_STATE(829)] = 27885, - [SMALL_STATE(830)] = 27952, - [SMALL_STATE(831)] = 27987, - [SMALL_STATE(832)] = 28051, - [SMALL_STATE(833)] = 28115, - [SMALL_STATE(834)] = 28179, - [SMALL_STATE(835)] = 28243, - [SMALL_STATE(836)] = 28307, - [SMALL_STATE(837)] = 28371, - [SMALL_STATE(838)] = 28435, - [SMALL_STATE(839)] = 28499, - [SMALL_STATE(840)] = 28563, - [SMALL_STATE(841)] = 28627, - [SMALL_STATE(842)] = 28691, - [SMALL_STATE(843)] = 28755, - [SMALL_STATE(844)] = 28819, - [SMALL_STATE(845)] = 28883, - [SMALL_STATE(846)] = 28947, - [SMALL_STATE(847)] = 29011, - [SMALL_STATE(848)] = 29075, - [SMALL_STATE(849)] = 29139, - [SMALL_STATE(850)] = 29203, - [SMALL_STATE(851)] = 29267, - [SMALL_STATE(852)] = 29331, - [SMALL_STATE(853)] = 29395, - [SMALL_STATE(854)] = 29459, - [SMALL_STATE(855)] = 29523, - [SMALL_STATE(856)] = 29587, - [SMALL_STATE(857)] = 29651, - [SMALL_STATE(858)] = 29715, - [SMALL_STATE(859)] = 29779, - [SMALL_STATE(860)] = 29843, - [SMALL_STATE(861)] = 29907, - [SMALL_STATE(862)] = 29971, - [SMALL_STATE(863)] = 30035, - [SMALL_STATE(864)] = 30099, - [SMALL_STATE(865)] = 30163, - [SMALL_STATE(866)] = 30227, - [SMALL_STATE(867)] = 30291, - [SMALL_STATE(868)] = 30355, - [SMALL_STATE(869)] = 30419, - [SMALL_STATE(870)] = 30483, - [SMALL_STATE(871)] = 30547, - [SMALL_STATE(872)] = 30611, - [SMALL_STATE(873)] = 30675, - [SMALL_STATE(874)] = 30739, - [SMALL_STATE(875)] = 30803, - [SMALL_STATE(876)] = 30867, - [SMALL_STATE(877)] = 30931, - [SMALL_STATE(878)] = 30995, - [SMALL_STATE(879)] = 31059, - [SMALL_STATE(880)] = 31123, - [SMALL_STATE(881)] = 31187, - [SMALL_STATE(882)] = 31251, - [SMALL_STATE(883)] = 31315, - [SMALL_STATE(884)] = 31379, - [SMALL_STATE(885)] = 31443, - [SMALL_STATE(886)] = 31507, - [SMALL_STATE(887)] = 31571, - [SMALL_STATE(888)] = 31635, - [SMALL_STATE(889)] = 31699, - [SMALL_STATE(890)] = 31763, - [SMALL_STATE(891)] = 31827, - [SMALL_STATE(892)] = 31891, - [SMALL_STATE(893)] = 31955, - [SMALL_STATE(894)] = 32019, - [SMALL_STATE(895)] = 32083, - [SMALL_STATE(896)] = 32147, - [SMALL_STATE(897)] = 32211, - [SMALL_STATE(898)] = 32275, - [SMALL_STATE(899)] = 32339, - [SMALL_STATE(900)] = 32403, - [SMALL_STATE(901)] = 32467, - [SMALL_STATE(902)] = 32531, - [SMALL_STATE(903)] = 32595, - [SMALL_STATE(904)] = 32659, - [SMALL_STATE(905)] = 32723, - [SMALL_STATE(906)] = 32787, - [SMALL_STATE(907)] = 32851, - [SMALL_STATE(908)] = 32915, - [SMALL_STATE(909)] = 32979, - [SMALL_STATE(910)] = 33043, - [SMALL_STATE(911)] = 33107, - [SMALL_STATE(912)] = 33171, - [SMALL_STATE(913)] = 33235, - [SMALL_STATE(914)] = 33299, - [SMALL_STATE(915)] = 33363, - [SMALL_STATE(916)] = 33427, - [SMALL_STATE(917)] = 33491, - [SMALL_STATE(918)] = 33555, - [SMALL_STATE(919)] = 33619, - [SMALL_STATE(920)] = 33683, - [SMALL_STATE(921)] = 33747, - [SMALL_STATE(922)] = 33811, - [SMALL_STATE(923)] = 33872, - [SMALL_STATE(924)] = 33933, - [SMALL_STATE(925)] = 33994, - [SMALL_STATE(926)] = 34055, - [SMALL_STATE(927)] = 34116, - [SMALL_STATE(928)] = 34177, - [SMALL_STATE(929)] = 34238, - [SMALL_STATE(930)] = 34299, - [SMALL_STATE(931)] = 34360, - [SMALL_STATE(932)] = 34421, - [SMALL_STATE(933)] = 34482, - [SMALL_STATE(934)] = 34519, - [SMALL_STATE(935)] = 34580, - [SMALL_STATE(936)] = 34641, - [SMALL_STATE(937)] = 34702, - [SMALL_STATE(938)] = 34763, - [SMALL_STATE(939)] = 34797, - [SMALL_STATE(940)] = 34831, - [SMALL_STATE(941)] = 34891, - [SMALL_STATE(942)] = 34923, - [SMALL_STATE(943)] = 34955, - [SMALL_STATE(944)] = 35012, - [SMALL_STATE(945)] = 35049, - [SMALL_STATE(946)] = 35106, - [SMALL_STATE(947)] = 35160, - [SMALL_STATE(948)] = 35212, - [SMALL_STATE(949)] = 35264, - [SMALL_STATE(950)] = 35316, - [SMALL_STATE(951)] = 35370, - [SMALL_STATE(952)] = 35422, - [SMALL_STATE(953)] = 35455, - [SMALL_STATE(954)] = 35490, - [SMALL_STATE(955)] = 35522, - [SMALL_STATE(956)] = 35554, - [SMALL_STATE(957)] = 35584, - [SMALL_STATE(958)] = 35611, - [SMALL_STATE(959)] = 35644, - [SMALL_STATE(960)] = 35669, - [SMALL_STATE(961)] = 35694, - [SMALL_STATE(962)] = 35714, - [SMALL_STATE(963)] = 35730, - [SMALL_STATE(964)] = 35746, - [SMALL_STATE(965)] = 35770, - [SMALL_STATE(966)] = 35794, - [SMALL_STATE(967)] = 35817, - [SMALL_STATE(968)] = 35840, - [SMALL_STATE(969)] = 35863, - [SMALL_STATE(970)] = 35890, - [SMALL_STATE(971)] = 35917, - [SMALL_STATE(972)] = 35944, - [SMALL_STATE(973)] = 35967, - [SMALL_STATE(974)] = 35994, - [SMALL_STATE(975)] = 36021, - [SMALL_STATE(976)] = 36037, - [SMALL_STATE(977)] = 36059, - [SMALL_STATE(978)] = 36081, - [SMALL_STATE(979)] = 36103, - [SMALL_STATE(980)] = 36125, - [SMALL_STATE(981)] = 36147, - [SMALL_STATE(982)] = 36168, - [SMALL_STATE(983)] = 36183, - [SMALL_STATE(984)] = 36208, - [SMALL_STATE(985)] = 36231, - [SMALL_STATE(986)] = 36256, - [SMALL_STATE(987)] = 36271, - [SMALL_STATE(988)] = 36292, - [SMALL_STATE(989)] = 36315, - [SMALL_STATE(990)] = 36330, - [SMALL_STATE(991)] = 36355, - [SMALL_STATE(992)] = 36380, - [SMALL_STATE(993)] = 36399, - [SMALL_STATE(994)] = 36418, - [SMALL_STATE(995)] = 36436, - [SMALL_STATE(996)] = 36458, - [SMALL_STATE(997)] = 36474, - [SMALL_STATE(998)] = 36490, - [SMALL_STATE(999)] = 36512, - [SMALL_STATE(1000)] = 36530, - [SMALL_STATE(1001)] = 36552, - [SMALL_STATE(1002)] = 36568, - [SMALL_STATE(1003)] = 36590, - [SMALL_STATE(1004)] = 36608, - [SMALL_STATE(1005)] = 36622, - [SMALL_STATE(1006)] = 36644, - [SMALL_STATE(1007)] = 36656, - [SMALL_STATE(1008)] = 36678, - [SMALL_STATE(1009)] = 36694, - [SMALL_STATE(1010)] = 36710, - [SMALL_STATE(1011)] = 36726, - [SMALL_STATE(1012)] = 36748, - [SMALL_STATE(1013)] = 36768, - [SMALL_STATE(1014)] = 36790, - [SMALL_STATE(1015)] = 36812, - [SMALL_STATE(1016)] = 36830, - [SMALL_STATE(1017)] = 36848, - [SMALL_STATE(1018)] = 36870, - [SMALL_STATE(1019)] = 36889, - [SMALL_STATE(1020)] = 36908, - [SMALL_STATE(1021)] = 36925, - [SMALL_STATE(1022)] = 36942, - [SMALL_STATE(1023)] = 36961, - [SMALL_STATE(1024)] = 36978, - [SMALL_STATE(1025)] = 36991, - [SMALL_STATE(1026)] = 37010, - [SMALL_STATE(1027)] = 37023, - [SMALL_STATE(1028)] = 37036, - [SMALL_STATE(1029)] = 37049, - [SMALL_STATE(1030)] = 37068, - [SMALL_STATE(1031)] = 37083, - [SMALL_STATE(1032)] = 37096, - [SMALL_STATE(1033)] = 37115, - [SMALL_STATE(1034)] = 37132, - [SMALL_STATE(1035)] = 37145, - [SMALL_STATE(1036)] = 37164, - [SMALL_STATE(1037)] = 37181, - [SMALL_STATE(1038)] = 37193, - [SMALL_STATE(1039)] = 37209, - [SMALL_STATE(1040)] = 37225, - [SMALL_STATE(1041)] = 37237, - [SMALL_STATE(1042)] = 37249, - [SMALL_STATE(1043)] = 37265, - [SMALL_STATE(1044)] = 37281, - [SMALL_STATE(1045)] = 37297, - [SMALL_STATE(1046)] = 37309, - [SMALL_STATE(1047)] = 37321, - [SMALL_STATE(1048)] = 37337, - [SMALL_STATE(1049)] = 37349, - [SMALL_STATE(1050)] = 37365, - [SMALL_STATE(1051)] = 37381, - [SMALL_STATE(1052)] = 37397, - [SMALL_STATE(1053)] = 37413, - [SMALL_STATE(1054)] = 37429, - [SMALL_STATE(1055)] = 37445, - [SMALL_STATE(1056)] = 37459, - [SMALL_STATE(1057)] = 37475, - [SMALL_STATE(1058)] = 37491, - [SMALL_STATE(1059)] = 37507, - [SMALL_STATE(1060)] = 37523, - [SMALL_STATE(1061)] = 37539, - [SMALL_STATE(1062)] = 37555, - [SMALL_STATE(1063)] = 37571, - [SMALL_STATE(1064)] = 37587, - [SMALL_STATE(1065)] = 37603, - [SMALL_STATE(1066)] = 37619, - [SMALL_STATE(1067)] = 37635, - [SMALL_STATE(1068)] = 37651, - [SMALL_STATE(1069)] = 37667, - [SMALL_STATE(1070)] = 37683, - [SMALL_STATE(1071)] = 37699, - [SMALL_STATE(1072)] = 37715, - [SMALL_STATE(1073)] = 37731, - [SMALL_STATE(1074)] = 37747, - [SMALL_STATE(1075)] = 37763, - [SMALL_STATE(1076)] = 37779, - [SMALL_STATE(1077)] = 37795, - [SMALL_STATE(1078)] = 37811, - [SMALL_STATE(1079)] = 37827, - [SMALL_STATE(1080)] = 37843, - [SMALL_STATE(1081)] = 37859, - [SMALL_STATE(1082)] = 37875, - [SMALL_STATE(1083)] = 37891, - [SMALL_STATE(1084)] = 37907, - [SMALL_STATE(1085)] = 37923, - [SMALL_STATE(1086)] = 37939, - [SMALL_STATE(1087)] = 37955, - [SMALL_STATE(1088)] = 37971, - [SMALL_STATE(1089)] = 37987, - [SMALL_STATE(1090)] = 38003, - [SMALL_STATE(1091)] = 38019, - [SMALL_STATE(1092)] = 38035, - [SMALL_STATE(1093)] = 38051, - [SMALL_STATE(1094)] = 38065, - [SMALL_STATE(1095)] = 38081, - [SMALL_STATE(1096)] = 38093, - [SMALL_STATE(1097)] = 38109, - [SMALL_STATE(1098)] = 38125, - [SMALL_STATE(1099)] = 38141, - [SMALL_STATE(1100)] = 38157, - [SMALL_STATE(1101)] = 38173, - [SMALL_STATE(1102)] = 38189, - [SMALL_STATE(1103)] = 38201, - [SMALL_STATE(1104)] = 38211, - [SMALL_STATE(1105)] = 38227, - [SMALL_STATE(1106)] = 38239, - [SMALL_STATE(1107)] = 38255, - [SMALL_STATE(1108)] = 38265, - [SMALL_STATE(1109)] = 38281, - [SMALL_STATE(1110)] = 38297, - [SMALL_STATE(1111)] = 38311, - [SMALL_STATE(1112)] = 38321, - [SMALL_STATE(1113)] = 38337, - [SMALL_STATE(1114)] = 38353, - [SMALL_STATE(1115)] = 38369, - [SMALL_STATE(1116)] = 38385, - [SMALL_STATE(1117)] = 38401, - [SMALL_STATE(1118)] = 38417, - [SMALL_STATE(1119)] = 38433, - [SMALL_STATE(1120)] = 38447, - [SMALL_STATE(1121)] = 38459, - [SMALL_STATE(1122)] = 38473, - [SMALL_STATE(1123)] = 38483, - [SMALL_STATE(1124)] = 38496, - [SMALL_STATE(1125)] = 38509, - [SMALL_STATE(1126)] = 38522, - [SMALL_STATE(1127)] = 38535, - [SMALL_STATE(1128)] = 38548, - [SMALL_STATE(1129)] = 38559, - [SMALL_STATE(1130)] = 38572, - [SMALL_STATE(1131)] = 38585, - [SMALL_STATE(1132)] = 38598, - [SMALL_STATE(1133)] = 38611, - [SMALL_STATE(1134)] = 38624, - [SMALL_STATE(1135)] = 38637, - [SMALL_STATE(1136)] = 38648, - [SMALL_STATE(1137)] = 38661, - [SMALL_STATE(1138)] = 38674, - [SMALL_STATE(1139)] = 38687, - [SMALL_STATE(1140)] = 38700, - [SMALL_STATE(1141)] = 38713, - [SMALL_STATE(1142)] = 38726, - [SMALL_STATE(1143)] = 38739, - [SMALL_STATE(1144)] = 38752, - [SMALL_STATE(1145)] = 38765, - [SMALL_STATE(1146)] = 38778, - [SMALL_STATE(1147)] = 38791, - [SMALL_STATE(1148)] = 38804, - [SMALL_STATE(1149)] = 38815, - [SMALL_STATE(1150)] = 38828, - [SMALL_STATE(1151)] = 38841, - [SMALL_STATE(1152)] = 38854, - [SMALL_STATE(1153)] = 38867, - [SMALL_STATE(1154)] = 38880, - [SMALL_STATE(1155)] = 38893, - [SMALL_STATE(1156)] = 38906, - [SMALL_STATE(1157)] = 38919, - [SMALL_STATE(1158)] = 38932, - [SMALL_STATE(1159)] = 38945, - [SMALL_STATE(1160)] = 38958, - [SMALL_STATE(1161)] = 38971, - [SMALL_STATE(1162)] = 38984, - [SMALL_STATE(1163)] = 38997, - [SMALL_STATE(1164)] = 39006, - [SMALL_STATE(1165)] = 39019, - [SMALL_STATE(1166)] = 39032, - [SMALL_STATE(1167)] = 39045, - [SMALL_STATE(1168)] = 39058, - [SMALL_STATE(1169)] = 39071, - [SMALL_STATE(1170)] = 39082, - [SMALL_STATE(1171)] = 39095, - [SMALL_STATE(1172)] = 39108, - [SMALL_STATE(1173)] = 39119, - [SMALL_STATE(1174)] = 39132, - [SMALL_STATE(1175)] = 39145, - [SMALL_STATE(1176)] = 39158, - [SMALL_STATE(1177)] = 39171, - [SMALL_STATE(1178)] = 39182, - [SMALL_STATE(1179)] = 39195, - [SMALL_STATE(1180)] = 39208, - [SMALL_STATE(1181)] = 39217, - [SMALL_STATE(1182)] = 39230, - [SMALL_STATE(1183)] = 39241, - [SMALL_STATE(1184)] = 39254, - [SMALL_STATE(1185)] = 39267, - [SMALL_STATE(1186)] = 39280, - [SMALL_STATE(1187)] = 39293, - [SMALL_STATE(1188)] = 39306, - [SMALL_STATE(1189)] = 39319, - [SMALL_STATE(1190)] = 39330, - [SMALL_STATE(1191)] = 39340, - [SMALL_STATE(1192)] = 39350, - [SMALL_STATE(1193)] = 39360, - [SMALL_STATE(1194)] = 39370, - [SMALL_STATE(1195)] = 39380, - [SMALL_STATE(1196)] = 39390, - [SMALL_STATE(1197)] = 39400, - [SMALL_STATE(1198)] = 39410, - [SMALL_STATE(1199)] = 39418, - [SMALL_STATE(1200)] = 39428, - [SMALL_STATE(1201)] = 39438, - [SMALL_STATE(1202)] = 39448, - [SMALL_STATE(1203)] = 39456, - [SMALL_STATE(1204)] = 39466, - [SMALL_STATE(1205)] = 39476, - [SMALL_STATE(1206)] = 39486, - [SMALL_STATE(1207)] = 39496, - [SMALL_STATE(1208)] = 39506, - [SMALL_STATE(1209)] = 39514, - [SMALL_STATE(1210)] = 39524, - [SMALL_STATE(1211)] = 39534, - [SMALL_STATE(1212)] = 39544, - [SMALL_STATE(1213)] = 39554, - [SMALL_STATE(1214)] = 39564, - [SMALL_STATE(1215)] = 39574, - [SMALL_STATE(1216)] = 39582, - [SMALL_STATE(1217)] = 39592, - [SMALL_STATE(1218)] = 39602, - [SMALL_STATE(1219)] = 39612, - [SMALL_STATE(1220)] = 39620, - [SMALL_STATE(1221)] = 39630, - [SMALL_STATE(1222)] = 39640, - [SMALL_STATE(1223)] = 39650, - [SMALL_STATE(1224)] = 39660, - [SMALL_STATE(1225)] = 39670, - [SMALL_STATE(1226)] = 39680, - [SMALL_STATE(1227)] = 39690, - [SMALL_STATE(1228)] = 39700, - [SMALL_STATE(1229)] = 39710, - [SMALL_STATE(1230)] = 39720, - [SMALL_STATE(1231)] = 39730, - [SMALL_STATE(1232)] = 39740, - [SMALL_STATE(1233)] = 39750, - [SMALL_STATE(1234)] = 39760, - [SMALL_STATE(1235)] = 39770, - [SMALL_STATE(1236)] = 39778, - [SMALL_STATE(1237)] = 39788, - [SMALL_STATE(1238)] = 39796, - [SMALL_STATE(1239)] = 39804, - [SMALL_STATE(1240)] = 39814, - [SMALL_STATE(1241)] = 39824, - [SMALL_STATE(1242)] = 39834, - [SMALL_STATE(1243)] = 39844, - [SMALL_STATE(1244)] = 39854, - [SMALL_STATE(1245)] = 39864, - [SMALL_STATE(1246)] = 39872, - [SMALL_STATE(1247)] = 39882, - [SMALL_STATE(1248)] = 39892, - [SMALL_STATE(1249)] = 39900, - [SMALL_STATE(1250)] = 39910, - [SMALL_STATE(1251)] = 39920, - [SMALL_STATE(1252)] = 39930, - [SMALL_STATE(1253)] = 39940, - [SMALL_STATE(1254)] = 39950, - [SMALL_STATE(1255)] = 39960, - [SMALL_STATE(1256)] = 39968, - [SMALL_STATE(1257)] = 39978, - [SMALL_STATE(1258)] = 39988, - [SMALL_STATE(1259)] = 39998, - [SMALL_STATE(1260)] = 40008, - [SMALL_STATE(1261)] = 40018, - [SMALL_STATE(1262)] = 40028, - [SMALL_STATE(1263)] = 40038, - [SMALL_STATE(1264)] = 40045, - [SMALL_STATE(1265)] = 40052, - [SMALL_STATE(1266)] = 40059, - [SMALL_STATE(1267)] = 40066, - [SMALL_STATE(1268)] = 40073, - [SMALL_STATE(1269)] = 40080, - [SMALL_STATE(1270)] = 40087, - [SMALL_STATE(1271)] = 40094, - [SMALL_STATE(1272)] = 40101, - [SMALL_STATE(1273)] = 40108, - [SMALL_STATE(1274)] = 40115, - [SMALL_STATE(1275)] = 40122, - [SMALL_STATE(1276)] = 40129, - [SMALL_STATE(1277)] = 40136, - [SMALL_STATE(1278)] = 40143, - [SMALL_STATE(1279)] = 40150, - [SMALL_STATE(1280)] = 40157, - [SMALL_STATE(1281)] = 40164, - [SMALL_STATE(1282)] = 40171, - [SMALL_STATE(1283)] = 40178, - [SMALL_STATE(1284)] = 40185, - [SMALL_STATE(1285)] = 40192, - [SMALL_STATE(1286)] = 40199, - [SMALL_STATE(1287)] = 40206, - [SMALL_STATE(1288)] = 40213, - [SMALL_STATE(1289)] = 40220, - [SMALL_STATE(1290)] = 40227, - [SMALL_STATE(1291)] = 40234, - [SMALL_STATE(1292)] = 40241, - [SMALL_STATE(1293)] = 40248, - [SMALL_STATE(1294)] = 40255, - [SMALL_STATE(1295)] = 40262, - [SMALL_STATE(1296)] = 40269, - [SMALL_STATE(1297)] = 40276, - [SMALL_STATE(1298)] = 40283, - [SMALL_STATE(1299)] = 40290, - [SMALL_STATE(1300)] = 40297, - [SMALL_STATE(1301)] = 40304, - [SMALL_STATE(1302)] = 40311, - [SMALL_STATE(1303)] = 40318, - [SMALL_STATE(1304)] = 40325, - [SMALL_STATE(1305)] = 40332, - [SMALL_STATE(1306)] = 40339, - [SMALL_STATE(1307)] = 40346, - [SMALL_STATE(1308)] = 40353, - [SMALL_STATE(1309)] = 40360, - [SMALL_STATE(1310)] = 40367, - [SMALL_STATE(1311)] = 40374, - [SMALL_STATE(1312)] = 40381, - [SMALL_STATE(1313)] = 40388, - [SMALL_STATE(1314)] = 40395, - [SMALL_STATE(1315)] = 40402, - [SMALL_STATE(1316)] = 40409, - [SMALL_STATE(1317)] = 40416, - [SMALL_STATE(1318)] = 40423, - [SMALL_STATE(1319)] = 40430, - [SMALL_STATE(1320)] = 40437, - [SMALL_STATE(1321)] = 40444, - [SMALL_STATE(1322)] = 40451, - [SMALL_STATE(1323)] = 40458, - [SMALL_STATE(1324)] = 40465, - [SMALL_STATE(1325)] = 40472, - [SMALL_STATE(1326)] = 40479, - [SMALL_STATE(1327)] = 40486, - [SMALL_STATE(1328)] = 40493, - [SMALL_STATE(1329)] = 40500, - [SMALL_STATE(1330)] = 40507, - [SMALL_STATE(1331)] = 40514, - [SMALL_STATE(1332)] = 40521, - [SMALL_STATE(1333)] = 40528, - [SMALL_STATE(1334)] = 40535, - [SMALL_STATE(1335)] = 40542, - [SMALL_STATE(1336)] = 40549, - [SMALL_STATE(1337)] = 40556, - [SMALL_STATE(1338)] = 40563, - [SMALL_STATE(1339)] = 40570, - [SMALL_STATE(1340)] = 40577, - [SMALL_STATE(1341)] = 40584, - [SMALL_STATE(1342)] = 40591, - [SMALL_STATE(1343)] = 40598, - [SMALL_STATE(1344)] = 40605, - [SMALL_STATE(1345)] = 40612, - [SMALL_STATE(1346)] = 40619, - [SMALL_STATE(1347)] = 40626, - [SMALL_STATE(1348)] = 40633, - [SMALL_STATE(1349)] = 40640, - [SMALL_STATE(1350)] = 40647, - [SMALL_STATE(1351)] = 40654, - [SMALL_STATE(1352)] = 40661, - [SMALL_STATE(1353)] = 40668, - [SMALL_STATE(1354)] = 40675, - [SMALL_STATE(1355)] = 40682, - [SMALL_STATE(1356)] = 40689, - [SMALL_STATE(1357)] = 40696, - [SMALL_STATE(1358)] = 40703, - [SMALL_STATE(1359)] = 40710, - [SMALL_STATE(1360)] = 40717, - [SMALL_STATE(1361)] = 40724, - [SMALL_STATE(1362)] = 40731, - [SMALL_STATE(1363)] = 40738, + [SMALL_STATE(296)] = 0, + [SMALL_STATE(297)] = 71, + [SMALL_STATE(298)] = 205, + [SMALL_STATE(299)] = 339, + [SMALL_STATE(300)] = 461, + [SMALL_STATE(301)] = 583, + [SMALL_STATE(302)] = 705, + [SMALL_STATE(303)] = 827, + [SMALL_STATE(304)] = 949, + [SMALL_STATE(305)] = 1061, + [SMALL_STATE(306)] = 1173, + [SMALL_STATE(307)] = 1285, + [SMALL_STATE(308)] = 1397, + [SMALL_STATE(309)] = 1509, + [SMALL_STATE(310)] = 1585, + [SMALL_STATE(311)] = 1697, + [SMALL_STATE(312)] = 1809, + [SMALL_STATE(313)] = 1918, + [SMALL_STATE(314)] = 2027, + [SMALL_STATE(315)] = 2138, + [SMALL_STATE(316)] = 2247, + [SMALL_STATE(317)] = 2356, + [SMALL_STATE(318)] = 2465, + [SMALL_STATE(319)] = 2576, + [SMALL_STATE(320)] = 2685, + [SMALL_STATE(321)] = 2794, + [SMALL_STATE(322)] = 2905, + [SMALL_STATE(323)] = 3011, + [SMALL_STATE(324)] = 3117, + [SMALL_STATE(325)] = 3223, + [SMALL_STATE(326)] = 3329, + [SMALL_STATE(327)] = 3435, + [SMALL_STATE(328)] = 3541, + [SMALL_STATE(329)] = 3647, + [SMALL_STATE(330)] = 3753, + [SMALL_STATE(331)] = 3859, + [SMALL_STATE(332)] = 3965, + [SMALL_STATE(333)] = 4071, + [SMALL_STATE(334)] = 4177, + [SMALL_STATE(335)] = 4283, + [SMALL_STATE(336)] = 4389, + [SMALL_STATE(337)] = 4495, + [SMALL_STATE(338)] = 4601, + [SMALL_STATE(339)] = 4707, + [SMALL_STATE(340)] = 4813, + [SMALL_STATE(341)] = 4919, + [SMALL_STATE(342)] = 5025, + [SMALL_STATE(343)] = 5131, + [SMALL_STATE(344)] = 5237, + [SMALL_STATE(345)] = 5343, + [SMALL_STATE(346)] = 5449, + [SMALL_STATE(347)] = 5555, + [SMALL_STATE(348)] = 5615, + [SMALL_STATE(349)] = 5721, + [SMALL_STATE(350)] = 5827, + [SMALL_STATE(351)] = 5933, + [SMALL_STATE(352)] = 6039, + [SMALL_STATE(353)] = 6145, + [SMALL_STATE(354)] = 6251, + [SMALL_STATE(355)] = 6357, + [SMALL_STATE(356)] = 6463, + [SMALL_STATE(357)] = 6569, + [SMALL_STATE(358)] = 6675, + [SMALL_STATE(359)] = 6781, + [SMALL_STATE(360)] = 6887, + [SMALL_STATE(361)] = 6993, + [SMALL_STATE(362)] = 7099, + [SMALL_STATE(363)] = 7205, + [SMALL_STATE(364)] = 7311, + [SMALL_STATE(365)] = 7417, + [SMALL_STATE(366)] = 7523, + [SMALL_STATE(367)] = 7629, + [SMALL_STATE(368)] = 7735, + [SMALL_STATE(369)] = 7841, + [SMALL_STATE(370)] = 7947, + [SMALL_STATE(371)] = 8053, + [SMALL_STATE(372)] = 8159, + [SMALL_STATE(373)] = 8265, + [SMALL_STATE(374)] = 8371, + [SMALL_STATE(375)] = 8477, + [SMALL_STATE(376)] = 8583, + [SMALL_STATE(377)] = 8689, + [SMALL_STATE(378)] = 8795, + [SMALL_STATE(379)] = 8901, + [SMALL_STATE(380)] = 9007, + [SMALL_STATE(381)] = 9113, + [SMALL_STATE(382)] = 9219, + [SMALL_STATE(383)] = 9325, + [SMALL_STATE(384)] = 9431, + [SMALL_STATE(385)] = 9537, + [SMALL_STATE(386)] = 9643, + [SMALL_STATE(387)] = 9749, + [SMALL_STATE(388)] = 9855, + [SMALL_STATE(389)] = 9961, + [SMALL_STATE(390)] = 10067, + [SMALL_STATE(391)] = 10173, + [SMALL_STATE(392)] = 10260, + [SMALL_STATE(393)] = 10317, + [SMALL_STATE(394)] = 10404, + [SMALL_STATE(395)] = 10459, + [SMALL_STATE(396)] = 10546, + [SMALL_STATE(397)] = 10633, + [SMALL_STATE(398)] = 10719, + [SMALL_STATE(399)] = 10805, + [SMALL_STATE(400)] = 10859, + [SMALL_STATE(401)] = 10917, + [SMALL_STATE(402)] = 11003, + [SMALL_STATE(403)] = 11055, + [SMALL_STATE(404)] = 11111, + [SMALL_STATE(405)] = 11169, + [SMALL_STATE(406)] = 11255, + [SMALL_STATE(407)] = 11306, + [SMALL_STATE(408)] = 11359, + [SMALL_STATE(409)] = 11444, + [SMALL_STATE(410)] = 11529, + [SMALL_STATE(411)] = 11614, + [SMALL_STATE(412)] = 11669, + [SMALL_STATE(413)] = 11722, + [SMALL_STATE(414)] = 11773, + [SMALL_STATE(415)] = 11824, + [SMALL_STATE(416)] = 11877, + [SMALL_STATE(417)] = 11962, + [SMALL_STATE(418)] = 12046, + [SMALL_STATE(419)] = 12096, + [SMALL_STATE(420)] = 12148, + [SMALL_STATE(421)] = 12232, + [SMALL_STATE(422)] = 12316, + [SMALL_STATE(423)] = 12400, + [SMALL_STATE(424)] = 12452, + [SMALL_STATE(425)] = 12534, + [SMALL_STATE(426)] = 12616, + [SMALL_STATE(427)] = 12698, + [SMALL_STATE(428)] = 12780, + [SMALL_STATE(429)] = 12861, + [SMALL_STATE(430)] = 12942, + [SMALL_STATE(431)] = 13023, + [SMALL_STATE(432)] = 13104, + [SMALL_STATE(433)] = 13185, + [SMALL_STATE(434)] = 13266, + [SMALL_STATE(435)] = 13347, + [SMALL_STATE(436)] = 13428, + [SMALL_STATE(437)] = 13508, + [SMALL_STATE(438)] = 13588, + [SMALL_STATE(439)] = 13668, + [SMALL_STATE(440)] = 13748, + [SMALL_STATE(441)] = 13834, + [SMALL_STATE(442)] = 13920, + [SMALL_STATE(443)] = 14006, + [SMALL_STATE(444)] = 14064, + [SMALL_STATE(445)] = 14120, + [SMALL_STATE(446)] = 14203, + [SMALL_STATE(447)] = 14286, + [SMALL_STATE(448)] = 14369, + [SMALL_STATE(449)] = 14452, + [SMALL_STATE(450)] = 14535, + [SMALL_STATE(451)] = 14618, + [SMALL_STATE(452)] = 14701, + [SMALL_STATE(453)] = 14784, + [SMALL_STATE(454)] = 14867, + [SMALL_STATE(455)] = 14921, + [SMALL_STATE(456)] = 14967, + [SMALL_STATE(457)] = 15047, + [SMALL_STATE(458)] = 15127, + [SMALL_STATE(459)] = 15207, + [SMALL_STATE(460)] = 15287, + [SMALL_STATE(461)] = 15367, + [SMALL_STATE(462)] = 15447, + [SMALL_STATE(463)] = 15495, + [SMALL_STATE(464)] = 15575, + [SMALL_STATE(465)] = 15655, + [SMALL_STATE(466)] = 15735, + [SMALL_STATE(467)] = 15789, + [SMALL_STATE(468)] = 15869, + [SMALL_STATE(469)] = 15925, + [SMALL_STATE(470)] = 16005, + [SMALL_STATE(471)] = 16085, + [SMALL_STATE(472)] = 16165, + [SMALL_STATE(473)] = 16245, + [SMALL_STATE(474)] = 16325, + [SMALL_STATE(475)] = 16405, + [SMALL_STATE(476)] = 16459, + [SMALL_STATE(477)] = 16513, + [SMALL_STATE(478)] = 16593, + [SMALL_STATE(479)] = 16673, + [SMALL_STATE(480)] = 16753, + [SMALL_STATE(481)] = 16833, + [SMALL_STATE(482)] = 16913, + [SMALL_STATE(483)] = 16993, + [SMALL_STATE(484)] = 17073, + [SMALL_STATE(485)] = 17153, + [SMALL_STATE(486)] = 17233, + [SMALL_STATE(487)] = 17313, + [SMALL_STATE(488)] = 17393, + [SMALL_STATE(489)] = 17439, + [SMALL_STATE(490)] = 17519, + [SMALL_STATE(491)] = 17599, + [SMALL_STATE(492)] = 17679, + [SMALL_STATE(493)] = 17759, + [SMALL_STATE(494)] = 17815, + [SMALL_STATE(495)] = 17871, + [SMALL_STATE(496)] = 17925, + [SMALL_STATE(497)] = 17971, + [SMALL_STATE(498)] = 18051, + [SMALL_STATE(499)] = 18105, + [SMALL_STATE(500)] = 18178, + [SMALL_STATE(501)] = 18223, + [SMALL_STATE(502)] = 18268, + [SMALL_STATE(503)] = 18313, + [SMALL_STATE(504)] = 18366, + [SMALL_STATE(505)] = 18439, + [SMALL_STATE(506)] = 18512, + [SMALL_STATE(507)] = 18585, + [SMALL_STATE(508)] = 18638, + [SMALL_STATE(509)] = 18691, + [SMALL_STATE(510)] = 18744, + [SMALL_STATE(511)] = 18799, + [SMALL_STATE(512)] = 18842, + [SMALL_STATE(513)] = 18883, + [SMALL_STATE(514)] = 18932, + [SMALL_STATE(515)] = 18987, + [SMALL_STATE(516)] = 19032, + [SMALL_STATE(517)] = 19073, + [SMALL_STATE(518)] = 19122, + [SMALL_STATE(519)] = 19164, + [SMALL_STATE(520)] = 19205, + [SMALL_STATE(521)] = 19282, + [SMALL_STATE(522)] = 19321, + [SMALL_STATE(523)] = 19398, + [SMALL_STATE(524)] = 19475, + [SMALL_STATE(525)] = 19552, + [SMALL_STATE(526)] = 19629, + [SMALL_STATE(527)] = 19668, + [SMALL_STATE(528)] = 19745, + [SMALL_STATE(529)] = 19822, + [SMALL_STATE(530)] = 19899, + [SMALL_STATE(531)] = 19976, + [SMALL_STATE(532)] = 20019, + [SMALL_STATE(533)] = 20062, + [SMALL_STATE(534)] = 20139, + [SMALL_STATE(535)] = 20216, + [SMALL_STATE(536)] = 20293, + [SMALL_STATE(537)] = 20370, + [SMALL_STATE(538)] = 20413, + [SMALL_STATE(539)] = 20481, + [SMALL_STATE(540)] = 20555, + [SMALL_STATE(541)] = 20625, + [SMALL_STATE(542)] = 20695, + [SMALL_STATE(543)] = 20769, + [SMALL_STATE(544)] = 20843, + [SMALL_STATE(545)] = 20913, + [SMALL_STATE(546)] = 20983, + [SMALL_STATE(547)] = 21057, + [SMALL_STATE(548)] = 21131, + [SMALL_STATE(549)] = 21205, + [SMALL_STATE(550)] = 21273, + [SMALL_STATE(551)] = 21341, + [SMALL_STATE(552)] = 21415, + [SMALL_STATE(553)] = 21489, + [SMALL_STATE(554)] = 21563, + [SMALL_STATE(555)] = 21637, + [SMALL_STATE(556)] = 21711, + [SMALL_STATE(557)] = 21785, + [SMALL_STATE(558)] = 21853, + [SMALL_STATE(559)] = 21927, + [SMALL_STATE(560)] = 22001, + [SMALL_STATE(561)] = 22075, + [SMALL_STATE(562)] = 22149, + [SMALL_STATE(563)] = 22223, + [SMALL_STATE(564)] = 22297, + [SMALL_STATE(565)] = 22371, + [SMALL_STATE(566)] = 22438, + [SMALL_STATE(567)] = 22475, + [SMALL_STATE(568)] = 22510, + [SMALL_STATE(569)] = 22574, + [SMALL_STATE(570)] = 22638, + [SMALL_STATE(571)] = 22702, + [SMALL_STATE(572)] = 22766, + [SMALL_STATE(573)] = 22830, + [SMALL_STATE(574)] = 22894, + [SMALL_STATE(575)] = 22958, + [SMALL_STATE(576)] = 23022, + [SMALL_STATE(577)] = 23086, + [SMALL_STATE(578)] = 23150, + [SMALL_STATE(579)] = 23214, + [SMALL_STATE(580)] = 23278, + [SMALL_STATE(581)] = 23342, + [SMALL_STATE(582)] = 23406, + [SMALL_STATE(583)] = 23470, + [SMALL_STATE(584)] = 23534, + [SMALL_STATE(585)] = 23598, + [SMALL_STATE(586)] = 23662, + [SMALL_STATE(587)] = 23726, + [SMALL_STATE(588)] = 23790, + [SMALL_STATE(589)] = 23854, + [SMALL_STATE(590)] = 23918, + [SMALL_STATE(591)] = 23982, + [SMALL_STATE(592)] = 24046, + [SMALL_STATE(593)] = 24110, + [SMALL_STATE(594)] = 24174, + [SMALL_STATE(595)] = 24238, + [SMALL_STATE(596)] = 24302, + [SMALL_STATE(597)] = 24338, + [SMALL_STATE(598)] = 24402, + [SMALL_STATE(599)] = 24466, + [SMALL_STATE(600)] = 24500, + [SMALL_STATE(601)] = 24564, + [SMALL_STATE(602)] = 24628, + [SMALL_STATE(603)] = 24692, + [SMALL_STATE(604)] = 24756, + [SMALL_STATE(605)] = 24820, + [SMALL_STATE(606)] = 24884, + [SMALL_STATE(607)] = 24948, + [SMALL_STATE(608)] = 25012, + [SMALL_STATE(609)] = 25076, + [SMALL_STATE(610)] = 25140, + [SMALL_STATE(611)] = 25204, + [SMALL_STATE(612)] = 25268, + [SMALL_STATE(613)] = 25332, + [SMALL_STATE(614)] = 25396, + [SMALL_STATE(615)] = 25460, + [SMALL_STATE(616)] = 25524, + [SMALL_STATE(617)] = 25588, + [SMALL_STATE(618)] = 25649, + [SMALL_STATE(619)] = 25710, + [SMALL_STATE(620)] = 25771, + [SMALL_STATE(621)] = 25832, + [SMALL_STATE(622)] = 25893, + [SMALL_STATE(623)] = 25954, + [SMALL_STATE(624)] = 26015, + [SMALL_STATE(625)] = 26076, + [SMALL_STATE(626)] = 26137, + [SMALL_STATE(627)] = 26198, + [SMALL_STATE(628)] = 26259, + [SMALL_STATE(629)] = 26320, + [SMALL_STATE(630)] = 26381, + [SMALL_STATE(631)] = 26442, + [SMALL_STATE(632)] = 26503, + [SMALL_STATE(633)] = 26563, + [SMALL_STATE(634)] = 26620, + [SMALL_STATE(635)] = 26677, + [SMALL_STATE(636)] = 26734, + [SMALL_STATE(637)] = 26768, + [SMALL_STATE(638)] = 26822, + [SMALL_STATE(639)] = 26874, + [SMALL_STATE(640)] = 26928, + [SMALL_STATE(641)] = 26980, + [SMALL_STATE(642)] = 27014, + [SMALL_STATE(643)] = 27066, + [SMALL_STATE(644)] = 27118, + [SMALL_STATE(645)] = 27159, + [SMALL_STATE(646)] = 27200, + [SMALL_STATE(647)] = 27241, + [SMALL_STATE(648)] = 27276, + [SMALL_STATE(649)] = 27318, + [SMALL_STATE(650)] = 27346, + [SMALL_STATE(651)] = 27388, + [SMALL_STATE(652)] = 27416, + [SMALL_STATE(653)] = 27450, + [SMALL_STATE(654)] = 27482, + [SMALL_STATE(655)] = 27514, + [SMALL_STATE(656)] = 27548, + [SMALL_STATE(657)] = 27576, + [SMALL_STATE(658)] = 27608, + [SMALL_STATE(659)] = 27643, + [SMALL_STATE(660)] = 27674, + [SMALL_STATE(661)] = 27715, + [SMALL_STATE(662)] = 27754, + [SMALL_STATE(663)] = 27795, + [SMALL_STATE(664)] = 27822, + [SMALL_STATE(665)] = 27863, + [SMALL_STATE(666)] = 27904, + [SMALL_STATE(667)] = 27937, + [SMALL_STATE(668)] = 27976, + [SMALL_STATE(669)] = 28023, + [SMALL_STATE(670)] = 28054, + [SMALL_STATE(671)] = 28093, + [SMALL_STATE(672)] = 28124, + [SMALL_STATE(673)] = 28165, + [SMALL_STATE(674)] = 28212, + [SMALL_STATE(675)] = 28251, + [SMALL_STATE(676)] = 28298, + [SMALL_STATE(677)] = 28331, + [SMALL_STATE(678)] = 28370, + [SMALL_STATE(679)] = 28396, + [SMALL_STATE(680)] = 28422, + [SMALL_STATE(681)] = 28448, + [SMALL_STATE(682)] = 28474, + [SMALL_STATE(683)] = 28500, + [SMALL_STATE(684)] = 28538, + [SMALL_STATE(685)] = 28564, + [SMALL_STATE(686)] = 28590, + [SMALL_STATE(687)] = 28628, + [SMALL_STATE(688)] = 28654, + [SMALL_STATE(689)] = 28680, + [SMALL_STATE(690)] = 28712, + [SMALL_STATE(691)] = 28744, + [SMALL_STATE(692)] = 28770, + [SMALL_STATE(693)] = 28804, + [SMALL_STATE(694)] = 28830, + [SMALL_STATE(695)] = 28856, + [SMALL_STATE(696)] = 28882, + [SMALL_STATE(697)] = 28920, + [SMALL_STATE(698)] = 28946, + [SMALL_STATE(699)] = 28972, + [SMALL_STATE(700)] = 28998, + [SMALL_STATE(701)] = 29024, + [SMALL_STATE(702)] = 29050, + [SMALL_STATE(703)] = 29076, + [SMALL_STATE(704)] = 29102, + [SMALL_STATE(705)] = 29136, + [SMALL_STATE(706)] = 29162, + [SMALL_STATE(707)] = 29188, + [SMALL_STATE(708)] = 29218, + [SMALL_STATE(709)] = 29244, + [SMALL_STATE(710)] = 29270, + [SMALL_STATE(711)] = 29296, + [SMALL_STATE(712)] = 29322, + [SMALL_STATE(713)] = 29348, + [SMALL_STATE(714)] = 29374, + [SMALL_STATE(715)] = 29400, + [SMALL_STATE(716)] = 29438, + [SMALL_STATE(717)] = 29476, + [SMALL_STATE(718)] = 29514, + [SMALL_STATE(719)] = 29546, + [SMALL_STATE(720)] = 29572, + [SMALL_STATE(721)] = 29598, + [SMALL_STATE(722)] = 29624, + [SMALL_STATE(723)] = 29650, + [SMALL_STATE(724)] = 29688, + [SMALL_STATE(725)] = 29714, + [SMALL_STATE(726)] = 29753, + [SMALL_STATE(727)] = 29784, + [SMALL_STATE(728)] = 29825, + [SMALL_STATE(729)] = 29850, + [SMALL_STATE(730)] = 29885, + [SMALL_STATE(731)] = 29928, + [SMALL_STATE(732)] = 29971, + [SMALL_STATE(733)] = 30012, + [SMALL_STATE(734)] = 30037, + [SMALL_STATE(735)] = 30078, + [SMALL_STATE(736)] = 30119, + [SMALL_STATE(737)] = 30144, + [SMALL_STATE(738)] = 30169, + [SMALL_STATE(739)] = 30194, + [SMALL_STATE(740)] = 30219, + [SMALL_STATE(741)] = 30244, + [SMALL_STATE(742)] = 30269, + [SMALL_STATE(743)] = 30306, + [SMALL_STATE(744)] = 30333, + [SMALL_STATE(745)] = 30374, + [SMALL_STATE(746)] = 30399, + [SMALL_STATE(747)] = 30424, + [SMALL_STATE(748)] = 30449, + [SMALL_STATE(749)] = 30474, + [SMALL_STATE(750)] = 30499, + [SMALL_STATE(751)] = 30524, + [SMALL_STATE(752)] = 30565, + [SMALL_STATE(753)] = 30590, + [SMALL_STATE(754)] = 30615, + [SMALL_STATE(755)] = 30640, + [SMALL_STATE(756)] = 30665, + [SMALL_STATE(757)] = 30690, + [SMALL_STATE(758)] = 30733, + [SMALL_STATE(759)] = 30758, + [SMALL_STATE(760)] = 30783, + [SMALL_STATE(761)] = 30808, + [SMALL_STATE(762)] = 30851, + [SMALL_STATE(763)] = 30876, + [SMALL_STATE(764)] = 30917, + [SMALL_STATE(765)] = 30942, + [SMALL_STATE(766)] = 30971, + [SMALL_STATE(767)] = 30996, + [SMALL_STATE(768)] = 31021, + [SMALL_STATE(769)] = 31046, + [SMALL_STATE(770)] = 31071, + [SMALL_STATE(771)] = 31096, + [SMALL_STATE(772)] = 31121, + [SMALL_STATE(773)] = 31146, + [SMALL_STATE(774)] = 31171, + [SMALL_STATE(775)] = 31196, + [SMALL_STATE(776)] = 31221, + [SMALL_STATE(777)] = 31262, + [SMALL_STATE(778)] = 31305, + [SMALL_STATE(779)] = 31330, + [SMALL_STATE(780)] = 31355, + [SMALL_STATE(781)] = 31398, + [SMALL_STATE(782)] = 31423, + [SMALL_STATE(783)] = 31462, + [SMALL_STATE(784)] = 31503, + [SMALL_STATE(785)] = 31543, + [SMALL_STATE(786)] = 31579, + [SMALL_STATE(787)] = 31615, + [SMALL_STATE(788)] = 31653, + [SMALL_STATE(789)] = 31689, + [SMALL_STATE(790)] = 31715, + [SMALL_STATE(791)] = 31755, + [SMALL_STATE(792)] = 31795, + [SMALL_STATE(793)] = 31823, + [SMALL_STATE(794)] = 31853, + [SMALL_STATE(795)] = 31893, + [SMALL_STATE(796)] = 31921, + [SMALL_STATE(797)] = 31957, + [SMALL_STATE(798)] = 31993, + [SMALL_STATE(799)] = 32033, + [SMALL_STATE(800)] = 32071, + [SMALL_STATE(801)] = 32111, + [SMALL_STATE(802)] = 32147, + [SMALL_STATE(803)] = 32177, + [SMALL_STATE(804)] = 32217, + [SMALL_STATE(805)] = 32247, + [SMALL_STATE(806)] = 32285, + [SMALL_STATE(807)] = 32315, + [SMALL_STATE(808)] = 32353, + [SMALL_STATE(809)] = 32391, + [SMALL_STATE(810)] = 32423, + [SMALL_STATE(811)] = 32463, + [SMALL_STATE(812)] = 32499, + [SMALL_STATE(813)] = 32539, + [SMALL_STATE(814)] = 32579, + [SMALL_STATE(815)] = 32619, + [SMALL_STATE(816)] = 32657, + [SMALL_STATE(817)] = 32687, + [SMALL_STATE(818)] = 32715, + [SMALL_STATE(819)] = 32753, + [SMALL_STATE(820)] = 32781, + [SMALL_STATE(821)] = 32817, + [SMALL_STATE(822)] = 32850, + [SMALL_STATE(823)] = 32885, + [SMALL_STATE(824)] = 32912, + [SMALL_STATE(825)] = 32939, + [SMALL_STATE(826)] = 32974, + [SMALL_STATE(827)] = 33009, + [SMALL_STATE(828)] = 33038, + [SMALL_STATE(829)] = 33075, + [SMALL_STATE(830)] = 33112, + [SMALL_STATE(831)] = 33143, + [SMALL_STATE(832)] = 33172, + [SMALL_STATE(833)] = 33199, + [SMALL_STATE(834)] = 33234, + [SMALL_STATE(835)] = 33263, + [SMALL_STATE(836)] = 33298, + [SMALL_STATE(837)] = 33333, + [SMALL_STATE(838)] = 33368, + [SMALL_STATE(839)] = 33395, + [SMALL_STATE(840)] = 33430, + [SMALL_STATE(841)] = 33467, + [SMALL_STATE(842)] = 33496, + [SMALL_STATE(843)] = 33531, + [SMALL_STATE(844)] = 33568, + [SMALL_STATE(845)] = 33599, + [SMALL_STATE(846)] = 33634, + [SMALL_STATE(847)] = 33671, + [SMALL_STATE(848)] = 33700, + [SMALL_STATE(849)] = 33737, + [SMALL_STATE(850)] = 33774, + [SMALL_STATE(851)] = 33801, + [SMALL_STATE(852)] = 33838, + [SMALL_STATE(853)] = 33873, + [SMALL_STATE(854)] = 33902, + [SMALL_STATE(855)] = 33939, + [SMALL_STATE(856)] = 33968, + [SMALL_STATE(857)] = 34003, + [SMALL_STATE(858)] = 34038, + [SMALL_STATE(859)] = 34072, + [SMALL_STATE(860)] = 34106, + [SMALL_STATE(861)] = 34140, + [SMALL_STATE(862)] = 34174, + [SMALL_STATE(863)] = 34208, + [SMALL_STATE(864)] = 34242, + [SMALL_STATE(865)] = 34276, + [SMALL_STATE(866)] = 34310, + [SMALL_STATE(867)] = 34344, + [SMALL_STATE(868)] = 34378, + [SMALL_STATE(869)] = 34412, + [SMALL_STATE(870)] = 34446, + [SMALL_STATE(871)] = 34480, + [SMALL_STATE(872)] = 34514, + [SMALL_STATE(873)] = 34548, + [SMALL_STATE(874)] = 34582, + [SMALL_STATE(875)] = 34616, + [SMALL_STATE(876)] = 34650, + [SMALL_STATE(877)] = 34682, + [SMALL_STATE(878)] = 34716, + [SMALL_STATE(879)] = 34750, + [SMALL_STATE(880)] = 34784, + [SMALL_STATE(881)] = 34818, + [SMALL_STATE(882)] = 34852, + [SMALL_STATE(883)] = 34878, + [SMALL_STATE(884)] = 34904, + [SMALL_STATE(885)] = 34938, + [SMALL_STATE(886)] = 34972, + [SMALL_STATE(887)] = 35006, + [SMALL_STATE(888)] = 35040, + [SMALL_STATE(889)] = 35074, + [SMALL_STATE(890)] = 35108, + [SMALL_STATE(891)] = 35142, + [SMALL_STATE(892)] = 35176, + [SMALL_STATE(893)] = 35210, + [SMALL_STATE(894)] = 35244, + [SMALL_STATE(895)] = 35278, + [SMALL_STATE(896)] = 35312, + [SMALL_STATE(897)] = 35346, + [SMALL_STATE(898)] = 35380, + [SMALL_STATE(899)] = 35414, + [SMALL_STATE(900)] = 35448, + [SMALL_STATE(901)] = 35482, + [SMALL_STATE(902)] = 35516, + [SMALL_STATE(903)] = 35548, + [SMALL_STATE(904)] = 35582, + [SMALL_STATE(905)] = 35616, + [SMALL_STATE(906)] = 35650, + [SMALL_STATE(907)] = 35684, + [SMALL_STATE(908)] = 35718, + [SMALL_STATE(909)] = 35752, + [SMALL_STATE(910)] = 35778, + [SMALL_STATE(911)] = 35812, + [SMALL_STATE(912)] = 35842, + [SMALL_STATE(913)] = 35876, + [SMALL_STATE(914)] = 35910, + [SMALL_STATE(915)] = 35944, + [SMALL_STATE(916)] = 35978, + [SMALL_STATE(917)] = 36012, + [SMALL_STATE(918)] = 36046, + [SMALL_STATE(919)] = 36080, + [SMALL_STATE(920)] = 36114, + [SMALL_STATE(921)] = 36148, + [SMALL_STATE(922)] = 36182, + [SMALL_STATE(923)] = 36210, + [SMALL_STATE(924)] = 36244, + [SMALL_STATE(925)] = 36276, + [SMALL_STATE(926)] = 36310, + [SMALL_STATE(927)] = 36344, + [SMALL_STATE(928)] = 36378, + [SMALL_STATE(929)] = 36404, + [SMALL_STATE(930)] = 36428, + [SMALL_STATE(931)] = 36462, + [SMALL_STATE(932)] = 36496, + [SMALL_STATE(933)] = 36524, + [SMALL_STATE(934)] = 36556, + [SMALL_STATE(935)] = 36587, + [SMALL_STATE(936)] = 36618, + [SMALL_STATE(937)] = 36649, + [SMALL_STATE(938)] = 36680, + [SMALL_STATE(939)] = 36711, + [SMALL_STATE(940)] = 36742, + [SMALL_STATE(941)] = 36773, + [SMALL_STATE(942)] = 36804, + [SMALL_STATE(943)] = 36829, + [SMALL_STATE(944)] = 36854, + [SMALL_STATE(945)] = 36885, + [SMALL_STATE(946)] = 36916, + [SMALL_STATE(947)] = 36945, + [SMALL_STATE(948)] = 36968, + [SMALL_STATE(949)] = 36999, + [SMALL_STATE(950)] = 37030, + [SMALL_STATE(951)] = 37059, + [SMALL_STATE(952)] = 37090, + [SMALL_STATE(953)] = 37121, + [SMALL_STATE(954)] = 37152, + [SMALL_STATE(955)] = 37183, + [SMALL_STATE(956)] = 37214, + [SMALL_STATE(957)] = 37245, + [SMALL_STATE(958)] = 37276, + [SMALL_STATE(959)] = 37307, + [SMALL_STATE(960)] = 37332, + [SMALL_STATE(961)] = 37363, + [SMALL_STATE(962)] = 37394, + [SMALL_STATE(963)] = 37425, + [SMALL_STATE(964)] = 37446, + [SMALL_STATE(965)] = 37477, + [SMALL_STATE(966)] = 37508, + [SMALL_STATE(967)] = 37539, + [SMALL_STATE(968)] = 37570, + [SMALL_STATE(969)] = 37601, + [SMALL_STATE(970)] = 37632, + [SMALL_STATE(971)] = 37663, + [SMALL_STATE(972)] = 37694, + [SMALL_STATE(973)] = 37718, + [SMALL_STATE(974)] = 37740, + [SMALL_STATE(975)] = 37760, + [SMALL_STATE(976)] = 37780, + [SMALL_STATE(977)] = 37800, + [SMALL_STATE(978)] = 37824, + [SMALL_STATE(979)] = 37844, + [SMALL_STATE(980)] = 37866, + [SMALL_STATE(981)] = 37888, + [SMALL_STATE(982)] = 37908, + [SMALL_STATE(983)] = 37932, + [SMALL_STATE(984)] = 37952, + [SMALL_STATE(985)] = 37972, + [SMALL_STATE(986)] = 37994, + [SMALL_STATE(987)] = 38018, + [SMALL_STATE(988)] = 38038, + [SMALL_STATE(989)] = 38059, + [SMALL_STATE(990)] = 38082, + [SMALL_STATE(991)] = 38105, + [SMALL_STATE(992)] = 38132, + [SMALL_STATE(993)] = 38159, + [SMALL_STATE(994)] = 38186, + [SMALL_STATE(995)] = 38213, + [SMALL_STATE(996)] = 38240, + [SMALL_STATE(997)] = 38267, + [SMALL_STATE(998)] = 38294, + [SMALL_STATE(999)] = 38314, + [SMALL_STATE(1000)] = 38336, + [SMALL_STATE(1001)] = 38359, + [SMALL_STATE(1002)] = 38378, + [SMALL_STATE(1003)] = 38401, + [SMALL_STATE(1004)] = 38426, + [SMALL_STATE(1005)] = 38447, + [SMALL_STATE(1006)] = 38466, + [SMALL_STATE(1007)] = 38481, + [SMALL_STATE(1008)] = 38506, + [SMALL_STATE(1009)] = 38531, + [SMALL_STATE(1010)] = 38546, + [SMALL_STATE(1011)] = 38565, + [SMALL_STATE(1012)] = 38590, + [SMALL_STATE(1013)] = 38612, + [SMALL_STATE(1014)] = 38634, + [SMALL_STATE(1015)] = 38656, + [SMALL_STATE(1016)] = 38678, + [SMALL_STATE(1017)] = 38700, + [SMALL_STATE(1018)] = 38722, + [SMALL_STATE(1019)] = 38738, + [SMALL_STATE(1020)] = 38760, + [SMALL_STATE(1021)] = 38780, + [SMALL_STATE(1022)] = 38802, + [SMALL_STATE(1023)] = 38824, + [SMALL_STATE(1024)] = 38846, + [SMALL_STATE(1025)] = 38865, + [SMALL_STATE(1026)] = 38878, + [SMALL_STATE(1027)] = 38891, + [SMALL_STATE(1028)] = 38908, + [SMALL_STATE(1029)] = 38927, + [SMALL_STATE(1030)] = 38940, + [SMALL_STATE(1031)] = 38953, + [SMALL_STATE(1032)] = 38972, + [SMALL_STATE(1033)] = 38991, + [SMALL_STATE(1034)] = 39006, + [SMALL_STATE(1035)] = 39019, + [SMALL_STATE(1036)] = 39034, + [SMALL_STATE(1037)] = 39053, + [SMALL_STATE(1038)] = 39066, + [SMALL_STATE(1039)] = 39081, + [SMALL_STATE(1040)] = 39098, + [SMALL_STATE(1041)] = 39115, + [SMALL_STATE(1042)] = 39131, + [SMALL_STATE(1043)] = 39147, + [SMALL_STATE(1044)] = 39161, + [SMALL_STATE(1045)] = 39177, + [SMALL_STATE(1046)] = 39193, + [SMALL_STATE(1047)] = 39209, + [SMALL_STATE(1048)] = 39225, + [SMALL_STATE(1049)] = 39241, + [SMALL_STATE(1050)] = 39257, + [SMALL_STATE(1051)] = 39273, + [SMALL_STATE(1052)] = 39289, + [SMALL_STATE(1053)] = 39305, + [SMALL_STATE(1054)] = 39321, + [SMALL_STATE(1055)] = 39337, + [SMALL_STATE(1056)] = 39353, + [SMALL_STATE(1057)] = 39369, + [SMALL_STATE(1058)] = 39385, + [SMALL_STATE(1059)] = 39401, + [SMALL_STATE(1060)] = 39417, + [SMALL_STATE(1061)] = 39433, + [SMALL_STATE(1062)] = 39447, + [SMALL_STATE(1063)] = 39463, + [SMALL_STATE(1064)] = 39479, + [SMALL_STATE(1065)] = 39495, + [SMALL_STATE(1066)] = 39509, + [SMALL_STATE(1067)] = 39525, + [SMALL_STATE(1068)] = 39539, + [SMALL_STATE(1069)] = 39555, + [SMALL_STATE(1070)] = 39571, + [SMALL_STATE(1071)] = 39587, + [SMALL_STATE(1072)] = 39603, + [SMALL_STATE(1073)] = 39619, + [SMALL_STATE(1074)] = 39635, + [SMALL_STATE(1075)] = 39651, + [SMALL_STATE(1076)] = 39667, + [SMALL_STATE(1077)] = 39683, + [SMALL_STATE(1078)] = 39699, + [SMALL_STATE(1079)] = 39715, + [SMALL_STATE(1080)] = 39731, + [SMALL_STATE(1081)] = 39747, + [SMALL_STATE(1082)] = 39763, + [SMALL_STATE(1083)] = 39779, + [SMALL_STATE(1084)] = 39795, + [SMALL_STATE(1085)] = 39807, + [SMALL_STATE(1086)] = 39823, + [SMALL_STATE(1087)] = 39839, + [SMALL_STATE(1088)] = 39855, + [SMALL_STATE(1089)] = 39871, + [SMALL_STATE(1090)] = 39887, + [SMALL_STATE(1091)] = 39903, + [SMALL_STATE(1092)] = 39919, + [SMALL_STATE(1093)] = 39935, + [SMALL_STATE(1094)] = 39951, + [SMALL_STATE(1095)] = 39967, + [SMALL_STATE(1096)] = 39983, + [SMALL_STATE(1097)] = 39999, + [SMALL_STATE(1098)] = 40015, + [SMALL_STATE(1099)] = 40031, + [SMALL_STATE(1100)] = 40047, + [SMALL_STATE(1101)] = 40063, + [SMALL_STATE(1102)] = 40079, + [SMALL_STATE(1103)] = 40095, + [SMALL_STATE(1104)] = 40107, + [SMALL_STATE(1105)] = 40119, + [SMALL_STATE(1106)] = 40135, + [SMALL_STATE(1107)] = 40151, + [SMALL_STATE(1108)] = 40167, + [SMALL_STATE(1109)] = 40183, + [SMALL_STATE(1110)] = 40199, + [SMALL_STATE(1111)] = 40215, + [SMALL_STATE(1112)] = 40231, + [SMALL_STATE(1113)] = 40245, + [SMALL_STATE(1114)] = 40258, + [SMALL_STATE(1115)] = 40271, + [SMALL_STATE(1116)] = 40284, + [SMALL_STATE(1117)] = 40295, + [SMALL_STATE(1118)] = 40308, + [SMALL_STATE(1119)] = 40321, + [SMALL_STATE(1120)] = 40332, + [SMALL_STATE(1121)] = 40345, + [SMALL_STATE(1122)] = 40358, + [SMALL_STATE(1123)] = 40367, + [SMALL_STATE(1124)] = 40380, + [SMALL_STATE(1125)] = 40393, + [SMALL_STATE(1126)] = 40406, + [SMALL_STATE(1127)] = 40417, + [SMALL_STATE(1128)] = 40430, + [SMALL_STATE(1129)] = 40441, + [SMALL_STATE(1130)] = 40454, + [SMALL_STATE(1131)] = 40465, + [SMALL_STATE(1132)] = 40478, + [SMALL_STATE(1133)] = 40491, + [SMALL_STATE(1134)] = 40500, + [SMALL_STATE(1135)] = 40513, + [SMALL_STATE(1136)] = 40526, + [SMALL_STATE(1137)] = 40539, + [SMALL_STATE(1138)] = 40552, + [SMALL_STATE(1139)] = 40565, + [SMALL_STATE(1140)] = 40576, + [SMALL_STATE(1141)] = 40587, + [SMALL_STATE(1142)] = 40600, + [SMALL_STATE(1143)] = 40613, + [SMALL_STATE(1144)] = 40626, + [SMALL_STATE(1145)] = 40637, + [SMALL_STATE(1146)] = 40650, + [SMALL_STATE(1147)] = 40663, + [SMALL_STATE(1148)] = 40674, + [SMALL_STATE(1149)] = 40687, + [SMALL_STATE(1150)] = 40700, + [SMALL_STATE(1151)] = 40713, + [SMALL_STATE(1152)] = 40726, + [SMALL_STATE(1153)] = 40737, + [SMALL_STATE(1154)] = 40750, + [SMALL_STATE(1155)] = 40761, + [SMALL_STATE(1156)] = 40774, + [SMALL_STATE(1157)] = 40787, + [SMALL_STATE(1158)] = 40800, + [SMALL_STATE(1159)] = 40813, + [SMALL_STATE(1160)] = 40826, + [SMALL_STATE(1161)] = 40839, + [SMALL_STATE(1162)] = 40852, + [SMALL_STATE(1163)] = 40865, + [SMALL_STATE(1164)] = 40878, + [SMALL_STATE(1165)] = 40891, + [SMALL_STATE(1166)] = 40904, + [SMALL_STATE(1167)] = 40917, + [SMALL_STATE(1168)] = 40930, + [SMALL_STATE(1169)] = 40940, + [SMALL_STATE(1170)] = 40948, + [SMALL_STATE(1171)] = 40958, + [SMALL_STATE(1172)] = 40968, + [SMALL_STATE(1173)] = 40978, + [SMALL_STATE(1174)] = 40988, + [SMALL_STATE(1175)] = 40996, + [SMALL_STATE(1176)] = 41004, + [SMALL_STATE(1177)] = 41014, + [SMALL_STATE(1178)] = 41024, + [SMALL_STATE(1179)] = 41034, + [SMALL_STATE(1180)] = 41044, + [SMALL_STATE(1181)] = 41054, + [SMALL_STATE(1182)] = 41062, + [SMALL_STATE(1183)] = 41072, + [SMALL_STATE(1184)] = 41082, + [SMALL_STATE(1185)] = 41090, + [SMALL_STATE(1186)] = 41100, + [SMALL_STATE(1187)] = 41110, + [SMALL_STATE(1188)] = 41120, + [SMALL_STATE(1189)] = 41130, + [SMALL_STATE(1190)] = 41140, + [SMALL_STATE(1191)] = 41150, + [SMALL_STATE(1192)] = 41160, + [SMALL_STATE(1193)] = 41170, + [SMALL_STATE(1194)] = 41178, + [SMALL_STATE(1195)] = 41188, + [SMALL_STATE(1196)] = 41198, + [SMALL_STATE(1197)] = 41206, + [SMALL_STATE(1198)] = 41216, + [SMALL_STATE(1199)] = 41226, + [SMALL_STATE(1200)] = 41236, + [SMALL_STATE(1201)] = 41246, + [SMALL_STATE(1202)] = 41256, + [SMALL_STATE(1203)] = 41266, + [SMALL_STATE(1204)] = 41276, + [SMALL_STATE(1205)] = 41286, + [SMALL_STATE(1206)] = 41296, + [SMALL_STATE(1207)] = 41306, + [SMALL_STATE(1208)] = 41316, + [SMALL_STATE(1209)] = 41326, + [SMALL_STATE(1210)] = 41336, + [SMALL_STATE(1211)] = 41346, + [SMALL_STATE(1212)] = 41356, + [SMALL_STATE(1213)] = 41364, + [SMALL_STATE(1214)] = 41371, + [SMALL_STATE(1215)] = 41378, + [SMALL_STATE(1216)] = 41385, + [SMALL_STATE(1217)] = 41392, + [SMALL_STATE(1218)] = 41399, + [SMALL_STATE(1219)] = 41406, + [SMALL_STATE(1220)] = 41413, + [SMALL_STATE(1221)] = 41420, + [SMALL_STATE(1222)] = 41427, + [SMALL_STATE(1223)] = 41434, + [SMALL_STATE(1224)] = 41441, + [SMALL_STATE(1225)] = 41448, + [SMALL_STATE(1226)] = 41455, + [SMALL_STATE(1227)] = 41462, + [SMALL_STATE(1228)] = 41469, + [SMALL_STATE(1229)] = 41476, + [SMALL_STATE(1230)] = 41483, + [SMALL_STATE(1231)] = 41490, + [SMALL_STATE(1232)] = 41497, + [SMALL_STATE(1233)] = 41504, + [SMALL_STATE(1234)] = 41511, + [SMALL_STATE(1235)] = 41518, + [SMALL_STATE(1236)] = 41525, + [SMALL_STATE(1237)] = 41532, + [SMALL_STATE(1238)] = 41539, + [SMALL_STATE(1239)] = 41546, + [SMALL_STATE(1240)] = 41553, + [SMALL_STATE(1241)] = 41560, + [SMALL_STATE(1242)] = 41567, + [SMALL_STATE(1243)] = 41574, + [SMALL_STATE(1244)] = 41581, + [SMALL_STATE(1245)] = 41588, + [SMALL_STATE(1246)] = 41595, + [SMALL_STATE(1247)] = 41602, + [SMALL_STATE(1248)] = 41609, + [SMALL_STATE(1249)] = 41616, + [SMALL_STATE(1250)] = 41623, + [SMALL_STATE(1251)] = 41630, + [SMALL_STATE(1252)] = 41637, + [SMALL_STATE(1253)] = 41644, + [SMALL_STATE(1254)] = 41651, + [SMALL_STATE(1255)] = 41658, + [SMALL_STATE(1256)] = 41665, + [SMALL_STATE(1257)] = 41672, + [SMALL_STATE(1258)] = 41679, + [SMALL_STATE(1259)] = 41686, + [SMALL_STATE(1260)] = 41693, + [SMALL_STATE(1261)] = 41700, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -78911,1391 +60854,1200 @@ 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(112), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [89] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(112), - [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1200), - [97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(407), - [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(419), - [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(414), - [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(13), - [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(340), - [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(475), - [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(399), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(401), - [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1317), - [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(529), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(488), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(928), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(928), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(490), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(403), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(88), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(88), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(956), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(82), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(952), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(952), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(536), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(418), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(415), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(413), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(412), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(78), - [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(78), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(100), - [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(973), - [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1051), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), - [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword, 1, 0, 0), - [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unaryExpression, 2, 0, 0), - [242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unaryExpression, 2, 0, 0), - [244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 4, 0, 30), - [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 4, 0, 30), - [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 10), - [254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 10), - [256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 4, 0, 31), - [258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 4, 0, 31), - [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 4, 0, 20), - [262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 4, 0, 20), - [264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(70), - [269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), - [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(943), - [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(348), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(1209), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(83), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(99), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(99), - [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(78), - [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(78), - [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(100), - [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(973), - [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(1051), - [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 16), - [306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 16), - [308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 14), - [310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 14), - [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(57), - [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(1233), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 0), - [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 3, 0, 0), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(69), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(1216), - [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 4, 0, 0), - [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 4, 0, 0), - [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), - [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), - [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(88), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(88), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(956), - [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(82), - [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(952), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(952), - [362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 2), - [364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 2), - [366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 2), - [368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 2), - [370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 1, 0, 0), - [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 1, 0, 0), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_statement, 3, 0, 0), - [382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_statement, 3, 0, 0), - [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_statement, 4, 0, 0), - [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_statement, 4, 0, 0), - [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 2), - [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 2), - [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 2), - [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 2), - [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2, 0, 2), - [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2, 0, 2), - [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 3, 0, 0), - [402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 3, 0, 0), - [404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 4, 0, 0), - [406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 4, 0, 0), - [408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 5, 0, 0), - [410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 5, 0, 0), - [412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 2, 0, 0), - [414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 2, 0, 0), - [416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 2, 0, 2), - [418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 2, 0, 2), - [420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_expression, 3, 0, 0), - [422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_expression, 3, 0, 0), - [424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lhs_expression, 1, 0, 0), - [426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lhs_expression, 1, 0, 0), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call, 3, 0, 15), - [436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call, 3, 0, 15), - [438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 5, 0, 0), - [440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 5, 0, 0), - [442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_trace_expression, 4, 0, 0), - [444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_trace_expression, 4, 0, 0), - [446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), - [448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), - [450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 13), - [452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 13), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 29), - [458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 29), - [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 6, 0, 54), - [470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 6, 0, 54), - [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 1, 0, 9), - [474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 1, 0, 9), - [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3, 0, 0), - [478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3, 0, 0), - [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__arithmeticOperator, 1, 0, 0), - [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__arithmeticOperator, 1, 0, 0), - [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), - [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 2, 0, 2), - [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 2, 0, 2), - [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 1, 0, 0), - [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 1, 0, 0), - [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_runtime_type_check_expression, 3, 0, 8), - [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_runtime_type_check_expression, 3, 0, 8), - [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rhs_expression, 1, 0, 0), - [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__rhs_expression, 1, 0, 0), - [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), - [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__postfixUnaryOperator, 1, 0, 0), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__postfixUnaryOperator, 1, 0, 0), - [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), - [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), - [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__compoundAssignmentOperator, 2, 0, 0), - [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__compoundAssignmentOperator, 2, 0, 0), - [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call, 2, 0, 6), - [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call, 2, 0, 6), - [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 1, 0, 0), - [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 1, 0, 0), - [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 1, 0, 1), - [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 1, 0, 1), - [544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4, 0, 0), - [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4, 0, 0), - [548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constructor_call, 1, 0, 1), REDUCE(sym_call_expression, 1, 0, 1), - [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constructor_call, 1, 0, 1), REDUCE(sym_call_expression, 1, 0, 1), - [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 45), - [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 45), - [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 5, 0, 13), - [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 5, 0, 13), - [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 2), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 2), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 2, 0, 5), - [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 2, 0, 5), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1, 0, 0), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1, 0, 0), - [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bool, 1, 0, 0), - [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bool, 1, 0, 0), - [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 18), - [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 18), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3, 0, 52), - [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 3, 0, 52), - [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 17), - [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 17), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 17), - [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 17), - [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 18), - [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 18), - [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 32), - [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 32), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 32), SHIFT(8), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 50), - [653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 50), - [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 50), SHIFT(8), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 101), - [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 101), - [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 101), SHIFT(8), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 17), REDUCE(sym_typedef_declaration, 5, 0, 32), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 17), REDUCE(sym_typedef_declaration, 5, 0, 32), - [679] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 17), REDUCE(sym_typedef_declaration, 5, 0, 32), SHIFT(901), - [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_builtin_type, 1, 0, 0), - [685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_builtin_type, 1, 0, 0), - [687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 64), - [689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 64), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 64), SHIFT(8), - [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_params, 4, 0, 0), - [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_params, 4, 0, 0), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 53), - [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 53), - [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 0), - [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 0), - [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 0), - [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 0), - [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 17), REDUCE(sym_typedef_declaration, 5, 0, 7), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 17), REDUCE(sym_typedef_declaration, 5, 0, 7), - [716] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 17), REDUCE(sym_typedef_declaration, 5, 0, 7), SHIFT(901), - [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 34), - [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 34), - [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 34), SHIFT(8), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 62), - [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 62), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 62), SHIFT(8), - [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 2, 0, 4), - [738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 2, 0, 4), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 51), - [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 51), - [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 51), SHIFT(8), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 99), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 99), - [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 99), SHIFT(8), - [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 93), - [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 93), - [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 93), SHIFT(8), - [769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 42), - [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 42), - [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 42), SHIFT(8), - [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 50), - [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 50), - [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 50), SHIFT(8), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 95), - [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 95), - [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 95), SHIFT(8), - [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 44), - [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 44), - [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 44), SHIFT(8), - [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 51), - [805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 51), - [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 51), SHIFT(8), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_params, 3, 0, 0), - [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_params, 3, 0, 0), - [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 17), REDUCE(sym_typedef_declaration, 4, 0, 7), - [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 17), REDUCE(sym_typedef_declaration, 4, 0, 7), - [822] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 17), REDUCE(sym_typedef_declaration, 4, 0, 7), SHIFT(901), - [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 74), - [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 74), - [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 74), SHIFT(8), - [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 72), - [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 72), - [837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 72), SHIFT(8), - [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, 0, 12), - [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, 0, 12), - [844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 3, 0, 12), SHIFT(8), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 17), REDUCE(sym_typedef_declaration, 6, 0, 32), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 17), REDUCE(sym_typedef_declaration, 6, 0, 32), - [855] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 17), REDUCE(sym_typedef_declaration, 6, 0, 32), SHIFT(901), - [859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, 0, 7), - [861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, 0, 7), - [863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 3, 0, 7), SHIFT(8), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 116), - [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 116), - [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 116), SHIFT(8), - [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 12), - [877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 12), - [879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 12), SHIFT(8), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 118), - [886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 118), - [888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 118), SHIFT(8), - [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 7), - [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 7), - [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 7), SHIFT(8), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 34), - [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 34), - [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 34), SHIFT(8), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 32), - [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 32), - [913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 32), SHIFT(8), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 6, 0, 32), - [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 6, 0, 32), - [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_arg_list, 2, 0, 0), - [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_arg_list, 2, 0, 0), - [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 4, 0, 7), - [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 4, 0, 7), - [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 3, 0, 4), - [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 3, 0, 4), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_arg_list, 3, 0, 0), - [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_arg_list, 3, 0, 0), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_arg_list, 4, 0, 0), - [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_arg_list, 4, 0, 0), - [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 5, 0, 7), - [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 5, 0, 7), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 5, 0, 32), - [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 5, 0, 32), - [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 89), - [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 89), - [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 41), - [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 41), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 39), - [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 39), - [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 3, 0, 7), - [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 3, 0, 7), - [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 63), - [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 63), - [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 66), - [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 66), - [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 67), - [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 67), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 68), - [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 68), - [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 60), - [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 60), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 59), - [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 59), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 102), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 102), - [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 58), - [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 58), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 32), - [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 32), - [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 7), - [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 7), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 103), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 103), - [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 69), - [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 69), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 7), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 7), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 104), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 104), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 11), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 11), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 70), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 70), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 38), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 38), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 57), - [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 57), - [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 11), - [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 11), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 7), - [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 7), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 57), - [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 57), - [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 80), - [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 80), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 105), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 105), - [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 38), - [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 38), - [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 38), - [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 38), - [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 106), - [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 106), - [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 71), - [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 71), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, 0, 56), - [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, 0, 56), - [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 56), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 56), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 73), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 73), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 107), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 107), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 50), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 50), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 55), - [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 55), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 108), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 108), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 37), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 37), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 68), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 68), - [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 36), - [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 36), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 37), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 37), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 65), - [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 65), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 75), - [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 75), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 36), - [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 36), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 109), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 109), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 76), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 76), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 77), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 77), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 5, 0, 35), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 5, 0, 35), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 78), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 78), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 32), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 32), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 79), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 79), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 38), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 38), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 110), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 110), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 50), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 50), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 57), - [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 57), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_statement, 3, 0, 7), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_statement, 3, 0, 7), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 47), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 47), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 111), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 111), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 112), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 112), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 49), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 49), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 113), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 113), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 80), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 80), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 100), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 100), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 48), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 48), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 114), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 114), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 7), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 7), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 97), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 97), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_statement, 2, 0, 0), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_statement, 2, 0, 0), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 7), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 7), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 47), - [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 47), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 81), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 81), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 82), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 82), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 40), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 40), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 32), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 32), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 83), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 83), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 115), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 115), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 85), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 85), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 86), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 86), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 87), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 87), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 88), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 88), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 68), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 68), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 50), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 50), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 89), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 89), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 98), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 98), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 46), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 46), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 40), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 40), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 32), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 32), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 4, 0, 21), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 4, 0, 21), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 90), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 90), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 91), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 91), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 22), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 22), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 117), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 117), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 92), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 92), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 22), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 22), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 43), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 43), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 119), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 119), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 13, 0, 125), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 13, 0, 125), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 94), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 94), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 12, 0, 125), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 12, 0, 125), - [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 12, 0, 115), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 12, 0, 115), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 12, 0, 109), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 12, 0, 109), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 125), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 125), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 115), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 115), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 97), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 97), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 7), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 7), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 120), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 120), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 109), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 109), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 89), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 89), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 80), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 80), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 24), - [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 24), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 25), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 25), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 125), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 125), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 115), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 115), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 24), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 24), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 97), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 97), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 25), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 25), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 109), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 109), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 89), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 89), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 38), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 38), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 96), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 96), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 68), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 68), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 57), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 57), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, 0, 128), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, 0, 128), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 80), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 80), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 57), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 57), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 28), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 28), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 127), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 127), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 24), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 24), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 126), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 126), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 50), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 50), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 80), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 80), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 97), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 97), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 125), - [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 125), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 121), - [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 121), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 122), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 122), - [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 50), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 50), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 115), - [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 115), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 97), - [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 97), - [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 124), - [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 124), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 33), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 33), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 109), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 109), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 89), - [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 89), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 32), - [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 32), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 123), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 123), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 68), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 68), - [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 3, 0, 0), - [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 3, 0, 0), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(459), - [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(340), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), - [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1183), - [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(943), - [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [1589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1317), - [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(348), - [1595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1233), - [1598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [1601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(88), - [1604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(88), - [1607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(956), - [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(82), - [1613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(952), - [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(952), - [1619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(78), - [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(78), - [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(100), - [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(973), - [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1051), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(430), - [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(1257), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(456), - [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(1194), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), - [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [1795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(492), - [1798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(1205), - [1801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(476), - [1804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(1251), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), - [1843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(928), - [1846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(928), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metadata, 2, 0, 3), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metadata, 2, 0, 3), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metadata, 6, 0, 3), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metadata, 6, 0, 3), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword, 1, 0, 0), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metadata, 5, 0, 3), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metadata, 5, 0, 3), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(529), - [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(529), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 3, 0, 0), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__arg_list_repeat1, 2, 0, 0), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__arg_list_repeat1, 3, 0, 0), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(818), - [2114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(1258), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [2125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(976), - [2128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(624), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [2133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(943), - [2136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(348), - [2139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(1258), - [2142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(1006), - [2145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(83), - [2148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(99), - [2151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(99), - [2154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(78), - [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(78), - [2160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(100), - [2163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(973), - [2166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(1051), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(939), - [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(1236), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [2209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(944), - [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(1250), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(957), - [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(1244), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(955), - [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(1191), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [2295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(369), - [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(953), - [2303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(943), - [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(348), - [2309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(1223), - [2312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(973), - [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(1051), - [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, 0, 0), SHIFT_REPEAT(817), - [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, 0, 0), - [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, 0, 0), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(958), - [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(1227), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_identifiers, 3, 0, 0), - [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_identifiers, 3, 0, 0), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_identifiers, 5, 0, 0), - [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_identifiers, 5, 0, 0), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binaryOperator, 1, 0, 0), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binaryOperator, 1, 0, 0), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmeticOperator, 1, 0, 0), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [2383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(954), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmeticOperator, 1, 0, 0), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(971), - [2423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(359), - [2426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(936), - [2429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(971), - [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 4, 0, 84), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 3, 0, 61), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type, 2, 0, 0), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structure_type, 2, 0, 0), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 1, 0, 27), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_block, 3, 0, 0), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_block, 3, 0, 0), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_identifier, 3, 0, 0), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_identifier, 3, 0, 0), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 1, 0, 0), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 1, 0, 0), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_identifier, 2, 0, 0), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_identifier, 2, 0, 0), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_block, 4, 0, 0), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_block, 4, 0, 0), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 2, 0, 27), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 3, 0, 0), REDUCE(sym_structure_type_pair, 3, 0, 0), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_args, 3, 0, 0), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 1, 0, 0), SHIFT(1103), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [2580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1089), - [2583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1089), - [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 1, 0, 0), SHIFT(114), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_param, 1, 0, 0), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type_pair, 3, 0, 0), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 23), - [2605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(375), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat2, 2, 0, 23), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [2618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), SHIFT_REPEAT(946), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(374), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 3, 0, 27), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_params_repeat1, 2, 0, 0), SHIFT_REPEAT(919), - [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_params_repeat1, 2, 0, 0), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [2647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), SHIFT_REPEAT(950), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat2, 2, 0, 26), - [2654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat2, 2, 0, 26), SHIFT_REPEAT(924), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 4, 0, 27), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 26), - [2677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 26), SHIFT_REPEAT(932), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_args, 4, 0, 0), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type, 3, 0, 0), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_arg_list_repeat1, 2, 0, 0), - [2706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_arg_list_repeat1, 2, 0, 0), SHIFT_REPEAT(916), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 5, 0, 61), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_type_args_repeat1, 2, 0, 0), - [2723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_type_args_repeat1, 2, 0, 0), SHIFT_REPEAT(663), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 6, 0, 84), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structure_type_repeat1, 2, 0, 0), - [2734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structure_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1221), - [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arg_list_repeat1, 2, 0, 0), SHIFT_REPEAT(354), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type, 4, 0, 0), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_args, 2, 0, 0), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_type_args_repeat1, 4, 0, 0), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_param, 2, 0, 0), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 3, 0, 23), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat2, 3, 0, 23), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__access_identifier, 1, 0, 2), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2868] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [81] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [83] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(94), + [86] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1204), + [89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(135), + [92] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(163), + [95] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(162), + [98] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(21), + [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(310), + [104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(392), + [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(9), + [110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(107), + [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(407), + [116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(106), + [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1261), + [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(418), + [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(415), + [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(624), + [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(624), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(403), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(126), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(561), + [146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(561), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(53), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(411), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(419), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(141), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(139), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(155), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(406), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(48), + [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(991), + [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1044), + [194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), + [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 20), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 20), + [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(27), + [223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), + [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(633), + [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(318), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1220), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(53), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(46), + [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(46), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(47), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(47), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(48), + [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(991), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1044), + [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 12), + [260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 12), + [262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 16), + [264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 16), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(26), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1213), + [276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword, 1, 0, 0), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(105), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1254), + [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lhs_expression, 1, 0, 0), + [296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lhs_expression, 1, 0, 0), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 1, 0, 11), + [304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 1, 0, 11), + [306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rhs_expression, 1, 0, 0), + [308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__rhs_expression, 1, 0, 0), + [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_expression, 3, 0, 8), + [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_expression, 3, 0, 8), + [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 44), + [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, 0, 44), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 0), + [328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 3, 0, 0), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 1, 0, 1), + [336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 1, 0, 1), + [338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call, 3, 0, 19), + [344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call, 3, 0, 19), + [346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3, 0, 0), + [352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3, 0, 0), + [354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1, 0, 0), + [360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1, 0, 0), + [362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 1, 0, 0), + [364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 1, 0, 0), + [366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bool, 1, 0, 0), + [368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bool, 1, 0, 0), + [370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call, 2, 0, 7), + [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call, 2, 0, 7), + [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constructor_call, 1, 0, 1), REDUCE(sym_call_expression, 1, 0, 1), + [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constructor_call, 1, 0, 1), REDUCE(sym_call_expression, 1, 0, 1), + [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4, 0, 0), + [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4, 0, 0), + [410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 2, 0, 5), + [412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 2, 0, 5), + [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 2), + [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 2), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 15), + [426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 15), + [428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_trace_expression, 4, 0, 0), + [430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_trace_expression, 4, 0, 0), + [432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 2), + [438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 2), + [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unaryExpression, 2, 0, 8), + [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unaryExpression, 2, 0, 8), + [444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 2), + [446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 2), + [448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 3, 0, 0), + [450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 3, 0, 0), + [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 1, 0, 0), + [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 1, 0, 0), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2, 0, 2), + [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2, 0, 2), + [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 5, 0, 15), + [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 5, 0, 15), + [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_statement, 3, 0, 0), + [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_statement, 3, 0, 0), + [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 2, 0, 2), + [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 2, 0, 2), + [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 6, 0, 53), + [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 6, 0, 53), + [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 2, 0, 2), + [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 2, 0, 2), + [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_runtime_type_check_expression, 3, 0, 10), + [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_runtime_type_check_expression, 3, 0, 10), + [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 2, 0, 0), + [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 2, 0, 0), + [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unaryExpression, 2, 0, 6), + [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unaryExpression, 2, 0, 6), + [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 4, 0, 0), + [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 4, 0, 0), + [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_expression, 3, 0, 0), + [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_expression, 3, 0, 0), + [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 30), + [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 30), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 17), + [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 17), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 18), + [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 18), + [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_builtin_type, 1, 0, 0), + [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_builtin_type, 1, 0, 0), + [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 18), + [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 18), + [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 17), + [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 17), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_params, 3, 0, 0), + [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_params, 3, 0, 0), + [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3, 0, 45), + [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 3, 0, 45), + [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_params, 4, 0, 0), + [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_params, 4, 0, 0), + [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 46), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 46), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 0), + [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 0), + [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 0), + [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 0), + [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 17), REDUCE(sym_typedef_declaration, 5, 0, 31), + [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 17), REDUCE(sym_typedef_declaration, 5, 0, 31), + [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 17), REDUCE(sym_typedef_declaration, 5, 0, 9), + [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 17), REDUCE(sym_typedef_declaration, 5, 0, 9), + [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 17), REDUCE(sym_typedef_declaration, 6, 0, 31), + [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 17), REDUCE(sym_typedef_declaration, 6, 0, 31), + [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 17), REDUCE(sym_typedef_declaration, 4, 0, 9), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 17), REDUCE(sym_typedef_declaration, 4, 0, 9), + [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 52), + [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 52), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 52), SHIFT(6), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, 0, 9), + [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, 0, 9), + [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 3, 0, 9), SHIFT(6), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 97), + [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 97), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 97), SHIFT(6), + [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 33), + [633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 33), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 33), SHIFT(6), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 14), + [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 14), + [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 14), SHIFT(6), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 9), + [655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 9), + [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 9), SHIFT(6), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 93), + [664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 93), + [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 93), SHIFT(6), + [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 51), + [671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 51), + [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 51), SHIFT(6), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 2, 0, 4), + [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 2, 0, 4), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 91), + [690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 91), + [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 91), SHIFT(6), + [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 31), + [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 31), + [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 31), SHIFT(6), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 61), + [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 61), + [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 61), SHIFT(6), + [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 43), + [715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 43), + [717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 43), SHIFT(6), + [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 115), + [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 115), + [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 115), SHIFT(6), + [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, 0, 14), + [729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, 0, 14), + [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 3, 0, 14), SHIFT(6), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 99), + [738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 99), + [740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 99), SHIFT(6), + [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 63), + [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 63), + [747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 63), SHIFT(6), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 41), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 41), + [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 41), SHIFT(6), + [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 51), + [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 51), + [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 51), SHIFT(6), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 71), + [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 71), + [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 71), SHIFT(6), + [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 33), + [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 33), + [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 33), SHIFT(6), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 73), + [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 73), + [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 73), SHIFT(6), + [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 31), + [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 31), + [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 31), SHIFT(6), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 52), + [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 52), + [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 52), SHIFT(6), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 113), + [811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 113), + [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 113), SHIFT(6), + [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 6, 0, 31), + [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 6, 0, 31), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 5, 0, 9), + [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 5, 0, 9), + [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_arg_list, 3, 0, 0), + [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_arg_list, 3, 0, 0), + [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 3, 0, 4), + [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 3, 0, 4), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_arg_list, 4, 0, 0), + [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_arg_list, 4, 0, 0), + [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 5, 0, 31), + [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 5, 0, 31), + [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_arg_list, 2, 0, 0), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_arg_list, 2, 0, 0), + [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 4, 0, 9), + [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 4, 0, 9), + [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 40), + [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 40), + [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 65), + [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 65), + [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 42), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 42), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 9), + [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 9), + [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 50), + [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 50), + [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 76), + [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 76), + [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 77), + [882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 77), + [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 75), + [886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 75), + [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 117), + [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 117), + [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 13), + [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 13), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_statement, 2, 0, 0), + [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_statement, 2, 0, 0), + [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 85), + [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 85), + [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 116), + [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 116), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 13), + [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 13), + [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 48), + [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 48), + [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 51), + [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 51), + [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 39), + [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 39), + [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 121), + [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 121), + [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 86), + [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 86), + [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 39), + [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 39), + [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 114), + [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 114), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 54), + [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 54), + [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_statement, 3, 0, 9), + [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_statement, 3, 0, 9), + [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 38), + [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 38), + [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 9), + [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 9), + [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 74), + [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 74), + [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 87), + [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 87), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 87), + [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 87), + [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 31), + [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 31), + [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 9), + [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 9), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 3, 0, 9), + [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 3, 0, 9), + [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 37), + [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 37), + [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 120), + [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 120), + [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 51), + [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 51), + [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 72), + [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 72), + [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 36), + [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 36), + [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 35), + [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 35), + [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 36), + [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 36), + [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 70), + [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 70), + [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 35), + [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 35), + [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 55), + [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 55), + [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 88), + [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 88), + [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 69), + [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 69), + [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 68), + [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 68), + [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 31), + [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 31), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 51), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 51), + [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 5, 0, 34), + [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 5, 0, 34), + [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 89), + [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 89), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 95), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 95), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 112), + [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 112), + [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 84), + [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 84), + [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 118), + [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 118), + [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 111), + [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 111), + [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 110), + [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 110), + [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 67), + [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 67), + [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 66), + [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 66), + [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 119), + [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 119), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 95), + [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 95), + [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 47), + [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 47), + [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 109), + [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 109), + [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 25), + [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 25), + [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, 0, 124), + [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, 0, 124), + [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 31), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 31), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, 0, 55), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, 0, 55), + [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 64), + [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 64), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 31), + [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 31), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 122), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 122), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 62), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 62), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 123), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 123), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 108), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 108), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 107), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 107), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 83), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 83), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 78), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 78), + [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 37), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 37), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 48), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 48), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 90), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 90), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 59), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 59), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 67), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 67), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 49), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 49), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 58), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 58), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 106), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 106), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 4, 0, 22), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 4, 0, 22), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 105), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 105), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 92), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 92), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 23), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 23), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 104), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 104), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 57), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 57), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 23), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 23), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 32), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 32), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 29), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 29), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 103), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 103), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 56), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 56), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 102), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 102), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 101), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 101), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 100), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 100), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 81), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 81), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 9), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 9), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 9), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 9), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 94), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 94), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 98), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 98), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 112), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 112), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 25), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 25), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 56), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 56), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 26), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 26), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 96), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 96), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 80), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 80), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 25), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 25), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 26), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 26), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 51), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 51), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 79), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 79), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [1378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(466), + [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(310), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), + [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1124), + [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(633), + [1392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(534), + [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1261), + [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [1401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1213), + [1404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(609), + [1407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [1410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [1413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(53), + [1416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [1428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(48), + [1431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(991), + [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1044), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), + [1537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(624), + [1540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(624), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(511), + [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1249), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metadata, 2, 0, 3), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metadata, 2, 0, 3), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(418), + [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(418), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metadata, 5, 0, 3), + [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metadata, 5, 0, 3), + [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword, 1, 0, 0), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(515), + [1604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1252), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(519), + [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1257), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(532), + [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1228), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(567), + [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1240), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(599), + [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1250), + [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(566), + [1670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1234), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [1677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(596), + [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1259), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(636), + [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1224), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(653), + [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1246), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(654), + [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(633), + [1811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(318), + [1814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1226), + [1817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(991), + [1820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 21), SHIFT_REPEAT(1044), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binaryOperator, 1, 0, 0), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binaryOperator, 1, 0, 0), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 1, 0, 0), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 1, 0, 0), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__compound_assignment_operator, 2, 0, 0), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__compound_assignment_operator, 2, 0, 0), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__arg_list_repeat1, 2, 0, 0), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_identifiers, 3, 0, 0), + [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_identifiers, 3, 0, 0), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_identifiers, 5, 0, 0), + [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_identifiers, 5, 0, 0), + [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(345), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(340), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [2115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(994), + [2118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(378), + [2121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(630), + [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(994), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 3, 0, 60), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 4, 0, 82), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 1, 0, 28), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_identifier, 2, 0, 0), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_identifier, 2, 0, 0), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_identifier, 3, 0, 0), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_identifier, 3, 0, 0), + [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_block, 3, 0, 0), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_block, 3, 0, 0), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type, 2, 0, 0), + [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structure_type, 2, 0, 0), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 1, 0, 0), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 1, 0, 0), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 2, 0, 28), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 1, 0, 0), SHIFT(114), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 3, 0, 0), REDUCE(sym_structure_type_pair, 3, 0, 0), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 24), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat2, 2, 0, 24), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 1, 0, 0), SHIFT(987), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_args, 3, 0, 0), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), + [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type_pair, 3, 0, 0), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [2270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1109), + [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1109), + [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(365), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 6, 0, 82), + [2289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), SHIFT_REPEAT(639), + [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structure_type_repeat1, 2, 0, 0), + [2294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structure_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1200), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type, 4, 0, 0), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param, 1, 0, 0), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_type_args_repeat1, 4, 0, 0), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 5, 0, 60), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type, 3, 0, 0), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_args, 2, 0, 0), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 27), + [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 27), SHIFT_REPEAT(621), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat2, 2, 0, 27), + [2342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat2, 2, 0, 27), SHIFT_REPEAT(617), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_args, 4, 0, 0), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 4, 0, 28), + [2351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arg_list_repeat1, 2, 0, 0), SHIFT_REPEAT(338), + [2354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_params_repeat1, 2, 0, 0), SHIFT_REPEAT(448), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_params_repeat1, 2, 0, 0), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 3, 0, 28), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_arg_list_repeat1, 2, 0, 0), + [2367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_arg_list_repeat1, 2, 0, 0), SHIFT_REPEAT(590), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_type_args_repeat1, 2, 0, 0), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_type_args_repeat1, 2, 0, 0), SHIFT_REPEAT(485), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), SHIFT_REPEAT(637), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat2, 3, 0, 24), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__access_identifier, 1, 0, 2), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 3, 0, 24), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [2540] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), }; #ifdef __cplusplus diff --git a/test/corpus/binary_operators.txt b/test/corpus/binary_operators.txt index bd8d857..8db4d98 100644 --- a/test/corpus/binary_operators.txt +++ b/test/corpus/binary_operators.txt @@ -1,3 +1,43 @@ +=================== +subtract +=================== + +1 - 2; +1 - 2 - 1; + +--- +(module + (integer) (operator) (integer) + (integer) (operator) (integer) (operator) (integer) +) + +=================== +multiply +=================== + +1 * 2; +1 * 2 * 1; + +--- +(module + (integer) (operator) (integer) + (integer) (operator) (integer) (operator) (integer) +) + +=================== +divide +=================== + +1 / 2; +1 / 2 / 1; + +--- +(module + (integer) (operator) (integer) + (integer) (operator) (integer) (operator) (integer) +) + + =================== add two integers (both literals) =================== @@ -5,8 +45,8 @@ add two integers (both literals) var x = 1 + 2; --- -(module - (variable_declaration (keyword) (identifier) +(module + (variable_declaration (keyword) (identifier) (operator) (integer) (operator) (integer)) ) @@ -18,8 +58,8 @@ add two strings (both literals) var x = "a" + "b"; --- -(module - (variable_declaration (keyword) (identifier) +(module + (variable_declaration (keyword) (identifier) (operator) (string) (operator) (string)) ) @@ -32,30 +72,109 @@ add three integers (all literals) var x = 1 + 2 + 3; --- -(module - (variable_declaration (keyword) (identifier) +(module + (variable_declaration (keyword) (identifier) (operator) (integer) - (operator) + (operator) (integer) - (operator) + (operator) (integer) ) ) - - =================== -add two integers, one is a variable +add two integers, one is a variable =================== var y = 1; var x = 1 + y; --- -(module +(module (variable_declaration (keyword) (identifier) (operator) (integer)) (variable_declaration (keyword) (identifier) (operator) (integer) (operator) (identifier) ) ) + +=================== +modulus +=================== + +1 % 2; +1 % 2 % 2; + +--- +(module + (integer) (operator) (integer) + (integer) (operator) (integer) (operator) (integer) +) + +=================== +compare two ints eq +=================== + +1 == 2; + +--- +(module + (integer) (operator) (integer) +) + +=================== +compare two ints neq +=================== + +1 != 2; + +--- +(module + (integer) (operator) (integer) +) + + +=================== +compare two ints gt +=================== + +1 > 2; + +--- +(module + (integer) (operator) (integer) +) + +=================== +compare two ints gte +=================== + +1 >= 2; + +--- +(module + (integer) (operator) (integer) +) + +=================== +compare two ints lt +=================== + +1 < 2; + +--- +(module + (integer) (operator) (integer) +) + + +=================== +compare two ints lte +=================== + +1 <= 2; + +--- +(module + (integer) (operator) (integer) +) diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index 7c1db04..07b734e 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -46,8 +46,8 @@ interface Main {} (keyword) (identifier) (type_params - (type_param (identifier)) - (type_param (identifier)) + (type (identifier)) + (type (identifier)) ) (block) ) @@ -66,12 +66,12 @@ interface Main> {} (keyword) (identifier) (type_params - (type_param (identifier)) - (type_param + (type (identifier)) + (type (identifier) (type_params - (type_param (identifier)) - (type_param (identifier)) + (type (identifier)) + (type (identifier)) ) ) ) @@ -88,9 +88,9 @@ interface ITest extends IBanana {} --- -(module (interface_declaration - (keyword) (identifier) - (keyword) (identifier) +(module (interface_declaration + (keyword) (identifier) + (keyword) (identifier) (block) )) @@ -113,10 +113,10 @@ class Main implements ITest implements IAnother {} --- -(module (class_declaration - (keyword) (identifier) - (keyword) (identifier) - (keyword) (identifier) +(module (class_declaration + (keyword) (identifier) + (keyword) (identifier) + (keyword) (identifier) (block) )) @@ -156,8 +156,8 @@ class Main {} (keyword) (identifier) (type_params - (type_param (identifier)) - (type_param (identifier)) + (type (identifier)) + (type (identifier)) ) (block) ) @@ -218,8 +218,8 @@ class Main { (keyword) (identifier) (type_params - (type_param (identifier)) - (type_param (identifier)) + (type (identifier)) + (type (identifier)) ) (block)) ) @@ -292,7 +292,7 @@ class Main { ) =================== -function with generic typed arg +function with generic typed arg =================== function foo(x:Array){} @@ -300,14 +300,14 @@ function foo(x:Array){} --- (module - (function_declaration - (keyword) + (function_declaration + (keyword) (identifier) - (function_arg - (identifier) - (type + (function_arg + (identifier) + (type (identifier) - (type_params (type_param (identifier))) + (type_params (type (identifier))) ) ) (block) @@ -315,7 +315,7 @@ function foo(x:Array){} ) =================== -function with anonymous struct arg +function with anonymous struct arg =================== function foo(x:{z:int, y:float}){} @@ -323,12 +323,12 @@ function foo(x:{z:int, y:float}){} --- (module - (function_declaration - (keyword) + (function_declaration + (keyword) (identifier) - (function_arg - (identifier) - (type + (function_arg + (identifier) + (type (pair (identifier) (type (identifier))) (pair (identifier) (type (identifier))) ) @@ -551,7 +551,7 @@ class Main { ) =================== -class function with this +class function with this =================== class Main { @@ -646,9 +646,9 @@ class Main { (keyword) (keyword) (identifier) - (type - (identifier) - (type_params (type_param (identifier))) + (type + (identifier) + (type_params (type (identifier))) ) ) ) @@ -702,7 +702,7 @@ typedef MyType = { ) =================== -type def 'alias' +type def 'alias' =================== typedef MyType = Int; @@ -710,15 +710,15 @@ typedef MyType = Int; --- (module - (typedef_declaration - (keyword) + (typedef_declaration + (keyword) (identifier) (type (identifier)) ) ) =================== -type def 'alias' +type def 'alias' =================== typedef MyType = Array; @@ -726,12 +726,12 @@ typedef MyType = Array; --- (module - (typedef_declaration - (keyword) + (typedef_declaration + (keyword) (identifier) - (type + (type (identifier) - (type_params (type_param (identifier))) + (type_params (type (identifier))) ) ) ) @@ -799,15 +799,15 @@ var x:Array; (variable_declaration (keyword) (identifier) - (type + (type (identifier) - (type_params (type_param (identifier))) + (type_params (type (identifier))) ) ) ) =================== -var declaration array comprehension +var declaration array comprehension =================== var a = [for (i in 0...5) i]; @@ -830,7 +830,7 @@ var a = [for (i in 0...5) i]; ) =================== -var declaration with function type with no inputs +var declaration with function type with no inputs =================== var x:() -> Int; @@ -850,7 +850,7 @@ var x:() -> Int; ) =================== -var declaration with function type +var declaration with function type =================== var x:Int -> Int; @@ -871,7 +871,7 @@ var x:Int -> Int; ) =================== -var declaration with function type with named input +var declaration with function type with named input =================== var x:(arg:Int) -> Int; @@ -928,21 +928,21 @@ var e:(fn:Int->Bool, Float, sub:(Bool, Bool) -> Int) -> Bool; (variable_declaration (keyword) (identifier) - (type (function_type - (identifier) - (type (function_type - (type (identifier)) - (type + (type (function_type + (identifier) + (type (function_type + (type (identifier)) + (type (identifier)) - )) - (type (identifier)) - (identifier) - (type (function_type - (type (identifier)) - (type (identifier)) + )) + (type (identifier)) + (identifier) + (type (function_type + (type (identifier)) (type (identifier)) - )) - (type (identifier)) + (type (identifier)) + )) + (type (identifier)) )) ) ) @@ -959,27 +959,27 @@ var e:((fn:(Int->Bool), Float, sub:((Bool, Bool) -> Int))->Bool); (variable_declaration (keyword) (identifier) - (type (function_type - (identifier) - (type (function_type - (type (identifier)) - (type + (type (function_type + (identifier) + (type (function_type + (type (identifier)) + (type (identifier)) - )) - (type (identifier)) - (identifier) - (type (function_type - (type (identifier)) - (type (identifier)) + )) + (type (identifier)) + (identifier) + (type (function_type + (type (identifier)) + (type (identifier)) (type (identifier)) - )) - (type (identifier)) + )) + (type (identifier)) )) ) ) =================== -var declaration with function type with wrapped parens +var declaration with function type with wrapped parens =================== var x:((arg:Int) -> Int); @@ -1003,7 +1003,7 @@ var x:((arg:Int) -> Int); =================== -var declaration with function type +var declaration with function type =================== var x:(Int,Int) -> Int; diff --git a/test/corpus/edge_cases.txt b/test/corpus/edge_cases.txt index f53919e..20c6693 100644 --- a/test/corpus/edge_cases.txt +++ b/test/corpus/edge_cases.txt @@ -7,12 +7,12 @@ function stuff(y:Array = null) { --- -(module - (function_declaration (keyword) (identifier) - (function_arg - (identifier) +(module + (function_declaration (keyword) (identifier) + (function_arg + (identifier) (type (identifier) - (type_params (type_param (identifier))) + (type_params (type (identifier))) ) (null) ) @@ -30,12 +30,12 @@ function stuff(y:Array = null) { --- -(module - (function_declaration (keyword) (identifier) - (function_arg - (identifier) +(module + (function_declaration (keyword) (identifier) + (function_arg + (identifier) (type (identifier) - (type_params (type_param (identifier))) + (type_params (type (identifier))) ) (null) ) diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index 8a2cb6b..0cf6564 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -41,7 +41,7 @@ if (true) { --- (module - (conditional_statement + (conditional_statement (keyword) (bool) (block (identifier) (operator) (integer) @@ -63,10 +63,10 @@ a = (1+1); --- (module - (identifier) + (identifier) (operator) (integer) - (operator) + (operator) (integer) ) @@ -79,7 +79,7 @@ a = b[1]; --- (module - (identifier) + (identifier) (operator) (subscript_expression (identifier) @@ -96,7 +96,7 @@ a = b[c + 1]; --- (module - (identifier) + (identifier) (operator) (subscript_expression (identifier) @@ -115,7 +115,7 @@ cast x; --- -(module +(module (cast_expression (keyword) (identifier) ) @@ -129,10 +129,10 @@ cast (x, Int); --- -(module +(module (cast_expression - (keyword) - (identifier) + (keyword) + (identifier) (type (identifier)) ) ) @@ -145,7 +145,7 @@ runtime type check --- -(module +(module (runtime_type_check_expression (identifier) (type (identifier)) ) @@ -188,9 +188,9 @@ switch (x) { (module (switch_expression (keyword) (identifier)) (block - (case_statement + (case_statement (keyword) - (integer) + (integer) (call_expression (identifier)) ) ) @@ -211,17 +211,17 @@ switch (x) { (module (switch_expression (keyword) (identifier)) (block - (case_statement + (case_statement (keyword) - (integer) + (integer) (call_expression (identifier)) ) - (case_statement + (case_statement (keyword) - (integer) + (integer) (call_expression (identifier)) ) - (case_statement + (case_statement (keyword) (call_expression (identifier)) ) @@ -237,9 +237,9 @@ case "1": func(); --- (module - (case_statement + (case_statement (keyword) - (string) + (string) (call_expression (identifier)) ) ) @@ -253,7 +253,7 @@ case "1".code: func(); --- (module - (case_statement + (case_statement (keyword) (member_expression (string) (identifier)) (call_expression (identifier)) diff --git a/test/corpus/function_call.txt b/test/corpus/function_call.txt index 6e9e4da..d4b7616 100644 --- a/test/corpus/function_call.txt +++ b/test/corpus/function_call.txt @@ -31,7 +31,7 @@ fn(1,2,3); --- (module - (call_expression (identifier) + (call_expression (identifier) (integer) (integer) (integer) @@ -71,7 +71,7 @@ fn("Some" + "Combined" + "String"); ) =================== -call with type params +call with type params =================== fn(123); @@ -82,7 +82,7 @@ fn(123); (call_expression (identifier) (type_params - (type_param (identifier)) + (type (identifier)) ) (integer) ) @@ -110,10 +110,10 @@ some.package.fn(); --- (module - (call_expression - (member_expression + (call_expression + (member_expression (identifier) - (member_expression + (member_expression (identifier) (identifier) ) @@ -130,12 +130,11 @@ some.package?.fn(); --- (module - (call_expression - (member_expression + (call_expression + (member_expression (identifier) - (member_expression + (member_expression (identifier) - (operator) (identifier) ) ) @@ -143,6 +142,24 @@ some.package?.fn(); ) +=================== +package member access with safe navigation operator +=================== + +some.package?.fn; + +--- + +(module + (member_expression + (identifier) + (member_expression + (identifier) + (identifier) + ) + ) +) + =================== compile time construct $type diff --git a/test/corpus/literals.txt b/test/corpus/literals.txt index 05e1e89..2572afc 100644 --- a/test/corpus/literals.txt +++ b/test/corpus/literals.txt @@ -8,12 +8,12 @@ class main { --- -(module - (class_declaration (keyword) (identifier) - (block - (variable_declaration - (keyword) - (identifier) +(module + (class_declaration (keyword) (identifier) + (block + (variable_declaration + (keyword) + (identifier) (operator) (integer) ) @@ -31,12 +31,12 @@ class main { --- -(module - (class_declaration (keyword) (identifier) - (block - (variable_declaration - (keyword) - (identifier) +(module + (class_declaration (keyword) (identifier) + (block + (variable_declaration + (keyword) + (identifier) (operator) (integer) ) @@ -56,12 +56,12 @@ class main { --- -(module - (class_declaration (keyword) (identifier) - (block - (variable_declaration - (keyword) - (identifier) +(module + (class_declaration (keyword) (identifier) + (block + (variable_declaration + (keyword) + (identifier) (operator) (integer) ) @@ -79,12 +79,12 @@ class main { --- -(module - (class_declaration (keyword) (identifier) - (block - (variable_declaration - (keyword) - (identifier) +(module + (class_declaration (keyword) (identifier) + (block + (variable_declaration + (keyword) + (identifier) (operator) (integer) ) @@ -103,12 +103,12 @@ class main { --- -(module - (class_declaration (keyword) (identifier) - (block - (variable_declaration - (keyword) - (identifier) +(module + (class_declaration (keyword) (identifier) + (block + (variable_declaration + (keyword) + (identifier) (operator) (float) ) @@ -126,12 +126,12 @@ class main { --- -(module - (class_declaration (keyword) (identifier) - (block - (variable_declaration - (keyword) - (identifier) +(module + (class_declaration (keyword) (identifier) + (block + (variable_declaration + (keyword) + (identifier) (operator) (float) ) @@ -152,12 +152,12 @@ class main { --- -(module - (class_declaration (keyword) (identifier) - (block - (variable_declaration - (keyword) - (identifier) +(module + (class_declaration (keyword) (identifier) + (block + (variable_declaration + (keyword) + (identifier) (operator) (float) ) @@ -175,12 +175,12 @@ class main { --- -(module - (class_declaration (keyword) (identifier) - (block - (variable_declaration - (keyword) - (identifier) +(module + (class_declaration (keyword) (identifier) + (block + (variable_declaration + (keyword) + (identifier) (operator) (float) ) @@ -198,12 +198,12 @@ class main { --- -(module - (class_declaration (keyword) (identifier) - (block - (variable_declaration - (keyword) - (identifier) +(module + (class_declaration (keyword) (identifier) + (block + (variable_declaration + (keyword) + (identifier) (operator) (float) ) @@ -222,12 +222,12 @@ class main { --- -(module - (class_declaration (keyword) (identifier) - (block - (variable_declaration - (keyword) - (identifier) +(module + (class_declaration (keyword) (identifier) + (block + (variable_declaration + (keyword) + (identifier) (operator) (float) (ERROR (identifier)) @@ -246,12 +246,12 @@ class main { --- -(module - (class_declaration (keyword) (identifier) - (block - (variable_declaration - (keyword) - (identifier) +(module + (class_declaration (keyword) (identifier) + (block + (variable_declaration + (keyword) + (identifier) (operator) (string) ) @@ -269,12 +269,12 @@ class main { --- -(module - (class_declaration (keyword) (identifier) - (block - (variable_declaration - (keyword) - (identifier) +(module + (class_declaration (keyword) (identifier) + (block + (variable_declaration + (keyword) + (identifier) (operator) (string (escape_sequence)) ) @@ -292,12 +292,12 @@ class main { --- -(module - (class_declaration (keyword) (identifier) - (block - (variable_declaration - (keyword) - (identifier) +(module + (class_declaration (keyword) (identifier) + (block + (variable_declaration + (keyword) + (identifier) (operator) (string (escape_sequence)) ) @@ -306,7 +306,7 @@ class main { ) =================== -string literal double quote with escape sequence +string literal double quote with escape sequence =================== class main { @@ -315,12 +315,12 @@ class main { --- -(module - (class_declaration (keyword) (identifier) - (block - (variable_declaration - (keyword) - (identifier) +(module + (class_declaration (keyword) (identifier) + (block + (variable_declaration + (keyword) + (identifier) (operator) (string (escape_sequence)) ) @@ -339,12 +339,12 @@ class main { --- -(module - (class_declaration (keyword) (identifier) - (block - (variable_declaration - (keyword) - (identifier) +(module + (class_declaration (keyword) (identifier) + (block + (variable_declaration + (keyword) + (identifier) (operator) (string) ) @@ -363,18 +363,18 @@ class main { --- -(module - (class_declaration (keyword) (identifier) - (block - (variable_declaration - (keyword) - (identifier) +(module + (class_declaration (keyword) (identifier) + (block + (variable_declaration + (keyword) + (identifier) (operator) (integer) ) - (variable_declaration - (keyword) - (identifier) + (variable_declaration + (keyword) + (identifier) (operator) (string (interpolation (identifier))) ) @@ -393,18 +393,18 @@ class main { --- -(module - (class_declaration (keyword) (identifier) - (block - (variable_declaration - (keyword) - (identifier) +(module + (class_declaration (keyword) (identifier) + (block + (variable_declaration + (keyword) + (identifier) (operator) (integer) ) - (variable_declaration - (keyword) - (identifier) + (variable_declaration + (keyword) + (identifier) (operator) (string (interpolation (identifier))) ) @@ -424,20 +424,20 @@ class main { --- -(module - (class_declaration (keyword) (identifier) - (block - (variable_declaration - (keyword) - (identifier) +(module + (class_declaration (keyword) (identifier) + (block + (variable_declaration + (keyword) + (identifier) (operator) (integer) ) - (variable_declaration - (keyword) - (identifier) + (variable_declaration + (keyword) + (identifier) (operator) - (string (interpolation + (string (interpolation (identifier) (operator) (integer) )) ) @@ -455,12 +455,12 @@ class main { --- -(module - (class_declaration (keyword) (identifier) - (block - (variable_declaration - (keyword) - (identifier) +(module + (class_declaration (keyword) (identifier) + (block + (variable_declaration + (keyword) + (identifier) (operator) (array) ) @@ -478,12 +478,12 @@ class main { --- -(module - (class_declaration (keyword) (identifier) - (block - (variable_declaration - (keyword) - (identifier) +(module + (class_declaration (keyword) (identifier) + (block + (variable_declaration + (keyword) + (identifier) (operator) (array (integer)) ) @@ -499,37 +499,37 @@ Array literal with multiple elements --- -(module - (variable_declaration - (keyword) - (identifier) +(module + (variable_declaration + (keyword) + (identifier) (operator) (array (integer) (integer) (integer)) ) ) =================== -Array literal with object element +Array literal with object element =================== var y = [{x:1}]; --- -(module - (variable_declaration - (keyword) - (identifier) +(module + (variable_declaration + (keyword) + (identifier) (operator) - (array - (object + (array + (object (pair (identifier) (integer))) ) ) ) =================== -Array literal with string element +Array literal with string element =================== class main { @@ -538,12 +538,12 @@ class main { --- -(module - (class_declaration (keyword) (identifier) - (block - (variable_declaration - (keyword) - (identifier) +(module + (class_declaration (keyword) (identifier) + (block + (variable_declaration + (keyword) + (identifier) (operator) (array (string)) ) @@ -552,26 +552,44 @@ class main { ) =================== -simple pair literal +simple pair literal =================== x:1 --- -(module +(module (pair (identifier) (integer)) ) =================== -simple map pair literal +expression pair literal +=================== + +x:1+1 + +--- + +(module + (pair + (identifier) + (integer) + (operator) + (integer) + ) +) + + +=================== +simple map pair literal =================== "test"=>1 --- -(module +(module (pair (string) (integer)) ) @@ -587,12 +605,12 @@ class main { --- -(module - (class_declaration (keyword) (identifier) - (block - (variable_declaration - (keyword) - (identifier) +(module + (class_declaration (keyword) (identifier) + (block + (variable_declaration + (keyword) + (identifier) (operator) (map (pair (string) (integer))) ) @@ -601,20 +619,20 @@ class main { ) =================== -Map literal with nested +Map literal with nested =================== var y = ["string" => ["bar" => 2]]; --- -(module - (variable_declaration - (keyword) - (identifier) +(module + (variable_declaration + (keyword) + (identifier) (operator) - (map - (pair + (map + (pair (string) (map (pair (string) (integer)) @@ -625,19 +643,19 @@ var y = ["string" => ["bar" => 2]]; ) =================== -Object literal +Object literal =================== -var y = {x:1, y:2}; +var y = {x:1, y:2}; --- -(module - (variable_declaration - (keyword) - (identifier) +(module + (variable_declaration + (keyword) + (identifier) (operator) - (object + (object (pair (identifier) (integer)) (pair (identifier) (integer)) ) @@ -652,10 +670,10 @@ var x = "12".code; --- -(module - (variable_declaration - (keyword) - (identifier) +(module + (variable_declaration + (keyword) + (identifier) (operator) (member_expression (string) diff --git a/test/corpus/logical_operators.txt b/test/corpus/logical_operators.txt index 6173211..5534c73 100644 --- a/test/corpus/logical_operators.txt +++ b/test/corpus/logical_operators.txt @@ -1,25 +1,51 @@ =================== -or two bools +"or" two bools =================== -var x = true || false; +true || false; --- -(module - (variable_declaration (keyword) (identifier) - (operator) - (bool) (operator) (bool)) +(module + (bool) (operator) (bool) ) =================== -or two bools +"and" two bools =================== -var x = true && false; +true && false; --- -(module - (variable_declaration (keyword) (identifier) - (operator) - (bool) (operator) (bool)) +(module + (bool) (operator) (bool) +) + + +=================== +GT comparison with variables +=================== +var x = 1; +var y = 2; + +x > y; + +--- +(module + (variable_declaration (keyword) (identifier) (operator) (integer)) + (variable_declaration (keyword) (identifier) (operator) (integer)) + (identifier) (operator) (identifier) +) +=================== +LT comparison with variables +=================== +var x = 1; +var y = 2; + +x < y; + +--- +(module + (variable_declaration (keyword) (identifier) (operator) (integer)) + (variable_declaration (keyword) (identifier) (operator) (integer)) + (identifier) (operator) (identifier) ) diff --git a/test/corpus/ternary.txt b/test/corpus/ternary.txt new file mode 100644 index 0000000..0592b07 --- /dev/null +++ b/test/corpus/ternary.txt @@ -0,0 +1,96 @@ +=================== +ternary expression +=================== + +true ? 1 : 0; + +--- + +(module + (ternary_expression + (bool) + (operator) + (integer) + (operator) + (integer) + ) +) + +=================== +ternary expression +=================== + +true ? -1 : -5; + +--- + +(module + (ternary_expression + (bool) + (operator) + (operator) + (integer) + (operator) + (operator) + (integer) + ) +) + +=================== +ternary expression with condition as expression +=================== + +1 > 2 ? -1 : -5; + +--- + +(module + (ternary_expression + (integer) (operator) (integer) + (operator) + (operator) (integer) + (operator) + (operator) (integer) + ) +) + +=================== +ternary expression with condition as expression +=================== + +1 < 2 ? -1 : -5; + +--- + +(module + (ternary_expression + (integer) (operator) (integer) + (operator) + (operator) (integer) + (operator) + (operator) (integer) + ) +) + +=================== +ternary expression with condition as expression with variables +=================== +var x = 1; +var y = 1; + +x < y ? -1 : -5; + +--- + +(module + (variable_declaration (keyword) (identifier) (operator) (integer)) + (variable_declaration (keyword) (identifier) (operator) (integer)) + + (ternary_expression + (identifier) (operator) (identifier) + (operator) + (operator) (integer) + (operator) + (operator) (integer) + ) +) diff --git a/test/highlight/issue-40-single.hx b/test/highlight/issue-40-single.hx new file mode 100644 index 0000000..7856b0f --- /dev/null +++ b/test/highlight/issue-40-single.hx @@ -0,0 +1 @@ +var x:Int = a < b ? 1 : 2; diff --git a/test/highlight/issue-40.hx b/test/highlight/issue-40.hx index b547a56..d73eb4d 100644 --- a/test/highlight/issue-40.hx +++ b/test/highlight/issue-40.hx @@ -1,10 +1,26 @@ -// Issue with highlighting conditional ternary operators -class TernaryBug { - public static function main() { - var a = 123; - var b = 123; +var y:Int = a > b ? 1 : -1; +// <- keyword +// ^ variable +// ^ type.builtin +// ^ operator +// ^ variable +// ^ operator +// ^ variable +// ^ operator +// ^ number +// ^ operator +// ^ number + +var x:Int = a < b ? 1 : -1; +// <- keyword +// ^ variable +// ^ type.builtin +// ^ operator +// ^ variable +// ^ operator +// ^ variable +// ^ operator +// ^ number +// ^ operator +// ^ number - var x:Int = a < b ? 1 : -1; - var y:Int = a > b ? 1 : -1; - } -}