diff --git a/CHANGELOG.md b/CHANGELOG.md index 24de11d1f..6d2ee952b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,8 @@ Added support for Ada. Improved parsing for TOML. -Updated grammars for Bash, C, C++, C#, Clojure, CMake and Elixir. +Updated grammars for Bash, C, C++, C#, Clojure, CMake, Elixir and +Java. Difftastic now prefers treating files as 'mostly UTF-8' or binary rather than UTF-16. Many files can be decoded as UTF-16 without decoding errors diff --git a/vendored_parsers/tree-sitter-java/.github/workflows/publish_crate.yml b/vendored_parsers/tree-sitter-java/.github/workflows/publish_crate.yml new file mode 100644 index 000000000..cec684b5d --- /dev/null +++ b/vendored_parsers/tree-sitter-java/.github/workflows/publish_crate.yml @@ -0,0 +1,33 @@ +name: Publish on crates.io + +on: + push: + tags: + - v* + +env: + CARGO_TERM_COLOR: always + CARGO_INCREMENTAL: 0 + +jobs: + publish: + + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Install Rust stable + run: | + rustup toolchain install stable --profile minimal --no-self-update + + - name: Verify publish crate + uses: katyo/publish-crates@v1 + with: + dry-run: true + + - name: Publish crate + uses: katyo/publish-crates@v1 + with: + registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} diff --git a/vendored_parsers/tree-sitter-java/README.md b/vendored_parsers/tree-sitter-java/README.md index e4bc50656..0fc33bd85 100644 --- a/vendored_parsers/tree-sitter-java/README.md +++ b/vendored_parsers/tree-sitter-java/README.md @@ -1,6 +1,7 @@ tree-sitter-java ================ -[![Build/test](https://github.com/tree-sitter/tree-sitter-java/actions/workflows/ci.yml/badge.svg)](https://github.com/tree-sitter/tree-sitter-java/actions/workflows/ci.yml) +[![CI](https://github.com/tree-sitter/tree-sitter-java/actions/workflows/ci.yml/badge.svg)](https://github.com/tree-sitter/tree-sitter-java/actions/workflows/ci.yml) +[![Discord](https://img.shields.io/discord/1063097320771698699?logo=discord)](https://discord.gg/w7nTvsVJhm) Java grammar for [tree-sitter](https://github.com/tree-sitter/tree-sitter). diff --git a/vendored_parsers/tree-sitter-java/grammar.js b/vendored_parsers/tree-sitter-java/grammar.js index 7ce644537..7de9257e2 100644 --- a/vendored_parsers/tree-sitter-java/grammar.js +++ b/vendored_parsers/tree-sitter-java/grammar.js @@ -4,7 +4,6 @@ const PREC = { // https://introcs.cs.princeton.edu/java/11precedence/ COMMENT: 0, // // /* */ ASSIGN: 1, // = += -= *= /= %= &= ^= |= <<= >>= >>>= - SWITCH_EXP: 1, // always prefer to parse switch as expression over statement DECL: 2, ELEMENT_VAL: 2, TERNARY: 3, // ?: @@ -25,6 +24,7 @@ const PREC = { ARRAY: 16, // [Index] OBJ_ACCESS: 16, // . PARENS: 16, // (Expression) + CLASS_LITERAL: 17, // . }; module.exports = grammar({ @@ -66,8 +66,11 @@ module.exports = grammar({ [$._unannotated_type, $.scoped_type_identifier], [$._unannotated_type, $.generic_type], [$.generic_type, $.primary_expression], + [$.expression, $.statement], // Only conflicts in switch expressions [$.lambda_expression, $.primary_expression], + [$.inferred_parameters, $.primary_expression], + [$.class_literal, $.field_access], ], word: $ => $.identifier, @@ -88,7 +91,6 @@ module.exports = grammar({ $.false, $.character_literal, $.string_literal, - $.text_block, $.null_literal ), @@ -141,24 +143,58 @@ module.exports = grammar({ false: $ => 'false', character_literal: $ => token(seq( - "'", + '\'', repeat1(choice( /[^\\'\n]/, /\\./, /\\\n/ )), - "'" + '\'' )), - string_literal: $ => token(choice( - seq('"', repeat(choice(/[^\\"\n]/, /\\(.|\n)/)), '"'), - // TODO: support multiline string literals by debugging the following: - // seq('"', repeat(choice(/[^\\"\n]/, /\\(.|\n)/)), '"', '+', /\n/, '"', repeat(choice(/[^\\"\n]/, /\\(.|\n)/))) - )), + string_literal: $ => choice($._string_literal, $._multiline_string_literal), + _string_literal: $ => seq( + '"', + repeat(choice( + $.string_fragment, + $.escape_sequence, + )), + '"' + ), + _multiline_string_literal: $ => seq( + '"""', + repeat(choice( + alias($._multiline_string_fragment, $.multiline_string_fragment), + $._escape_sequence, + )), + '"""' + ), + // Workaround to https://github.com/tree-sitter/tree-sitter/issues/1156 + // We give names to the token() constructs containing a regexp + // so as to obtain a node in the CST. + // + string_fragment: $ => + token.immediate(prec(1, /[^"\\]+/)), + _multiline_string_fragment: () => + prec.right(choice( + /[^"]+/, + seq(/"[^"]*/, repeat(/[^"]+/)) + )), - text_block: $ => token(choice( - seq('"""', /\s*\n/, optional(repeat(choice(/[^\\"]/, /\\(.)/))), '"""'), - )), + _escape_sequence: $ => + choice( + prec(2, token.immediate(seq('\\', /[^abfnrtvxu'\"\\\?]/))), + prec(1, $.escape_sequence) + ), + escape_sequence: () => token.immediate(seq( + '\\', + choice( + /[^xu0-7]/, + /[0-7]{1,3}/, + /x[0-9a-fA-F]{2}/, + /u[0-9a-fA-F]{4}/, + /u{[0-9a-fA-F]+}/ + ))), null_literal: $ => 'null', @@ -174,7 +210,7 @@ module.exports = grammar({ $.primary_expression, $.unary_expression, $.cast_expression, - prec(PREC.SWITCH_EXP, $.switch_expression), + $.switch_expression, ), cast_expression: $ => prec(PREC.CAST, seq( @@ -227,12 +263,14 @@ module.exports = grammar({ instanceof_expression: $ => prec(PREC.REL, seq( field('left', $.expression), 'instanceof', - field('right', $._type) + optional('final'), + field('right', $._type), + field('name', optional(choice($.identifier, $._reserved_identifier))) )), lambda_expression: $ => seq( field('parameters', choice( - $.identifier, $.formal_parameters, $.inferred_parameters + $.identifier, $.formal_parameters, $.inferred_parameters, $._reserved_identifier )), '->', field('body', choice($.expression, $.block)) @@ -240,7 +278,7 @@ module.exports = grammar({ inferred_parameters: $ => seq( '(', - commaSep1($.identifier), + commaSep1(choice($.identifier, $._reserved_identifier)), ')' ), @@ -289,6 +327,7 @@ module.exports = grammar({ array_creation_expression: $ => prec.right(seq( 'new', + repeat($._annotation), field('type', $._simple_type), choice( seq( @@ -306,7 +345,7 @@ module.exports = grammar({ parenthesized_expression: $ => seq('(', $.expression, ')'), - class_literal: $ => seq($._unannotated_type, '.', 'class'), + class_literal: $ => prec.dynamic(PREC.CLASS_LITERAL, seq($._unannotated_type, '.', 'class')), object_creation_expression: $ => choice( $._unqualified_object_creation_expression, @@ -434,7 +473,7 @@ module.exports = grammar({ $.continue_statement, $.return_statement, $.yield_statement, - $.switch_expression, //switch statements and expressions are identical + $.switch_expression, // switch statements and expressions are identical $.synchronized_statement, $.local_variable_declaration, $.throw_statement, @@ -635,6 +674,7 @@ module.exports = grammar({ $.package_declaration, $.import_declaration, $.class_declaration, + $.record_declaration, $.interface_declaration, $.annotation_type_declaration, $.enum_declaration, @@ -827,6 +867,7 @@ module.exports = grammar({ $.field_declaration, $.record_declaration, $.method_declaration, + $.compact_constructor_declaration, // For records. $.class_declaration, $.interface_declaration, $.annotation_type_declaration, @@ -902,7 +943,9 @@ module.exports = grammar({ optional($.modifiers), 'record', field('name', $.identifier), + optional(field('type_parameters', $.type_parameters)), field('parameters', $.formal_parameters), + optional(field('interfaces', $.super_interfaces)), field('body', $.class_body) ), @@ -919,6 +962,7 @@ module.exports = grammar({ $.constant_declaration, $.class_declaration, $.interface_declaration, + $.enum_declaration, $.annotation_type_declaration )), '}' @@ -962,6 +1006,7 @@ module.exports = grammar({ $.method_declaration, $.class_declaration, $.interface_declaration, + $.record_declaration, $.annotation_type_declaration, ';' )), @@ -1129,9 +1174,16 @@ module.exports = grammar({ choice(field('body', $.block), ';') ), + compact_constructor_declaration: $ => seq( + optional($.modifiers), + field('name', $.identifier), + field('body', $.block) + ), + _reserved_identifier: $ => alias(choice( 'open', - 'module' + 'module', + 'record' ), $.identifier), this: $ => 'this', diff --git a/vendored_parsers/tree-sitter-java/queries/highlights.scm b/vendored_parsers/tree-sitter-java/queries/highlights.scm index b6259be12..abe278835 100644 --- a/vendored_parsers/tree-sitter-java/queries/highlights.scm +++ b/vendored_parsers/tree-sitter-java/queries/highlights.scm @@ -73,6 +73,7 @@ (character_literal) (string_literal) ] @string +(escape_sequence) @string.escape [ (true) diff --git a/vendored_parsers/tree-sitter-java/script/known-failures.txt b/vendored_parsers/tree-sitter-java/script/known-failures.txt index e69de29bb..505684964 100644 --- a/vendored_parsers/tree-sitter-java/script/known-failures.txt +++ b/vendored_parsers/tree-sitter-java/script/known-failures.txt @@ -0,0 +1,3 @@ +examples/flink/flink-quickstart/flink-quickstart-java/src/main/resources/archetype-resources/src/main/java/DataStreamJob.java +examples/flink/flink-walkthroughs/flink-walkthrough-datastream-java/src/main/resources/archetype-resources/src/main/java/FraudDetectionJob.java +examples/flink/flink-walkthroughs/flink-walkthrough-datastream-java/src/main/resources/archetype-resources/src/main/java/FraudDetector.java \ No newline at end of file diff --git a/vendored_parsers/tree-sitter-java/script/parse-examples b/vendored_parsers/tree-sitter-java/script/parse-examples index ec8b0d9f9..32fd23b1b 100755 --- a/vendored_parsers/tree-sitter-java/script/parse-examples +++ b/vendored_parsers/tree-sitter-java/script/parse-examples @@ -26,8 +26,11 @@ function clone_repo { } clone_repo elastic elasticsearch 4d62640bf116af7e825d89c7319a39c3f2f325b4 -clone_repo google guava e24fddc5fff7fd36d33ea38737b6606a7e476845 -clone_repo ReactiveX RxJava 8a6bf14fc9a61f7c1c0016ca217be02ca86211d2 +clone_repo google guava v31.1 +clone_repo ReactiveX RxJava v3.1.6 +clone_repo apache flink release-1.16.0 +clone_repo apache logging-log4j2 rel/2.19.0 +clone_repo apache cassandra cassandra-4.1.0 known_failures="$(cat script/known-failures.txt)" diff --git a/vendored_parsers/tree-sitter-java/script/run-javaparser/target/classes/RunJavaParser.class b/vendored_parsers/tree-sitter-java/script/run-javaparser/target/classes/RunJavaParser.class deleted file mode 100644 index c724f9784..000000000 Binary files a/vendored_parsers/tree-sitter-java/script/run-javaparser/target/classes/RunJavaParser.class and /dev/null differ diff --git a/vendored_parsers/tree-sitter-java/src/grammar.json b/vendored_parsers/tree-sitter-java/src/grammar.json index b2b718c51..8dd9cc37b 100644 --- a/vendored_parsers/tree-sitter-java/src/grammar.json +++ b/vendored_parsers/tree-sitter-java/src/grammar.json @@ -52,10 +52,6 @@ "type": "SYMBOL", "name": "string_literal" }, - { - "type": "SYMBOL", - "name": "text_block" - }, { "type": "SYMBOL", "name": "null_literal" @@ -1065,85 +1061,185 @@ } }, "string_literal": { - "type": "TOKEN", + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_string_literal" + }, + { + "type": "SYMBOL", + "name": "_multiline_string_literal" + } + ] + }, + "_string_literal": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "string_fragment" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "\"" + } + ] + }, + "_multiline_string_literal": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"\"\"" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_multiline_string_fragment" + }, + "named": true, + "value": "multiline_string_fragment" + }, + { + "type": "SYMBOL", + "name": "_escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "\"\"\"" + } + ] + }, + "string_fragment": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[^\"\\\\]+" + } + } + }, + "_multiline_string_fragment": { + "type": "PREC_RIGHT", + "value": 0, "content": { "type": "CHOICE", "members": [ + { + "type": "PATTERN", + "value": "[^\"]+" + }, { "type": "SEQ", "members": [ { - "type": "STRING", - "value": "\"" + "type": "PATTERN", + "value": "\"[^\"]*" }, { "type": "REPEAT", "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[^\\\\\"\\n]" - }, - { - "type": "PATTERN", - "value": "\\\\(.|\\n)" - } - ] + "type": "PATTERN", + "value": "[^\"]+" } - }, - { - "type": "STRING", - "value": "\"" } ] } ] } }, - "text_block": { - "type": "TOKEN", + "_escape_sequence": { + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": 2, + "content": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\" + }, + { + "type": "PATTERN", + "value": "[^abfnrtvxu'\\\"\\\\\\?]" + } + ] + } + } + }, + { + "type": "PREC", + "value": 1, + "content": { + "type": "SYMBOL", + "name": "escape_sequence" + } + } + ] + }, + "escape_sequence": { + "type": "IMMEDIATE_TOKEN", "content": { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SEQ", + "type": "STRING", + "value": "\\" + }, + { + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "\"\"\"" + "type": "PATTERN", + "value": "[^xu0-7]" }, { "type": "PATTERN", - "value": "\\s*\\n" + "value": "[0-7]{1,3}" }, { - "type": "CHOICE", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[^\\\\\"]" - }, - { - "type": "PATTERN", - "value": "\\\\(.)" - } - ] - } - }, - { - "type": "BLANK" - } - ] + "type": "PATTERN", + "value": "x[0-9a-fA-F]{2}" }, { - "type": "STRING", - "value": "\"\"\"" + "type": "PATTERN", + "value": "u[0-9a-fA-F]{4}" + }, + { + "type": "PATTERN", + "value": "u{[0-9a-fA-F]+}" } ] } @@ -1194,12 +1290,8 @@ "name": "cast_expression" }, { - "type": "PREC", - "value": 1, - "content": { - "type": "SYMBOL", - "name": "switch_expression" - } + "type": "SYMBOL", + "name": "switch_expression" } ] }, @@ -2010,6 +2102,18 @@ "type": "STRING", "value": "instanceof" }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "final" + }, + { + "type": "BLANK" + } + ] + }, { "type": "FIELD", "name": "right", @@ -2017,6 +2121,31 @@ "type": "SYMBOL", "name": "_type" } + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + } + ] + }, + { + "type": "BLANK" + } + ] + } } ] } @@ -2041,6 +2170,10 @@ { "type": "SYMBOL", "name": "inferred_parameters" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" } ] } @@ -2079,8 +2212,17 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "identifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + } + ] }, { "type": "REPEAT", @@ -2092,8 +2234,17 @@ "value": "," }, { - "type": "SYMBOL", - "name": "identifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + } + ] } ] } @@ -2376,6 +2527,13 @@ "type": "STRING", "value": "new" }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_annotation" + } + }, { "type": "FIELD", "name": "type", @@ -2487,21 +2645,25 @@ ] }, "class_literal": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_unannotated_type" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "STRING", - "value": "class" - } - ] + "type": "PREC_DYNAMIC", + "value": 17, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_unannotated_type" + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": "class" + } + ] + } }, "object_creation_expression": { "type": "CHOICE", @@ -4366,6 +4528,10 @@ "type": "SYMBOL", "name": "class_declaration" }, + { + "type": "SYMBOL", + "name": "record_declaration" + }, { "type": "SYMBOL", "name": "interface_declaration" @@ -5359,6 +5525,10 @@ "type": "SYMBOL", "name": "method_declaration" }, + { + "type": "SYMBOL", + "name": "compact_constructor_declaration" + }, { "type": "SYMBOL", "name": "class_declaration" @@ -5724,6 +5894,22 @@ "name": "identifier" } }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "type_parameters", + "content": { + "type": "SYMBOL", + "name": "type_parameters" + } + }, + { + "type": "BLANK" + } + ] + }, { "type": "FIELD", "name": "parameters", @@ -5732,6 +5918,22 @@ "name": "formal_parameters" } }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "interfaces", + "content": { + "type": "SYMBOL", + "name": "super_interfaces" + } + }, + { + "type": "BLANK" + } + ] + }, { "type": "FIELD", "name": "body", @@ -5807,6 +6009,10 @@ "type": "SYMBOL", "name": "interface_declaration" }, + { + "type": "SYMBOL", + "name": "enum_declaration" + }, { "type": "SYMBOL", "name": "annotation_type_declaration" @@ -6036,6 +6242,10 @@ "type": "SYMBOL", "name": "interface_declaration" }, + { + "type": "SYMBOL", + "name": "record_declaration" + }, { "type": "SYMBOL", "name": "annotation_type_declaration" @@ -6870,6 +7080,39 @@ } ] }, + "compact_constructor_declaration": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "modifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "block" + } + } + ] + }, "_reserved_identifier": { "type": "ALIAS", "content": { @@ -6882,6 +7125,10 @@ { "type": "STRING", "value": "module" + }, + { + "type": "STRING", + "value": "record" } ] }, @@ -7010,9 +7257,21 @@ "generic_type", "primary_expression" ], + [ + "expression", + "statement" + ], [ "lambda_expression", "primary_expression" + ], + [ + "inferred_parameters", + "primary_expression" + ], + [ + "class_literal", + "field_access" ] ], "precedences": [], diff --git a/vendored_parsers/tree-sitter-java/src/node-types.json b/vendored_parsers/tree-sitter-java/src/node-types.json index f773c889f..299298e73 100644 --- a/vendored_parsers/tree-sitter-java/src/node-types.json +++ b/vendored_parsers/tree-sitter-java/src/node-types.json @@ -43,10 +43,6 @@ "type": "string_literal", "named": true }, - { - "type": "text_block", - "named": true - }, { "type": "true", "named": true @@ -160,6 +156,10 @@ { "type": "package_declaration", "named": true + }, + { + "type": "record_declaration", + "named": true } ] }, @@ -483,6 +483,10 @@ "type": "constant_declaration", "named": true }, + { + "type": "enum_declaration", + "named": true + }, { "type": "interface_declaration", "named": true @@ -673,6 +677,20 @@ } ] } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "annotation", + "named": true + }, + { + "type": "marker_annotation", + "named": true + } + ] } }, { @@ -1093,6 +1111,10 @@ "type": "class_declaration", "named": true }, + { + "type": "compact_constructor_declaration", + "named": true + }, { "type": "constructor_declaration", "named": true @@ -1215,6 +1237,42 @@ ] } }, + { + "type": "compact_constructor_declaration", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "modifiers", + "named": true + } + ] + } + }, { "type": "constant_declaration", "named": true, @@ -1583,6 +1641,10 @@ "type": "class_declaration", "named": true }, + { + "type": "compact_constructor_declaration", + "named": true + }, { "type": "constructor_declaration", "named": true @@ -2150,6 +2212,16 @@ } ] }, + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, "right": { "multiple": false, "required": true, @@ -2198,6 +2270,10 @@ { "type": "method_declaration", "named": true + }, + { + "type": "record_declaration", + "named": true } ] } @@ -2628,6 +2704,11 @@ ] } }, + { + "type": "multiline_string_fragment", + "named": true, + "fields": {} + }, { "type": "object_creation_expression", "named": true, @@ -2877,6 +2958,16 @@ } ] }, + "interfaces": { + "multiple": false, + "required": false, + "types": [ + { + "type": "super_interfaces", + "named": true + } + ] + }, "name": { "multiple": false, "required": true, @@ -2896,6 +2987,16 @@ "named": true } ] + }, + "type_parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_parameters", + "named": true + } + ] } }, "children": { @@ -3137,6 +3238,29 @@ ] } }, + { + "type": "string_literal", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "escape_sequence", + "named": true + }, + { + "type": "multiline_string_fragment", + "named": true + }, + { + "type": "string_fragment", + "named": true + } + ] + } + }, { "type": "super_interfaces", "named": true, @@ -3715,6 +3839,14 @@ "type": "!=", "named": false }, + { + "type": "\"", + "named": false + }, + { + "type": "\"\"\"", + "named": false + }, { "type": "%", "named": false @@ -3967,6 +4099,10 @@ "type": "enum", "named": false }, + { + "type": "escape_sequence", + "named": true + }, { "type": "exports", "named": false @@ -4124,7 +4260,7 @@ "named": false }, { - "type": "string_literal", + "type": "string_fragment", "named": true }, { @@ -4139,10 +4275,6 @@ "type": "synchronized", "named": false }, - { - "type": "text_block", - "named": true - }, { "type": "this", "named": true diff --git a/vendored_parsers/tree-sitter-java/src/parser.c b/vendored_parsers/tree-sitter-java/src/parser.c index 883f1ce39..d8165f5e3 100644 --- a/vendored_parsers/tree-sitter-java/src/parser.c +++ b/vendored_parsers/tree-sitter-java/src/parser.c @@ -5,16 +5,16 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 13 -#define STATE_COUNT 1147 -#define LARGE_STATE_COUNT 299 -#define SYMBOL_COUNT 291 +#define LANGUAGE_VERSION 14 +#define STATE_COUNT 1297 +#define LARGE_STATE_COUNT 354 +#define SYMBOL_COUNT 305 #define ALIAS_COUNT 1 -#define TOKEN_COUNT 130 +#define TOKEN_COUNT 135 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 37 #define MAX_ALIAS_SEQUENCE_LENGTH 11 -#define PRODUCTION_ID_COUNT 220 +#define PRODUCTION_ID_COUNT 238 enum { sym_identifier = 1, @@ -27,287 +27,301 @@ enum { sym_true = 8, sym_false = 9, sym_character_literal = 10, - sym_string_literal = 11, - sym_text_block = 12, - sym_null_literal = 13, - anon_sym_LPAREN = 14, - anon_sym_AMP = 15, - anon_sym_RPAREN = 16, - anon_sym_EQ = 17, - anon_sym_PLUS_EQ = 18, - anon_sym_DASH_EQ = 19, - anon_sym_STAR_EQ = 20, - anon_sym_SLASH_EQ = 21, - anon_sym_AMP_EQ = 22, - anon_sym_PIPE_EQ = 23, - anon_sym_CARET_EQ = 24, - anon_sym_PERCENT_EQ = 25, - anon_sym_LT_LT_EQ = 26, - anon_sym_GT_GT_EQ = 27, - anon_sym_GT_GT_GT_EQ = 28, - anon_sym_GT = 29, - anon_sym_LT = 30, - anon_sym_GT_EQ = 31, - anon_sym_LT_EQ = 32, - anon_sym_EQ_EQ = 33, - anon_sym_BANG_EQ = 34, - anon_sym_AMP_AMP = 35, - anon_sym_PIPE_PIPE = 36, - anon_sym_PLUS = 37, - anon_sym_DASH = 38, - anon_sym_STAR = 39, - anon_sym_SLASH = 40, - anon_sym_PIPE = 41, - anon_sym_CARET = 42, - anon_sym_PERCENT = 43, - anon_sym_LT_LT = 44, - anon_sym_GT_GT = 45, - anon_sym_GT_GT_GT = 46, - anon_sym_instanceof = 47, - anon_sym_DASH_GT = 48, - anon_sym_COMMA = 49, - anon_sym_QMARK = 50, - anon_sym_COLON = 51, - anon_sym_BANG = 52, - anon_sym_TILDE = 53, - anon_sym_PLUS_PLUS = 54, - anon_sym_DASH_DASH = 55, - anon_sym_new = 56, - anon_sym_LBRACK = 57, - anon_sym_RBRACK = 58, - anon_sym_DOT = 59, - anon_sym_class = 60, - anon_sym_COLON_COLON = 61, - anon_sym_extends = 62, - anon_sym_switch = 63, - anon_sym_LBRACE = 64, - anon_sym_RBRACE = 65, - anon_sym_case = 66, - anon_sym_default = 67, - anon_sym_SEMI = 68, - anon_sym_assert = 69, - anon_sym_do = 70, - anon_sym_while = 71, - anon_sym_break = 72, - anon_sym_continue = 73, - anon_sym_return = 74, - anon_sym_yield = 75, - anon_sym_synchronized = 76, - anon_sym_throw = 77, - anon_sym_try = 78, - anon_sym_catch = 79, - anon_sym_finally = 80, - anon_sym_if = 81, - anon_sym_else = 82, - anon_sym_for = 83, - anon_sym_AT = 84, - anon_sym_open = 85, - anon_sym_module = 86, - anon_sym_requires = 87, - anon_sym_transitive = 88, - anon_sym_static = 89, - anon_sym_exports = 90, - anon_sym_to = 91, - anon_sym_opens = 92, - anon_sym_uses = 93, - anon_sym_provides = 94, - anon_sym_with = 95, - anon_sym_package = 96, - anon_sym_import = 97, - anon_sym_enum = 98, - anon_sym_public = 99, - anon_sym_protected = 100, - anon_sym_private = 101, - anon_sym_abstract = 102, - anon_sym_final = 103, - anon_sym_strictfp = 104, - anon_sym_native = 105, - anon_sym_transient = 106, - anon_sym_volatile = 107, - anon_sym_sealed = 108, - anon_sym_non_DASHsealed = 109, - anon_sym_implements = 110, - anon_sym_permits = 111, - anon_sym_record = 112, - anon_sym_ATinterface = 113, - anon_sym_interface = 114, - anon_sym_byte = 115, - anon_sym_short = 116, - anon_sym_int = 117, - anon_sym_long = 118, - anon_sym_char = 119, - anon_sym_float = 120, - anon_sym_double = 121, - sym_boolean_type = 122, - sym_void_type = 123, - anon_sym_DOT_DOT_DOT = 124, - anon_sym_throws = 125, - sym_this = 126, - sym_super = 127, - sym_line_comment = 128, - sym_block_comment = 129, - sym_program = 130, - sym__literal = 131, - sym_expression = 132, - sym_cast_expression = 133, - sym_assignment_expression = 134, - sym_binary_expression = 135, - sym_instanceof_expression = 136, - sym_lambda_expression = 137, - sym_inferred_parameters = 138, - sym_ternary_expression = 139, - sym_unary_expression = 140, - sym_update_expression = 141, - sym_primary_expression = 142, - sym_array_creation_expression = 143, - sym_dimensions_expr = 144, - sym_parenthesized_expression = 145, - sym_class_literal = 146, - sym_object_creation_expression = 147, - sym__unqualified_object_creation_expression = 148, - sym_field_access = 149, - sym_array_access = 150, - sym_method_invocation = 151, - sym_argument_list = 152, - sym_method_reference = 153, - sym_type_arguments = 154, - sym_wildcard = 155, - sym__wildcard_bounds = 156, - sym_dimensions = 157, - sym_switch_expression = 158, - sym_switch_block = 159, - sym_switch_block_statement_group = 160, - sym_switch_rule = 161, - sym_switch_label = 162, - sym_statement = 163, - sym_block = 164, - sym_expression_statement = 165, - sym_labeled_statement = 166, - sym_assert_statement = 167, - sym_do_statement = 168, - sym_break_statement = 169, - sym_continue_statement = 170, - sym_return_statement = 171, - sym_yield_statement = 172, - sym_synchronized_statement = 173, - sym_throw_statement = 174, - sym_try_statement = 175, - sym_catch_clause = 176, - sym_catch_formal_parameter = 177, - sym_catch_type = 178, - sym_finally_clause = 179, - sym_try_with_resources_statement = 180, - sym_resource_specification = 181, - sym_resource = 182, - sym_if_statement = 183, - sym_while_statement = 184, - sym_for_statement = 185, - sym_enhanced_for_statement = 186, - sym__annotation = 187, - sym_marker_annotation = 188, - sym_annotation = 189, - sym_annotation_argument_list = 190, - sym_element_value_pair = 191, - sym__element_value = 192, - sym_element_value_array_initializer = 193, - sym_declaration = 194, - sym_module_declaration = 195, - sym_module_body = 196, - sym_module_directive = 197, - sym_requires_module_directive = 198, - sym_requires_modifier = 199, - sym_exports_module_directive = 200, - sym_opens_module_directive = 201, - sym_uses_module_directive = 202, - sym_provides_module_directive = 203, - sym_package_declaration = 204, - sym_import_declaration = 205, - sym_asterisk = 206, - sym_enum_declaration = 207, - sym_enum_body = 208, - sym_enum_body_declarations = 209, - sym_enum_constant = 210, - sym_class_declaration = 211, - sym_modifiers = 212, - sym_type_parameters = 213, - sym_type_parameter = 214, - sym_type_bound = 215, - sym_superclass = 216, - sym_super_interfaces = 217, - sym_type_list = 218, - sym_permits = 219, - sym_class_body = 220, - sym_static_initializer = 221, - sym_constructor_declaration = 222, - sym__constructor_declarator = 223, - sym_constructor_body = 224, - sym_explicit_constructor_invocation = 225, - sym_scoped_identifier = 226, - sym_field_declaration = 227, - sym_record_declaration = 228, - sym_annotation_type_declaration = 229, - sym_annotation_type_body = 230, - sym_annotation_type_element_declaration = 231, - sym__default_value = 232, - sym_interface_declaration = 233, - sym_extends_interfaces = 234, - sym_interface_body = 235, - sym_constant_declaration = 236, - sym__variable_declarator_list = 237, - sym_variable_declarator = 238, - sym__variable_declarator_id = 239, - sym_array_initializer = 240, - sym__type = 241, - sym__unannotated_type = 242, - sym_annotated_type = 243, - sym_scoped_type_identifier = 244, - sym_generic_type = 245, - sym_array_type = 246, - sym_integral_type = 247, - sym_floating_point_type = 248, - sym__method_header = 249, - sym__method_declarator = 250, - sym_formal_parameters = 251, - sym_formal_parameter = 252, - sym_receiver_parameter = 253, - sym_spread_parameter = 254, - sym_throws = 255, - sym_local_variable_declaration = 256, - sym_method_declaration = 257, - aux_sym_program_repeat1 = 258, - aux_sym_cast_expression_repeat1 = 259, - aux_sym_inferred_parameters_repeat1 = 260, - aux_sym_array_creation_expression_repeat1 = 261, - aux_sym_dimensions_expr_repeat1 = 262, - aux_sym_argument_list_repeat1 = 263, - aux_sym_type_arguments_repeat1 = 264, - aux_sym_dimensions_repeat1 = 265, - aux_sym_switch_block_repeat1 = 266, - aux_sym_switch_block_repeat2 = 267, - aux_sym_switch_block_statement_group_repeat1 = 268, - aux_sym_try_statement_repeat1 = 269, - aux_sym_catch_type_repeat1 = 270, - aux_sym_resource_specification_repeat1 = 271, - aux_sym_for_statement_repeat1 = 272, - aux_sym_for_statement_repeat2 = 273, - aux_sym_annotation_argument_list_repeat1 = 274, - aux_sym_element_value_array_initializer_repeat1 = 275, - aux_sym_module_body_repeat1 = 276, - aux_sym_requires_module_directive_repeat1 = 277, - aux_sym_exports_module_directive_repeat1 = 278, - aux_sym_provides_module_directive_repeat1 = 279, - aux_sym_enum_body_repeat1 = 280, - aux_sym_enum_body_declarations_repeat1 = 281, - aux_sym_modifiers_repeat1 = 282, - aux_sym_type_parameters_repeat1 = 283, - aux_sym_type_bound_repeat1 = 284, - aux_sym_type_list_repeat1 = 285, - aux_sym_annotation_type_body_repeat1 = 286, - aux_sym_interface_body_repeat1 = 287, - aux_sym__variable_declarator_list_repeat1 = 288, - aux_sym_array_initializer_repeat1 = 289, - aux_sym_formal_parameters_repeat1 = 290, - alias_sym_type_identifier = 291, + anon_sym_DQUOTE = 11, + anon_sym_DQUOTE_DQUOTE_DQUOTE = 12, + sym_string_fragment = 13, + aux_sym__multiline_string_fragment_token1 = 14, + aux_sym__multiline_string_fragment_token2 = 15, + aux_sym__escape_sequence_token1 = 16, + sym_escape_sequence = 17, + sym_null_literal = 18, + anon_sym_LPAREN = 19, + anon_sym_AMP = 20, + anon_sym_RPAREN = 21, + anon_sym_EQ = 22, + anon_sym_PLUS_EQ = 23, + anon_sym_DASH_EQ = 24, + anon_sym_STAR_EQ = 25, + anon_sym_SLASH_EQ = 26, + anon_sym_AMP_EQ = 27, + anon_sym_PIPE_EQ = 28, + anon_sym_CARET_EQ = 29, + anon_sym_PERCENT_EQ = 30, + anon_sym_LT_LT_EQ = 31, + anon_sym_GT_GT_EQ = 32, + anon_sym_GT_GT_GT_EQ = 33, + anon_sym_GT = 34, + anon_sym_LT = 35, + anon_sym_GT_EQ = 36, + anon_sym_LT_EQ = 37, + anon_sym_EQ_EQ = 38, + anon_sym_BANG_EQ = 39, + anon_sym_AMP_AMP = 40, + anon_sym_PIPE_PIPE = 41, + anon_sym_PLUS = 42, + anon_sym_DASH = 43, + anon_sym_STAR = 44, + anon_sym_SLASH = 45, + anon_sym_PIPE = 46, + anon_sym_CARET = 47, + anon_sym_PERCENT = 48, + anon_sym_LT_LT = 49, + anon_sym_GT_GT = 50, + anon_sym_GT_GT_GT = 51, + anon_sym_instanceof = 52, + anon_sym_final = 53, + anon_sym_DASH_GT = 54, + anon_sym_COMMA = 55, + anon_sym_QMARK = 56, + anon_sym_COLON = 57, + anon_sym_BANG = 58, + anon_sym_TILDE = 59, + anon_sym_PLUS_PLUS = 60, + anon_sym_DASH_DASH = 61, + anon_sym_new = 62, + anon_sym_LBRACK = 63, + anon_sym_RBRACK = 64, + anon_sym_DOT = 65, + anon_sym_class = 66, + anon_sym_COLON_COLON = 67, + anon_sym_extends = 68, + anon_sym_switch = 69, + anon_sym_LBRACE = 70, + anon_sym_RBRACE = 71, + anon_sym_case = 72, + anon_sym_default = 73, + anon_sym_SEMI = 74, + anon_sym_assert = 75, + anon_sym_do = 76, + anon_sym_while = 77, + anon_sym_break = 78, + anon_sym_continue = 79, + anon_sym_return = 80, + anon_sym_yield = 81, + anon_sym_synchronized = 82, + anon_sym_throw = 83, + anon_sym_try = 84, + anon_sym_catch = 85, + anon_sym_finally = 86, + anon_sym_if = 87, + anon_sym_else = 88, + anon_sym_for = 89, + anon_sym_AT = 90, + anon_sym_open = 91, + anon_sym_module = 92, + anon_sym_requires = 93, + anon_sym_transitive = 94, + anon_sym_static = 95, + anon_sym_exports = 96, + anon_sym_to = 97, + anon_sym_opens = 98, + anon_sym_uses = 99, + anon_sym_provides = 100, + anon_sym_with = 101, + anon_sym_package = 102, + anon_sym_import = 103, + anon_sym_enum = 104, + anon_sym_public = 105, + anon_sym_protected = 106, + anon_sym_private = 107, + anon_sym_abstract = 108, + anon_sym_strictfp = 109, + anon_sym_native = 110, + anon_sym_transient = 111, + anon_sym_volatile = 112, + anon_sym_sealed = 113, + anon_sym_non_DASHsealed = 114, + anon_sym_implements = 115, + anon_sym_permits = 116, + anon_sym_record = 117, + anon_sym_ATinterface = 118, + anon_sym_interface = 119, + anon_sym_byte = 120, + anon_sym_short = 121, + anon_sym_int = 122, + anon_sym_long = 123, + anon_sym_char = 124, + anon_sym_float = 125, + anon_sym_double = 126, + sym_boolean_type = 127, + sym_void_type = 128, + anon_sym_DOT_DOT_DOT = 129, + anon_sym_throws = 130, + sym_this = 131, + sym_super = 132, + sym_line_comment = 133, + sym_block_comment = 134, + sym_program = 135, + sym__literal = 136, + sym_string_literal = 137, + sym__string_literal = 138, + sym__multiline_string_literal = 139, + sym__multiline_string_fragment = 140, + sym__escape_sequence = 141, + sym_expression = 142, + sym_cast_expression = 143, + sym_assignment_expression = 144, + sym_binary_expression = 145, + sym_instanceof_expression = 146, + sym_lambda_expression = 147, + sym_inferred_parameters = 148, + sym_ternary_expression = 149, + sym_unary_expression = 150, + sym_update_expression = 151, + sym_primary_expression = 152, + sym_array_creation_expression = 153, + sym_dimensions_expr = 154, + sym_parenthesized_expression = 155, + sym_class_literal = 156, + sym_object_creation_expression = 157, + sym__unqualified_object_creation_expression = 158, + sym_field_access = 159, + sym_array_access = 160, + sym_method_invocation = 161, + sym_argument_list = 162, + sym_method_reference = 163, + sym_type_arguments = 164, + sym_wildcard = 165, + sym__wildcard_bounds = 166, + sym_dimensions = 167, + sym_switch_expression = 168, + sym_switch_block = 169, + sym_switch_block_statement_group = 170, + sym_switch_rule = 171, + sym_switch_label = 172, + sym_statement = 173, + sym_block = 174, + sym_expression_statement = 175, + sym_labeled_statement = 176, + sym_assert_statement = 177, + sym_do_statement = 178, + sym_break_statement = 179, + sym_continue_statement = 180, + sym_return_statement = 181, + sym_yield_statement = 182, + sym_synchronized_statement = 183, + sym_throw_statement = 184, + sym_try_statement = 185, + sym_catch_clause = 186, + sym_catch_formal_parameter = 187, + sym_catch_type = 188, + sym_finally_clause = 189, + sym_try_with_resources_statement = 190, + sym_resource_specification = 191, + sym_resource = 192, + sym_if_statement = 193, + sym_while_statement = 194, + sym_for_statement = 195, + sym_enhanced_for_statement = 196, + sym__annotation = 197, + sym_marker_annotation = 198, + sym_annotation = 199, + sym_annotation_argument_list = 200, + sym_element_value_pair = 201, + sym__element_value = 202, + sym_element_value_array_initializer = 203, + sym_declaration = 204, + sym_module_declaration = 205, + sym_module_body = 206, + sym_module_directive = 207, + sym_requires_module_directive = 208, + sym_requires_modifier = 209, + sym_exports_module_directive = 210, + sym_opens_module_directive = 211, + sym_uses_module_directive = 212, + sym_provides_module_directive = 213, + sym_package_declaration = 214, + sym_import_declaration = 215, + sym_asterisk = 216, + sym_enum_declaration = 217, + sym_enum_body = 218, + sym_enum_body_declarations = 219, + sym_enum_constant = 220, + sym_class_declaration = 221, + sym_modifiers = 222, + sym_type_parameters = 223, + sym_type_parameter = 224, + sym_type_bound = 225, + sym_superclass = 226, + sym_super_interfaces = 227, + sym_type_list = 228, + sym_permits = 229, + sym_class_body = 230, + sym_static_initializer = 231, + sym_constructor_declaration = 232, + sym__constructor_declarator = 233, + sym_constructor_body = 234, + sym_explicit_constructor_invocation = 235, + sym_scoped_identifier = 236, + sym_field_declaration = 237, + sym_record_declaration = 238, + sym_annotation_type_declaration = 239, + sym_annotation_type_body = 240, + sym_annotation_type_element_declaration = 241, + sym__default_value = 242, + sym_interface_declaration = 243, + sym_extends_interfaces = 244, + sym_interface_body = 245, + sym_constant_declaration = 246, + sym__variable_declarator_list = 247, + sym_variable_declarator = 248, + sym__variable_declarator_id = 249, + sym_array_initializer = 250, + sym__type = 251, + sym__unannotated_type = 252, + sym_annotated_type = 253, + sym_scoped_type_identifier = 254, + sym_generic_type = 255, + sym_array_type = 256, + sym_integral_type = 257, + sym_floating_point_type = 258, + sym__method_header = 259, + sym__method_declarator = 260, + sym_formal_parameters = 261, + sym_formal_parameter = 262, + sym_receiver_parameter = 263, + sym_spread_parameter = 264, + sym_throws = 265, + sym_local_variable_declaration = 266, + sym_method_declaration = 267, + sym_compact_constructor_declaration = 268, + aux_sym_program_repeat1 = 269, + aux_sym__string_literal_repeat1 = 270, + aux_sym__multiline_string_literal_repeat1 = 271, + aux_sym__multiline_string_fragment_repeat1 = 272, + aux_sym_cast_expression_repeat1 = 273, + aux_sym_inferred_parameters_repeat1 = 274, + aux_sym_array_creation_expression_repeat1 = 275, + aux_sym_array_creation_expression_repeat2 = 276, + aux_sym_argument_list_repeat1 = 277, + aux_sym_type_arguments_repeat1 = 278, + aux_sym_dimensions_repeat1 = 279, + aux_sym_switch_block_repeat1 = 280, + aux_sym_switch_block_repeat2 = 281, + aux_sym_switch_block_statement_group_repeat1 = 282, + aux_sym_try_statement_repeat1 = 283, + aux_sym_catch_type_repeat1 = 284, + aux_sym_resource_specification_repeat1 = 285, + aux_sym_for_statement_repeat1 = 286, + aux_sym_for_statement_repeat2 = 287, + aux_sym_annotation_argument_list_repeat1 = 288, + aux_sym_element_value_array_initializer_repeat1 = 289, + aux_sym_module_body_repeat1 = 290, + aux_sym_requires_module_directive_repeat1 = 291, + aux_sym_exports_module_directive_repeat1 = 292, + aux_sym_provides_module_directive_repeat1 = 293, + aux_sym_enum_body_repeat1 = 294, + aux_sym_enum_body_declarations_repeat1 = 295, + aux_sym_modifiers_repeat1 = 296, + aux_sym_type_parameters_repeat1 = 297, + aux_sym_type_bound_repeat1 = 298, + aux_sym_type_list_repeat1 = 299, + aux_sym_annotation_type_body_repeat1 = 300, + aux_sym_interface_body_repeat1 = 301, + aux_sym__variable_declarator_list_repeat1 = 302, + aux_sym_array_initializer_repeat1 = 303, + aux_sym_formal_parameters_repeat1 = 304, + alias_sym_type_identifier = 305, }; static const char * const ts_symbol_names[] = { @@ -322,8 +336,13 @@ static const char * const ts_symbol_names[] = { [sym_true] = "true", [sym_false] = "false", [sym_character_literal] = "character_literal", - [sym_string_literal] = "string_literal", - [sym_text_block] = "text_block", + [anon_sym_DQUOTE] = "\"", + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = "\"\"\"", + [sym_string_fragment] = "string_fragment", + [aux_sym__multiline_string_fragment_token1] = "_multiline_string_fragment_token1", + [aux_sym__multiline_string_fragment_token2] = "_multiline_string_fragment_token2", + [aux_sym__escape_sequence_token1] = "_escape_sequence_token1", + [sym_escape_sequence] = "escape_sequence", [sym_null_literal] = "null_literal", [anon_sym_LPAREN] = "(", [anon_sym_AMP] = "&", @@ -359,6 +378,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_GT_GT] = ">>", [anon_sym_GT_GT_GT] = ">>>", [anon_sym_instanceof] = "instanceof", + [anon_sym_final] = "final", [anon_sym_DASH_GT] = "->", [anon_sym_COMMA] = ",", [anon_sym_QMARK] = "\?", @@ -414,7 +434,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_protected] = "protected", [anon_sym_private] = "private", [anon_sym_abstract] = "abstract", - [anon_sym_final] = "final", [anon_sym_strictfp] = "strictfp", [anon_sym_native] = "native", [anon_sym_transient] = "transient", @@ -443,6 +462,11 @@ static const char * const ts_symbol_names[] = { [sym_block_comment] = "block_comment", [sym_program] = "program", [sym__literal] = "_literal", + [sym_string_literal] = "string_literal", + [sym__string_literal] = "_string_literal", + [sym__multiline_string_literal] = "_multiline_string_literal", + [sym__multiline_string_fragment] = "multiline_string_fragment", + [sym__escape_sequence] = "_escape_sequence", [sym_expression] = "expression", [sym_cast_expression] = "cast_expression", [sym_assignment_expression] = "assignment_expression", @@ -569,11 +593,15 @@ static const char * const ts_symbol_names[] = { [sym_throws] = "throws", [sym_local_variable_declaration] = "local_variable_declaration", [sym_method_declaration] = "method_declaration", + [sym_compact_constructor_declaration] = "compact_constructor_declaration", [aux_sym_program_repeat1] = "program_repeat1", + [aux_sym__string_literal_repeat1] = "_string_literal_repeat1", + [aux_sym__multiline_string_literal_repeat1] = "_multiline_string_literal_repeat1", + [aux_sym__multiline_string_fragment_repeat1] = "_multiline_string_fragment_repeat1", [aux_sym_cast_expression_repeat1] = "cast_expression_repeat1", [aux_sym_inferred_parameters_repeat1] = "inferred_parameters_repeat1", [aux_sym_array_creation_expression_repeat1] = "array_creation_expression_repeat1", - [aux_sym_dimensions_expr_repeat1] = "dimensions_expr_repeat1", + [aux_sym_array_creation_expression_repeat2] = "array_creation_expression_repeat2", [aux_sym_argument_list_repeat1] = "argument_list_repeat1", [aux_sym_type_arguments_repeat1] = "type_arguments_repeat1", [aux_sym_dimensions_repeat1] = "dimensions_repeat1", @@ -617,8 +645,13 @@ static const TSSymbol ts_symbol_map[] = { [sym_true] = sym_true, [sym_false] = sym_false, [sym_character_literal] = sym_character_literal, - [sym_string_literal] = sym_string_literal, - [sym_text_block] = sym_text_block, + [anon_sym_DQUOTE] = anon_sym_DQUOTE, + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = anon_sym_DQUOTE_DQUOTE_DQUOTE, + [sym_string_fragment] = sym_string_fragment, + [aux_sym__multiline_string_fragment_token1] = aux_sym__multiline_string_fragment_token1, + [aux_sym__multiline_string_fragment_token2] = aux_sym__multiline_string_fragment_token2, + [aux_sym__escape_sequence_token1] = aux_sym__escape_sequence_token1, + [sym_escape_sequence] = sym_escape_sequence, [sym_null_literal] = sym_null_literal, [anon_sym_LPAREN] = anon_sym_LPAREN, [anon_sym_AMP] = anon_sym_AMP, @@ -654,6 +687,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_GT_GT] = anon_sym_GT_GT, [anon_sym_GT_GT_GT] = anon_sym_GT_GT_GT, [anon_sym_instanceof] = anon_sym_instanceof, + [anon_sym_final] = anon_sym_final, [anon_sym_DASH_GT] = anon_sym_DASH_GT, [anon_sym_COMMA] = anon_sym_COMMA, [anon_sym_QMARK] = anon_sym_QMARK, @@ -709,7 +743,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_protected] = anon_sym_protected, [anon_sym_private] = anon_sym_private, [anon_sym_abstract] = anon_sym_abstract, - [anon_sym_final] = anon_sym_final, [anon_sym_strictfp] = anon_sym_strictfp, [anon_sym_native] = anon_sym_native, [anon_sym_transient] = anon_sym_transient, @@ -738,6 +771,11 @@ static const TSSymbol ts_symbol_map[] = { [sym_block_comment] = sym_block_comment, [sym_program] = sym_program, [sym__literal] = sym__literal, + [sym_string_literal] = sym_string_literal, + [sym__string_literal] = sym__string_literal, + [sym__multiline_string_literal] = sym__multiline_string_literal, + [sym__multiline_string_fragment] = sym__multiline_string_fragment, + [sym__escape_sequence] = sym__escape_sequence, [sym_expression] = sym_expression, [sym_cast_expression] = sym_cast_expression, [sym_assignment_expression] = sym_assignment_expression, @@ -864,11 +902,15 @@ static const TSSymbol ts_symbol_map[] = { [sym_throws] = sym_throws, [sym_local_variable_declaration] = sym_local_variable_declaration, [sym_method_declaration] = sym_method_declaration, + [sym_compact_constructor_declaration] = sym_compact_constructor_declaration, [aux_sym_program_repeat1] = aux_sym_program_repeat1, + [aux_sym__string_literal_repeat1] = aux_sym__string_literal_repeat1, + [aux_sym__multiline_string_literal_repeat1] = aux_sym__multiline_string_literal_repeat1, + [aux_sym__multiline_string_fragment_repeat1] = aux_sym__multiline_string_fragment_repeat1, [aux_sym_cast_expression_repeat1] = aux_sym_cast_expression_repeat1, [aux_sym_inferred_parameters_repeat1] = aux_sym_inferred_parameters_repeat1, [aux_sym_array_creation_expression_repeat1] = aux_sym_array_creation_expression_repeat1, - [aux_sym_dimensions_expr_repeat1] = aux_sym_dimensions_expr_repeat1, + [aux_sym_array_creation_expression_repeat2] = aux_sym_array_creation_expression_repeat2, [aux_sym_argument_list_repeat1] = aux_sym_argument_list_repeat1, [aux_sym_type_arguments_repeat1] = aux_sym_type_arguments_repeat1, [aux_sym_dimensions_repeat1] = aux_sym_dimensions_repeat1, @@ -945,11 +987,31 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_string_literal] = { + [anon_sym_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = { + .visible = true, + .named = false, + }, + [sym_string_fragment] = { .visible = true, .named = true, }, - [sym_text_block] = { + [aux_sym__multiline_string_fragment_token1] = { + .visible = false, + .named = false, + }, + [aux_sym__multiline_string_fragment_token2] = { + .visible = false, + .named = false, + }, + [aux_sym__escape_sequence_token1] = { + .visible = false, + .named = false, + }, + [sym_escape_sequence] = { .visible = true, .named = true, }, @@ -1093,6 +1155,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_final] = { + .visible = true, + .named = false, + }, [anon_sym_DASH_GT] = { .visible = true, .named = false, @@ -1313,10 +1379,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_final] = { - .visible = true, - .named = false, - }, [anon_sym_strictfp] = { .visible = true, .named = false, @@ -1430,6 +1492,26 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = true, .supertype = true, }, + [sym_string_literal] = { + .visible = true, + .named = true, + }, + [sym__string_literal] = { + .visible = false, + .named = true, + }, + [sym__multiline_string_literal] = { + .visible = false, + .named = true, + }, + [sym__multiline_string_fragment] = { + .visible = true, + .named = true, + }, + [sym__escape_sequence] = { + .visible = false, + .named = true, + }, [sym_expression] = { .visible = false, .named = true, @@ -1941,10 +2023,26 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_compact_constructor_declaration] = { + .visible = true, + .named = true, + }, [aux_sym_program_repeat1] = { .visible = false, .named = false, }, + [aux_sym__string_literal_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__multiline_string_literal_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__multiline_string_fragment_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_cast_expression_repeat1] = { .visible = false, .named = false, @@ -1957,7 +2055,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_dimensions_expr_repeat1] = { + [aux_sym_array_creation_expression_repeat2] = { .visible = false, .named = false, }, @@ -2172,205 +2270,223 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [11] = {.index = 9, .length = 2}, [12] = {.index = 11, .length = 1}, [13] = {.index = 12, .length = 2}, - [14] = {.index = 14, .length = 3}, - [15] = {.index = 17, .length = 2}, - [16] = {.index = 19, .length = 2}, - [17] = {.index = 17, .length = 2}, - [18] = {.index = 19, .length = 2}, - [19] = {.index = 21, .length = 2}, - [20] = {.index = 23, .length = 2}, - [21] = {.index = 25, .length = 1}, - [22] = {.index = 26, .length = 1}, - [23] = {.index = 27, .length = 2}, - [24] = {.index = 29, .length = 2}, - [25] = {.index = 31, .length = 2}, + [15] = {.index = 14, .length = 3}, + [16] = {.index = 17, .length = 2}, + [17] = {.index = 19, .length = 2}, + [18] = {.index = 17, .length = 2}, + [19] = {.index = 19, .length = 2}, + [20] = {.index = 21, .length = 2}, + [21] = {.index = 23, .length = 2}, + [22] = {.index = 25, .length = 1}, + [23] = {.index = 26, .length = 1}, + [24] = {.index = 27, .length = 2}, + [25] = {.index = 29, .length = 2}, [26] = {.index = 31, .length = 2}, - [27] = {.index = 33, .length = 3}, - [28] = {.index = 21, .length = 2}, - [30] = {.index = 36, .length = 2}, - [31] = {.index = 36, .length = 2}, - [32] = {.index = 33, .length = 3}, - [33] = {.index = 38, .length = 2}, - [35] = {.index = 40, .length = 2}, - [36] = {.index = 42, .length = 3}, - [37] = {.index = 45, .length = 2}, + [27] = {.index = 31, .length = 2}, + [28] = {.index = 33, .length = 3}, + [29] = {.index = 36, .length = 2}, + [30] = {.index = 21, .length = 2}, + [31] = {.index = 38, .length = 2}, + [32] = {.index = 38, .length = 2}, + [33] = {.index = 33, .length = 3}, + [34] = {.index = 36, .length = 2}, + [36] = {.index = 40, .length = 2}, + [37] = {.index = 42, .length = 3}, [38] = {.index = 45, .length = 2}, - [39] = {.index = 47, .length = 2}, - [40] = {.index = 49, .length = 2}, - [42] = {.index = 51, .length = 3}, - [43] = {.index = 54, .length = 1}, - [44] = {.index = 55, .length = 2}, - [45] = {.index = 57, .length = 2}, - [46] = {.index = 59, .length = 3}, - [47] = {.index = 62, .length = 3}, - [48] = {.index = 59, .length = 3}, - [49] = {.index = 62, .length = 3}, - [50] = {.index = 65, .length = 3}, + [39] = {.index = 45, .length = 2}, + [40] = {.index = 47, .length = 2}, + [41] = {.index = 49, .length = 2}, + [43] = {.index = 51, .length = 3}, + [44] = {.index = 54, .length = 1}, + [45] = {.index = 55, .length = 2}, + [46] = {.index = 57, .length = 2}, + [47] = {.index = 59, .length = 3}, + [48] = {.index = 62, .length = 3}, + [49] = {.index = 59, .length = 3}, + [50] = {.index = 62, .length = 3}, [51] = {.index = 65, .length = 3}, - [52] = {.index = 68, .length = 3}, - [53] = {.index = 71, .length = 3}, - [54] = {.index = 74, .length = 3}, - [55] = {.index = 77, .length = 3}, - [56] = {.index = 80, .length = 2}, - [57] = {.index = 80, .length = 2}, - [58] = {.index = 82, .length = 2}, + [52] = {.index = 65, .length = 3}, + [53] = {.index = 68, .length = 2}, + [54] = {.index = 68, .length = 2}, + [55] = {.index = 70, .length = 3}, + [56] = {.index = 73, .length = 3}, + [57] = {.index = 76, .length = 3}, + [58] = {.index = 79, .length = 3}, [59] = {.index = 82, .length = 2}, + [60] = {.index = 82, .length = 2}, [61] = {.index = 84, .length = 2}, - [62] = {.index = 86, .length = 3}, - [63] = {.index = 86, .length = 3}, + [62] = {.index = 84, .length = 2}, + [64] = {.index = 86, .length = 3}, [65] = {.index = 89, .length = 2}, - [66] = {.index = 91, .length = 2}, - [67] = {.index = 93, .length = 1}, - [68] = {.index = 94, .length = 2}, - [69] = {.index = 96, .length = 3}, - [71] = {.index = 99, .length = 3}, - [73] = {.index = 102, .length = 2}, - [74] = {.index = 104, .length = 4}, - [75] = {.index = 108, .length = 4}, - [76] = {.index = 112, .length = 5}, - [77] = {.index = 117, .length = 6}, - [78] = {.index = 123, .length = 4}, - [79] = {.index = 127, .length = 4}, - [80] = {.index = 131, .length = 4}, - [81] = {.index = 135, .length = 4}, - [82] = {.index = 139, .length = 4}, - [83] = {.index = 143, .length = 4}, - [84] = {.index = 147, .length = 2}, - [85] = {.index = 149, .length = 3}, - [86] = {.index = 152, .length = 1}, - [87] = {.index = 153, .length = 2}, - [88] = {.index = 155, .length = 1}, - [89] = {.index = 156, .length = 2}, - [90] = {.index = 158, .length = 3}, - [91] = {.index = 161, .length = 3}, - [92] = {.index = 164, .length = 2}, - [93] = {.index = 164, .length = 2}, - [94] = {.index = 166, .length = 4}, - [95] = {.index = 166, .length = 4}, - [96] = {.index = 170, .length = 3}, - [97] = {.index = 173, .length = 3}, - [98] = {.index = 176, .length = 3}, - [99] = {.index = 179, .length = 3}, - [100] = {.index = 182, .length = 3}, - [101] = {.index = 185, .length = 2}, - [102] = {.index = 187, .length = 2}, - [103] = {.index = 187, .length = 2}, - [104] = {.index = 189, .length = 4}, - [105] = {.index = 193, .length = 5}, - [106] = {.index = 198, .length = 6}, - [107] = {.index = 204, .length = 3}, - [108] = {.index = 207, .length = 5}, - [109] = {.index = 212, .length = 4}, - [110] = {.index = 102, .length = 2}, - [111] = {.index = 216, .length = 5}, - [112] = {.index = 221, .length = 5}, - [113] = {.index = 226, .length = 5}, - [114] = {.index = 231, .length = 5}, - [115] = {.index = 236, .length = 4}, - [116] = {.index = 240, .length = 2}, - [117] = {.index = 242, .length = 1}, - [118] = {.index = 243, .length = 2}, - [119] = {.index = 245, .length = 2}, - [120] = {.index = 247, .length = 1}, - [121] = {.index = 247, .length = 1}, - [122] = {.index = 248, .length = 2}, - [123] = {.index = 250, .length = 1}, - [124] = {.index = 250, .length = 1}, - [125] = {.index = 54, .length = 1}, - [126] = {.index = 251, .length = 3}, - [127] = {.index = 254, .length = 4}, - [128] = {.index = 258, .length = 3}, - [129] = {.index = 258, .length = 3}, - [130] = {.index = 261, .length = 4}, - [131] = {.index = 265, .length = 4}, - [132] = {.index = 269, .length = 4}, - [133] = {.index = 273, .length = 4}, - [134] = {.index = 277, .length = 4}, - [135] = {.index = 281, .length = 4}, - [136] = {.index = 285, .length = 3}, - [137] = {.index = 288, .length = 3}, - [138] = {.index = 291, .length = 3}, - [139] = {.index = 294, .length = 4}, - [140] = {.index = 298, .length = 5}, - [141] = {.index = 303, .length = 3}, - [142] = {.index = 303, .length = 3}, - [143] = {.index = 306, .length = 6}, - [144] = {.index = 312, .length = 4}, - [145] = {.index = 316, .length = 1}, - [146] = {.index = 317, .length = 2}, - [147] = {.index = 319, .length = 2}, - [148] = {.index = 321, .length = 1}, - [149] = {.index = 322, .length = 2}, - [150] = {.index = 324, .length = 2}, - [151] = {.index = 326, .length = 2}, - [152] = {.index = 328, .length = 3}, - [153] = {.index = 331, .length = 3}, - [154] = {.index = 334, .length = 2}, - [155] = {.index = 334, .length = 2}, - [156] = {.index = 336, .length = 3}, - [157] = {.index = 339, .length = 4}, - [158] = {.index = 339, .length = 4}, - [159] = {.index = 343, .length = 5}, - [160] = {.index = 348, .length = 5}, - [161] = {.index = 353, .length = 5}, - [162] = {.index = 358, .length = 5}, - [163] = {.index = 363, .length = 4}, - [164] = {.index = 367, .length = 3}, - [165] = {.index = 370, .length = 2}, - [166] = {.index = 372, .length = 3}, - [167] = {.index = 375, .length = 3}, - [168] = {.index = 378, .length = 3}, - [169] = {.index = 381, .length = 3}, - [170] = {.index = 384, .length = 3}, - [171] = {.index = 387, .length = 5}, - [172] = {.index = 392, .length = 4}, - [173] = {.index = 396, .length = 4}, - [174] = {.index = 400, .length = 2}, - [175] = {.index = 400, .length = 2}, - [176] = {.index = 400, .length = 2}, - [177] = {.index = 400, .length = 2}, - [178] = {.index = 402, .length = 1}, - [179] = {.index = 402, .length = 1}, - [180] = {.index = 402, .length = 1}, - [181] = {.index = 402, .length = 1}, - [182] = {.index = 403, .length = 2}, - [183] = {.index = 405, .length = 6}, - [184] = {.index = 411, .length = 3}, - [185] = {.index = 414, .length = 4}, - [186] = {.index = 418, .length = 4}, - [187] = {.index = 422, .length = 4}, - [188] = {.index = 426, .length = 4}, - [189] = {.index = 430, .length = 4}, - [190] = {.index = 434, .length = 5}, - [191] = {.index = 439, .length = 5}, - [192] = {.index = 444, .length = 1}, - [193] = {.index = 444, .length = 1}, - [194] = {.index = 445, .length = 3}, - [195] = {.index = 448, .length = 2}, - [196] = {.index = 445, .length = 3}, - [197] = {.index = 445, .length = 3}, - [198] = {.index = 445, .length = 3}, - [199] = {.index = 450, .length = 1}, - [200] = {.index = 450, .length = 1}, - [201] = {.index = 451, .length = 2}, - [202] = {.index = 453, .length = 2}, - [203] = {.index = 451, .length = 2}, - [204] = {.index = 451, .length = 2}, - [205] = {.index = 451, .length = 2}, - [206] = {.index = 455, .length = 2}, - [207] = {.index = 457, .length = 1}, - [208] = {.index = 458, .length = 3}, - [209] = {.index = 461, .length = 3}, - [210] = {.index = 464, .length = 3}, - [211] = {.index = 467, .length = 5}, - [212] = {.index = 472, .length = 5}, - [213] = {.index = 477, .length = 5}, - [214] = {.index = 482, .length = 3}, - [215] = {.index = 485, .length = 3}, - [216] = {.index = 488, .length = 4}, - [217] = {.index = 492, .length = 4}, - [218] = {.index = 496, .length = 6}, - [219] = {.index = 502, .length = 4}, + [66] = {.index = 91, .length = 3}, + [67] = {.index = 91, .length = 3}, + [69] = {.index = 94, .length = 2}, + [70] = {.index = 96, .length = 3}, + [71] = {.index = 96, .length = 3}, + [72] = {.index = 99, .length = 2}, + [73] = {.index = 101, .length = 2}, + [74] = {.index = 103, .length = 1}, + [75] = {.index = 104, .length = 2}, + [76] = {.index = 106, .length = 3}, + [78] = {.index = 109, .length = 3}, + [79] = {.index = 112, .length = 3}, + [80] = {.index = 115, .length = 3}, + [81] = {.index = 112, .length = 3}, + [82] = {.index = 115, .length = 3}, + [84] = {.index = 118, .length = 2}, + [85] = {.index = 120, .length = 2}, + [86] = {.index = 122, .length = 4}, + [87] = {.index = 126, .length = 4}, + [88] = {.index = 130, .length = 5}, + [89] = {.index = 135, .length = 6}, + [90] = {.index = 141, .length = 4}, + [91] = {.index = 145, .length = 4}, + [92] = {.index = 149, .length = 4}, + [93] = {.index = 153, .length = 4}, + [94] = {.index = 157, .length = 4}, + [95] = {.index = 161, .length = 4}, + [96] = {.index = 165, .length = 2}, + [97] = {.index = 167, .length = 3}, + [98] = {.index = 170, .length = 1}, + [99] = {.index = 171, .length = 2}, + [100] = {.index = 173, .length = 1}, + [101] = {.index = 174, .length = 4}, + [102] = {.index = 178, .length = 4}, + [103] = {.index = 182, .length = 3}, + [104] = {.index = 185, .length = 3}, + [105] = {.index = 188, .length = 2}, + [106] = {.index = 188, .length = 2}, + [107] = {.index = 190, .length = 4}, + [108] = {.index = 190, .length = 4}, + [109] = {.index = 194, .length = 3}, + [110] = {.index = 194, .length = 3}, + [111] = {.index = 197, .length = 3}, + [112] = {.index = 200, .length = 3}, + [113] = {.index = 203, .length = 3}, + [114] = {.index = 206, .length = 3}, + [115] = {.index = 209, .length = 3}, + [116] = {.index = 212, .length = 3}, + [117] = {.index = 215, .length = 2}, + [118] = {.index = 217, .length = 2}, + [119] = {.index = 217, .length = 2}, + [120] = {.index = 219, .length = 4}, + [121] = {.index = 223, .length = 5}, + [122] = {.index = 228, .length = 6}, + [123] = {.index = 234, .length = 3}, + [124] = {.index = 237, .length = 5}, + [125] = {.index = 242, .length = 4}, + [126] = {.index = 120, .length = 2}, + [127] = {.index = 246, .length = 5}, + [128] = {.index = 251, .length = 5}, + [129] = {.index = 256, .length = 5}, + [130] = {.index = 261, .length = 5}, + [131] = {.index = 266, .length = 4}, + [132] = {.index = 270, .length = 2}, + [133] = {.index = 272, .length = 1}, + [134] = {.index = 273, .length = 2}, + [135] = {.index = 275, .length = 2}, + [136] = {.index = 277, .length = 1}, + [137] = {.index = 277, .length = 1}, + [138] = {.index = 278, .length = 2}, + [139] = {.index = 280, .length = 1}, + [140] = {.index = 280, .length = 1}, + [141] = {.index = 54, .length = 1}, + [142] = {.index = 281, .length = 3}, + [143] = {.index = 284, .length = 5}, + [144] = {.index = 289, .length = 4}, + [145] = {.index = 293, .length = 3}, + [146] = {.index = 293, .length = 3}, + [147] = {.index = 296, .length = 4}, + [148] = {.index = 300, .length = 4}, + [149] = {.index = 304, .length = 4}, + [150] = {.index = 308, .length = 4}, + [151] = {.index = 312, .length = 4}, + [152] = {.index = 316, .length = 4}, + [153] = {.index = 320, .length = 4}, + [154] = {.index = 324, .length = 4}, + [155] = {.index = 328, .length = 3}, + [156] = {.index = 331, .length = 3}, + [157] = {.index = 334, .length = 4}, + [158] = {.index = 338, .length = 5}, + [159] = {.index = 343, .length = 3}, + [160] = {.index = 343, .length = 3}, + [161] = {.index = 346, .length = 6}, + [162] = {.index = 352, .length = 4}, + [163] = {.index = 356, .length = 1}, + [164] = {.index = 357, .length = 2}, + [165] = {.index = 359, .length = 2}, + [166] = {.index = 361, .length = 1}, + [167] = {.index = 362, .length = 2}, + [168] = {.index = 364, .length = 2}, + [169] = {.index = 366, .length = 2}, + [170] = {.index = 368, .length = 3}, + [171] = {.index = 371, .length = 3}, + [172] = {.index = 374, .length = 2}, + [173] = {.index = 374, .length = 2}, + [174] = {.index = 376, .length = 3}, + [175] = {.index = 379, .length = 4}, + [176] = {.index = 379, .length = 4}, + [177] = {.index = 383, .length = 5}, + [178] = {.index = 388, .length = 5}, + [179] = {.index = 393, .length = 5}, + [180] = {.index = 398, .length = 5}, + [181] = {.index = 403, .length = 5}, + [182] = {.index = 408, .length = 4}, + [183] = {.index = 412, .length = 2}, + [184] = {.index = 414, .length = 3}, + [185] = {.index = 417, .length = 3}, + [186] = {.index = 420, .length = 3}, + [187] = {.index = 423, .length = 3}, + [188] = {.index = 426, .length = 3}, + [189] = {.index = 429, .length = 5}, + [190] = {.index = 434, .length = 4}, + [191] = {.index = 438, .length = 4}, + [192] = {.index = 442, .length = 2}, + [193] = {.index = 442, .length = 2}, + [194] = {.index = 442, .length = 2}, + [195] = {.index = 442, .length = 2}, + [196] = {.index = 444, .length = 1}, + [197] = {.index = 444, .length = 1}, + [198] = {.index = 444, .length = 1}, + [199] = {.index = 444, .length = 1}, + [200] = {.index = 445, .length = 2}, + [201] = {.index = 447, .length = 6}, + [202] = {.index = 453, .length = 3}, + [203] = {.index = 456, .length = 4}, + [204] = {.index = 460, .length = 4}, + [205] = {.index = 464, .length = 4}, + [206] = {.index = 468, .length = 4}, + [207] = {.index = 472, .length = 4}, + [208] = {.index = 476, .length = 5}, + [209] = {.index = 481, .length = 5}, + [210] = {.index = 486, .length = 1}, + [211] = {.index = 486, .length = 1}, + [212] = {.index = 487, .length = 3}, + [213] = {.index = 490, .length = 2}, + [214] = {.index = 487, .length = 3}, + [215] = {.index = 487, .length = 3}, + [216] = {.index = 487, .length = 3}, + [217] = {.index = 492, .length = 1}, + [218] = {.index = 492, .length = 1}, + [219] = {.index = 493, .length = 2}, + [220] = {.index = 495, .length = 2}, + [221] = {.index = 493, .length = 2}, + [222] = {.index = 493, .length = 2}, + [223] = {.index = 493, .length = 2}, + [224] = {.index = 497, .length = 2}, + [225] = {.index = 499, .length = 1}, + [226] = {.index = 500, .length = 3}, + [227] = {.index = 503, .length = 3}, + [228] = {.index = 506, .length = 3}, + [229] = {.index = 509, .length = 5}, + [230] = {.index = 514, .length = 5}, + [231] = {.index = 519, .length = 5}, + [232] = {.index = 524, .length = 3}, + [233] = {.index = 527, .length = 3}, + [234] = {.index = 530, .length = 4}, + [235] = {.index = 534, .length = 4}, + [236] = {.index = 538, .length = 6}, + [237] = {.index = 544, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2430,11 +2546,11 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_operator, 1}, {field_right, 2}, [36] = - {field_field, 2}, - {field_object, 0}, - [38] = {field_body, 2}, {field_parameters, 0}, + [38] = + {field_field, 2}, + {field_object, 0}, [40] = {field_left, 0}, {field_right, 2}, @@ -2476,575 +2592,629 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_type, 2}, {field_type_arguments, 1}, [68] = + {field_dimensions, 3}, + {field_type, 2}, + [70] = {field_body, 3}, {field_name, 1}, {field_type_parameters, 2}, - [71] = + [73] = {field_body, 3}, {field_name, 1}, {field_superclass, 2}, - [74] = + [76] = {field_body, 3}, {field_interfaces, 2}, {field_name, 1}, - [77] = + [79] = {field_body, 3}, {field_name, 1}, {field_permits, 2}, - [80] = + [82] = {field_name, 2}, {field_scope, 0}, - [82] = + [84] = {field_body, 3}, {field_name, 2}, - [84] = + [86] = {field_body, 3}, {field_name, 1}, - [86] = + {field_parameters, 2}, + [89] = + {field_body, 3}, + {field_name, 1}, + [91] = {field_arguments, 3}, {field_name, 2}, {field_object, 0}, - [89] = + [94] = + {field_left, 0}, + {field_right, 3}, + [96] = + {field_left, 0}, + {field_name, 3}, + {field_right, 2}, + [99] = {field_array, 0}, {field_index, 2}, - [91] = + [101] = {field_declarator, 2, .inherited = true}, {field_type, 1}, - [93] = + [103] = {field_declarator, 1}, - [94] = + [104] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, - [96] = + [106] = {field_dimensions, 0, .inherited = true}, {field_name, 0, .inherited = true}, {field_value, 2}, - [99] = + [109] = {field_type, 1}, {field_type, 2, .inherited = true}, {field_value, 4}, - [102] = + [112] = + {field_dimensions, 3}, + {field_type, 2}, + {field_value, 4}, + [115] = + {field_dimensions, 3}, + {field_dimensions, 4}, + {field_type, 2}, + [118] = + {field_body, 1}, + {field_name, 0}, + [120] = {field_name, 0}, {field_parameters, 1}, - [104] = + [122] = {field_body, 1}, {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [108] = + [126] = {field_dimensions, 1, .inherited = true}, {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type, 0}, - [112] = + [130] = {field_dimensions, 0, .inherited = true}, {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, {field_type, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [117] = + [135] = {field_body, 1}, {field_dimensions, 0, .inherited = true}, {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, {field_type, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [123] = + [141] = {field_body, 4}, {field_name, 1}, {field_superclass, 3}, {field_type_parameters, 2}, - [127] = + [145] = {field_body, 4}, {field_interfaces, 3}, {field_name, 1}, {field_type_parameters, 2}, - [131] = + [149] = {field_body, 4}, {field_name, 1}, {field_permits, 3}, {field_type_parameters, 2}, - [135] = + [153] = {field_body, 4}, {field_interfaces, 3}, {field_name, 1}, {field_superclass, 2}, - [139] = + [157] = {field_body, 4}, {field_name, 1}, {field_permits, 3}, {field_superclass, 2}, - [143] = + [161] = {field_body, 4}, {field_interfaces, 2}, {field_name, 1}, {field_permits, 3}, - [147] = + [165] = {field_body, 1}, {field_condition, 3}, - [149] = + [167] = {field_alternative, 4}, {field_condition, 1}, {field_consequence, 2}, - [152] = + [170] = {field_init, 1}, - [153] = + [171] = {field_init, 0, .inherited = true}, {field_init, 1, .inherited = true}, - [155] = + [173] = {field_modifiers, 0}, - [156] = - {field_body, 1}, - {field_name, 0}, - [158] = + [174] = {field_body, 4}, {field_name, 1}, + {field_parameters, 3}, {field_type_parameters, 2}, - [161] = + [178] = + {field_body, 4}, + {field_interfaces, 3}, + {field_name, 1}, + {field_parameters, 2}, + [182] = + {field_body, 4}, + {field_name, 1}, + {field_type_parameters, 2}, + [185] = {field_body, 4}, {field_name, 1}, {field_permits, 3}, - [164] = + [188] = {field_field, 4}, {field_object, 0}, - [166] = + [190] = {field_arguments, 4}, {field_name, 3}, {field_object, 0}, {field_type_arguments, 2}, - [170] = + [194] = + {field_left, 0}, + {field_name, 4}, + {field_right, 3}, + [197] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [173] = + [200] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [176] = + [203] = {field_body, 4}, {field_name, 2}, {field_superclass, 3}, - [179] = + [206] = {field_body, 4}, {field_interfaces, 3}, {field_name, 2}, - [182] = + [209] = {field_body, 4}, {field_name, 2}, {field_permits, 3}, - [185] = + [212] = {field_body, 4}, {field_name, 2}, - [187] = + {field_parameters, 3}, + [215] = + {field_body, 4}, + {field_name, 2}, + [217] = {field_body, 4}, {field_name, 3}, - [189] = + [219] = {field_body, 2}, {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [193] = + [223] = {field_dimensions, 1, .inherited = true}, {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [198] = + [228] = {field_body, 2}, {field_dimensions, 1, .inherited = true}, {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [204] = + [234] = {field_name, 1}, {field_parameters, 2}, {field_type_parameters, 0}, - [207] = + [237] = {field_dimensions, 2, .inherited = true}, {field_name, 2, .inherited = true}, {field_parameters, 2, .inherited = true}, {field_type, 1}, {field_type_parameters, 0}, - [212] = + [242] = {field_body, 2}, {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [216] = + [246] = {field_body, 5}, {field_interfaces, 4}, {field_name, 1}, {field_superclass, 3}, {field_type_parameters, 2}, - [221] = + [251] = {field_body, 5}, {field_name, 1}, {field_permits, 4}, {field_superclass, 3}, {field_type_parameters, 2}, - [226] = + [256] = {field_body, 5}, {field_interfaces, 3}, {field_name, 1}, {field_permits, 4}, {field_type_parameters, 2}, - [231] = + [261] = {field_body, 5}, {field_interfaces, 3}, {field_name, 1}, {field_permits, 4}, {field_superclass, 2}, - [236] = + [266] = {field_dimensions, 1, .inherited = true}, {field_name, 1, .inherited = true}, {field_type, 0}, {field_value, 3}, - [240] = + [270] = {field_dimensions, 1, .inherited = true}, {field_name, 1, .inherited = true}, - [242] = + [272] = {field_body, 5}, - [243] = + [273] = {field_body, 5}, {field_init, 2}, - [245] = + [275] = {field_key, 0}, {field_value, 2}, - [247] = + [277] = {field_module, 1}, - [248] = + [278] = {field_modifiers, 0, .inherited = true}, {field_modifiers, 1, .inherited = true}, - [250] = + [280] = {field_package, 1}, - [251] = + [281] = {field_arguments, 1}, {field_body, 2}, {field_name, 0}, - [254] = + [284] = + {field_body, 5}, + {field_interfaces, 4}, + {field_name, 1}, + {field_parameters, 3}, + {field_type_parameters, 2}, + [289] = {field_body, 5}, {field_name, 1}, {field_permits, 4}, {field_type_parameters, 2}, - [258] = + [293] = {field_arguments, 5}, {field_name, 4}, {field_object, 0}, - [261] = + [296] = {field_body, 5}, {field_name, 2}, {field_superclass, 4}, {field_type_parameters, 3}, - [265] = + [300] = {field_body, 5}, {field_interfaces, 4}, {field_name, 2}, {field_type_parameters, 3}, - [269] = + [304] = {field_body, 5}, {field_name, 2}, {field_permits, 4}, {field_type_parameters, 3}, - [273] = + [308] = {field_body, 5}, {field_interfaces, 4}, {field_name, 2}, {field_superclass, 3}, - [277] = + [312] = {field_body, 5}, {field_name, 2}, {field_permits, 4}, {field_superclass, 3}, - [281] = + [316] = {field_body, 5}, {field_interfaces, 3}, {field_name, 2}, {field_permits, 4}, - [285] = + [320] = + {field_body, 5}, + {field_name, 2}, + {field_parameters, 4}, + {field_type_parameters, 3}, + [324] = + {field_body, 5}, + {field_interfaces, 4}, + {field_name, 2}, + {field_parameters, 3}, + [328] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [288] = + [331] = {field_body, 5}, {field_name, 2}, {field_permits, 4}, - [291] = - {field_body, 3}, - {field_name, 1}, - {field_parameters, 2}, - [294] = + [334] = {field_body, 3}, {field_name, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [298] = + [338] = {field_dimensions, 3, .inherited = true}, {field_name, 3, .inherited = true}, {field_parameters, 3, .inherited = true}, {field_type, 2}, {field_type_parameters, 0}, - [303] = + [343] = {field_dimensions, 2}, {field_name, 0}, {field_parameters, 1}, - [306] = + [346] = {field_body, 6}, {field_interfaces, 4}, {field_name, 1}, {field_permits, 5}, {field_superclass, 3}, {field_type_parameters, 2}, - [312] = + [352] = {field_dimensions, 2, .inherited = true}, {field_name, 2, .inherited = true}, {field_type, 1}, {field_value, 4}, - [316] = + [356] = {field_body, 4}, - [317] = + [357] = {field_dimensions, 2, .inherited = true}, {field_name, 2, .inherited = true}, - [319] = + [359] = {field_body, 6}, {field_update, 4}, - [321] = + [361] = {field_update, 1}, - [322] = + [362] = {field_update, 0, .inherited = true}, {field_update, 1, .inherited = true}, - [324] = + [364] = {field_body, 6}, {field_condition, 3}, - [326] = + [366] = {field_body, 6}, {field_init, 2}, - [328] = + [368] = {field_body, 6}, {field_init, 2}, {field_update, 4}, - [331] = + [371] = {field_body, 6}, {field_condition, 3}, {field_init, 2}, - [334] = + [374] = {field_modifiers, 1, .inherited = true}, {field_module, 2}, - [336] = + [376] = {field_arguments, 2}, {field_body, 3}, {field_name, 1}, - [339] = + [379] = {field_arguments, 6}, {field_name, 5}, {field_object, 0}, {field_type_arguments, 4}, - [343] = + [383] = {field_body, 6}, {field_interfaces, 5}, {field_name, 2}, {field_superclass, 4}, {field_type_parameters, 3}, - [348] = + [388] = {field_body, 6}, {field_name, 2}, {field_permits, 5}, {field_superclass, 4}, {field_type_parameters, 3}, - [353] = + [393] = {field_body, 6}, {field_interfaces, 4}, {field_name, 2}, {field_permits, 5}, {field_type_parameters, 3}, - [358] = + [398] = {field_body, 6}, {field_interfaces, 4}, {field_name, 2}, {field_permits, 5}, {field_superclass, 3}, - [363] = + [403] = {field_body, 6}, + {field_interfaces, 5}, {field_name, 2}, - {field_permits, 5}, + {field_parameters, 4}, {field_type_parameters, 3}, - [367] = - {field_body, 4}, + [408] = + {field_body, 6}, {field_name, 2}, - {field_parameters, 3}, - [370] = + {field_permits, 5}, + {field_type_parameters, 3}, + [412] = {field_arguments, 1}, {field_constructor, 0}, - [372] = + [414] = {field_body, 7}, {field_update, 4}, {field_update, 5, .inherited = true}, - [375] = + [417] = {field_body, 7}, {field_condition, 3}, {field_update, 5}, - [378] = + [420] = {field_body, 7}, {field_init, 2}, {field_update, 5}, - [381] = + [423] = {field_body, 7}, {field_condition, 4}, {field_init, 2}, - [384] = + [426] = {field_body, 7}, {field_init, 2}, {field_init, 3, .inherited = true}, - [387] = + [429] = {field_body, 7}, {field_dimensions, 3, .inherited = true}, {field_name, 3, .inherited = true}, {field_type, 2}, {field_value, 5}, - [392] = + [434] = {field_body, 7}, {field_init, 2}, {field_update, 4}, {field_update, 5, .inherited = true}, - [396] = + [438] = {field_body, 7}, {field_condition, 3}, {field_init, 2}, {field_update, 5}, - [400] = + [442] = {field_modules, 3}, {field_package, 1}, - [402] = + [444] = {field_provided, 1}, - [403] = + [445] = {field_name, 1}, {field_type, 0}, - [405] = + [447] = {field_body, 7}, {field_interfaces, 5}, {field_name, 2}, {field_permits, 6}, {field_superclass, 4}, {field_type_parameters, 3}, - [411] = + [453] = {field_arguments, 2}, {field_constructor, 1}, {field_type_arguments, 0}, - [414] = + [456] = {field_body, 8}, {field_condition, 3}, {field_update, 5}, {field_update, 6, .inherited = true}, - [418] = + [460] = {field_body, 8}, {field_init, 2}, {field_update, 5}, {field_update, 6, .inherited = true}, - [422] = + [464] = {field_body, 8}, {field_condition, 4}, {field_init, 2}, {field_update, 6}, - [426] = + [468] = {field_body, 8}, {field_init, 2}, {field_init, 3, .inherited = true}, {field_update, 6}, - [430] = + [472] = {field_body, 8}, {field_condition, 5}, {field_init, 2}, {field_init, 3, .inherited = true}, - [434] = + [476] = {field_body, 8}, {field_dimensions, 4, .inherited = true}, {field_name, 4, .inherited = true}, {field_type, 3}, {field_value, 6}, - [439] = + [481] = {field_body, 8}, {field_condition, 3}, {field_init, 2}, {field_update, 5}, {field_update, 6, .inherited = true}, - [444] = + [486] = {field_modules, 1}, - [445] = + [487] = {field_modules, 3}, {field_modules, 4, .inherited = true}, {field_package, 1}, - [448] = + [490] = {field_modules, 0, .inherited = true}, {field_modules, 1, .inherited = true}, - [450] = + [492] = {field_provider, 1}, - [451] = + [493] = {field_provided, 1}, {field_provider, 4, .inherited = true}, - [453] = + [495] = {field_provider, 0, .inherited = true}, {field_provider, 1, .inherited = true}, - [455] = + [497] = {field_name, 2}, {field_type, 1}, - [457] = + [499] = {field_value, 1}, - [458] = + [500] = {field_dimensions, 4}, {field_name, 1}, {field_type, 0}, - [461] = + [503] = {field_name, 1}, {field_type, 0}, {field_value, 4, .inherited = true}, - [464] = + [506] = {field_arguments, 3}, {field_constructor, 2}, {field_object, 0}, - [467] = + [509] = {field_body, 9}, {field_condition, 4}, {field_init, 2}, {field_update, 6}, {field_update, 7, .inherited = true}, - [472] = + [514] = {field_body, 9}, {field_init, 2}, {field_init, 3, .inherited = true}, {field_update, 6}, {field_update, 7, .inherited = true}, - [477] = + [519] = {field_body, 9}, {field_condition, 5}, {field_init, 2}, {field_init, 3, .inherited = true}, {field_update, 7}, - [482] = + [524] = {field_dimensions, 5}, {field_name, 2}, {field_type, 1}, - [485] = + [527] = {field_name, 2}, {field_type, 1}, {field_value, 5, .inherited = true}, - [488] = + [530] = {field_dimensions, 4}, {field_name, 1}, {field_type, 0}, {field_value, 5, .inherited = true}, - [492] = + [534] = {field_arguments, 4}, {field_constructor, 3}, {field_object, 0}, {field_type_arguments, 2}, - [496] = + [538] = {field_body, 10}, {field_condition, 5}, {field_init, 2}, {field_init, 3, .inherited = true}, {field_update, 7}, {field_update, 8, .inherited = true}, - [502] = + [544] = {field_dimensions, 5}, {field_name, 2}, {field_type, 1}, @@ -3068,145 +3238,163 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [9] = { [0] = sym_identifier, }, - [17] = { - [1] = alias_sym_type_identifier, + [14] = { + [1] = sym_identifier, }, [18] = { [1] = alias_sym_type_identifier, }, - [25] = { - [1] = sym_identifier, + [19] = { + [1] = alias_sym_type_identifier, }, - [27] = { - [0] = sym_identifier, + [26] = { + [1] = sym_identifier, }, [28] = { - [1] = sym_identifier, + [0] = sym_identifier, }, [29] = { - [1] = sym_identifier, + [0] = sym_identifier, }, [30] = { + [1] = sym_identifier, + }, + [31] = { [2] = sym_identifier, }, - [34] = { + [35] = { [0] = alias_sym_type_identifier, [2] = alias_sym_type_identifier, }, - [37] = { + [38] = { [0] = sym_identifier, }, - [41] = { + [42] = { [2] = alias_sym_type_identifier, }, - [48] = { + [49] = { [1] = alias_sym_type_identifier, }, - [49] = { + [50] = { [1] = alias_sym_type_identifier, }, - [51] = { + [52] = { [2] = alias_sym_type_identifier, }, - [56] = { + [54] = { + [2] = alias_sym_type_identifier, + }, + [59] = { [0] = sym_identifier, }, - [58] = { + [61] = { [2] = sym_identifier, }, - [60] = { + [63] = { [2] = sym_identifier, }, - [62] = { + [66] = { [2] = sym_identifier, }, - [64] = { + [68] = { [0] = alias_sym_type_identifier, [3] = alias_sym_type_identifier, }, [70] = { + [3] = sym_identifier, + }, + [77] = { [3] = alias_sym_type_identifier, }, - [72] = { - [1] = alias_sym_type_identifier, + [81] = { + [2] = alias_sym_type_identifier, }, - [92] = { + [82] = { + [2] = alias_sym_type_identifier, + }, + [83] = { + [1] = alias_sym_type_identifier, + }, + [105] = { [4] = sym_identifier, }, - [94] = { + [107] = { [3] = sym_identifier, }, - [102] = { + [109] = { + [4] = sym_identifier, + }, + [118] = { [3] = sym_identifier, }, - [110] = { + [126] = { [0] = sym_identifier, }, - [120] = { + [136] = { [1] = sym_identifier, }, - [123] = { + [139] = { [1] = sym_identifier, }, - [125] = { + [141] = { [1] = sym_identifier, }, - [128] = { + [145] = { [4] = sym_identifier, }, - [141] = { + [159] = { [0] = sym_identifier, }, - [154] = { + [172] = { [2] = sym_identifier, }, - [157] = { + [175] = { [5] = sym_identifier, }, - [174] = { + [192] = { [1] = sym_identifier, [3] = sym_identifier, }, - [175] = { + [193] = { [1] = sym_identifier, }, - [176] = { + [194] = { [3] = sym_identifier, }, - [178] = { + [196] = { [1] = sym_identifier, [3] = sym_identifier, }, - [179] = { + [197] = { [1] = sym_identifier, }, - [180] = { + [198] = { [3] = sym_identifier, }, - [192] = { + [210] = { [1] = sym_identifier, }, - [194] = { + [212] = { [1] = sym_identifier, [3] = sym_identifier, }, - [196] = { + [214] = { [1] = sym_identifier, }, - [197] = { + [215] = { [3] = sym_identifier, }, - [199] = { + [217] = { [1] = sym_identifier, }, - [201] = { + [219] = { [1] = sym_identifier, [3] = sym_identifier, }, - [203] = { + [221] = { [1] = sym_identifier, }, - [204] = { + [222] = { [3] = sym_identifier, }, }; @@ -3215,7 +3403,1835 @@ static const uint16_t ts_non_terminal_alias_map[] = { 0, }; +static const TSStateId ts_primary_state_ids[STATE_COUNT] = { + [0] = 0, + [1] = 1, + [2] = 2, + [3] = 3, + [4] = 4, + [5] = 5, + [6] = 6, + [7] = 7, + [8] = 8, + [9] = 9, + [10] = 10, + [11] = 6, + [12] = 12, + [13] = 9, + [14] = 14, + [15] = 15, + [16] = 16, + [17] = 17, + [18] = 18, + [19] = 19, + [20] = 20, + [21] = 21, + [22] = 22, + [23] = 23, + [24] = 24, + [25] = 25, + [26] = 26, + [27] = 27, + [28] = 28, + [29] = 29, + [30] = 30, + [31] = 31, + [32] = 14, + [33] = 33, + [34] = 34, + [35] = 35, + [36] = 33, + [37] = 37, + [38] = 38, + [39] = 35, + [40] = 40, + [41] = 41, + [42] = 42, + [43] = 43, + [44] = 44, + [45] = 45, + [46] = 23, + [47] = 22, + [48] = 21, + [49] = 19, + [50] = 18, + [51] = 45, + [52] = 52, + [53] = 44, + [54] = 43, + [55] = 16, + [56] = 20, + [57] = 52, + [58] = 42, + [59] = 41, + [60] = 40, + [61] = 61, + [62] = 24, + [63] = 25, + [64] = 26, + [65] = 27, + [66] = 38, + [67] = 37, + [68] = 28, + [69] = 29, + [70] = 30, + [71] = 31, + [72] = 61, + [73] = 15, + [74] = 34, + [75] = 75, + [76] = 76, + [77] = 77, + [78] = 78, + [79] = 79, + [80] = 80, + [81] = 81, + [82] = 82, + [83] = 83, + [84] = 83, + [85] = 85, + [86] = 86, + [87] = 85, + [88] = 88, + [89] = 89, + [90] = 88, + [91] = 91, + [92] = 88, + [93] = 93, + [94] = 94, + [95] = 95, + [96] = 96, + [97] = 97, + [98] = 98, + [99] = 99, + [100] = 100, + [101] = 101, + [102] = 102, + [103] = 103, + [104] = 104, + [105] = 105, + [106] = 106, + [107] = 107, + [108] = 107, + [109] = 109, + [110] = 110, + [111] = 109, + [112] = 112, + [113] = 113, + [114] = 114, + [115] = 115, + [116] = 116, + [117] = 117, + [118] = 118, + [119] = 119, + [120] = 120, + [121] = 121, + [122] = 115, + [123] = 123, + [124] = 124, + [125] = 125, + [126] = 119, + [127] = 120, + [128] = 123, + [129] = 112, + [130] = 130, + [131] = 121, + [132] = 132, + [133] = 133, + [134] = 82, + [135] = 133, + [136] = 117, + [137] = 116, + [138] = 138, + [139] = 138, + [140] = 81, + [141] = 113, + [142] = 124, + [143] = 118, + [144] = 125, + [145] = 145, + [146] = 146, + [147] = 147, + [148] = 148, + [149] = 149, + [150] = 150, + [151] = 151, + [152] = 152, + [153] = 153, + [154] = 154, + [155] = 155, + [156] = 156, + [157] = 157, + [158] = 158, + [159] = 159, + [160] = 160, + [161] = 161, + [162] = 162, + [163] = 163, + [164] = 155, + [165] = 165, + [166] = 166, + [167] = 167, + [168] = 168, + [169] = 169, + [170] = 170, + [171] = 171, + [172] = 172, + [173] = 173, + [174] = 174, + [175] = 175, + [176] = 176, + [177] = 177, + [178] = 145, + [179] = 151, + [180] = 150, + [181] = 149, + [182] = 148, + [183] = 147, + [184] = 184, + [185] = 185, + [186] = 186, + [187] = 187, + [188] = 188, + [189] = 189, + [190] = 190, + [191] = 191, + [192] = 187, + [193] = 193, + [194] = 194, + [195] = 168, + [196] = 196, + [197] = 197, + [198] = 198, + [199] = 199, + [200] = 165, + [201] = 201, + [202] = 202, + [203] = 203, + [204] = 166, + [205] = 205, + [206] = 206, + [207] = 207, + [208] = 208, + [209] = 209, + [210] = 210, + [211] = 211, + [212] = 212, + [213] = 213, + [214] = 214, + [215] = 215, + [216] = 216, + [217] = 217, + [218] = 218, + [219] = 219, + [220] = 220, + [221] = 221, + [222] = 222, + [223] = 223, + [224] = 224, + [225] = 225, + [226] = 226, + [227] = 227, + [228] = 171, + [229] = 167, + [230] = 230, + [231] = 231, + [232] = 232, + [233] = 233, + [234] = 234, + [235] = 235, + [236] = 236, + [237] = 184, + [238] = 238, + [239] = 239, + [240] = 240, + [241] = 241, + [242] = 242, + [243] = 243, + [244] = 244, + [245] = 245, + [246] = 152, + [247] = 247, + [248] = 248, + [249] = 249, + [250] = 250, + [251] = 251, + [252] = 252, + [253] = 253, + [254] = 254, + [255] = 255, + [256] = 256, + [257] = 257, + [258] = 146, + [259] = 259, + [260] = 189, + [261] = 261, + [262] = 194, + [263] = 218, + [264] = 188, + [265] = 265, + [266] = 266, + [267] = 267, + [268] = 268, + [269] = 154, + [270] = 270, + [271] = 212, + [272] = 272, + [273] = 273, + [274] = 274, + [275] = 275, + [276] = 276, + [277] = 277, + [278] = 278, + [279] = 279, + [280] = 280, + [281] = 281, + [282] = 282, + [283] = 283, + [284] = 284, + [285] = 285, + [286] = 286, + [287] = 287, + [288] = 288, + [289] = 289, + [290] = 290, + [291] = 291, + [292] = 292, + [293] = 293, + [294] = 294, + [295] = 295, + [296] = 296, + [297] = 297, + [298] = 298, + [299] = 299, + [300] = 300, + [301] = 301, + [302] = 302, + [303] = 303, + [304] = 304, + [305] = 305, + [306] = 306, + [307] = 307, + [308] = 308, + [309] = 309, + [310] = 310, + [311] = 311, + [312] = 312, + [313] = 313, + [314] = 314, + [315] = 315, + [316] = 316, + [317] = 317, + [318] = 318, + [319] = 319, + [320] = 320, + [321] = 321, + [322] = 322, + [323] = 323, + [324] = 324, + [325] = 325, + [326] = 326, + [327] = 327, + [328] = 328, + [329] = 329, + [330] = 330, + [331] = 331, + [332] = 332, + [333] = 333, + [334] = 334, + [335] = 335, + [336] = 336, + [337] = 337, + [338] = 338, + [339] = 339, + [340] = 340, + [341] = 341, + [342] = 342, + [343] = 343, + [344] = 344, + [345] = 345, + [346] = 346, + [347] = 347, + [348] = 348, + [349] = 349, + [350] = 350, + [351] = 351, + [352] = 352, + [353] = 353, + [354] = 354, + [355] = 355, + [356] = 356, + [357] = 357, + [358] = 358, + [359] = 359, + [360] = 360, + [361] = 361, + [362] = 362, + [363] = 363, + [364] = 364, + [365] = 364, + [366] = 366, + [367] = 367, + [368] = 368, + [369] = 369, + [370] = 370, + [371] = 371, + [372] = 372, + [373] = 373, + [374] = 374, + [375] = 375, + [376] = 376, + [377] = 362, + [378] = 378, + [379] = 379, + [380] = 380, + [381] = 381, + [382] = 372, + [383] = 383, + [384] = 384, + [385] = 385, + [386] = 386, + [387] = 387, + [388] = 388, + [389] = 389, + [390] = 390, + [391] = 391, + [392] = 392, + [393] = 393, + [394] = 381, + [395] = 395, + [396] = 396, + [397] = 397, + [398] = 398, + [399] = 399, + [400] = 310, + [401] = 401, + [402] = 402, + [403] = 403, + [404] = 404, + [405] = 341, + [406] = 406, + [407] = 407, + [408] = 408, + [409] = 409, + [410] = 410, + [411] = 411, + [412] = 412, + [413] = 413, + [414] = 414, + [415] = 415, + [416] = 416, + [417] = 417, + [418] = 418, + [419] = 419, + [420] = 420, + [421] = 421, + [422] = 422, + [423] = 423, + [424] = 424, + [425] = 425, + [426] = 426, + [427] = 427, + [428] = 428, + [429] = 429, + [430] = 430, + [431] = 431, + [432] = 432, + [433] = 433, + [434] = 434, + [435] = 435, + [436] = 436, + [437] = 437, + [438] = 438, + [439] = 439, + [440] = 440, + [441] = 441, + [442] = 442, + [443] = 443, + [444] = 444, + [445] = 445, + [446] = 446, + [447] = 447, + [448] = 448, + [449] = 449, + [450] = 450, + [451] = 451, + [452] = 452, + [453] = 453, + [454] = 454, + [455] = 455, + [456] = 456, + [457] = 457, + [458] = 458, + [459] = 459, + [460] = 460, + [461] = 461, + [462] = 462, + [463] = 463, + [464] = 464, + [465] = 465, + [466] = 466, + [467] = 467, + [468] = 468, + [469] = 469, + [470] = 470, + [471] = 471, + [472] = 472, + [473] = 473, + [474] = 474, + [475] = 475, + [476] = 476, + [477] = 477, + [478] = 478, + [479] = 479, + [480] = 480, + [481] = 481, + [482] = 482, + [483] = 483, + [484] = 484, + [485] = 485, + [486] = 486, + [487] = 487, + [488] = 488, + [489] = 489, + [490] = 490, + [491] = 491, + [492] = 492, + [493] = 493, + [494] = 494, + [495] = 495, + [496] = 496, + [497] = 497, + [498] = 498, + [499] = 499, + [500] = 500, + [501] = 501, + [502] = 411, + [503] = 408, + [504] = 413, + [505] = 505, + [506] = 506, + [507] = 507, + [508] = 508, + [509] = 509, + [510] = 510, + [511] = 511, + [512] = 512, + [513] = 513, + [514] = 514, + [515] = 515, + [516] = 516, + [517] = 517, + [518] = 518, + [519] = 519, + [520] = 520, + [521] = 521, + [522] = 522, + [523] = 523, + [524] = 524, + [525] = 525, + [526] = 526, + [527] = 527, + [528] = 528, + [529] = 529, + [530] = 530, + [531] = 531, + [532] = 414, + [533] = 533, + [534] = 534, + [535] = 410, + [536] = 536, + [537] = 537, + [538] = 538, + [539] = 428, + [540] = 540, + [541] = 541, + [542] = 542, + [543] = 543, + [544] = 427, + [545] = 383, + [546] = 393, + [547] = 386, + [548] = 396, + [549] = 549, + [550] = 550, + [551] = 551, + [552] = 528, + [553] = 553, + [554] = 554, + [555] = 555, + [556] = 439, + [557] = 543, + [558] = 558, + [559] = 559, + [560] = 560, + [561] = 561, + [562] = 451, + [563] = 563, + [564] = 564, + [565] = 565, + [566] = 86, + [567] = 567, + [568] = 568, + [569] = 569, + [570] = 570, + [571] = 571, + [572] = 559, + [573] = 453, + [574] = 561, + [575] = 563, + [576] = 576, + [577] = 577, + [578] = 433, + [579] = 431, + [580] = 537, + [581] = 567, + [582] = 538, + [583] = 583, + [584] = 558, + [585] = 585, + [586] = 529, + [587] = 576, + [588] = 570, + [589] = 551, + [590] = 533, + [591] = 542, + [592] = 553, + [593] = 530, + [594] = 531, + [595] = 526, + [596] = 554, + [597] = 534, + [598] = 569, + [599] = 568, + [600] = 536, + [601] = 527, + [602] = 540, + [603] = 603, + [604] = 604, + [605] = 605, + [606] = 606, + [607] = 607, + [608] = 608, + [609] = 609, + [610] = 488, + [611] = 611, + [612] = 612, + [613] = 613, + [614] = 614, + [615] = 615, + [616] = 616, + [617] = 617, + [618] = 618, + [619] = 619, + [620] = 620, + [621] = 621, + [622] = 617, + [623] = 623, + [624] = 624, + [625] = 625, + [626] = 621, + [627] = 627, + [628] = 628, + [629] = 629, + [630] = 630, + [631] = 631, + [632] = 632, + [633] = 633, + [634] = 623, + [635] = 635, + [636] = 628, + [637] = 629, + [638] = 638, + [639] = 633, + [640] = 640, + [641] = 640, + [642] = 642, + [643] = 643, + [644] = 644, + [645] = 645, + [646] = 646, + [647] = 647, + [648] = 648, + [649] = 404, + [650] = 403, + [651] = 651, + [652] = 652, + [653] = 653, + [654] = 654, + [655] = 410, + [656] = 656, + [657] = 414, + [658] = 658, + [659] = 412, + [660] = 409, + [661] = 661, + [662] = 662, + [663] = 406, + [664] = 417, + [665] = 665, + [666] = 666, + [667] = 662, + [668] = 393, + [669] = 402, + [670] = 670, + [671] = 415, + [672] = 672, + [673] = 396, + [674] = 666, + [675] = 675, + [676] = 420, + [677] = 416, + [678] = 407, + [679] = 679, + [680] = 421, + [681] = 418, + [682] = 682, + [683] = 419, + [684] = 684, + [685] = 685, + [686] = 433, + [687] = 422, + [688] = 439, + [689] = 431, + [690] = 684, + [691] = 453, + [692] = 451, + [693] = 693, + [694] = 694, + [695] = 389, + [696] = 696, + [697] = 693, + [698] = 698, + [699] = 392, + [700] = 700, + [701] = 701, + [702] = 702, + [703] = 703, + [704] = 704, + [705] = 705, + [706] = 706, + [707] = 707, + [708] = 708, + [709] = 706, + [710] = 710, + [711] = 711, + [712] = 712, + [713] = 713, + [714] = 714, + [715] = 715, + [716] = 716, + [717] = 717, + [718] = 715, + [719] = 712, + [720] = 716, + [721] = 721, + [722] = 722, + [723] = 723, + [724] = 724, + [725] = 725, + [726] = 726, + [727] = 727, + [728] = 406, + [729] = 729, + [730] = 730, + [731] = 731, + [732] = 732, + [733] = 729, + [734] = 734, + [735] = 735, + [736] = 736, + [737] = 731, + [738] = 738, + [739] = 739, + [740] = 740, + [741] = 741, + [742] = 742, + [743] = 730, + [744] = 744, + [745] = 745, + [746] = 746, + [747] = 747, + [748] = 748, + [749] = 749, + [750] = 387, + [751] = 391, + [752] = 418, + [753] = 388, + [754] = 754, + [755] = 755, + [756] = 754, + [757] = 390, + [758] = 758, + [759] = 759, + [760] = 759, + [761] = 761, + [762] = 762, + [763] = 763, + [764] = 764, + [765] = 765, + [766] = 766, + [767] = 767, + [768] = 768, + [769] = 769, + [770] = 770, + [771] = 771, + [772] = 772, + [773] = 770, + [774] = 774, + [775] = 775, + [776] = 432, + [777] = 777, + [778] = 778, + [779] = 779, + [780] = 780, + [781] = 781, + [782] = 782, + [783] = 783, + [784] = 784, + [785] = 785, + [786] = 786, + [787] = 787, + [788] = 788, + [789] = 789, + [790] = 790, + [791] = 791, + [792] = 792, + [793] = 793, + [794] = 794, + [795] = 795, + [796] = 796, + [797] = 797, + [798] = 798, + [799] = 799, + [800] = 800, + [801] = 801, + [802] = 802, + [803] = 803, + [804] = 685, + [805] = 805, + [806] = 806, + [807] = 807, + [808] = 808, + [809] = 809, + [810] = 810, + [811] = 811, + [812] = 812, + [813] = 813, + [814] = 814, + [815] = 815, + [816] = 816, + [817] = 817, + [818] = 818, + [819] = 819, + [820] = 820, + [821] = 821, + [822] = 822, + [823] = 823, + [824] = 824, + [825] = 825, + [826] = 826, + [827] = 827, + [828] = 828, + [829] = 829, + [830] = 830, + [831] = 831, + [832] = 832, + [833] = 833, + [834] = 834, + [835] = 835, + [836] = 836, + [837] = 837, + [838] = 838, + [839] = 839, + [840] = 840, + [841] = 841, + [842] = 842, + [843] = 843, + [844] = 844, + [845] = 845, + [846] = 846, + [847] = 847, + [848] = 848, + [849] = 849, + [850] = 850, + [851] = 851, + [852] = 852, + [853] = 853, + [854] = 854, + [855] = 855, + [856] = 798, + [857] = 813, + [858] = 807, + [859] = 859, + [860] = 860, + [861] = 828, + [862] = 862, + [863] = 863, + [864] = 805, + [865] = 863, + [866] = 866, + [867] = 867, + [868] = 868, + [869] = 869, + [870] = 870, + [871] = 871, + [872] = 872, + [873] = 873, + [874] = 874, + [875] = 875, + [876] = 876, + [877] = 877, + [878] = 878, + [879] = 879, + [880] = 880, + [881] = 881, + [882] = 882, + [883] = 883, + [884] = 884, + [885] = 885, + [886] = 886, + [887] = 887, + [888] = 888, + [889] = 889, + [890] = 890, + [891] = 891, + [892] = 892, + [893] = 893, + [894] = 894, + [895] = 895, + [896] = 896, + [897] = 897, + [898] = 898, + [899] = 899, + [900] = 900, + [901] = 893, + [902] = 902, + [903] = 903, + [904] = 904, + [905] = 905, + [906] = 906, + [907] = 893, + [908] = 908, + [909] = 909, + [910] = 910, + [911] = 911, + [912] = 912, + [913] = 913, + [914] = 914, + [915] = 915, + [916] = 916, + [917] = 917, + [918] = 918, + [919] = 919, + [920] = 920, + [921] = 921, + [922] = 922, + [923] = 923, + [924] = 924, + [925] = 925, + [926] = 926, + [927] = 927, + [928] = 928, + [929] = 929, + [930] = 930, + [931] = 931, + [932] = 932, + [933] = 933, + [934] = 934, + [935] = 935, + [936] = 936, + [937] = 937, + [938] = 938, + [939] = 939, + [940] = 940, + [941] = 941, + [942] = 942, + [943] = 943, + [944] = 944, + [945] = 945, + [946] = 946, + [947] = 947, + [948] = 948, + [949] = 949, + [950] = 950, + [951] = 951, + [952] = 952, + [953] = 953, + [954] = 954, + [955] = 955, + [956] = 956, + [957] = 957, + [958] = 958, + [959] = 959, + [960] = 960, + [961] = 961, + [962] = 962, + [963] = 942, + [964] = 916, + [965] = 965, + [966] = 966, + [967] = 920, + [968] = 968, + [969] = 969, + [970] = 970, + [971] = 971, + [972] = 921, + [973] = 973, + [974] = 974, + [975] = 975, + [976] = 976, + [977] = 977, + [978] = 978, + [979] = 979, + [980] = 980, + [981] = 981, + [982] = 982, + [983] = 983, + [984] = 984, + [985] = 985, + [986] = 986, + [987] = 987, + [988] = 988, + [989] = 989, + [990] = 990, + [991] = 991, + [992] = 992, + [993] = 993, + [994] = 994, + [995] = 995, + [996] = 996, + [997] = 997, + [998] = 998, + [999] = 999, + [1000] = 1000, + [1001] = 1001, + [1002] = 1002, + [1003] = 1003, + [1004] = 1004, + [1005] = 1005, + [1006] = 1006, + [1007] = 1007, + [1008] = 1008, + [1009] = 1009, + [1010] = 1010, + [1011] = 1011, + [1012] = 1012, + [1013] = 1013, + [1014] = 1014, + [1015] = 1015, + [1016] = 988, + [1017] = 1017, + [1018] = 985, + [1019] = 1004, + [1020] = 1020, + [1021] = 1005, + [1022] = 1022, + [1023] = 1007, + [1024] = 1024, + [1025] = 1025, + [1026] = 1026, + [1027] = 1027, + [1028] = 1028, + [1029] = 1029, + [1030] = 1030, + [1031] = 1015, + [1032] = 1032, + [1033] = 1033, + [1034] = 1034, + [1035] = 1035, + [1036] = 1036, + [1037] = 1037, + [1038] = 1038, + [1039] = 1039, + [1040] = 1040, + [1041] = 1041, + [1042] = 1042, + [1043] = 1043, + [1044] = 1044, + [1045] = 1045, + [1046] = 1046, + [1047] = 1047, + [1048] = 1048, + [1049] = 1049, + [1050] = 1050, + [1051] = 1039, + [1052] = 1041, + [1053] = 1053, + [1054] = 1054, + [1055] = 1055, + [1056] = 1056, + [1057] = 1057, + [1058] = 1050, + [1059] = 1024, + [1060] = 1011, + [1061] = 996, + [1062] = 983, + [1063] = 1041, + [1064] = 1027, + [1065] = 1065, + [1066] = 1066, + [1067] = 1067, + [1068] = 1068, + [1069] = 1069, + [1070] = 969, + [1071] = 1071, + [1072] = 1072, + [1073] = 1073, + [1074] = 1074, + [1075] = 1075, + [1076] = 1076, + [1077] = 1077, + [1078] = 1078, + [1079] = 1079, + [1080] = 1080, + [1081] = 1081, + [1082] = 1082, + [1083] = 1083, + [1084] = 1084, + [1085] = 1085, + [1086] = 1086, + [1087] = 1087, + [1088] = 1088, + [1089] = 1039, + [1090] = 1090, + [1091] = 1091, + [1092] = 1092, + [1093] = 1093, + [1094] = 1094, + [1095] = 1095, + [1096] = 1096, + [1097] = 1097, + [1098] = 1098, + [1099] = 1099, + [1100] = 1100, + [1101] = 1101, + [1102] = 1102, + [1103] = 1103, + [1104] = 1104, + [1105] = 1105, + [1106] = 1106, + [1107] = 1107, + [1108] = 1108, + [1109] = 1109, + [1110] = 1110, + [1111] = 1111, + [1112] = 1112, + [1113] = 1113, + [1114] = 1114, + [1115] = 1115, + [1116] = 1116, + [1117] = 1117, + [1118] = 1118, + [1119] = 1119, + [1120] = 1120, + [1121] = 1121, + [1122] = 1122, + [1123] = 1123, + [1124] = 1124, + [1125] = 1125, + [1126] = 1126, + [1127] = 1127, + [1128] = 1128, + [1129] = 1129, + [1130] = 1130, + [1131] = 1131, + [1132] = 1132, + [1133] = 1133, + [1134] = 1134, + [1135] = 1135, + [1136] = 1136, + [1137] = 1137, + [1138] = 1138, + [1139] = 1139, + [1140] = 1140, + [1141] = 1141, + [1142] = 1142, + [1143] = 1143, + [1144] = 1144, + [1145] = 1145, + [1146] = 1146, + [1147] = 1147, + [1148] = 1148, + [1149] = 1149, + [1150] = 1150, + [1151] = 1151, + [1152] = 1152, + [1153] = 1153, + [1154] = 1154, + [1155] = 1155, + [1156] = 1156, + [1157] = 1157, + [1158] = 1158, + [1159] = 1159, + [1160] = 1160, + [1161] = 1161, + [1162] = 1162, + [1163] = 1163, + [1164] = 1164, + [1165] = 1165, + [1166] = 1166, + [1167] = 1167, + [1168] = 1168, + [1169] = 1169, + [1170] = 1170, + [1171] = 1171, + [1172] = 1172, + [1173] = 284, + [1174] = 1174, + [1175] = 1175, + [1176] = 1176, + [1177] = 1177, + [1178] = 1178, + [1179] = 1179, + [1180] = 1180, + [1181] = 1181, + [1182] = 1182, + [1183] = 1183, + [1184] = 1184, + [1185] = 1185, + [1186] = 1186, + [1187] = 1165, + [1188] = 1188, + [1189] = 1189, + [1190] = 1190, + [1191] = 1191, + [1192] = 1192, + [1193] = 1193, + [1194] = 1194, + [1195] = 1195, + [1196] = 1196, + [1197] = 1197, + [1198] = 1198, + [1199] = 1199, + [1200] = 1200, + [1201] = 1201, + [1202] = 1202, + [1203] = 1203, + [1204] = 1204, + [1205] = 1205, + [1206] = 1206, + [1207] = 1207, + [1208] = 1208, + [1209] = 1186, + [1210] = 1210, + [1211] = 1211, + [1212] = 1212, + [1213] = 1213, + [1214] = 1214, + [1215] = 1215, + [1216] = 1216, + [1217] = 1217, + [1218] = 1218, + [1219] = 1219, + [1220] = 1220, + [1221] = 1221, + [1222] = 1222, + [1223] = 1223, + [1224] = 1224, + [1225] = 1225, + [1226] = 1226, + [1227] = 1227, + [1228] = 1228, + [1229] = 1229, + [1230] = 1230, + [1231] = 1231, + [1232] = 1221, + [1233] = 1233, + [1234] = 1228, + [1235] = 1235, + [1236] = 1230, + [1237] = 1237, + [1238] = 1231, + [1239] = 1229, + [1240] = 1240, + [1241] = 1241, + [1242] = 1242, + [1243] = 1243, + [1244] = 1244, + [1245] = 1245, + [1246] = 1246, + [1247] = 1247, + [1248] = 1248, + [1249] = 1249, + [1250] = 1250, + [1251] = 1251, + [1252] = 1252, + [1253] = 1214, + [1254] = 1221, + [1255] = 1230, + [1256] = 1229, + [1257] = 1257, + [1258] = 1258, + [1259] = 1259, + [1260] = 1260, + [1261] = 1261, + [1262] = 1262, + [1263] = 1263, + [1264] = 1264, + [1265] = 1265, + [1266] = 1266, + [1267] = 1267, + [1268] = 1268, + [1269] = 1269, + [1270] = 1270, + [1271] = 1271, + [1272] = 1272, + [1273] = 1273, + [1274] = 1274, + [1275] = 1275, + [1276] = 1276, + [1277] = 1277, + [1278] = 1278, + [1279] = 1279, + [1280] = 1280, + [1281] = 1281, + [1282] = 1282, + [1283] = 1283, + [1284] = 1284, + [1285] = 1285, + [1286] = 1286, + [1287] = 1287, + [1288] = 1243, + [1289] = 1289, + [1290] = 1290, + [1291] = 1246, + [1292] = 1292, + [1293] = 1224, + [1294] = 1294, + [1295] = 1295, + [1296] = 1296, +}; + +static inline bool sym_escape_sequence_character_set_1(int32_t c) { + return (c < 'a' + ? (c < '?' + ? (c < '\'' + ? c == '"' + : c <= '\'') + : (c <= '?' || c == '\\')) + : (c <= 'b' || (c < 'r' + ? (c < 'n' + ? c == 'f' + : c <= 'n') + : (c <= 'r' || (c >= 't' && c <= 'v'))))); +} + static inline bool sym_identifier_character_set_1(int32_t c) { + return (c < 6688 + ? (c < 2984 + ? (c < 2365 + ? (c < 1488 + ? (c < 886 + ? (c < 216 + ? (c < 181 + ? (c < 'a' + ? (c >= '$' && c <= '_') + : (c <= 'z' || c == 170)) + : (c <= 181 || (c < 192 + ? c == 186 + : c <= 214))) + : (c <= 246 || (c < 748 + ? (c < 710 + ? (c >= 248 && c <= 705) + : (c <= 721 || (c >= 736 && c <= 740))) + : (c <= 748 || (c < 880 + ? c == 750 + : c <= 884))))) + : (c <= 887 || (c < 931 + ? (c < 904 + ? (c < 895 + ? (c >= 890 && c <= 893) + : (c <= 895 || c == 902)) + : (c <= 906 || (c < 910 + ? c == 908 + : c <= 929))) + : (c <= 1013 || (c < 1329 + ? (c < 1162 + ? (c >= 1015 && c <= 1153) + : c <= 1327) + : (c <= 1366 || (c < 1376 + ? c == 1369 + : c <= 1416))))))) + : (c <= 1514 || (c < 1994 + ? (c < 1774 + ? (c < 1649 + ? (c < 1568 + ? (c >= 1519 && c <= 1522) + : (c <= 1610 || (c >= 1646 && c <= 1647))) + : (c <= 1747 || (c < 1765 + ? c == 1749 + : c <= 1766))) + : (c <= 1775 || (c < 1810 + ? (c < 1791 + ? (c >= 1786 && c <= 1788) + : (c <= 1791 || c == 1808)) + : (c <= 1839 || (c < 1969 + ? (c >= 1869 && c <= 1957) + : c <= 1969))))) + : (c <= 2026 || (c < 2112 + ? (c < 2074 + ? (c < 2042 + ? (c >= 2036 && c <= 2037) + : (c <= 2042 || (c >= 2048 && c <= 2069))) + : (c <= 2074 || (c < 2088 + ? c == 2084 + : c <= 2088))) + : (c <= 2136 || (c < 2185 + ? (c < 2160 + ? (c >= 2144 && c <= 2154) + : c <= 2183) + : (c <= 2190 || (c < 2308 + ? (c >= 2208 && c <= 2249) + : c <= 2361))))))))) + : (c <= 2365 || (c < 2703 + ? (c < 2544 + ? (c < 2474 + ? (c < 2437 + ? (c < 2392 + ? c == 2384 + : (c <= 2401 || (c >= 2417 && c <= 2432))) + : (c <= 2444 || (c < 2451 + ? (c >= 2447 && c <= 2448) + : c <= 2472))) + : (c <= 2480 || (c < 2510 + ? (c < 2486 + ? c == 2482 + : (c <= 2489 || c == 2493)) + : (c <= 2510 || (c < 2527 + ? (c >= 2524 && c <= 2525) + : c <= 2529))))) + : (c <= 2545 || (c < 2613 + ? (c < 2579 + ? (c < 2565 + ? c == 2556 + : (c <= 2570 || (c >= 2575 && c <= 2576))) + : (c <= 2600 || (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611))) + : (c <= 2614 || (c < 2654 + ? (c < 2649 + ? (c >= 2616 && c <= 2617) + : c <= 2652) + : (c <= 2654 || (c < 2693 + ? (c >= 2674 && c <= 2676) + : c <= 2701))))))) + : (c <= 2705 || (c < 2869 + ? (c < 2784 + ? (c < 2741 + ? (c < 2730 + ? (c >= 2707 && c <= 2728) + : (c <= 2736 || (c >= 2738 && c <= 2739))) + : (c <= 2745 || (c < 2768 + ? c == 2749 + : c <= 2768))) + : (c <= 2785 || (c < 2835 + ? (c < 2821 + ? c == 2809 + : (c <= 2828 || (c >= 2831 && c <= 2832))) + : (c <= 2856 || (c < 2866 + ? (c >= 2858 && c <= 2864) + : c <= 2867))))) + : (c <= 2873 || (c < 2958 + ? (c < 2929 + ? (c < 2908 + ? c == 2877 + : (c <= 2909 || (c >= 2911 && c <= 2913))) + : (c <= 2929 || (c < 2949 + ? c == 2947 + : c <= 2954))) + : (c <= 2960 || (c < 2972 + ? (c < 2969 + ? (c >= 2962 && c <= 2965) + : c <= 2970) + : (c <= 2972 || (c < 2979 + ? (c >= 2974 && c <= 2975) + : c <= 2980))))))))))) + : (c <= 2986 || (c < 4176 + ? (c < 3423 + ? (c < 3218 + ? (c < 3133 + ? (c < 3086 + ? (c < 3024 + ? (c >= 2990 && c <= 3001) + : (c <= 3024 || (c >= 3077 && c <= 3084))) + : (c <= 3088 || (c < 3114 + ? (c >= 3090 && c <= 3112) + : c <= 3129))) + : (c <= 3133 || (c < 3200 + ? (c < 3165 + ? (c >= 3160 && c <= 3162) + : (c <= 3165 || (c >= 3168 && c <= 3169))) + : (c <= 3200 || (c < 3214 + ? (c >= 3205 && c <= 3212) + : c <= 3216))))) + : (c <= 3240 || (c < 3332 + ? (c < 3293 + ? (c < 3253 + ? (c >= 3242 && c <= 3251) + : (c <= 3257 || c == 3261)) + : (c <= 3294 || (c < 3313 + ? (c >= 3296 && c <= 3297) + : c <= 3314))) + : (c <= 3340 || (c < 3389 + ? (c < 3346 + ? (c >= 3342 && c <= 3344) + : c <= 3386) + : (c <= 3389 || (c < 3412 + ? c == 3406 + : c <= 3414))))))) + : (c <= 3425 || (c < 3749 + ? (c < 3585 + ? (c < 3507 + ? (c < 3461 + ? (c >= 3450 && c <= 3455) + : (c <= 3478 || (c >= 3482 && c <= 3505))) + : (c <= 3515 || (c < 3520 + ? c == 3517 + : c <= 3526))) + : (c <= 3632 || (c < 3716 + ? (c < 3648 + ? (c >= 3634 && c <= 3635) + : (c <= 3654 || (c >= 3713 && c <= 3714))) + : (c <= 3716 || (c < 3724 + ? (c >= 3718 && c <= 3722) + : c <= 3747))))) + : (c <= 3749 || (c < 3840 + ? (c < 3776 + ? (c < 3762 + ? (c >= 3751 && c <= 3760) + : (c <= 3763 || c == 3773)) + : (c <= 3780 || (c < 3804 + ? c == 3782 + : c <= 3807))) + : (c <= 3840 || (c < 3976 + ? (c < 3913 + ? (c >= 3904 && c <= 3911) + : c <= 3948) + : (c <= 3980 || (c < 4159 + ? (c >= 4096 && c <= 4138) + : c <= 4159))))))))) + : (c <= 4181 || (c < 4992 + ? (c < 4696 + ? (c < 4256 + ? (c < 4206 + ? (c < 4193 + ? (c >= 4186 && c <= 4189) + : (c <= 4193 || (c >= 4197 && c <= 4198))) + : (c <= 4208 || (c < 4238 + ? (c >= 4213 && c <= 4225) + : c <= 4238))) + : (c <= 4293 || (c < 4348 + ? (c < 4301 + ? c == 4295 + : (c <= 4301 || (c >= 4304 && c <= 4346))) + : (c <= 4680 || (c < 4688 + ? (c >= 4682 && c <= 4685) + : c <= 4694))))) + : (c <= 4696 || (c < 4800 + ? (c < 4752 + ? (c < 4704 + ? (c >= 4698 && c <= 4701) + : (c <= 4744 || (c >= 4746 && c <= 4749))) + : (c <= 4784 || (c < 4792 + ? (c >= 4786 && c <= 4789) + : c <= 4798))) + : (c <= 4800 || (c < 4824 + ? (c < 4808 + ? (c >= 4802 && c <= 4805) + : c <= 4822) + : (c <= 4880 || (c < 4888 + ? (c >= 4882 && c <= 4885) + : c <= 4954))))))) + : (c <= 5007 || (c < 6103 + ? (c < 5873 + ? (c < 5743 + ? (c < 5112 + ? (c >= 5024 && c <= 5109) + : (c <= 5117 || (c >= 5121 && c <= 5740))) + : (c <= 5759 || (c < 5792 + ? (c >= 5761 && c <= 5786) + : c <= 5866))) + : (c <= 5880 || (c < 5984 + ? (c < 5919 + ? (c >= 5888 && c <= 5905) + : (c <= 5937 || (c >= 5952 && c <= 5969))) + : (c <= 5996 || (c < 6016 + ? (c >= 5998 && c <= 6000) + : c <= 6067))))) + : (c <= 6103 || (c < 6400 + ? (c < 6279 + ? (c < 6176 + ? c == 6108 + : (c <= 6264 || (c >= 6272 && c <= 6276))) + : (c <= 6312 || (c < 6320 + ? c == 6314 + : c <= 6389))) + : (c <= 6430 || (c < 6528 + ? (c < 6512 + ? (c >= 6480 && c <= 6509) + : c <= 6516) + : (c <= 6571 || (c < 6656 + ? (c >= 6576 && c <= 6601) + : c <= 6678))))))))))))) + : (c <= 6740 || (c < 43261 + ? (c < 11264 + ? (c < 8064 + ? (c < 7406 + ? (c < 7168 + ? (c < 7043 + ? (c < 6917 + ? c == 6823 + : (c <= 6963 || (c >= 6981 && c <= 6988))) + : (c <= 7072 || (c < 7098 + ? (c >= 7086 && c <= 7087) + : c <= 7141))) + : (c <= 7203 || (c < 7312 + ? (c < 7258 + ? (c >= 7245 && c <= 7247) + : (c <= 7293 || (c >= 7296 && c <= 7304))) + : (c <= 7354 || (c < 7401 + ? (c >= 7357 && c <= 7359) + : c <= 7404))))) + : (c <= 7411 || (c < 8008 + ? (c < 7680 + ? (c < 7418 + ? (c >= 7413 && c <= 7414) + : (c <= 7418 || (c >= 7424 && c <= 7615))) + : (c <= 7957 || (c < 7968 + ? (c >= 7960 && c <= 7965) + : c <= 8005))) + : (c <= 8013 || (c < 8027 + ? (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025) + : (c <= 8027 || (c < 8031 + ? c == 8029 + : c <= 8061))))))) + : (c <= 8116 || (c < 8455 + ? (c < 8160 + ? (c < 8134 + ? (c < 8126 + ? (c >= 8118 && c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))) + : (c <= 8140 || (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155))) + : (c <= 8172 || (c < 8319 + ? (c < 8182 + ? (c >= 8178 && c <= 8180) + : (c <= 8188 || c == 8305)) + : (c <= 8319 || (c < 8450 + ? (c >= 8336 && c <= 8348) + : c <= 8450))))) + : (c <= 8455 || (c < 8490 + ? (c < 8484 + ? (c < 8469 + ? (c >= 8458 && c <= 8467) + : (c <= 8469 || (c >= 8473 && c <= 8477))) + : (c <= 8484 || (c < 8488 + ? c == 8486 + : c <= 8488))) + : (c <= 8493 || (c < 8517 + ? (c < 8508 + ? (c >= 8495 && c <= 8505) + : c <= 8511) + : (c <= 8521 || (c < 8579 + ? c == 8526 + : c <= 8580))))))))) + : (c <= 11492 || (c < 12704 + ? (c < 11720 + ? (c < 11631 + ? (c < 11559 + ? (c < 11506 + ? (c >= 11499 && c <= 11502) + : (c <= 11507 || (c >= 11520 && c <= 11557))) + : (c <= 11559 || (c < 11568 + ? c == 11565 + : c <= 11623))) + : (c <= 11631 || (c < 11696 + ? (c < 11680 + ? (c >= 11648 && c <= 11670) + : (c <= 11686 || (c >= 11688 && c <= 11694))) + : (c <= 11702 || (c < 11712 + ? (c >= 11704 && c <= 11710) + : c <= 11718))))) + : (c <= 11726 || (c < 12353 + ? (c < 12293 + ? (c < 11736 + ? (c >= 11728 && c <= 11734) + : (c <= 11742 || c == 11823)) + : (c <= 12294 || (c < 12347 + ? (c >= 12337 && c <= 12341) + : c <= 12348))) + : (c <= 12438 || (c < 12540 + ? (c < 12449 + ? (c >= 12445 && c <= 12447) + : c <= 12538) + : (c <= 12543 || (c < 12593 + ? (c >= 12549 && c <= 12591) + : c <= 12686))))))) + : (c <= 12735 || (c < 42786 + ? (c < 42240 + ? (c < 19968 + ? (c < 13312 + ? (c >= 12784 && c <= 12799) + : (c <= 13312 || c == 19903)) + : (c <= 19968 || (c < 42192 + ? (c >= 40959 && c <= 42124) + : c <= 42237))) + : (c <= 42508 || (c < 42623 + ? (c < 42538 + ? (c >= 42512 && c <= 42527) + : (c <= 42539 || (c >= 42560 && c <= 42606))) + : (c <= 42653 || (c < 42775 + ? (c >= 42656 && c <= 42725) + : c <= 42783))))) + : (c <= 42888 || (c < 43015 + ? (c < 42965 + ? (c < 42960 + ? (c >= 42891 && c <= 42954) + : (c <= 42961 || c == 42963)) + : (c <= 42969 || (c < 43011 + ? (c >= 42994 && c <= 43009) + : c <= 43013))) + : (c <= 43018 || (c < 43138 + ? (c < 43072 + ? (c >= 43020 && c <= 43042) + : c <= 43123) + : (c <= 43187 || (c < 43259 + ? (c >= 43250 && c <= 43255) + : c <= 43259))))))))))) + : (c <= 43262 || (c < 65345 + ? (c < 43816 + ? (c < 43646 + ? (c < 43494 + ? (c < 43396 + ? (c < 43312 + ? (c >= 43274 && c <= 43301) + : (c <= 43334 || (c >= 43360 && c <= 43388))) + : (c <= 43442 || (c < 43488 + ? c == 43471 + : c <= 43492))) + : (c <= 43503 || (c < 43588 + ? (c < 43520 + ? (c >= 43514 && c <= 43518) + : (c <= 43560 || (c >= 43584 && c <= 43586))) + : (c <= 43595 || (c < 43642 + ? (c >= 43616 && c <= 43638) + : c <= 43642))))) + : (c <= 43695 || (c < 43744 + ? (c < 43712 + ? (c < 43701 + ? c == 43697 + : (c <= 43702 || (c >= 43705 && c <= 43709))) + : (c <= 43712 || (c < 43739 + ? c == 43714 + : c <= 43741))) + : (c <= 43754 || (c < 43785 + ? (c < 43777 + ? (c >= 43762 && c <= 43764) + : c <= 43782) + : (c <= 43790 || (c < 43808 + ? (c >= 43793 && c <= 43798) + : c <= 43814))))))) + : (c <= 43822 || (c < 64298 + ? (c < 55243 + ? (c < 44032 + ? (c < 43868 + ? (c >= 43824 && c <= 43866) + : (c <= 43881 || (c >= 43888 && c <= 44002))) + : (c <= 44032 || (c < 55216 + ? c == 55203 + : c <= 55238))) + : (c <= 55291 || (c < 64275 + ? (c < 64112 + ? (c >= 63744 && c <= 64109) + : (c <= 64217 || (c >= 64256 && c <= 64262))) + : (c <= 64279 || (c < 64287 + ? c == 64285 + : c <= 64296))))) + : (c <= 64310 || (c < 64848 + ? (c < 64323 + ? (c < 64318 + ? (c >= 64312 && c <= 64316) + : (c <= 64318 || (c >= 64320 && c <= 64321))) + : (c <= 64324 || (c < 64467 + ? (c >= 64326 && c <= 64433) + : c <= 64829))) + : (c <= 64911 || (c < 65136 + ? (c < 65008 + ? (c >= 64914 && c <= 64967) + : c <= 65019) + : (c <= 65140 || (c < 65313 + ? (c >= 65142 && c <= 65276) + : c <= 65338))))))))) + : (c <= 65370 || (c < 66928 + ? (c < 66208 + ? (c < 65549 + ? (c < 65490 + ? (c < 65474 + ? (c >= 65382 && c <= 65470) + : (c <= 65479 || (c >= 65482 && c <= 65487))) + : (c <= 65495 || (c < 65536 + ? (c >= 65498 && c <= 65500) + : c <= 65547))) + : (c <= 65574 || (c < 65616 + ? (c < 65596 + ? (c >= 65576 && c <= 65594) + : (c <= 65597 || (c >= 65599 && c <= 65613))) + : (c <= 65629 || (c < 66176 + ? (c >= 65664 && c <= 65786) + : c <= 66204))))) + : (c <= 66256 || (c < 66504 + ? (c < 66384 + ? (c < 66349 + ? (c >= 66304 && c <= 66335) + : (c <= 66368 || (c >= 66370 && c <= 66377))) + : (c <= 66421 || (c < 66464 + ? (c >= 66432 && c <= 66461) + : c <= 66499))) + : (c <= 66511 || (c < 66776 + ? (c < 66736 + ? (c >= 66560 && c <= 66717) + : c <= 66771) + : (c <= 66811 || (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915))))))) + : (c <= 66938 || (c < 67506 + ? (c < 67003 + ? (c < 66967 + ? (c < 66956 + ? (c >= 66940 && c <= 66954) + : (c <= 66962 || (c >= 66964 && c <= 66965))) + : (c <= 66977 || (c < 66995 + ? (c >= 66979 && c <= 66993) + : c <= 67001))) + : (c <= 67004 || (c < 67424 + ? (c < 67392 + ? (c >= 67072 && c <= 67382) + : c <= 67413) + : (c <= 67431 || (c < 67463 + ? (c >= 67456 && c <= 67461) + : c <= 67504))))) + : (c <= 67514 || (c < 67680 + ? (c < 67639 + ? (c < 67592 + ? (c >= 67584 && c <= 67589) + : (c <= 67592 || (c >= 67594 && c <= 67637))) + : (c <= 67640 || (c < 67647 + ? c == 67644 + : c <= 67669))) + : (c <= 67702 || (c < 67828 + ? (c < 67808 + ? (c >= 67712 && c <= 67742) + : c <= 67826) + : (c <= 67829 || (c < 67872 + ? (c >= 67840 && c <= 67861) + : c <= 67883))))))))))))))); +} + +static inline bool sym_identifier_character_set_2(int32_t c) { return (c < 6656 ? (c < 2979 ? (c < 2308 @@ -3729,7 +5745,7 @@ static inline bool sym_identifier_character_set_1(int32_t c) { : c <= 67883))))))))))))))); } -static inline bool sym_identifier_character_set_2(int32_t c) { +static inline bool sym_identifier_character_set_3(int32_t c) { return (c < 6656 ? (c < 2979 ? (c < 2308 @@ -4243,7 +6259,7 @@ static inline bool sym_identifier_character_set_2(int32_t c) { : c <= 67883))))))))))))))); } -static inline bool sym_identifier_character_set_3(int32_t c) { +static inline bool sym_identifier_character_set_4(int32_t c) { return (c < 6400 ? (c < 2979 ? (c < 2365 @@ -4762,1052 +6778,1319 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(61); - if (lookahead == '!') ADVANCE(145); - if (lookahead == '"') ADVANCE(7); - if (lookahead == '%') ADVANCE(132); - if (lookahead == '&') ADVANCE(90); - if (lookahead == '\'') ADVANCE(25); - if (lookahead == '(') ADVANCE(87); - if (lookahead == ')') ADVANCE(91); - if (lookahead == '*') ADVANCE(123); - if (lookahead == '+') ADVANCE(118); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(120); - if (lookahead == '.') ADVANCE(153); - if (lookahead == '/') ADVANCE(125); - if (lookahead == '0') ADVANCE(63); - if (lookahead == ':') ADVANCE(143); - if (lookahead == ';') ADVANCE(158); - if (lookahead == '<') ADVANCE(109); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(106); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '@') ADVANCE(160); - if (lookahead == '[') ADVANCE(149); - if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(130); - if (lookahead == 'n') ADVANCE(166); - if (lookahead == '{') ADVANCE(156); - if (lookahead == '|') ADVANCE(127); - if (lookahead == '}') ADVANCE(157); - if (lookahead == '~') ADVANCE(146); + if (eof) ADVANCE(64); + if (lookahead == '!') ADVANCE(178); + if (lookahead == '"') ADVANCE(88); + if (lookahead == '%') ADVANCE(165); + if (lookahead == '&') ADVANCE(123); + if (lookahead == '\'') ADVANCE(21); + if (lookahead == '(') ADVANCE(120); + if (lookahead == ')') ADVANCE(124); + if (lookahead == '*') ADVANCE(156); + if (lookahead == '+') ADVANCE(151); + if (lookahead == ',') ADVANCE(173); + if (lookahead == '-') ADVANCE(153); + if (lookahead == '.') ADVANCE(186); + if (lookahead == '/') ADVANCE(158); + if (lookahead == '0') ADVANCE(66); + if (lookahead == ':') ADVANCE(176); + if (lookahead == ';') ADVANCE(191); + if (lookahead == '<') ADVANCE(142); + if (lookahead == '=') ADVANCE(126); + if (lookahead == '>') ADVANCE(139); + if (lookahead == '?') ADVANCE(174); + if (lookahead == '@') ADVANCE(193); + if (lookahead == '[') ADVANCE(182); + if (lookahead == '\\') ADVANCE(43); + if (lookahead == ']') ADVANCE(183); + if (lookahead == '^') ADVANCE(163); + if (lookahead == 'n') ADVANCE(199); + if (lookahead == '{') ADVANCE(189); + if (lookahead == '|') ADVANCE(160); + if (lookahead == '}') ADVANCE(190); + if (lookahead == '~') ADVANCE(179); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(0) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(64); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(167); + lookahead == ' ') SKIP(61) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(67); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(200); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(1); - if (lookahead == '"') ADVANCE(11); - if (lookahead == '\\') ADVANCE(56); + if (lookahead == '!') ADVANCE(178); + if (lookahead == '"') ADVANCE(88); + if (lookahead == '%') ADVANCE(164); + if (lookahead == '&') ADVANCE(122); + if (lookahead == '\'') ADVANCE(21); + if (lookahead == '(') ADVANCE(120); + if (lookahead == ')') ADVANCE(124); + if (lookahead == '*') ADVANCE(155); + if (lookahead == '+') ADVANCE(150); + if (lookahead == ',') ADVANCE(173); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '.') ADVANCE(15); + if (lookahead == '/') ADVANCE(157); + if (lookahead == '0') ADVANCE(66); + if (lookahead == ':') ADVANCE(176); + if (lookahead == ';') ADVANCE(191); + if (lookahead == '<') ADVANCE(143); + if (lookahead == '=') ADVANCE(20); + if (lookahead == '>') ADVANCE(140); + if (lookahead == '?') ADVANCE(174); + if (lookahead == '@') ADVANCE(192); + if (lookahead == '[') ADVANCE(182); + if (lookahead == ']') ADVANCE(183); + if (lookahead == '^') ADVANCE(162); + if (lookahead == '{') ADVANCE(189); + if (lookahead == '|') ADVANCE(161); + if (lookahead == '}') ADVANCE(190); + if (lookahead == '~') ADVANCE(179); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(1); - if (lookahead != 0) ADVANCE(9); + lookahead == ' ') SKIP(1) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(67); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(200); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(1); + if (lookahead == '!') ADVANCE(177); + if (lookahead == '"') ADVANCE(88); + if (lookahead == '&') ADVANCE(121); + if (lookahead == '\'') ADVANCE(21); + if (lookahead == '(') ADVANCE(120); + if (lookahead == ')') ADVANCE(124); + if (lookahead == '+') ADVANCE(150); + if (lookahead == ',') ADVANCE(173); + if (lookahead == '-') ADVANCE(152); + if (lookahead == '.') ADVANCE(51); + if (lookahead == '/') ADVANCE(12); + if (lookahead == '0') ADVANCE(66); + if (lookahead == ':') ADVANCE(175); + if (lookahead == ';') ADVANCE(191); + if (lookahead == '=') ADVANCE(125); + if (lookahead == '>') ADVANCE(138); + if (lookahead == '@') ADVANCE(192); + if (lookahead == '[') ADVANCE(182); + if (lookahead == 'n') ADVANCE(199); + if (lookahead == '}') ADVANCE(190); + if (lookahead == '~') ADVANCE(179); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(2); + lookahead == ' ') SKIP(2) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(67); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(200); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(145); - if (lookahead == '"') ADVANCE(7); - if (lookahead == '%') ADVANCE(131); - if (lookahead == '&') ADVANCE(89); - if (lookahead == '\'') ADVANCE(25); - if (lookahead == '(') ADVANCE(87); - if (lookahead == ')') ADVANCE(91); - if (lookahead == '*') ADVANCE(122); - if (lookahead == '+') ADVANCE(117); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(121); - if (lookahead == '.') ADVANCE(19); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(63); - if (lookahead == ':') ADVANCE(143); - if (lookahead == ';') ADVANCE(158); - if (lookahead == '<') ADVANCE(110); - if (lookahead == '=') ADVANCE(24); - if (lookahead == '>') ADVANCE(107); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '@') ADVANCE(159); - if (lookahead == '[') ADVANCE(149); - if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(129); - if (lookahead == '{') ADVANCE(156); - if (lookahead == '|') ADVANCE(128); - if (lookahead == '}') ADVANCE(157); - if (lookahead == '~') ADVANCE(146); + if (lookahead == '!') ADVANCE(19); + if (lookahead == '%') ADVANCE(165); + if (lookahead == '&') ADVANCE(123); + if (lookahead == '(') ADVANCE(120); + if (lookahead == ')') ADVANCE(124); + if (lookahead == '*') ADVANCE(156); + if (lookahead == '+') ADVANCE(151); + if (lookahead == ',') ADVANCE(173); + if (lookahead == '-') ADVANCE(153); + if (lookahead == '.') ADVANCE(185); + if (lookahead == '/') ADVANCE(158); + if (lookahead == ':') ADVANCE(176); + if (lookahead == ';') ADVANCE(191); + if (lookahead == '<') ADVANCE(142); + if (lookahead == '=') ADVANCE(126); + if (lookahead == '>') ADVANCE(139); + if (lookahead == '?') ADVANCE(174); + if (lookahead == '@') ADVANCE(192); + if (lookahead == '[') ADVANCE(182); + if (lookahead == ']') ADVANCE(183); + if (lookahead == '^') ADVANCE(163); + if (lookahead == '{') ADVANCE(189); + if (lookahead == '|') ADVANCE(160); + if (lookahead == '}') ADVANCE(190); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(3) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(64); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(167); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(200); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(144); - if (lookahead == '"') ADVANCE(7); - if (lookahead == '&') ADVANCE(88); - if (lookahead == '\'') ADVANCE(25); - if (lookahead == '(') ADVANCE(87); - if (lookahead == ')') ADVANCE(91); - if (lookahead == '+') ADVANCE(117); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(119); - if (lookahead == '.') ADVANCE(51); - if (lookahead == '/') ADVANCE(16); - if (lookahead == '0') ADVANCE(63); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(158); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(105); - if (lookahead == '@') ADVANCE(159); - if (lookahead == '[') ADVANCE(149); - if (lookahead == 'n') ADVANCE(166); - if (lookahead == '}') ADVANCE(157); - if (lookahead == '~') ADVANCE(146); + if (lookahead == '!') ADVANCE(19); + if (lookahead == '%') ADVANCE(164); + if (lookahead == '&') ADVANCE(122); + if (lookahead == '(') ADVANCE(120); + if (lookahead == ')') ADVANCE(124); + if (lookahead == '*') ADVANCE(155); + if (lookahead == '+') ADVANCE(150); + if (lookahead == ',') ADVANCE(173); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '.') ADVANCE(184); + if (lookahead == '/') ADVANCE(157); + if (lookahead == ':') ADVANCE(176); + if (lookahead == ';') ADVANCE(191); + if (lookahead == '<') ADVANCE(143); + if (lookahead == '=') ADVANCE(20); + if (lookahead == '>') ADVANCE(140); + if (lookahead == '?') ADVANCE(174); + if (lookahead == '@') ADVANCE(192); + if (lookahead == '[') ADVANCE(182); + if (lookahead == ']') ADVANCE(183); + if (lookahead == '^') ADVANCE(162); + if (lookahead == '{') ADVANCE(189); + if (lookahead == '|') ADVANCE(161); + if (lookahead == '}') ADVANCE(190); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(4) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(64); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(167); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(200); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(23); - if (lookahead == '%') ADVANCE(132); - if (lookahead == '&') ADVANCE(90); - if (lookahead == '(') ADVANCE(87); - if (lookahead == ')') ADVANCE(91); - if (lookahead == '*') ADVANCE(123); - if (lookahead == '+') ADVANCE(118); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(120); - if (lookahead == '.') ADVANCE(152); - if (lookahead == '/') ADVANCE(125); - if (lookahead == ':') ADVANCE(143); - if (lookahead == ';') ADVANCE(158); - if (lookahead == '<') ADVANCE(109); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(106); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '@') ADVANCE(159); - if (lookahead == '[') ADVANCE(149); - if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(130); - if (lookahead == '{') ADVANCE(156); - if (lookahead == '|') ADVANCE(127); - if (lookahead == '}') ADVANCE(157); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(5) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(167); + if (lookahead == '"') ADVANCE(89); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(23); - if (lookahead == '%') ADVANCE(131); - if (lookahead == '&') ADVANCE(89); - if (lookahead == '(') ADVANCE(87); - if (lookahead == ')') ADVANCE(91); - if (lookahead == '*') ADVANCE(122); - if (lookahead == '+') ADVANCE(117); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(121); - if (lookahead == '.') ADVANCE(151); - if (lookahead == '/') ADVANCE(124); - if (lookahead == ':') ADVANCE(143); - if (lookahead == ';') ADVANCE(158); - if (lookahead == '<') ADVANCE(110); - if (lookahead == '=') ADVANCE(24); - if (lookahead == '>') ADVANCE(107); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '@') ADVANCE(159); - if (lookahead == '[') ADVANCE(149); - if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(129); - if (lookahead == '{') ADVANCE(156); - if (lookahead == '|') ADVANCE(128); - if (lookahead == '}') ADVANCE(157); + if (lookahead == '"') ADVANCE(109); + if (lookahead == '/') ADVANCE(100); + if (lookahead == '\\') ADVANCE(99); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(6) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(167); + lookahead == ' ') ADVANCE(101); + if (lookahead != 0) ADVANCE(108); END_STATE(); case 7: - if (lookahead == '"') ADVANCE(85); - if (lookahead == '\\') ADVANCE(58); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(8); + if (lookahead == '"') ADVANCE(87); + if (lookahead == '/') ADVANCE(91); + if (lookahead == '\\') ADVANCE(44); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(94); + if (lookahead != 0) ADVANCE(95); END_STATE(); case 8: - if (lookahead == '"') ADVANCE(84); - if (lookahead == '\\') ADVANCE(58); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(8); + if (lookahead == '&') ADVANCE(121); + if (lookahead == '(') ADVANCE(120); + if (lookahead == ')') ADVANCE(124); + if (lookahead == ',') ADVANCE(173); + if (lookahead == '.') ADVANCE(185); + if (lookahead == '/') ADVANCE(12); + if (lookahead == ':') ADVANCE(176); + if (lookahead == ';') ADVANCE(191); + if (lookahead == '<') ADVANCE(141); + if (lookahead == '=') ADVANCE(125); + if (lookahead == '>') ADVANCE(138); + if (lookahead == '?') ADVANCE(174); + if (lookahead == '@') ADVANCE(192); + if (lookahead == '[') ADVANCE(182); + if (lookahead == '{') ADVANCE(189); + if (lookahead == '|') ADVANCE(159); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(8) + if (sym_identifier_character_set_3(lookahead)) ADVANCE(200); END_STATE(); case 9: - if (lookahead == '"') ADVANCE(11); - if (lookahead == '\\') ADVANCE(56); - if (lookahead != 0) ADVANCE(9); + if (lookahead == '\'') ADVANCE(86); + if (lookahead == '\\') ADVANCE(60); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(9); END_STATE(); case 10: - if (lookahead == '"') ADVANCE(86); + if (lookahead == '(') ADVANCE(120); + if (lookahead == ',') ADVANCE(173); + if (lookahead == '.') ADVANCE(184); + if (lookahead == '/') ADVANCE(12); + if (lookahead == ';') ADVANCE(191); + if (lookahead == '<') ADVANCE(141); + if (lookahead == '@') ADVANCE(193); + if (lookahead == 'n') ADVANCE(199); + if (lookahead == '{') ADVANCE(189); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(10) + if (sym_identifier_character_set_3(lookahead)) ADVANCE(200); END_STATE(); case 11: - if (lookahead == '"') ADVANCE(10); - END_STATE(); - case 12: - if (lookahead == '&') ADVANCE(88); - if (lookahead == '(') ADVANCE(87); - if (lookahead == ')') ADVANCE(91); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '.') ADVANCE(152); - if (lookahead == '/') ADVANCE(16); - if (lookahead == ':') ADVANCE(143); - if (lookahead == ';') ADVANCE(158); - if (lookahead == '<') ADVANCE(108); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(105); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '@') ADVANCE(159); - if (lookahead == '[') ADVANCE(149); - if (lookahead == '{') ADVANCE(156); - if (lookahead == '|') ADVANCE(126); + if (lookahead == '(') ADVANCE(120); + if (lookahead == '.') ADVANCE(184); + if (lookahead == '/') ADVANCE(12); + if (lookahead == '@') ADVANCE(192); + if (lookahead == '[') ADVANCE(182); + if (lookahead == 'n') ADVANCE(199); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(12) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(167); + lookahead == ' ') SKIP(11) + if (sym_identifier_character_set_3(lookahead)) ADVANCE(200); + END_STATE(); + case 12: + if (lookahead == '*') ADVANCE(14); + if (lookahead == '/') ADVANCE(201); END_STATE(); case 13: - if (lookahead == '\'') ADVANCE(83); - if (lookahead == '\\') ADVANCE(57); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(13); + if (lookahead == '*') ADVANCE(13); + if (lookahead == '/') ADVANCE(202); + if (lookahead != 0) ADVANCE(14); END_STATE(); case 14: - if (lookahead == '(') ADVANCE(87); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '.') ADVANCE(151); - if (lookahead == '/') ADVANCE(16); - if (lookahead == ';') ADVANCE(158); - if (lookahead == '<') ADVANCE(108); - if (lookahead == '@') ADVANCE(160); - if (lookahead == 'n') ADVANCE(166); - if (lookahead == '{') ADVANCE(156); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(14) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(167); + if (lookahead == '*') ADVANCE(13); + if (lookahead != 0) ADVANCE(14); END_STATE(); case 15: - if (lookahead == '(') ADVANCE(87); - if (lookahead == '.') ADVANCE(151); - if (lookahead == '/') ADVANCE(16); - if (lookahead == '@') ADVANCE(159); - if (lookahead == '[') ADVANCE(149); - if (lookahead == 'n') ADVANCE(166); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(15) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(167); + if (lookahead == '.') ADVANCE(16); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(77); END_STATE(); case 16: - if (lookahead == '*') ADVANCE(18); - if (lookahead == '/') ADVANCE(168); + if (lookahead == '.') ADVANCE(196); END_STATE(); case 17: - if (lookahead == '*') ADVANCE(17); - if (lookahead == '/') ADVANCE(169); - if (lookahead != 0) ADVANCE(18); + if (lookahead == '.') ADVANCE(57); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(70); END_STATE(); case 18: - if (lookahead == '*') ADVANCE(17); - if (lookahead != 0) ADVANCE(18); + if (lookahead == '/') ADVANCE(12); + if (lookahead == '<') ADVANCE(141); + if (lookahead == '@') ADVANCE(37); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(18) + if (sym_identifier_character_set_3(lookahead)) ADVANCE(200); END_STATE(); case 19: - if (lookahead == '.') ADVANCE(20); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); + if (lookahead == '=') ADVANCE(147); END_STATE(); case 20: - if (lookahead == '.') ADVANCE(163); + if (lookahead == '=') ADVANCE(146); END_STATE(); case 21: - if (lookahead == '.') ADVANCE(55); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); + if (lookahead == '\\') ADVANCE(60); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\'') ADVANCE(9); END_STATE(); case 22: - if (lookahead == '/') ADVANCE(16); - if (lookahead == '<') ADVANCE(108); - if (lookahead == '@') ADVANCE(41); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(22) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(167); + if (lookahead == '_') ADVANCE(22); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(67); END_STATE(); case 23: - if (lookahead == '=') ADVANCE(114); + if (lookahead == '_') ADVANCE(23); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(77); END_STATE(); case 24: - if (lookahead == '=') ADVANCE(113); + if (lookahead == '_') ADVANCE(24); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(78); END_STATE(); case 25: - if (lookahead == '\\') ADVANCE(57); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\'') ADVANCE(13); + if (lookahead == '_') ADVANCE(26); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(69); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(70); END_STATE(); case 26: if (lookahead == '_') ADVANCE(26); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(64); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(83); END_STATE(); case 27: - if (lookahead == '_') ADVANCE(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); + if (lookahead == '_') ADVANCE(26); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(82); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(81); END_STATE(); case 28: - if (lookahead == '_') ADVANCE(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(75); + if (lookahead == 'a') ADVANCE(38); END_STATE(); case 29: - if (lookahead == '_') ADVANCE(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(66); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); + if (lookahead == 'a') ADVANCE(30); END_STATE(); case 30: - if (lookahead == '_') ADVANCE(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(80); + if (lookahead == 'c') ADVANCE(35); END_STATE(); case 31: - if (lookahead == '_') ADVANCE(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(79); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(78); + if (lookahead == 'd') ADVANCE(194); END_STATE(); case 32: - if (lookahead == 'a') ADVANCE(42); + if (lookahead == 'e') ADVANCE(40); END_STATE(); case 33: - if (lookahead == 'a') ADVANCE(34); + if (lookahead == 'e') ADVANCE(28); END_STATE(); case 34: - if (lookahead == 'c') ADVANCE(39); + if (lookahead == 'e') ADVANCE(31); END_STATE(); case 35: - if (lookahead == 'd') ADVANCE(161); + if (lookahead == 'e') ADVANCE(195); END_STATE(); case 36: - if (lookahead == 'e') ADVANCE(44); + if (lookahead == 'f') ADVANCE(29); END_STATE(); case 37: - if (lookahead == 'e') ADVANCE(32); + if (lookahead == 'i') ADVANCE(39); END_STATE(); case 38: - if (lookahead == 'e') ADVANCE(35); + if (lookahead == 'l') ADVANCE(34); END_STATE(); case 39: - if (lookahead == 'e') ADVANCE(162); + if (lookahead == 'n') ADVANCE(42); END_STATE(); case 40: - if (lookahead == 'f') ADVANCE(33); + if (lookahead == 'r') ADVANCE(36); END_STATE(); case 41: - if (lookahead == 'i') ADVANCE(43); + if (lookahead == 's') ADVANCE(33); END_STATE(); case 42: - if (lookahead == 'l') ADVANCE(38); + if (lookahead == 't') ADVANCE(32); END_STATE(); case 43: - if (lookahead == 'n') ADVANCE(46); + if (lookahead == 'u') ADVANCE(45); + if (lookahead == 'x') ADVANCE(59); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(112); + if (sym_escape_sequence_character_set_1(lookahead)) ADVANCE(115); + if (lookahead != 0) ADVANCE(111); END_STATE(); case 44: - if (lookahead == 'r') ADVANCE(40); + if (lookahead == 'u') ADVANCE(45); + if (lookahead == 'x') ADVANCE(59); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(117); + if (lookahead != 0) ADVANCE(115); END_STATE(); case 45: - if (lookahead == 's') ADVANCE(37); + if (lookahead == '{') ADVANCE(58); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(54); END_STATE(); case 46: - if (lookahead == 't') ADVANCE(36); + if (lookahead == '}') ADVANCE(115); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); END_STATE(); case 47: if (lookahead == '+' || lookahead == '-') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(75); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(78); END_STATE(); case 48: if (lookahead == '+' || lookahead == '-') ADVANCE(53); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(80); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(83); END_STATE(); case 49: if (lookahead == '0' || - lookahead == '1') ADVANCE(72); + lookahead == '1') ADVANCE(75); END_STATE(); case 50: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(70); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(73); END_STATE(); case 51: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(77); END_STATE(); case 52: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(75); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(78); END_STATE(); case 53: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(80); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(83); END_STATE(); case 54: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(59); END_STATE(); case 55: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(78); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); END_STATE(); case 56: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(9); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(70); END_STATE(); case 57: - if (lookahead != 0) ADVANCE(13); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(81); END_STATE(); case 58: - if (lookahead != 0) ADVANCE(8); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); END_STATE(); case 59: - if (eof) ADVANCE(61); - if (lookahead == '!') ADVANCE(145); - if (lookahead == '"') ADVANCE(7); - if (lookahead == '%') ADVANCE(131); - if (lookahead == '&') ADVANCE(89); - if (lookahead == '\'') ADVANCE(25); - if (lookahead == '(') ADVANCE(87); - if (lookahead == ')') ADVANCE(91); - if (lookahead == '*') ADVANCE(122); - if (lookahead == '+') ADVANCE(117); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(121); - if (lookahead == '.') ADVANCE(154); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(63); - if (lookahead == ':') ADVANCE(143); - if (lookahead == ';') ADVANCE(158); - if (lookahead == '<') ADVANCE(110); - if (lookahead == '=') ADVANCE(24); - if (lookahead == '>') ADVANCE(107); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '@') ADVANCE(160); - if (lookahead == '[') ADVANCE(149); - if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(129); - if (lookahead == 'n') ADVANCE(166); - if (lookahead == '{') ADVANCE(156); - if (lookahead == '|') ADVANCE(128); - if (lookahead == '}') ADVANCE(157); - if (lookahead == '~') ADVANCE(146); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(55); + END_STATE(); + case 60: + if (lookahead != 0) ADVANCE(9); + END_STATE(); + case 61: + if (eof) ADVANCE(64); + if (lookahead == '!') ADVANCE(178); + if (lookahead == '"') ADVANCE(88); + if (lookahead == '%') ADVANCE(165); + if (lookahead == '&') ADVANCE(123); + if (lookahead == '\'') ADVANCE(21); + if (lookahead == '(') ADVANCE(120); + if (lookahead == ')') ADVANCE(124); + if (lookahead == '*') ADVANCE(156); + if (lookahead == '+') ADVANCE(151); + if (lookahead == ',') ADVANCE(173); + if (lookahead == '-') ADVANCE(153); + if (lookahead == '.') ADVANCE(186); + if (lookahead == '/') ADVANCE(158); + if (lookahead == '0') ADVANCE(66); + if (lookahead == ':') ADVANCE(176); + if (lookahead == ';') ADVANCE(191); + if (lookahead == '<') ADVANCE(142); + if (lookahead == '=') ADVANCE(126); + if (lookahead == '>') ADVANCE(139); + if (lookahead == '?') ADVANCE(174); + if (lookahead == '@') ADVANCE(193); + if (lookahead == '[') ADVANCE(182); + if (lookahead == ']') ADVANCE(183); + if (lookahead == '^') ADVANCE(163); + if (lookahead == 'n') ADVANCE(199); + if (lookahead == '{') ADVANCE(189); + if (lookahead == '|') ADVANCE(160); + if (lookahead == '}') ADVANCE(190); + if (lookahead == '~') ADVANCE(179); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(59) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(64); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(167); + lookahead == ' ') SKIP(61) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(67); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(200); END_STATE(); - case 60: - if (eof) ADVANCE(61); - if (lookahead == '!') ADVANCE(145); - if (lookahead == '"') ADVANCE(7); - if (lookahead == '%') ADVANCE(131); - if (lookahead == '&') ADVANCE(89); - if (lookahead == '\'') ADVANCE(25); - if (lookahead == '(') ADVANCE(87); - if (lookahead == ')') ADVANCE(91); - if (lookahead == '*') ADVANCE(122); - if (lookahead == '+') ADVANCE(117); - if (lookahead == ',') ADVANCE(140); - if (lookahead == '-') ADVANCE(121); + case 62: + if (eof) ADVANCE(64); + if (lookahead == '!') ADVANCE(178); + if (lookahead == '"') ADVANCE(88); + if (lookahead == '%') ADVANCE(164); + if (lookahead == '&') ADVANCE(122); + if (lookahead == '\'') ADVANCE(21); + if (lookahead == '(') ADVANCE(120); + if (lookahead == ')') ADVANCE(124); + if (lookahead == '*') ADVANCE(155); + if (lookahead == '+') ADVANCE(150); + if (lookahead == ',') ADVANCE(173); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '.') ADVANCE(187); + if (lookahead == '/') ADVANCE(157); + if (lookahead == '0') ADVANCE(66); + if (lookahead == ':') ADVANCE(176); + if (lookahead == ';') ADVANCE(191); + if (lookahead == '<') ADVANCE(143); + if (lookahead == '=') ADVANCE(20); + if (lookahead == '>') ADVANCE(140); + if (lookahead == '?') ADVANCE(174); + if (lookahead == '@') ADVANCE(193); + if (lookahead == '[') ADVANCE(182); + if (lookahead == ']') ADVANCE(183); + if (lookahead == '^') ADVANCE(162); + if (lookahead == 'n') ADVANCE(199); + if (lookahead == '{') ADVANCE(189); + if (lookahead == '|') ADVANCE(161); + if (lookahead == '}') ADVANCE(190); + if (lookahead == '~') ADVANCE(179); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(62) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(67); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(200); + END_STATE(); + case 63: + if (eof) ADVANCE(64); + if (lookahead == '!') ADVANCE(178); + if (lookahead == '"') ADVANCE(88); + if (lookahead == '%') ADVANCE(164); + if (lookahead == '&') ADVANCE(122); + if (lookahead == '\'') ADVANCE(21); + if (lookahead == '(') ADVANCE(120); + if (lookahead == ')') ADVANCE(124); + if (lookahead == '*') ADVANCE(155); + if (lookahead == '+') ADVANCE(150); + if (lookahead == ',') ADVANCE(173); + if (lookahead == '-') ADVANCE(154); if (lookahead == '.') ADVANCE(51); - if (lookahead == '/') ADVANCE(124); - if (lookahead == '0') ADVANCE(63); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(158); - if (lookahead == '<') ADVANCE(110); - if (lookahead == '=') ADVANCE(24); - if (lookahead == '>') ADVANCE(107); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '@') ADVANCE(160); - if (lookahead == ']') ADVANCE(150); - if (lookahead == '^') ADVANCE(129); - if (lookahead == 'n') ADVANCE(166); - if (lookahead == '{') ADVANCE(156); - if (lookahead == '|') ADVANCE(128); - if (lookahead == '}') ADVANCE(157); - if (lookahead == '~') ADVANCE(146); + if (lookahead == '/') ADVANCE(157); + if (lookahead == '0') ADVANCE(66); + if (lookahead == ':') ADVANCE(175); + if (lookahead == ';') ADVANCE(191); + if (lookahead == '<') ADVANCE(143); + if (lookahead == '=') ADVANCE(20); + if (lookahead == '>') ADVANCE(140); + if (lookahead == '?') ADVANCE(174); + if (lookahead == '@') ADVANCE(193); + if (lookahead == ']') ADVANCE(183); + if (lookahead == '^') ADVANCE(162); + if (lookahead == 'n') ADVANCE(199); + if (lookahead == '{') ADVANCE(189); + if (lookahead == '|') ADVANCE(161); + if (lookahead == '}') ADVANCE(190); + if (lookahead == '~') ADVANCE(179); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(60) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(64); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(167); + lookahead == ' ') SKIP(63) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(67); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(200); END_STATE(); - case 61: + case 64: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 62: + case 65: ACCEPT_TOKEN(sym_decimal_integer_literal); END_STATE(); - case 63: + case 66: ACCEPT_TOKEN(sym_decimal_integer_literal); - if (lookahead == '.') ADVANCE(76); + if (lookahead == '.') ADVANCE(79); if (lookahead == 'B' || lookahead == 'b') ADVANCE(49); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(62); + lookahead == 'l') ADVANCE(65); if (lookahead == 'O' || lookahead == 'o') ADVANCE(50); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(21); - if (lookahead == '_') ADVANCE(26); + lookahead == 'x') ADVANCE(17); + if (lookahead == '_') ADVANCE(22); if (lookahead == 'E' || lookahead == 'e') ADVANCE(47); if (lookahead == 'P' || lookahead == 'p') ADVANCE(47); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(73); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(64); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(76); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(67); END_STATE(); - case 64: + case 67: ACCEPT_TOKEN(sym_decimal_integer_literal); - if (lookahead == '.') ADVANCE(76); + if (lookahead == '.') ADVANCE(79); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(62); - if (lookahead == '_') ADVANCE(26); + lookahead == 'l') ADVANCE(65); + if (lookahead == '_') ADVANCE(22); if (lookahead == 'E' || lookahead == 'e') ADVANCE(47); if (lookahead == 'P' || lookahead == 'p') ADVANCE(47); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(73); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(64); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(76); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(67); END_STATE(); - case 65: + case 68: ACCEPT_TOKEN(sym_hex_integer_literal); END_STATE(); - case 66: + case 69: ACCEPT_TOKEN(sym_hex_integer_literal); - if (lookahead == '.') ADVANCE(82); + if (lookahead == '.') ADVANCE(85); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(65); - if (lookahead == '_') ADVANCE(29); + lookahead == 'l') ADVANCE(68); + if (lookahead == '_') ADVANCE(25); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(68); + lookahead == 'e') ADVANCE(71); if (lookahead == 'P' || lookahead == 'p') ADVANCE(48); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(67); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(70); if (('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(67); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(66); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(70); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(69); END_STATE(); - case 67: + case 70: ACCEPT_TOKEN(sym_hex_integer_literal); - if (lookahead == '.') ADVANCE(82); + if (lookahead == '.') ADVANCE(85); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(65); - if (lookahead == '_') ADVANCE(54); + lookahead == 'l') ADVANCE(68); + if (lookahead == '_') ADVANCE(56); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(68); + lookahead == 'e') ADVANCE(71); if (lookahead == 'P' || lookahead == 'p') ADVANCE(48); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(70); END_STATE(); - case 68: + case 71: ACCEPT_TOKEN(sym_hex_integer_literal); if (lookahead == '+' || lookahead == '-') ADVANCE(53); - if (lookahead == '.') ADVANCE(82); + if (lookahead == '.') ADVANCE(85); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(65); - if (lookahead == '_') ADVANCE(54); + lookahead == 'l') ADVANCE(68); + if (lookahead == '_') ADVANCE(56); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(68); + lookahead == 'e') ADVANCE(71); if (lookahead == 'P' || lookahead == 'p') ADVANCE(48); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(66); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(70); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(69); END_STATE(); - case 69: + case 72: ACCEPT_TOKEN(sym_octal_integer_literal); END_STATE(); - case 70: + case 73: ACCEPT_TOKEN(sym_octal_integer_literal); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(69); + lookahead == 'l') ADVANCE(72); if (lookahead == '_') ADVANCE(50); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(70); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(73); END_STATE(); - case 71: + case 74: ACCEPT_TOKEN(sym_binary_integer_literal); END_STATE(); - case 72: + case 75: ACCEPT_TOKEN(sym_binary_integer_literal); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(71); + lookahead == 'l') ADVANCE(74); if (lookahead == '_') ADVANCE(49); if (lookahead == '0' || - lookahead == '1') ADVANCE(72); + lookahead == '1') ADVANCE(75); END_STATE(); - case 73: + case 76: ACCEPT_TOKEN(sym_decimal_floating_point_literal); END_STATE(); - case 74: + case 77: ACCEPT_TOKEN(sym_decimal_floating_point_literal); - if (lookahead == '_') ADVANCE(27); + if (lookahead == '_') ADVANCE(23); if (lookahead == 'E' || lookahead == 'e') ADVANCE(47); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(73); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(76); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(77); END_STATE(); - case 75: + case 78: ACCEPT_TOKEN(sym_decimal_floating_point_literal); - if (lookahead == '_') ADVANCE(28); + if (lookahead == '_') ADVANCE(24); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'd' || - lookahead == 'f') ADVANCE(73); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(75); + lookahead == 'f') ADVANCE(76); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(78); END_STATE(); - case 76: + case 79: ACCEPT_TOKEN(sym_decimal_floating_point_literal); if (lookahead == 'E' || lookahead == 'e') ADVANCE(47); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(73); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(76); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(77); END_STATE(); - case 77: + case 80: ACCEPT_TOKEN(sym_hex_floating_point_literal); END_STATE(); - case 78: + case 81: ACCEPT_TOKEN(sym_hex_floating_point_literal); - if (lookahead == '_') ADVANCE(55); + if (lookahead == '_') ADVANCE(57); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(81); + lookahead == 'e') ADVANCE(84); if (lookahead == 'P' || lookahead == 'p') ADVANCE(48); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(78); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(81); END_STATE(); - case 79: + case 82: ACCEPT_TOKEN(sym_hex_floating_point_literal); - if (lookahead == '_') ADVANCE(31); + if (lookahead == '_') ADVANCE(27); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(81); + lookahead == 'e') ADVANCE(84); if (lookahead == 'P' || lookahead == 'p') ADVANCE(48); if (('D' <= lookahead && lookahead <= 'F') || - ('d' <= lookahead && lookahead <= 'f')) ADVANCE(78); + ('d' <= lookahead && lookahead <= 'f')) ADVANCE(81); if (('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(78); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(79); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(81); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(82); END_STATE(); - case 80: + case 83: ACCEPT_TOKEN(sym_hex_floating_point_literal); - if (lookahead == '_') ADVANCE(30); + if (lookahead == '_') ADVANCE(26); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'd' || - lookahead == 'f') ADVANCE(77); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(80); + lookahead == 'f') ADVANCE(80); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(83); END_STATE(); - case 81: + case 84: ACCEPT_TOKEN(sym_hex_floating_point_literal); if (lookahead == '+' || lookahead == '-') ADVANCE(53); - if (lookahead == '_') ADVANCE(55); + if (lookahead == '_') ADVANCE(57); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(81); + lookahead == 'e') ADVANCE(84); if (lookahead == 'P' || lookahead == 'p') ADVANCE(48); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(78); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(79); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(81); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(82); END_STATE(); - case 82: + case 85: ACCEPT_TOKEN(sym_hex_floating_point_literal); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(81); + lookahead == 'e') ADVANCE(84); if (lookahead == 'P' || lookahead == 'p') ADVANCE(48); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(78); - END_STATE(); - case 83: - ACCEPT_TOKEN(sym_character_literal); - END_STATE(); - case 84: - ACCEPT_TOKEN(sym_string_literal); - END_STATE(); - case 85: - ACCEPT_TOKEN(sym_string_literal); - if (lookahead == '"') ADVANCE(2); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(81); END_STATE(); case 86: - ACCEPT_TOKEN(sym_text_block); + ACCEPT_TOKEN(sym_character_literal); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_DQUOTE); + if (lookahead == '"') ADVANCE(5); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE_DQUOTE); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(115); - if (lookahead == '=') ADVANCE(98); + ACCEPT_TOKEN(sym_string_fragment); + if (lookahead == '\n') ADVANCE(95); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(90); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(sym_string_fragment); + if (lookahead == '*') ADVANCE(93); + if (lookahead == '/') ADVANCE(90); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(95); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(sym_string_fragment); + if (lookahead == '*') ADVANCE(92); + if (lookahead == '/') ADVANCE(95); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(93); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(113); + ACCEPT_TOKEN(sym_string_fragment); + if (lookahead == '*') ADVANCE(92); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(93); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(sym_string_fragment); + if (lookahead == '/') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(94); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(95); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(sym_string_fragment); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(95); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); + if (lookahead == '\n') ADVANCE(108); + if (lookahead == '"') ADVANCE(201); + if (lookahead != 0) ADVANCE(96); END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); + if (lookahead == '"') ADVANCE(14); + if (lookahead == '*') ADVANCE(97); + if (lookahead == '/') ADVANCE(108); + if (lookahead != 0) ADVANCE(98); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); + if (lookahead == '"') ADVANCE(14); + if (lookahead == '*') ADVANCE(97); + if (lookahead != 0) ADVANCE(98); END_STATE(); case 99: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); + if (lookahead == '"') ADVANCE(115); + if (lookahead == 'u') ADVANCE(102); + if (lookahead == 'x') ADVANCE(107); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(113); + if (lookahead == '\'' || + lookahead == '?' || + lookahead == '\\' || + lookahead == 'a' || + lookahead == 'b' || + lookahead == 'f' || + lookahead == 'n' || + lookahead == 'r' || + ('t' <= lookahead && lookahead <= 'v')) ADVANCE(119); + if (lookahead != 0) ADVANCE(114); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); + if (lookahead == '*') ADVANCE(98); + if (lookahead == '/') ADVANCE(96); + if (lookahead != 0 && + lookahead != '"') ADVANCE(108); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); + if (lookahead == '/') ADVANCE(100); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(101); + if (lookahead != 0 && + lookahead != '"') ADVANCE(108); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); + if (lookahead == '{') ADVANCE(106); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(104); + if (lookahead != 0 && + lookahead != '"') ADVANCE(108); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); + if (lookahead == '}') ADVANCE(119); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(103); + if (lookahead != 0 && + lookahead != '"') ADVANCE(108); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(107); + if (lookahead != 0 && + lookahead != '"') ADVANCE(108); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(119); + if (lookahead != 0 && + lookahead != '"') ADVANCE(108); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(111); - if (lookahead == '>') ADVANCE(135); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(103); + if (lookahead != 0 && + lookahead != '"') ADVANCE(108); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(111); - if (lookahead == '>') ADVANCE(136); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(105); + if (lookahead != 0 && + lookahead != '"') ADVANCE(108); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token1); + if (lookahead != 0 && + lookahead != '"') ADVANCE(108); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(134); - if (lookahead == '=') ADVANCE(112); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token2); + if (lookahead == '"') ADVANCE(5); + if (lookahead != 0) ADVANCE(110); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(133); - if (lookahead == '=') ADVANCE(112); + ACCEPT_TOKEN(aux_sym__multiline_string_fragment_token2); + if (lookahead != 0 && + lookahead != '"') ADVANCE(110); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(aux_sym__escape_sequence_token1); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(aux_sym__escape_sequence_token1); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(116); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(aux_sym__escape_sequence_token1); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(118); + if (lookahead != 0 && + lookahead != '"') ADVANCE(108); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(aux_sym__escape_sequence_token1); + if (lookahead != 0 && + lookahead != '"') ADVANCE(108); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(115); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(147); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(116); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(147); - if (lookahead == '=') ADVANCE(94); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(119); + if (lookahead != 0 && + lookahead != '"') ADVANCE(108); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(148); + ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead != 0 && + lookahead != '"') ADVANCE(108); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(148); - if (lookahead == '=') ADVANCE(95); - if (lookahead == '>') ADVANCE(139); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(148); - if (lookahead == '>') ADVANCE(139); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(148); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(96); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(148); + if (lookahead == '=') ADVANCE(131); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(18); - if (lookahead == '/') ADVANCE(168); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(18); - if (lookahead == '/') ADVANCE(168); - if (lookahead == '=') ADVANCE(97); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(146); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(99); - if (lookahead == '|') ADVANCE(116); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(116); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(100); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(101); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(102); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(103); - if (lookahead == '>') ADVANCE(138); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(137); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); + ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(104); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(144); + if (lookahead == '>') ADVANCE(168); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(144); + if (lookahead == '>') ADVANCE(169); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(167); + if (lookahead == '=') ADVANCE(145); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(155); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(166); + if (lookahead == '=') ADVANCE(145); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(114); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(180); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(180); + if (lookahead == '=') ADVANCE(127); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(20); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(181); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(20); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(181); + if (lookahead == '=') ADVANCE(128); + if (lookahead == '>') ADVANCE(172); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(181); + if (lookahead == '>') ADVANCE(172); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(129); END_STATE(); case 157: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(14); + if (lookahead == '/') ADVANCE(201); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(14); + if (lookahead == '/') ADVANCE(201); + if (lookahead == '=') ADVANCE(130); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == 'i') ADVANCE(43); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(132); + if (lookahead == '|') ADVANCE(149); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_non_DASHsealed); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(149); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_ATinterface); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(133); END_STATE(); case 164: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(45); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(167); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 165: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(164); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(167); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(134); END_STATE(); case 166: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(165); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(167); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 167: - ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(167); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(135); END_STATE(); case 168: - ACCEPT_TOKEN(sym_line_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(168); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(136); + if (lookahead == '>') ADVANCE(171); END_STATE(); case 169: - ACCEPT_TOKEN(sym_block_comment); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '>') ADVANCE(170); END_STATE(); - default: - return false; - } -} - -static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (lookahead == 'a') ADVANCE(1); - if (lookahead == 'b') ADVANCE(2); - if (lookahead == 'c') ADVANCE(3); - if (lookahead == 'd') ADVANCE(4); - if (lookahead == 'e') ADVANCE(5); - if (lookahead == 'f') ADVANCE(6); - if (lookahead == 'i') ADVANCE(7); - if (lookahead == 'l') ADVANCE(8); - if (lookahead == 'm') ADVANCE(9); - if (lookahead == 'n') ADVANCE(10); - if (lookahead == 'o') ADVANCE(11); - if (lookahead == 'p') ADVANCE(12); - if (lookahead == 'r') ADVANCE(13); - if (lookahead == 's') ADVANCE(14); - if (lookahead == 't') ADVANCE(15); - if (lookahead == 'u') ADVANCE(16); - if (lookahead == 'v') ADVANCE(17); - if (lookahead == 'w') ADVANCE(18); - if (lookahead == 'y') ADVANCE(19); - if (lookahead == '\t' || - lookahead == '\n' || + case 170: + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + END_STATE(); + case 171: + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + if (lookahead == '=') ADVANCE(137); + END_STATE(); + case 172: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 173: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 174: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + case 175: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 176: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(188); + END_STATE(); + case 177: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 178: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(147); + END_STATE(); + case 179: + ACCEPT_TOKEN(anon_sym_TILDE); + END_STATE(); + case 180: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + END_STATE(); + case 181: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + END_STATE(); + case 182: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 183: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 184: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 185: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(16); + END_STATE(); + case 186: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(16); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(77); + END_STATE(); + case 187: + ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(77); + END_STATE(); + case 188: + ACCEPT_TOKEN(anon_sym_COLON_COLON); + END_STATE(); + case 189: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 190: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 191: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 192: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 193: + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == 'i') ADVANCE(39); + END_STATE(); + case 194: + ACCEPT_TOKEN(anon_sym_non_DASHsealed); + END_STATE(); + case 195: + ACCEPT_TOKEN(anon_sym_ATinterface); + END_STATE(); + case 196: + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + END_STATE(); + case 197: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '-') ADVANCE(41); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(200); + END_STATE(); + case 198: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(197); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(200); + END_STATE(); + case 199: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(198); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(200); + END_STATE(); + case 200: + ACCEPT_TOKEN(sym_identifier); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(200); + END_STATE(); + case 201: + ACCEPT_TOKEN(sym_line_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(201); + END_STATE(); + case 202: + ACCEPT_TOKEN(sym_block_comment); + END_STATE(); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (lookahead == 'a') ADVANCE(1); + if (lookahead == 'b') ADVANCE(2); + if (lookahead == 'c') ADVANCE(3); + if (lookahead == 'd') ADVANCE(4); + if (lookahead == 'e') ADVANCE(5); + if (lookahead == 'f') ADVANCE(6); + if (lookahead == 'i') ADVANCE(7); + if (lookahead == 'l') ADVANCE(8); + if (lookahead == 'm') ADVANCE(9); + if (lookahead == 'n') ADVANCE(10); + if (lookahead == 'o') ADVANCE(11); + if (lookahead == 'p') ADVANCE(12); + if (lookahead == 'r') ADVANCE(13); + if (lookahead == 's') ADVANCE(14); + if (lookahead == 't') ADVANCE(15); + if (lookahead == 'u') ADVANCE(16); + if (lookahead == 'v') ADVANCE(17); + if (lookahead == 'w') ADVANCE(18); + if (lookahead == 'y') ADVANCE(19); + if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) END_STATE(); @@ -6749,1152 +9032,1302 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 60}, - [2] = {.lex_state = 60}, - [3] = {.lex_state = 60}, - [4] = {.lex_state = 60}, - [5] = {.lex_state = 60}, - [6] = {.lex_state = 60}, - [7] = {.lex_state = 60}, - [8] = {.lex_state = 60}, - [9] = {.lex_state = 60}, - [10] = {.lex_state = 60}, - [11] = {.lex_state = 60}, - [12] = {.lex_state = 60}, - [13] = {.lex_state = 60}, - [14] = {.lex_state = 60}, - [15] = {.lex_state = 60}, - [16] = {.lex_state = 60}, - [17] = {.lex_state = 60}, - [18] = {.lex_state = 60}, - [19] = {.lex_state = 60}, - [20] = {.lex_state = 60}, - [21] = {.lex_state = 60}, - [22] = {.lex_state = 60}, - [23] = {.lex_state = 60}, - [24] = {.lex_state = 60}, - [25] = {.lex_state = 60}, - [26] = {.lex_state = 60}, - [27] = {.lex_state = 60}, - [28] = {.lex_state = 60}, - [29] = {.lex_state = 60}, - [30] = {.lex_state = 60}, - [31] = {.lex_state = 60}, - [32] = {.lex_state = 60}, - [33] = {.lex_state = 60}, - [34] = {.lex_state = 60}, - [35] = {.lex_state = 60}, - [36] = {.lex_state = 60}, - [37] = {.lex_state = 60}, - [38] = {.lex_state = 60}, - [39] = {.lex_state = 60}, - [40] = {.lex_state = 60}, - [41] = {.lex_state = 60}, - [42] = {.lex_state = 60}, - [43] = {.lex_state = 60}, - [44] = {.lex_state = 60}, - [45] = {.lex_state = 59}, - [46] = {.lex_state = 59}, - [47] = {.lex_state = 60}, - [48] = {.lex_state = 60}, - [49] = {.lex_state = 60}, - [50] = {.lex_state = 60}, - [51] = {.lex_state = 60}, - [52] = {.lex_state = 59}, - [53] = {.lex_state = 60}, - [54] = {.lex_state = 4}, - [55] = {.lex_state = 4}, - [56] = {.lex_state = 4}, - [57] = {.lex_state = 60}, - [58] = {.lex_state = 60}, - [59] = {.lex_state = 60}, - [60] = {.lex_state = 60}, - [61] = {.lex_state = 3}, - [62] = {.lex_state = 3}, - [63] = {.lex_state = 3}, - [64] = {.lex_state = 3}, - [65] = {.lex_state = 3}, - [66] = {.lex_state = 60}, - [67] = {.lex_state = 60}, - [68] = {.lex_state = 60}, - [69] = {.lex_state = 60}, - [70] = {.lex_state = 60}, - [71] = {.lex_state = 60}, - [72] = {.lex_state = 60}, - [73] = {.lex_state = 60}, - [74] = {.lex_state = 60}, - [75] = {.lex_state = 60}, - [76] = {.lex_state = 60}, - [77] = {.lex_state = 60}, - [78] = {.lex_state = 60}, - [79] = {.lex_state = 60}, - [80] = {.lex_state = 3}, - [81] = {.lex_state = 60}, - [82] = {.lex_state = 60}, - [83] = {.lex_state = 60}, - [84] = {.lex_state = 60}, - [85] = {.lex_state = 60}, - [86] = {.lex_state = 60}, - [87] = {.lex_state = 60}, - [88] = {.lex_state = 60}, - [89] = {.lex_state = 60}, - [90] = {.lex_state = 60}, - [91] = {.lex_state = 60}, - [92] = {.lex_state = 60}, - [93] = {.lex_state = 60}, - [94] = {.lex_state = 60}, - [95] = {.lex_state = 60}, - [96] = {.lex_state = 60}, - [97] = {.lex_state = 60}, - [98] = {.lex_state = 60}, - [99] = {.lex_state = 60}, - [100] = {.lex_state = 60}, - [101] = {.lex_state = 60}, - [102] = {.lex_state = 60}, - [103] = {.lex_state = 60}, - [104] = {.lex_state = 60}, - [105] = {.lex_state = 60}, - [106] = {.lex_state = 60}, - [107] = {.lex_state = 60}, - [108] = {.lex_state = 3}, - [109] = {.lex_state = 60}, - [110] = {.lex_state = 60}, - [111] = {.lex_state = 60}, - [112] = {.lex_state = 60}, - [113] = {.lex_state = 60}, - [114] = {.lex_state = 60}, - [115] = {.lex_state = 60}, - [116] = {.lex_state = 60}, - [117] = {.lex_state = 60}, - [118] = {.lex_state = 3}, - [119] = {.lex_state = 60}, - [120] = {.lex_state = 60}, - [121] = {.lex_state = 60}, - [122] = {.lex_state = 60}, - [123] = {.lex_state = 60}, - [124] = {.lex_state = 60}, - [125] = {.lex_state = 60}, - [126] = {.lex_state = 60}, - [127] = {.lex_state = 60}, - [128] = {.lex_state = 60}, - [129] = {.lex_state = 60}, - [130] = {.lex_state = 60}, - [131] = {.lex_state = 60}, - [132] = {.lex_state = 60}, - [133] = {.lex_state = 60}, - [134] = {.lex_state = 60}, - [135] = {.lex_state = 3}, - [136] = {.lex_state = 3}, - [137] = {.lex_state = 3}, - [138] = {.lex_state = 3}, - [139] = {.lex_state = 3}, - [140] = {.lex_state = 3}, - [141] = {.lex_state = 60}, - [142] = {.lex_state = 60}, - [143] = {.lex_state = 60}, - [144] = {.lex_state = 60}, - [145] = {.lex_state = 60}, - [146] = {.lex_state = 60}, - [147] = {.lex_state = 60}, - [148] = {.lex_state = 60}, - [149] = {.lex_state = 60}, - [150] = {.lex_state = 60}, - [151] = {.lex_state = 60}, - [152] = {.lex_state = 60}, - [153] = {.lex_state = 60}, - [154] = {.lex_state = 60}, - [155] = {.lex_state = 60}, - [156] = {.lex_state = 60}, - [157] = {.lex_state = 60}, - [158] = {.lex_state = 60}, - [159] = {.lex_state = 60}, - [160] = {.lex_state = 60}, - [161] = {.lex_state = 60}, - [162] = {.lex_state = 60}, - [163] = {.lex_state = 60}, - [164] = {.lex_state = 60}, - [165] = {.lex_state = 60}, - [166] = {.lex_state = 60}, - [167] = {.lex_state = 60}, - [168] = {.lex_state = 3}, - [169] = {.lex_state = 60}, - [170] = {.lex_state = 60}, - [171] = {.lex_state = 60}, - [172] = {.lex_state = 60}, - [173] = {.lex_state = 60}, - [174] = {.lex_state = 60}, - [175] = {.lex_state = 60}, - [176] = {.lex_state = 60}, - [177] = {.lex_state = 60}, - [178] = {.lex_state = 60}, - [179] = {.lex_state = 60}, - [180] = {.lex_state = 60}, - [181] = {.lex_state = 60}, - [182] = {.lex_state = 60}, - [183] = {.lex_state = 3}, - [184] = {.lex_state = 60}, - [185] = {.lex_state = 60}, - [186] = {.lex_state = 60}, - [187] = {.lex_state = 3}, - [188] = {.lex_state = 60}, - [189] = {.lex_state = 60}, - [190] = {.lex_state = 60}, - [191] = {.lex_state = 60}, - [192] = {.lex_state = 60}, - [193] = {.lex_state = 3}, - [194] = {.lex_state = 60}, - [195] = {.lex_state = 60}, - [196] = {.lex_state = 60}, - [197] = {.lex_state = 60}, - [198] = {.lex_state = 60}, - [199] = {.lex_state = 60}, - [200] = {.lex_state = 60}, - [201] = {.lex_state = 60}, - [202] = {.lex_state = 60}, - [203] = {.lex_state = 60}, - [204] = {.lex_state = 60}, - [205] = {.lex_state = 60}, - [206] = {.lex_state = 60}, - [207] = {.lex_state = 60}, - [208] = {.lex_state = 60}, - [209] = {.lex_state = 60}, - [210] = {.lex_state = 60}, - [211] = {.lex_state = 60}, - [212] = {.lex_state = 60}, - [213] = {.lex_state = 60}, - [214] = {.lex_state = 60}, - [215] = {.lex_state = 60}, - [216] = {.lex_state = 60}, - [217] = {.lex_state = 60}, - [218] = {.lex_state = 3}, - [219] = {.lex_state = 3}, - [220] = {.lex_state = 3}, - [221] = {.lex_state = 3}, - [222] = {.lex_state = 3}, - [223] = {.lex_state = 3}, - [224] = {.lex_state = 3}, - [225] = {.lex_state = 3}, - [226] = {.lex_state = 3}, - [227] = {.lex_state = 3}, - [228] = {.lex_state = 3}, - [229] = {.lex_state = 3}, - [230] = {.lex_state = 3}, - [231] = {.lex_state = 3}, - [232] = {.lex_state = 3}, - [233] = {.lex_state = 3}, - [234] = {.lex_state = 3}, - [235] = {.lex_state = 3}, - [236] = {.lex_state = 3}, - [237] = {.lex_state = 3}, - [238] = {.lex_state = 3}, - [239] = {.lex_state = 3}, - [240] = {.lex_state = 3}, - [241] = {.lex_state = 3}, - [242] = {.lex_state = 3}, - [243] = {.lex_state = 3}, - [244] = {.lex_state = 3}, - [245] = {.lex_state = 3}, - [246] = {.lex_state = 3}, - [247] = {.lex_state = 3}, - [248] = {.lex_state = 3}, - [249] = {.lex_state = 3}, - [250] = {.lex_state = 3}, - [251] = {.lex_state = 3}, - [252] = {.lex_state = 3}, - [253] = {.lex_state = 3}, - [254] = {.lex_state = 3}, - [255] = {.lex_state = 3}, - [256] = {.lex_state = 3}, - [257] = {.lex_state = 3}, - [258] = {.lex_state = 3}, - [259] = {.lex_state = 3}, - [260] = {.lex_state = 3}, - [261] = {.lex_state = 3}, - [262] = {.lex_state = 3}, - [263] = {.lex_state = 3}, - [264] = {.lex_state = 3}, - [265] = {.lex_state = 3}, - [266] = {.lex_state = 3}, - [267] = {.lex_state = 3}, - [268] = {.lex_state = 3}, - [269] = {.lex_state = 3}, - [270] = {.lex_state = 3}, - [271] = {.lex_state = 3}, - [272] = {.lex_state = 60}, - [273] = {.lex_state = 3}, - [274] = {.lex_state = 3}, - [275] = {.lex_state = 3}, - [276] = {.lex_state = 3}, - [277] = {.lex_state = 3}, - [278] = {.lex_state = 3}, - [279] = {.lex_state = 3}, - [280] = {.lex_state = 3}, - [281] = {.lex_state = 3}, - [282] = {.lex_state = 3}, - [283] = {.lex_state = 3}, - [284] = {.lex_state = 3}, - [285] = {.lex_state = 3}, - [286] = {.lex_state = 3}, - [287] = {.lex_state = 3}, - [288] = {.lex_state = 3}, - [289] = {.lex_state = 3}, - [290] = {.lex_state = 3}, - [291] = {.lex_state = 4}, - [292] = {.lex_state = 60}, - [293] = {.lex_state = 60}, - [294] = {.lex_state = 4}, - [295] = {.lex_state = 60}, - [296] = {.lex_state = 60}, - [297] = {.lex_state = 4}, - [298] = {.lex_state = 4}, - [299] = {.lex_state = 0}, - [300] = {.lex_state = 0}, - [301] = {.lex_state = 0}, - [302] = {.lex_state = 0}, - [303] = {.lex_state = 0}, - [304] = {.lex_state = 0}, - [305] = {.lex_state = 5}, - [306] = {.lex_state = 0}, - [307] = {.lex_state = 0}, - [308] = {.lex_state = 5}, - [309] = {.lex_state = 5}, - [310] = {.lex_state = 5}, - [311] = {.lex_state = 5}, - [312] = {.lex_state = 5}, - [313] = {.lex_state = 5}, - [314] = {.lex_state = 5}, - [315] = {.lex_state = 0}, - [316] = {.lex_state = 0}, - [317] = {.lex_state = 0}, - [318] = {.lex_state = 5}, - [319] = {.lex_state = 5}, - [320] = {.lex_state = 5}, - [321] = {.lex_state = 5}, - [322] = {.lex_state = 5}, - [323] = {.lex_state = 5}, - [324] = {.lex_state = 5}, - [325] = {.lex_state = 5}, - [326] = {.lex_state = 6}, - [327] = {.lex_state = 6}, - [328] = {.lex_state = 5}, - [329] = {.lex_state = 5}, - [330] = {.lex_state = 14}, - [331] = {.lex_state = 14}, - [332] = {.lex_state = 4}, - [333] = {.lex_state = 6}, - [334] = {.lex_state = 6}, - [335] = {.lex_state = 4}, - [336] = {.lex_state = 6}, - [337] = {.lex_state = 3}, - [338] = {.lex_state = 4}, - [339] = {.lex_state = 3}, - [340] = {.lex_state = 4}, - [341] = {.lex_state = 14}, - [342] = {.lex_state = 14}, - [343] = {.lex_state = 3}, - [344] = {.lex_state = 3}, - [345] = {.lex_state = 6}, - [346] = {.lex_state = 6}, - [347] = {.lex_state = 6}, - [348] = {.lex_state = 0}, - [349] = {.lex_state = 6}, - [350] = {.lex_state = 0}, - [351] = {.lex_state = 0}, - [352] = {.lex_state = 0}, - [353] = {.lex_state = 0}, + [1] = {.lex_state = 63}, + [2] = {.lex_state = 63}, + [3] = {.lex_state = 63}, + [4] = {.lex_state = 63}, + [5] = {.lex_state = 63}, + [6] = {.lex_state = 63}, + [7] = {.lex_state = 63}, + [8] = {.lex_state = 63}, + [9] = {.lex_state = 63}, + [10] = {.lex_state = 63}, + [11] = {.lex_state = 63}, + [12] = {.lex_state = 63}, + [13] = {.lex_state = 63}, + [14] = {.lex_state = 63}, + [15] = {.lex_state = 63}, + [16] = {.lex_state = 63}, + [17] = {.lex_state = 63}, + [18] = {.lex_state = 63}, + [19] = {.lex_state = 63}, + [20] = {.lex_state = 63}, + [21] = {.lex_state = 63}, + [22] = {.lex_state = 63}, + [23] = {.lex_state = 63}, + [24] = {.lex_state = 63}, + [25] = {.lex_state = 63}, + [26] = {.lex_state = 63}, + [27] = {.lex_state = 63}, + [28] = {.lex_state = 63}, + [29] = {.lex_state = 63}, + [30] = {.lex_state = 63}, + [31] = {.lex_state = 63}, + [32] = {.lex_state = 63}, + [33] = {.lex_state = 63}, + [34] = {.lex_state = 63}, + [35] = {.lex_state = 63}, + [36] = {.lex_state = 63}, + [37] = {.lex_state = 63}, + [38] = {.lex_state = 63}, + [39] = {.lex_state = 63}, + [40] = {.lex_state = 63}, + [41] = {.lex_state = 63}, + [42] = {.lex_state = 63}, + [43] = {.lex_state = 63}, + [44] = {.lex_state = 63}, + [45] = {.lex_state = 63}, + [46] = {.lex_state = 63}, + [47] = {.lex_state = 63}, + [48] = {.lex_state = 63}, + [49] = {.lex_state = 63}, + [50] = {.lex_state = 63}, + [51] = {.lex_state = 63}, + [52] = {.lex_state = 63}, + [53] = {.lex_state = 63}, + [54] = {.lex_state = 63}, + [55] = {.lex_state = 63}, + [56] = {.lex_state = 63}, + [57] = {.lex_state = 63}, + [58] = {.lex_state = 63}, + [59] = {.lex_state = 63}, + [60] = {.lex_state = 63}, + [61] = {.lex_state = 63}, + [62] = {.lex_state = 63}, + [63] = {.lex_state = 63}, + [64] = {.lex_state = 63}, + [65] = {.lex_state = 63}, + [66] = {.lex_state = 63}, + [67] = {.lex_state = 63}, + [68] = {.lex_state = 63}, + [69] = {.lex_state = 63}, + [70] = {.lex_state = 63}, + [71] = {.lex_state = 63}, + [72] = {.lex_state = 63}, + [73] = {.lex_state = 63}, + [74] = {.lex_state = 63}, + [75] = {.lex_state = 62}, + [76] = {.lex_state = 62}, + [77] = {.lex_state = 63}, + [78] = {.lex_state = 63}, + [79] = {.lex_state = 62}, + [80] = {.lex_state = 63}, + [81] = {.lex_state = 63}, + [82] = {.lex_state = 63}, + [83] = {.lex_state = 2}, + [84] = {.lex_state = 2}, + [85] = {.lex_state = 2}, + [86] = {.lex_state = 63}, + [87] = {.lex_state = 2}, + [88] = {.lex_state = 1}, + [89] = {.lex_state = 1}, + [90] = {.lex_state = 1}, + [91] = {.lex_state = 1}, + [92] = {.lex_state = 1}, + [93] = {.lex_state = 63}, + [94] = {.lex_state = 1}, + [95] = {.lex_state = 1}, + [96] = {.lex_state = 63}, + [97] = {.lex_state = 63}, + [98] = {.lex_state = 1}, + [99] = {.lex_state = 1}, + [100] = {.lex_state = 63}, + [101] = {.lex_state = 1}, + [102] = {.lex_state = 1}, + [103] = {.lex_state = 1}, + [104] = {.lex_state = 1}, + [105] = {.lex_state = 1}, + [106] = {.lex_state = 1}, + [107] = {.lex_state = 1}, + [108] = {.lex_state = 1}, + [109] = {.lex_state = 1}, + [110] = {.lex_state = 1}, + [111] = {.lex_state = 1}, + [112] = {.lex_state = 1}, + [113] = {.lex_state = 1}, + [114] = {.lex_state = 1}, + [115] = {.lex_state = 1}, + [116] = {.lex_state = 1}, + [117] = {.lex_state = 1}, + [118] = {.lex_state = 1}, + [119] = {.lex_state = 1}, + [120] = {.lex_state = 1}, + [121] = {.lex_state = 1}, + [122] = {.lex_state = 1}, + [123] = {.lex_state = 1}, + [124] = {.lex_state = 1}, + [125] = {.lex_state = 1}, + [126] = {.lex_state = 1}, + [127] = {.lex_state = 1}, + [128] = {.lex_state = 1}, + [129] = {.lex_state = 1}, + [130] = {.lex_state = 63}, + [131] = {.lex_state = 1}, + [132] = {.lex_state = 1}, + [133] = {.lex_state = 1}, + [134] = {.lex_state = 63}, + [135] = {.lex_state = 1}, + [136] = {.lex_state = 1}, + [137] = {.lex_state = 1}, + [138] = {.lex_state = 1}, + [139] = {.lex_state = 1}, + [140] = {.lex_state = 63}, + [141] = {.lex_state = 1}, + [142] = {.lex_state = 1}, + [143] = {.lex_state = 1}, + [144] = {.lex_state = 1}, + [145] = {.lex_state = 1}, + [146] = {.lex_state = 1}, + [147] = {.lex_state = 1}, + [148] = {.lex_state = 1}, + [149] = {.lex_state = 1}, + [150] = {.lex_state = 1}, + [151] = {.lex_state = 1}, + [152] = {.lex_state = 1}, + [153] = {.lex_state = 1}, + [154] = {.lex_state = 1}, + [155] = {.lex_state = 1}, + [156] = {.lex_state = 1}, + [157] = {.lex_state = 63}, + [158] = {.lex_state = 63}, + [159] = {.lex_state = 63}, + [160] = {.lex_state = 63}, + [161] = {.lex_state = 63}, + [162] = {.lex_state = 63}, + [163] = {.lex_state = 1}, + [164] = {.lex_state = 1}, + [165] = {.lex_state = 1}, + [166] = {.lex_state = 1}, + [167] = {.lex_state = 1}, + [168] = {.lex_state = 1}, + [169] = {.lex_state = 63}, + [170] = {.lex_state = 63}, + [171] = {.lex_state = 1}, + [172] = {.lex_state = 63}, + [173] = {.lex_state = 63}, + [174] = {.lex_state = 63}, + [175] = {.lex_state = 63}, + [176] = {.lex_state = 63}, + [177] = {.lex_state = 1}, + [178] = {.lex_state = 1}, + [179] = {.lex_state = 1}, + [180] = {.lex_state = 1}, + [181] = {.lex_state = 1}, + [182] = {.lex_state = 1}, + [183] = {.lex_state = 1}, + [184] = {.lex_state = 1}, + [185] = {.lex_state = 63}, + [186] = {.lex_state = 63}, + [187] = {.lex_state = 1}, + [188] = {.lex_state = 1}, + [189] = {.lex_state = 1}, + [190] = {.lex_state = 1}, + [191] = {.lex_state = 63}, + [192] = {.lex_state = 1}, + [193] = {.lex_state = 1}, + [194] = {.lex_state = 1}, + [195] = {.lex_state = 1}, + [196] = {.lex_state = 63}, + [197] = {.lex_state = 63}, + [198] = {.lex_state = 63}, + [199] = {.lex_state = 63}, + [200] = {.lex_state = 1}, + [201] = {.lex_state = 63}, + [202] = {.lex_state = 63}, + [203] = {.lex_state = 63}, + [204] = {.lex_state = 1}, + [205] = {.lex_state = 63}, + [206] = {.lex_state = 63}, + [207] = {.lex_state = 63}, + [208] = {.lex_state = 63}, + [209] = {.lex_state = 63}, + [210] = {.lex_state = 63}, + [211] = {.lex_state = 63}, + [212] = {.lex_state = 1}, + [213] = {.lex_state = 63}, + [214] = {.lex_state = 63}, + [215] = {.lex_state = 63}, + [216] = {.lex_state = 63}, + [217] = {.lex_state = 63}, + [218] = {.lex_state = 1}, + [219] = {.lex_state = 63}, + [220] = {.lex_state = 63}, + [221] = {.lex_state = 63}, + [222] = {.lex_state = 63}, + [223] = {.lex_state = 63}, + [224] = {.lex_state = 63}, + [225] = {.lex_state = 63}, + [226] = {.lex_state = 63}, + [227] = {.lex_state = 63}, + [228] = {.lex_state = 1}, + [229] = {.lex_state = 1}, + [230] = {.lex_state = 63}, + [231] = {.lex_state = 63}, + [232] = {.lex_state = 63}, + [233] = {.lex_state = 63}, + [234] = {.lex_state = 63}, + [235] = {.lex_state = 1}, + [236] = {.lex_state = 63}, + [237] = {.lex_state = 1}, + [238] = {.lex_state = 1}, + [239] = {.lex_state = 63}, + [240] = {.lex_state = 1}, + [241] = {.lex_state = 63}, + [242] = {.lex_state = 63}, + [243] = {.lex_state = 63}, + [244] = {.lex_state = 63}, + [245] = {.lex_state = 63}, + [246] = {.lex_state = 1}, + [247] = {.lex_state = 63}, + [248] = {.lex_state = 63}, + [249] = {.lex_state = 63}, + [250] = {.lex_state = 63}, + [251] = {.lex_state = 63}, + [252] = {.lex_state = 63}, + [253] = {.lex_state = 63}, + [254] = {.lex_state = 63}, + [255] = {.lex_state = 63}, + [256] = {.lex_state = 1}, + [257] = {.lex_state = 63}, + [258] = {.lex_state = 1}, + [259] = {.lex_state = 1}, + [260] = {.lex_state = 1}, + [261] = {.lex_state = 63}, + [262] = {.lex_state = 1}, + [263] = {.lex_state = 1}, + [264] = {.lex_state = 1}, + [265] = {.lex_state = 63}, + [266] = {.lex_state = 63}, + [267] = {.lex_state = 63}, + [268] = {.lex_state = 63}, + [269] = {.lex_state = 1}, + [270] = {.lex_state = 1}, + [271] = {.lex_state = 1}, + [272] = {.lex_state = 63}, + [273] = {.lex_state = 63}, + [274] = {.lex_state = 63}, + [275] = {.lex_state = 63}, + [276] = {.lex_state = 63}, + [277] = {.lex_state = 63}, + [278] = {.lex_state = 63}, + [279] = {.lex_state = 63}, + [280] = {.lex_state = 63}, + [281] = {.lex_state = 63}, + [282] = {.lex_state = 63}, + [283] = {.lex_state = 63}, + [284] = {.lex_state = 63}, + [285] = {.lex_state = 63}, + [286] = {.lex_state = 63}, + [287] = {.lex_state = 63}, + [288] = {.lex_state = 63}, + [289] = {.lex_state = 63}, + [290] = {.lex_state = 63}, + [291] = {.lex_state = 63}, + [292] = {.lex_state = 63}, + [293] = {.lex_state = 63}, + [294] = {.lex_state = 63}, + [295] = {.lex_state = 63}, + [296] = {.lex_state = 63}, + [297] = {.lex_state = 63}, + [298] = {.lex_state = 63}, + [299] = {.lex_state = 63}, + [300] = {.lex_state = 63}, + [301] = {.lex_state = 63}, + [302] = {.lex_state = 63}, + [303] = {.lex_state = 63}, + [304] = {.lex_state = 63}, + [305] = {.lex_state = 63}, + [306] = {.lex_state = 63}, + [307] = {.lex_state = 63}, + [308] = {.lex_state = 63}, + [309] = {.lex_state = 63}, + [310] = {.lex_state = 63}, + [311] = {.lex_state = 63}, + [312] = {.lex_state = 63}, + [313] = {.lex_state = 63}, + [314] = {.lex_state = 63}, + [315] = {.lex_state = 63}, + [316] = {.lex_state = 63}, + [317] = {.lex_state = 63}, + [318] = {.lex_state = 63}, + [319] = {.lex_state = 63}, + [320] = {.lex_state = 63}, + [321] = {.lex_state = 2}, + [322] = {.lex_state = 63}, + [323] = {.lex_state = 63}, + [324] = {.lex_state = 63}, + [325] = {.lex_state = 63}, + [326] = {.lex_state = 63}, + [327] = {.lex_state = 63}, + [328] = {.lex_state = 63}, + [329] = {.lex_state = 63}, + [330] = {.lex_state = 2}, + [331] = {.lex_state = 63}, + [332] = {.lex_state = 63}, + [333] = {.lex_state = 63}, + [334] = {.lex_state = 63}, + [335] = {.lex_state = 63}, + [336] = {.lex_state = 63}, + [337] = {.lex_state = 63}, + [338] = {.lex_state = 63}, + [339] = {.lex_state = 63}, + [340] = {.lex_state = 63}, + [341] = {.lex_state = 63}, + [342] = {.lex_state = 63}, + [343] = {.lex_state = 63}, + [344] = {.lex_state = 63}, + [345] = {.lex_state = 63}, + [346] = {.lex_state = 63}, + [347] = {.lex_state = 2}, + [348] = {.lex_state = 2}, + [349] = {.lex_state = 63}, + [350] = {.lex_state = 63}, + [351] = {.lex_state = 63}, + [352] = {.lex_state = 63}, + [353] = {.lex_state = 63}, [354] = {.lex_state = 0}, [355] = {.lex_state = 0}, [356] = {.lex_state = 0}, [357] = {.lex_state = 0}, [358] = {.lex_state = 0}, - [359] = {.lex_state = 6}, + [359] = {.lex_state = 0}, [360] = {.lex_state = 0}, [361] = {.lex_state = 0}, - [362] = {.lex_state = 6}, - [363] = {.lex_state = 6}, - [364] = {.lex_state = 0}, - [365] = {.lex_state = 0}, - [366] = {.lex_state = 6}, - [367] = {.lex_state = 6}, - [368] = {.lex_state = 6}, - [369] = {.lex_state = 0}, - [370] = {.lex_state = 0}, - [371] = {.lex_state = 0}, - [372] = {.lex_state = 0}, - [373] = {.lex_state = 6}, - [374] = {.lex_state = 0}, - [375] = {.lex_state = 0}, - [376] = {.lex_state = 0}, - [377] = {.lex_state = 0}, - [378] = {.lex_state = 6}, - [379] = {.lex_state = 0}, - [380] = {.lex_state = 6}, - [381] = {.lex_state = 6}, - [382] = {.lex_state = 6}, - [383] = {.lex_state = 6}, - [384] = {.lex_state = 6}, - [385] = {.lex_state = 6}, - [386] = {.lex_state = 6}, - [387] = {.lex_state = 6}, - [388] = {.lex_state = 6}, - [389] = {.lex_state = 6}, - [390] = {.lex_state = 6}, - [391] = {.lex_state = 6}, - [392] = {.lex_state = 6}, - [393] = {.lex_state = 6}, - [394] = {.lex_state = 6}, - [395] = {.lex_state = 6}, - [396] = {.lex_state = 6}, - [397] = {.lex_state = 6}, - [398] = {.lex_state = 6}, - [399] = {.lex_state = 6}, - [400] = {.lex_state = 6}, - [401] = {.lex_state = 6}, - [402] = {.lex_state = 6}, - [403] = {.lex_state = 6}, - [404] = {.lex_state = 6}, - [405] = {.lex_state = 6}, - [406] = {.lex_state = 6}, - [407] = {.lex_state = 6}, - [408] = {.lex_state = 6}, - [409] = {.lex_state = 6}, - [410] = {.lex_state = 6}, - [411] = {.lex_state = 6}, - [412] = {.lex_state = 6}, - [413] = {.lex_state = 6}, - [414] = {.lex_state = 6}, - [415] = {.lex_state = 6}, - [416] = {.lex_state = 6}, - [417] = {.lex_state = 6}, - [418] = {.lex_state = 6}, - [419] = {.lex_state = 6}, - [420] = {.lex_state = 6}, - [421] = {.lex_state = 0}, - [422] = {.lex_state = 3}, - [423] = {.lex_state = 0}, - [424] = {.lex_state = 0}, - [425] = {.lex_state = 3}, - [426] = {.lex_state = 3}, + [362] = {.lex_state = 3}, + [363] = {.lex_state = 3}, + [364] = {.lex_state = 3}, + [365] = {.lex_state = 3}, + [366] = {.lex_state = 0}, + [367] = {.lex_state = 0}, + [368] = {.lex_state = 0}, + [369] = {.lex_state = 3}, + [370] = {.lex_state = 3}, + [371] = {.lex_state = 3}, + [372] = {.lex_state = 3}, + [373] = {.lex_state = 3}, + [374] = {.lex_state = 3}, + [375] = {.lex_state = 3}, + [376] = {.lex_state = 3}, + [377] = {.lex_state = 3}, + [378] = {.lex_state = 3}, + [379] = {.lex_state = 3}, + [380] = {.lex_state = 3}, + [381] = {.lex_state = 3}, + [382] = {.lex_state = 3}, + [383] = {.lex_state = 4}, + [384] = {.lex_state = 3}, + [385] = {.lex_state = 3}, + [386] = {.lex_state = 4}, + [387] = {.lex_state = 4}, + [388] = {.lex_state = 4}, + [389] = {.lex_state = 1}, + [390] = {.lex_state = 4}, + [391] = {.lex_state = 4}, + [392] = {.lex_state = 1}, + [393] = {.lex_state = 10}, + [394] = {.lex_state = 3}, + [395] = {.lex_state = 2}, + [396] = {.lex_state = 10}, + [397] = {.lex_state = 4}, + [398] = {.lex_state = 2}, + [399] = {.lex_state = 2}, + [400] = {.lex_state = 1}, + [401] = {.lex_state = 2}, + [402] = {.lex_state = 4}, + [403] = {.lex_state = 4}, + [404] = {.lex_state = 4}, + [405] = {.lex_state = 1}, + [406] = {.lex_state = 4}, + [407] = {.lex_state = 4}, + [408] = {.lex_state = 4}, + [409] = {.lex_state = 4}, + [410] = {.lex_state = 10}, + [411] = {.lex_state = 4}, + [412] = {.lex_state = 4}, + [413] = {.lex_state = 4}, + [414] = {.lex_state = 10}, + [415] = {.lex_state = 4}, + [416] = {.lex_state = 4}, + [417] = {.lex_state = 4}, + [418] = {.lex_state = 4}, + [419] = {.lex_state = 1}, + [420] = {.lex_state = 1}, + [421] = {.lex_state = 1}, + [422] = {.lex_state = 1}, + [423] = {.lex_state = 4}, + [424] = {.lex_state = 4}, + [425] = {.lex_state = 4}, + [426] = {.lex_state = 4}, [427] = {.lex_state = 0}, - [428] = {.lex_state = 3}, + [428] = {.lex_state = 0}, [429] = {.lex_state = 0}, - [430] = {.lex_state = 3}, - [431] = {.lex_state = 3}, - [432] = {.lex_state = 3}, - [433] = {.lex_state = 3}, - [434] = {.lex_state = 12}, - [435] = {.lex_state = 3}, - [436] = {.lex_state = 12}, - [437] = {.lex_state = 3}, - [438] = {.lex_state = 3}, - [439] = {.lex_state = 3}, - [440] = {.lex_state = 3}, - [441] = {.lex_state = 3}, - [442] = {.lex_state = 12}, - [443] = {.lex_state = 3}, - [444] = {.lex_state = 3}, - [445] = {.lex_state = 3}, - [446] = {.lex_state = 3}, + [430] = {.lex_state = 0}, + [431] = {.lex_state = 0}, + [432] = {.lex_state = 1}, + [433] = {.lex_state = 0}, + [434] = {.lex_state = 4}, + [435] = {.lex_state = 0}, + [436] = {.lex_state = 0}, + [437] = {.lex_state = 0}, + [438] = {.lex_state = 0}, + [439] = {.lex_state = 0}, + [440] = {.lex_state = 1}, + [441] = {.lex_state = 0}, + [442] = {.lex_state = 0}, + [443] = {.lex_state = 0}, + [444] = {.lex_state = 4}, + [445] = {.lex_state = 0}, + [446] = {.lex_state = 0}, [447] = {.lex_state = 4}, - [448] = {.lex_state = 3}, - [449] = {.lex_state = 6}, - [450] = {.lex_state = 3}, + [448] = {.lex_state = 0}, + [449] = {.lex_state = 0}, + [450] = {.lex_state = 1}, [451] = {.lex_state = 0}, - [452] = {.lex_state = 3}, - [453] = {.lex_state = 3}, - [454] = {.lex_state = 3}, - [455] = {.lex_state = 3}, - [456] = {.lex_state = 3}, - [457] = {.lex_state = 3}, - [458] = {.lex_state = 15}, - [459] = {.lex_state = 15}, - [460] = {.lex_state = 3}, + [452] = {.lex_state = 4}, + [453] = {.lex_state = 0}, + [454] = {.lex_state = 4}, + [455] = {.lex_state = 0}, + [456] = {.lex_state = 0}, + [457] = {.lex_state = 0}, + [458] = {.lex_state = 4}, + [459] = {.lex_state = 4}, + [460] = {.lex_state = 4}, [461] = {.lex_state = 4}, - [462] = {.lex_state = 0}, - [463] = {.lex_state = 0}, - [464] = {.lex_state = 0}, - [465] = {.lex_state = 0}, - [466] = {.lex_state = 3}, - [467] = {.lex_state = 0}, - [468] = {.lex_state = 0}, - [469] = {.lex_state = 0}, - [470] = {.lex_state = 15}, - [471] = {.lex_state = 15}, - [472] = {.lex_state = 6}, - [473] = {.lex_state = 12}, - [474] = {.lex_state = 3}, - [475] = {.lex_state = 3}, - [476] = {.lex_state = 12}, + [462] = {.lex_state = 4}, + [463] = {.lex_state = 4}, + [464] = {.lex_state = 4}, + [465] = {.lex_state = 4}, + [466] = {.lex_state = 4}, + [467] = {.lex_state = 4}, + [468] = {.lex_state = 4}, + [469] = {.lex_state = 4}, + [470] = {.lex_state = 4}, + [471] = {.lex_state = 0}, + [472] = {.lex_state = 4}, + [473] = {.lex_state = 4}, + [474] = {.lex_state = 4}, + [475] = {.lex_state = 4}, + [476] = {.lex_state = 4}, [477] = {.lex_state = 4}, [478] = {.lex_state = 4}, - [479] = {.lex_state = 3}, - [480] = {.lex_state = 3}, - [481] = {.lex_state = 3}, - [482] = {.lex_state = 3}, - [483] = {.lex_state = 3}, - [484] = {.lex_state = 3}, - [485] = {.lex_state = 3}, - [486] = {.lex_state = 3}, - [487] = {.lex_state = 3}, - [488] = {.lex_state = 3}, - [489] = {.lex_state = 3}, - [490] = {.lex_state = 3}, - [491] = {.lex_state = 3}, + [479] = {.lex_state = 4}, + [480] = {.lex_state = 4}, + [481] = {.lex_state = 4}, + [482] = {.lex_state = 4}, + [483] = {.lex_state = 4}, + [484] = {.lex_state = 4}, + [485] = {.lex_state = 4}, + [486] = {.lex_state = 4}, + [487] = {.lex_state = 4}, + [488] = {.lex_state = 0}, + [489] = {.lex_state = 4}, + [490] = {.lex_state = 4}, + [491] = {.lex_state = 4}, [492] = {.lex_state = 4}, [493] = {.lex_state = 4}, - [494] = {.lex_state = 3}, - [495] = {.lex_state = 3}, - [496] = {.lex_state = 3}, - [497] = {.lex_state = 3}, - [498] = {.lex_state = 12}, - [499] = {.lex_state = 3}, + [494] = {.lex_state = 4}, + [495] = {.lex_state = 4}, + [496] = {.lex_state = 0}, + [497] = {.lex_state = 4}, + [498] = {.lex_state = 0}, + [499] = {.lex_state = 4}, [500] = {.lex_state = 4}, - [501] = {.lex_state = 3}, - [502] = {.lex_state = 12}, - [503] = {.lex_state = 4}, - [504] = {.lex_state = 3}, - [505] = {.lex_state = 4}, - [506] = {.lex_state = 3}, - [507] = {.lex_state = 4}, - [508] = {.lex_state = 3}, - [509] = {.lex_state = 3}, - [510] = {.lex_state = 3}, - [511] = {.lex_state = 4}, - [512] = {.lex_state = 3}, - [513] = {.lex_state = 3}, - [514] = {.lex_state = 3}, - [515] = {.lex_state = 4}, - [516] = {.lex_state = 3}, - [517] = {.lex_state = 3}, - [518] = {.lex_state = 3}, - [519] = {.lex_state = 3}, - [520] = {.lex_state = 22}, - [521] = {.lex_state = 3}, - [522] = {.lex_state = 3}, - [523] = {.lex_state = 3}, - [524] = {.lex_state = 3}, - [525] = {.lex_state = 3}, - [526] = {.lex_state = 4}, - [527] = {.lex_state = 4}, - [528] = {.lex_state = 4}, - [529] = {.lex_state = 3}, - [530] = {.lex_state = 3}, - [531] = {.lex_state = 3}, - [532] = {.lex_state = 3}, - [533] = {.lex_state = 3}, - [534] = {.lex_state = 3}, - [535] = {.lex_state = 3}, - [536] = {.lex_state = 3}, - [537] = {.lex_state = 3}, - [538] = {.lex_state = 3}, - [539] = {.lex_state = 3}, - [540] = {.lex_state = 3}, - [541] = {.lex_state = 3}, - [542] = {.lex_state = 3}, - [543] = {.lex_state = 3}, - [544] = {.lex_state = 3}, - [545] = {.lex_state = 3}, - [546] = {.lex_state = 3}, - [547] = {.lex_state = 3}, - [548] = {.lex_state = 3}, - [549] = {.lex_state = 3}, - [550] = {.lex_state = 3}, - [551] = {.lex_state = 3}, - [552] = {.lex_state = 22}, - [553] = {.lex_state = 3}, - [554] = {.lex_state = 3}, - [555] = {.lex_state = 3}, - [556] = {.lex_state = 3}, - [557] = {.lex_state = 3}, - [558] = {.lex_state = 3}, - [559] = {.lex_state = 4}, - [560] = {.lex_state = 12}, - [561] = {.lex_state = 5}, - [562] = {.lex_state = 5}, - [563] = {.lex_state = 12}, - [564] = {.lex_state = 3}, - [565] = {.lex_state = 5}, - [566] = {.lex_state = 5}, - [567] = {.lex_state = 3}, - [568] = {.lex_state = 3}, - [569] = {.lex_state = 3}, - [570] = {.lex_state = 3}, - [571] = {.lex_state = 3}, - [572] = {.lex_state = 3}, - [573] = {.lex_state = 3}, - [574] = {.lex_state = 12}, - [575] = {.lex_state = 12}, - [576] = {.lex_state = 12}, - [577] = {.lex_state = 12}, - [578] = {.lex_state = 22}, - [579] = {.lex_state = 12}, - [580] = {.lex_state = 12}, - [581] = {.lex_state = 3}, - [582] = {.lex_state = 3}, - [583] = {.lex_state = 3}, - [584] = {.lex_state = 12}, - [585] = {.lex_state = 3}, - [586] = {.lex_state = 12}, - [587] = {.lex_state = 12}, - [588] = {.lex_state = 3}, - [589] = {.lex_state = 22}, - [590] = {.lex_state = 3}, - [591] = {.lex_state = 12}, - [592] = {.lex_state = 5}, - [593] = {.lex_state = 12}, - [594] = {.lex_state = 12}, - [595] = {.lex_state = 12}, - [596] = {.lex_state = 12}, - [597] = {.lex_state = 3}, - [598] = {.lex_state = 5}, - [599] = {.lex_state = 3}, - [600] = {.lex_state = 3}, - [601] = {.lex_state = 3}, - [602] = {.lex_state = 12}, - [603] = {.lex_state = 5}, - [604] = {.lex_state = 3}, - [605] = {.lex_state = 3}, - [606] = {.lex_state = 3}, - [607] = {.lex_state = 3}, - [608] = {.lex_state = 3}, - [609] = {.lex_state = 3}, - [610] = {.lex_state = 3}, - [611] = {.lex_state = 5}, - [612] = {.lex_state = 3}, - [613] = {.lex_state = 3}, - [614] = {.lex_state = 3}, - [615] = {.lex_state = 3}, - [616] = {.lex_state = 5}, - [617] = {.lex_state = 5}, - [618] = {.lex_state = 5}, - [619] = {.lex_state = 3}, - [620] = {.lex_state = 5}, - [621] = {.lex_state = 3}, - [622] = {.lex_state = 3}, - [623] = {.lex_state = 3}, - [624] = {.lex_state = 3}, - [625] = {.lex_state = 3}, - [626] = {.lex_state = 5}, - [627] = {.lex_state = 3}, - [628] = {.lex_state = 3}, - [629] = {.lex_state = 5}, - [630] = {.lex_state = 3}, - [631] = {.lex_state = 5}, - [632] = {.lex_state = 3}, - [633] = {.lex_state = 3}, - [634] = {.lex_state = 4}, - [635] = {.lex_state = 4}, - [636] = {.lex_state = 3}, - [637] = {.lex_state = 5}, - [638] = {.lex_state = 4}, - [639] = {.lex_state = 4}, - [640] = {.lex_state = 3}, - [641] = {.lex_state = 5}, - [642] = {.lex_state = 4}, - [643] = {.lex_state = 3}, - [644] = {.lex_state = 4}, - [645] = {.lex_state = 4}, - [646] = {.lex_state = 3}, - [647] = {.lex_state = 3}, - [648] = {.lex_state = 4}, - [649] = {.lex_state = 3}, - [650] = {.lex_state = 5}, - [651] = {.lex_state = 3}, - [652] = {.lex_state = 5}, - [653] = {.lex_state = 3}, - [654] = {.lex_state = 3}, + [501] = {.lex_state = 0}, + [502] = {.lex_state = 8}, + [503] = {.lex_state = 8}, + [504] = {.lex_state = 8}, + [505] = {.lex_state = 0}, + [506] = {.lex_state = 1}, + [507] = {.lex_state = 1}, + [508] = {.lex_state = 1}, + [509] = {.lex_state = 1}, + [510] = {.lex_state = 1}, + [511] = {.lex_state = 1}, + [512] = {.lex_state = 0}, + [513] = {.lex_state = 0}, + [514] = {.lex_state = 0}, + [515] = {.lex_state = 0}, + [516] = {.lex_state = 0}, + [517] = {.lex_state = 1}, + [518] = {.lex_state = 1}, + [519] = {.lex_state = 1}, + [520] = {.lex_state = 0}, + [521] = {.lex_state = 1}, + [522] = {.lex_state = 1}, + [523] = {.lex_state = 1}, + [524] = {.lex_state = 1}, + [525] = {.lex_state = 0}, + [526] = {.lex_state = 1}, + [527] = {.lex_state = 1}, + [528] = {.lex_state = 1}, + [529] = {.lex_state = 1}, + [530] = {.lex_state = 1}, + [531] = {.lex_state = 1}, + [532] = {.lex_state = 11}, + [533] = {.lex_state = 1}, + [534] = {.lex_state = 1}, + [535] = {.lex_state = 11}, + [536] = {.lex_state = 1}, + [537] = {.lex_state = 1}, + [538] = {.lex_state = 1}, + [539] = {.lex_state = 2}, + [540] = {.lex_state = 1}, + [541] = {.lex_state = 4}, + [542] = {.lex_state = 1}, + [543] = {.lex_state = 1}, + [544] = {.lex_state = 2}, + [545] = {.lex_state = 8}, + [546] = {.lex_state = 11}, + [547] = {.lex_state = 8}, + [548] = {.lex_state = 11}, + [549] = {.lex_state = 1}, + [550] = {.lex_state = 4}, + [551] = {.lex_state = 1}, + [552] = {.lex_state = 1}, + [553] = {.lex_state = 8}, + [554] = {.lex_state = 1}, + [555] = {.lex_state = 1}, + [556] = {.lex_state = 2}, + [557] = {.lex_state = 1}, + [558] = {.lex_state = 1}, + [559] = {.lex_state = 1}, + [560] = {.lex_state = 2}, + [561] = {.lex_state = 1}, + [562] = {.lex_state = 2}, + [563] = {.lex_state = 1}, + [564] = {.lex_state = 1}, + [565] = {.lex_state = 1}, + [566] = {.lex_state = 1}, + [567] = {.lex_state = 1}, + [568] = {.lex_state = 1}, + [569] = {.lex_state = 1}, + [570] = {.lex_state = 1}, + [571] = {.lex_state = 2}, + [572] = {.lex_state = 1}, + [573] = {.lex_state = 2}, + [574] = {.lex_state = 1}, + [575] = {.lex_state = 1}, + [576] = {.lex_state = 1}, + [577] = {.lex_state = 2}, + [578] = {.lex_state = 2}, + [579] = {.lex_state = 2}, + [580] = {.lex_state = 1}, + [581] = {.lex_state = 1}, + [582] = {.lex_state = 1}, + [583] = {.lex_state = 2}, + [584] = {.lex_state = 1}, + [585] = {.lex_state = 2}, + [586] = {.lex_state = 1}, + [587] = {.lex_state = 1}, + [588] = {.lex_state = 1}, + [589] = {.lex_state = 1}, + [590] = {.lex_state = 1}, + [591] = {.lex_state = 1}, + [592] = {.lex_state = 8}, + [593] = {.lex_state = 1}, + [594] = {.lex_state = 1}, + [595] = {.lex_state = 1}, + [596] = {.lex_state = 1}, + [597] = {.lex_state = 1}, + [598] = {.lex_state = 1}, + [599] = {.lex_state = 1}, + [600] = {.lex_state = 1}, + [601] = {.lex_state = 1}, + [602] = {.lex_state = 1}, + [603] = {.lex_state = 1}, + [604] = {.lex_state = 1}, + [605] = {.lex_state = 2}, + [606] = {.lex_state = 1}, + [607] = {.lex_state = 1}, + [608] = {.lex_state = 18}, + [609] = {.lex_state = 1}, + [610] = {.lex_state = 2}, + [611] = {.lex_state = 2}, + [612] = {.lex_state = 1}, + [613] = {.lex_state = 1}, + [614] = {.lex_state = 1}, + [615] = {.lex_state = 1}, + [616] = {.lex_state = 1}, + [617] = {.lex_state = 1}, + [618] = {.lex_state = 1}, + [619] = {.lex_state = 18}, + [620] = {.lex_state = 1}, + [621] = {.lex_state = 1}, + [622] = {.lex_state = 1}, + [623] = {.lex_state = 1}, + [624] = {.lex_state = 1}, + [625] = {.lex_state = 1}, + [626] = {.lex_state = 1}, + [627] = {.lex_state = 1}, + [628] = {.lex_state = 1}, + [629] = {.lex_state = 1}, + [630] = {.lex_state = 1}, + [631] = {.lex_state = 1}, + [632] = {.lex_state = 1}, + [633] = {.lex_state = 1}, + [634] = {.lex_state = 1}, + [635] = {.lex_state = 1}, + [636] = {.lex_state = 1}, + [637] = {.lex_state = 1}, + [638] = {.lex_state = 1}, + [639] = {.lex_state = 1}, + [640] = {.lex_state = 1}, + [641] = {.lex_state = 1}, + [642] = {.lex_state = 1}, + [643] = {.lex_state = 1}, + [644] = {.lex_state = 1}, + [645] = {.lex_state = 1}, + [646] = {.lex_state = 1}, + [647] = {.lex_state = 1}, + [648] = {.lex_state = 1}, + [649] = {.lex_state = 8}, + [650] = {.lex_state = 8}, + [651] = {.lex_state = 1}, + [652] = {.lex_state = 1}, + [653] = {.lex_state = 1}, + [654] = {.lex_state = 1}, [655] = {.lex_state = 3}, - [656] = {.lex_state = 5}, - [657] = {.lex_state = 5}, - [658] = {.lex_state = 3}, - [659] = {.lex_state = 5}, - [660] = {.lex_state = 5}, - [661] = {.lex_state = 3}, - [662] = {.lex_state = 3}, - [663] = {.lex_state = 3}, - [664] = {.lex_state = 3}, - [665] = {.lex_state = 3}, - [666] = {.lex_state = 12}, - [667] = {.lex_state = 3}, + [656] = {.lex_state = 2}, + [657] = {.lex_state = 3}, + [658] = {.lex_state = 1}, + [659] = {.lex_state = 8}, + [660] = {.lex_state = 8}, + [661] = {.lex_state = 1}, + [662] = {.lex_state = 1}, + [663] = {.lex_state = 8}, + [664] = {.lex_state = 8}, + [665] = {.lex_state = 1}, + [666] = {.lex_state = 1}, + [667] = {.lex_state = 1}, [668] = {.lex_state = 3}, - [669] = {.lex_state = 3}, - [670] = {.lex_state = 3}, - [671] = {.lex_state = 3}, - [672] = {.lex_state = 3}, + [669] = {.lex_state = 8}, + [670] = {.lex_state = 1}, + [671] = {.lex_state = 8}, + [672] = {.lex_state = 1}, [673] = {.lex_state = 3}, - [674] = {.lex_state = 0}, - [675] = {.lex_state = 3}, - [676] = {.lex_state = 3}, - [677] = {.lex_state = 0}, - [678] = {.lex_state = 3}, - [679] = {.lex_state = 3}, - [680] = {.lex_state = 3}, - [681] = {.lex_state = 3}, + [674] = {.lex_state = 1}, + [675] = {.lex_state = 18}, + [676] = {.lex_state = 8}, + [677] = {.lex_state = 8}, + [678] = {.lex_state = 8}, + [679] = {.lex_state = 18}, + [680] = {.lex_state = 8}, + [681] = {.lex_state = 8}, [682] = {.lex_state = 3}, - [683] = {.lex_state = 3}, - [684] = {.lex_state = 3}, - [685] = {.lex_state = 3}, - [686] = {.lex_state = 3}, - [687] = {.lex_state = 3}, - [688] = {.lex_state = 3}, - [689] = {.lex_state = 3}, - [690] = {.lex_state = 3}, - [691] = {.lex_state = 4}, - [692] = {.lex_state = 3}, + [683] = {.lex_state = 8}, + [684] = {.lex_state = 1}, + [685] = {.lex_state = 1}, + [686] = {.lex_state = 1}, + [687] = {.lex_state = 8}, + [688] = {.lex_state = 1}, + [689] = {.lex_state = 1}, + [690] = {.lex_state = 1}, + [691] = {.lex_state = 1}, + [692] = {.lex_state = 1}, [693] = {.lex_state = 3}, [694] = {.lex_state = 3}, - [695] = {.lex_state = 3}, - [696] = {.lex_state = 3}, + [695] = {.lex_state = 8}, + [696] = {.lex_state = 1}, [697] = {.lex_state = 3}, - [698] = {.lex_state = 3}, - [699] = {.lex_state = 3}, - [700] = {.lex_state = 3}, - [701] = {.lex_state = 3}, - [702] = {.lex_state = 4}, - [703] = {.lex_state = 3}, - [704] = {.lex_state = 3}, - [705] = {.lex_state = 3}, - [706] = {.lex_state = 3}, - [707] = {.lex_state = 3}, - [708] = {.lex_state = 3}, - [709] = {.lex_state = 3}, - [710] = {.lex_state = 3}, - [711] = {.lex_state = 3}, - [712] = {.lex_state = 3}, - [713] = {.lex_state = 3}, - [714] = {.lex_state = 3}, + [698] = {.lex_state = 1}, + [699] = {.lex_state = 8}, + [700] = {.lex_state = 1}, + [701] = {.lex_state = 1}, + [702] = {.lex_state = 1}, + [703] = {.lex_state = 1}, + [704] = {.lex_state = 1}, + [705] = {.lex_state = 1}, + [706] = {.lex_state = 1}, + [707] = {.lex_state = 1}, + [708] = {.lex_state = 1}, + [709] = {.lex_state = 1}, + [710] = {.lex_state = 1}, + [711] = {.lex_state = 1}, + [712] = {.lex_state = 1}, + [713] = {.lex_state = 1}, + [714] = {.lex_state = 1}, [715] = {.lex_state = 3}, [716] = {.lex_state = 3}, - [717] = {.lex_state = 3}, + [717] = {.lex_state = 1}, [718] = {.lex_state = 3}, - [719] = {.lex_state = 4}, + [719] = {.lex_state = 1}, [720] = {.lex_state = 3}, - [721] = {.lex_state = 4}, - [722] = {.lex_state = 3}, - [723] = {.lex_state = 3}, - [724] = {.lex_state = 3}, - [725] = {.lex_state = 3}, - [726] = {.lex_state = 3}, - [727] = {.lex_state = 4}, + [721] = {.lex_state = 3}, + [722] = {.lex_state = 1}, + [723] = {.lex_state = 1}, + [724] = {.lex_state = 1}, + [725] = {.lex_state = 1}, + [726] = {.lex_state = 1}, + [727] = {.lex_state = 3}, [728] = {.lex_state = 3}, [729] = {.lex_state = 3}, [730] = {.lex_state = 3}, [731] = {.lex_state = 3}, - [732] = {.lex_state = 3}, + [732] = {.lex_state = 2}, [733] = {.lex_state = 3}, - [734] = {.lex_state = 4}, - [735] = {.lex_state = 3}, - [736] = {.lex_state = 3}, + [734] = {.lex_state = 3}, + [735] = {.lex_state = 1}, + [736] = {.lex_state = 2}, [737] = {.lex_state = 3}, - [738] = {.lex_state = 3}, - [739] = {.lex_state = 3}, - [740] = {.lex_state = 3}, - [741] = {.lex_state = 3}, - [742] = {.lex_state = 3}, + [738] = {.lex_state = 2}, + [739] = {.lex_state = 1}, + [740] = {.lex_state = 1}, + [741] = {.lex_state = 1}, + [742] = {.lex_state = 1}, [743] = {.lex_state = 3}, - [744] = {.lex_state = 3}, - [745] = {.lex_state = 3}, - [746] = {.lex_state = 0}, - [747] = {.lex_state = 5}, - [748] = {.lex_state = 5}, - [749] = {.lex_state = 3}, + [744] = {.lex_state = 2}, + [745] = {.lex_state = 1}, + [746] = {.lex_state = 3}, + [747] = {.lex_state = 1}, + [748] = {.lex_state = 1}, + [749] = {.lex_state = 2}, [750] = {.lex_state = 3}, - [751] = {.lex_state = 12}, - [752] = {.lex_state = 5}, - [753] = {.lex_state = 5}, - [754] = {.lex_state = 3}, - [755] = {.lex_state = 3}, - [756] = {.lex_state = 0}, + [751] = {.lex_state = 3}, + [752] = {.lex_state = 3}, + [753] = {.lex_state = 3}, + [754] = {.lex_state = 2}, + [755] = {.lex_state = 2}, + [756] = {.lex_state = 2}, [757] = {.lex_state = 3}, - [758] = {.lex_state = 3}, + [758] = {.lex_state = 1}, [759] = {.lex_state = 3}, - [760] = {.lex_state = 5}, - [761] = {.lex_state = 0}, + [760] = {.lex_state = 3}, + [761] = {.lex_state = 1}, [762] = {.lex_state = 3}, - [763] = {.lex_state = 5}, - [764] = {.lex_state = 0}, - [765] = {.lex_state = 12}, - [766] = {.lex_state = 0}, - [767] = {.lex_state = 3}, - [768] = {.lex_state = 0}, - [769] = {.lex_state = 3}, - [770] = {.lex_state = 0}, + [763] = {.lex_state = 1}, + [764] = {.lex_state = 3}, + [765] = {.lex_state = 1}, + [766] = {.lex_state = 1}, + [767] = {.lex_state = 1}, + [768] = {.lex_state = 1}, + [769] = {.lex_state = 1}, + [770] = {.lex_state = 2}, [771] = {.lex_state = 3}, - [772] = {.lex_state = 3}, - [773] = {.lex_state = 3}, - [774] = {.lex_state = 3}, - [775] = {.lex_state = 3}, - [776] = {.lex_state = 0}, - [777] = {.lex_state = 3}, - [778] = {.lex_state = 3}, - [779] = {.lex_state = 3}, - [780] = {.lex_state = 3}, - [781] = {.lex_state = 4}, - [782] = {.lex_state = 3}, - [783] = {.lex_state = 0}, - [784] = {.lex_state = 3}, - [785] = {.lex_state = 3}, - [786] = {.lex_state = 3}, - [787] = {.lex_state = 3}, - [788] = {.lex_state = 3}, - [789] = {.lex_state = 3}, - [790] = {.lex_state = 3}, - [791] = {.lex_state = 0}, - [792] = {.lex_state = 3}, - [793] = {.lex_state = 3}, - [794] = {.lex_state = 0}, - [795] = {.lex_state = 3}, - [796] = {.lex_state = 3}, - [797] = {.lex_state = 3}, - [798] = {.lex_state = 0}, - [799] = {.lex_state = 3}, - [800] = {.lex_state = 5}, - [801] = {.lex_state = 0}, - [802] = {.lex_state = 3}, - [803] = {.lex_state = 3}, - [804] = {.lex_state = 5}, - [805] = {.lex_state = 5}, - [806] = {.lex_state = 3}, - [807] = {.lex_state = 3}, - [808] = {.lex_state = 5}, - [809] = {.lex_state = 5}, - [810] = {.lex_state = 5}, - [811] = {.lex_state = 5}, - [812] = {.lex_state = 5}, - [813] = {.lex_state = 5}, - [814] = {.lex_state = 3}, - [815] = {.lex_state = 4}, - [816] = {.lex_state = 0}, - [817] = {.lex_state = 5}, - [818] = {.lex_state = 5}, - [819] = {.lex_state = 12}, - [820] = {.lex_state = 0}, - [821] = {.lex_state = 3}, - [822] = {.lex_state = 3}, - [823] = {.lex_state = 3}, - [824] = {.lex_state = 3}, - [825] = {.lex_state = 3}, - [826] = {.lex_state = 3}, - [827] = {.lex_state = 0}, - [828] = {.lex_state = 3}, - [829] = {.lex_state = 0}, - [830] = {.lex_state = 5}, - [831] = {.lex_state = 3}, - [832] = {.lex_state = 3}, - [833] = {.lex_state = 12}, - [834] = {.lex_state = 3}, - [835] = {.lex_state = 0}, - [836] = {.lex_state = 3}, - [837] = {.lex_state = 4}, - [838] = {.lex_state = 3}, - [839] = {.lex_state = 0}, - [840] = {.lex_state = 3}, - [841] = {.lex_state = 3}, - [842] = {.lex_state = 3}, - [843] = {.lex_state = 3}, - [844] = {.lex_state = 0}, - [845] = {.lex_state = 0}, - [846] = {.lex_state = 3}, - [847] = {.lex_state = 0}, - [848] = {.lex_state = 3}, - [849] = {.lex_state = 5}, - [850] = {.lex_state = 0}, - [851] = {.lex_state = 4}, - [852] = {.lex_state = 0}, - [853] = {.lex_state = 0}, - [854] = {.lex_state = 0}, - [855] = {.lex_state = 0}, - [856] = {.lex_state = 0}, - [857] = {.lex_state = 0}, - [858] = {.lex_state = 0}, - [859] = {.lex_state = 0}, - [860] = {.lex_state = 5}, - [861] = {.lex_state = 4}, - [862] = {.lex_state = 0}, - [863] = {.lex_state = 5}, - [864] = {.lex_state = 0}, - [865] = {.lex_state = 3}, - [866] = {.lex_state = 3}, - [867] = {.lex_state = 0}, - [868] = {.lex_state = 0}, - [869] = {.lex_state = 0}, - [870] = {.lex_state = 0}, - [871] = {.lex_state = 5}, + [772] = {.lex_state = 1}, + [773] = {.lex_state = 2}, + [774] = {.lex_state = 1}, + [775] = {.lex_state = 1}, + [776] = {.lex_state = 8}, + [777] = {.lex_state = 1}, + [778] = {.lex_state = 1}, + [779] = {.lex_state = 1}, + [780] = {.lex_state = 1}, + [781] = {.lex_state = 6}, + [782] = {.lex_state = 1}, + [783] = {.lex_state = 1}, + [784] = {.lex_state = 1}, + [785] = {.lex_state = 6}, + [786] = {.lex_state = 6}, + [787] = {.lex_state = 0}, + [788] = {.lex_state = 1}, + [789] = {.lex_state = 0}, + [790] = {.lex_state = 1}, + [791] = {.lex_state = 1}, + [792] = {.lex_state = 1}, + [793] = {.lex_state = 1}, + [794] = {.lex_state = 1}, + [795] = {.lex_state = 1}, + [796] = {.lex_state = 1}, + [797] = {.lex_state = 1}, + [798] = {.lex_state = 2}, + [799] = {.lex_state = 1}, + [800] = {.lex_state = 1}, + [801] = {.lex_state = 6}, + [802] = {.lex_state = 1}, + [803] = {.lex_state = 1}, + [804] = {.lex_state = 2}, + [805] = {.lex_state = 1}, + [806] = {.lex_state = 1}, + [807] = {.lex_state = 1}, + [808] = {.lex_state = 1}, + [809] = {.lex_state = 1}, + [810] = {.lex_state = 1}, + [811] = {.lex_state = 1}, + [812] = {.lex_state = 1}, + [813] = {.lex_state = 1}, + [814] = {.lex_state = 1}, + [815] = {.lex_state = 1}, + [816] = {.lex_state = 1}, + [817] = {.lex_state = 1}, + [818] = {.lex_state = 1}, + [819] = {.lex_state = 1}, + [820] = {.lex_state = 1}, + [821] = {.lex_state = 1}, + [822] = {.lex_state = 1}, + [823] = {.lex_state = 1}, + [824] = {.lex_state = 1}, + [825] = {.lex_state = 1}, + [826] = {.lex_state = 1}, + [827] = {.lex_state = 1}, + [828] = {.lex_state = 1}, + [829] = {.lex_state = 1}, + [830] = {.lex_state = 1}, + [831] = {.lex_state = 1}, + [832] = {.lex_state = 1}, + [833] = {.lex_state = 6}, + [834] = {.lex_state = 1}, + [835] = {.lex_state = 1}, + [836] = {.lex_state = 1}, + [837] = {.lex_state = 1}, + [838] = {.lex_state = 1}, + [839] = {.lex_state = 1}, + [840] = {.lex_state = 1}, + [841] = {.lex_state = 1}, + [842] = {.lex_state = 1}, + [843] = {.lex_state = 1}, + [844] = {.lex_state = 1}, + [845] = {.lex_state = 1}, + [846] = {.lex_state = 1}, + [847] = {.lex_state = 1}, + [848] = {.lex_state = 6}, + [849] = {.lex_state = 1}, + [850] = {.lex_state = 1}, + [851] = {.lex_state = 1}, + [852] = {.lex_state = 1}, + [853] = {.lex_state = 1}, + [854] = {.lex_state = 1}, + [855] = {.lex_state = 1}, + [856] = {.lex_state = 2}, + [857] = {.lex_state = 1}, + [858] = {.lex_state = 1}, + [859] = {.lex_state = 1}, + [860] = {.lex_state = 1}, + [861] = {.lex_state = 1}, + [862] = {.lex_state = 1}, + [863] = {.lex_state = 2}, + [864] = {.lex_state = 1}, + [865] = {.lex_state = 2}, + [866] = {.lex_state = 2}, + [867] = {.lex_state = 1}, + [868] = {.lex_state = 1}, + [869] = {.lex_state = 1}, + [870] = {.lex_state = 8}, + [871] = {.lex_state = 0}, [872] = {.lex_state = 0}, - [873] = {.lex_state = 0}, - [874] = {.lex_state = 5}, - [875] = {.lex_state = 5}, - [876] = {.lex_state = 0}, - [877] = {.lex_state = 0}, - [878] = {.lex_state = 3}, + [873] = {.lex_state = 1}, + [874] = {.lex_state = 1}, + [875] = {.lex_state = 1}, + [876] = {.lex_state = 1}, + [877] = {.lex_state = 1}, + [878] = {.lex_state = 8}, [879] = {.lex_state = 0}, [880] = {.lex_state = 0}, - [881] = {.lex_state = 5}, - [882] = {.lex_state = 3}, - [883] = {.lex_state = 0}, - [884] = {.lex_state = 0}, - [885] = {.lex_state = 0}, - [886] = {.lex_state = 0}, - [887] = {.lex_state = 3}, - [888] = {.lex_state = 3}, - [889] = {.lex_state = 4}, - [890] = {.lex_state = 3}, + [881] = {.lex_state = 1}, + [882] = {.lex_state = 0}, + [883] = {.lex_state = 3}, + [884] = {.lex_state = 1}, + [885] = {.lex_state = 3}, + [886] = {.lex_state = 3}, + [887] = {.lex_state = 1}, + [888] = {.lex_state = 1}, + [889] = {.lex_state = 1}, + [890] = {.lex_state = 1}, [891] = {.lex_state = 0}, - [892] = {.lex_state = 5}, - [893] = {.lex_state = 5}, - [894] = {.lex_state = 0}, - [895] = {.lex_state = 0}, - [896] = {.lex_state = 4}, - [897] = {.lex_state = 4}, - [898] = {.lex_state = 0}, - [899] = {.lex_state = 0}, - [900] = {.lex_state = 5}, - [901] = {.lex_state = 0}, - [902] = {.lex_state = 5}, - [903] = {.lex_state = 0}, - [904] = {.lex_state = 5}, - [905] = {.lex_state = 5}, - [906] = {.lex_state = 0}, - [907] = {.lex_state = 0}, - [908] = {.lex_state = 0}, - [909] = {.lex_state = 0}, + [892] = {.lex_state = 1}, + [893] = {.lex_state = 1}, + [894] = {.lex_state = 1}, + [895] = {.lex_state = 1}, + [896] = {.lex_state = 1}, + [897] = {.lex_state = 1}, + [898] = {.lex_state = 1}, + [899] = {.lex_state = 1}, + [900] = {.lex_state = 1}, + [901] = {.lex_state = 1}, + [902] = {.lex_state = 6}, + [903] = {.lex_state = 1}, + [904] = {.lex_state = 3}, + [905] = {.lex_state = 3}, + [906] = {.lex_state = 1}, + [907] = {.lex_state = 1}, + [908] = {.lex_state = 1}, + [909] = {.lex_state = 3}, [910] = {.lex_state = 0}, - [911] = {.lex_state = 5}, - [912] = {.lex_state = 0}, - [913] = {.lex_state = 0}, - [914] = {.lex_state = 5}, - [915] = {.lex_state = 5}, - [916] = {.lex_state = 5}, - [917] = {.lex_state = 3}, + [911] = {.lex_state = 7}, + [912] = {.lex_state = 1}, + [913] = {.lex_state = 7}, + [914] = {.lex_state = 1}, + [915] = {.lex_state = 1}, + [916] = {.lex_state = 0}, + [917] = {.lex_state = 0}, [918] = {.lex_state = 0}, - [919] = {.lex_state = 3}, + [919] = {.lex_state = 0}, [920] = {.lex_state = 0}, - [921] = {.lex_state = 4}, - [922] = {.lex_state = 0}, - [923] = {.lex_state = 0}, - [924] = {.lex_state = 0}, - [925] = {.lex_state = 4}, - [926] = {.lex_state = 0}, - [927] = {.lex_state = 0}, - [928] = {.lex_state = 0}, + [921] = {.lex_state = 0}, + [922] = {.lex_state = 1}, + [923] = {.lex_state = 1}, + [924] = {.lex_state = 1}, + [925] = {.lex_state = 1}, + [926] = {.lex_state = 1}, + [927] = {.lex_state = 1}, + [928] = {.lex_state = 1}, [929] = {.lex_state = 3}, - [930] = {.lex_state = 0}, - [931] = {.lex_state = 0}, - [932] = {.lex_state = 0}, - [933] = {.lex_state = 0}, - [934] = {.lex_state = 0}, - [935] = {.lex_state = 4}, + [930] = {.lex_state = 3}, + [931] = {.lex_state = 3}, + [932] = {.lex_state = 3}, + [933] = {.lex_state = 3}, + [934] = {.lex_state = 3}, + [935] = {.lex_state = 3}, [936] = {.lex_state = 3}, - [937] = {.lex_state = 0}, - [938] = {.lex_state = 0}, - [939] = {.lex_state = 0}, - [940] = {.lex_state = 0}, - [941] = {.lex_state = 0}, + [937] = {.lex_state = 3}, + [938] = {.lex_state = 3}, + [939] = {.lex_state = 3}, + [940] = {.lex_state = 3}, + [941] = {.lex_state = 1}, [942] = {.lex_state = 0}, - [943] = {.lex_state = 0}, - [944] = {.lex_state = 5}, - [945] = {.lex_state = 5}, - [946] = {.lex_state = 4}, - [947] = {.lex_state = 3}, - [948] = {.lex_state = 0}, - [949] = {.lex_state = 0}, + [943] = {.lex_state = 1}, + [944] = {.lex_state = 0}, + [945] = {.lex_state = 1}, + [946] = {.lex_state = 2}, + [947] = {.lex_state = 1}, + [948] = {.lex_state = 1}, + [949] = {.lex_state = 8}, [950] = {.lex_state = 0}, - [951] = {.lex_state = 0}, - [952] = {.lex_state = 0}, - [953] = {.lex_state = 0}, - [954] = {.lex_state = 5}, - [955] = {.lex_state = 0}, - [956] = {.lex_state = 3}, - [957] = {.lex_state = 0}, - [958] = {.lex_state = 0}, - [959] = {.lex_state = 0}, - [960] = {.lex_state = 0}, + [951] = {.lex_state = 2}, + [952] = {.lex_state = 1}, + [953] = {.lex_state = 8}, + [954] = {.lex_state = 1}, + [955] = {.lex_state = 2}, + [956] = {.lex_state = 1}, + [957] = {.lex_state = 3}, + [958] = {.lex_state = 7}, + [959] = {.lex_state = 1}, + [960] = {.lex_state = 1}, [961] = {.lex_state = 0}, - [962] = {.lex_state = 0}, + [962] = {.lex_state = 1}, [963] = {.lex_state = 0}, [964] = {.lex_state = 0}, [965] = {.lex_state = 0}, - [966] = {.lex_state = 3}, + [966] = {.lex_state = 1}, [967] = {.lex_state = 0}, - [968] = {.lex_state = 0}, + [968] = {.lex_state = 1}, [969] = {.lex_state = 0}, - [970] = {.lex_state = 0}, - [971] = {.lex_state = 0}, + [970] = {.lex_state = 1}, + [971] = {.lex_state = 1}, [972] = {.lex_state = 0}, - [973] = {.lex_state = 0}, - [974] = {.lex_state = 3}, + [973] = {.lex_state = 1}, + [974] = {.lex_state = 0}, [975] = {.lex_state = 0}, - [976] = {.lex_state = 0}, - [977] = {.lex_state = 0}, - [978] = {.lex_state = 0}, - [979] = {.lex_state = 5}, + [976] = {.lex_state = 1}, + [977] = {.lex_state = 1}, + [978] = {.lex_state = 1}, + [979] = {.lex_state = 1}, [980] = {.lex_state = 0}, [981] = {.lex_state = 0}, - [982] = {.lex_state = 4}, + [982] = {.lex_state = 3}, [983] = {.lex_state = 0}, [984] = {.lex_state = 0}, [985] = {.lex_state = 0}, [986] = {.lex_state = 0}, [987] = {.lex_state = 0}, - [988] = {.lex_state = 4}, + [988] = {.lex_state = 0}, [989] = {.lex_state = 0}, - [990] = {.lex_state = 0}, + [990] = {.lex_state = 2}, [991] = {.lex_state = 0}, - [992] = {.lex_state = 4}, - [993] = {.lex_state = 4}, + [992] = {.lex_state = 0}, + [993] = {.lex_state = 0}, [994] = {.lex_state = 0}, [995] = {.lex_state = 0}, [996] = {.lex_state = 0}, [997] = {.lex_state = 0}, [998] = {.lex_state = 0}, - [999] = {.lex_state = 3}, + [999] = {.lex_state = 0}, [1000] = {.lex_state = 0}, - [1001] = {.lex_state = 5}, + [1001] = {.lex_state = 0}, [1002] = {.lex_state = 0}, - [1003] = {.lex_state = 5}, + [1003] = {.lex_state = 0}, [1004] = {.lex_state = 0}, [1005] = {.lex_state = 0}, [1006] = {.lex_state = 0}, - [1007] = {.lex_state = 5}, - [1008] = {.lex_state = 5}, - [1009] = {.lex_state = 5}, - [1010] = {.lex_state = 5}, - [1011] = {.lex_state = 5}, - [1012] = {.lex_state = 5}, - [1013] = {.lex_state = 5}, - [1014] = {.lex_state = 5}, + [1007] = {.lex_state = 0}, + [1008] = {.lex_state = 0}, + [1009] = {.lex_state = 0}, + [1010] = {.lex_state = 0}, + [1011] = {.lex_state = 2}, + [1012] = {.lex_state = 0}, + [1013] = {.lex_state = 1}, + [1014] = {.lex_state = 1}, [1015] = {.lex_state = 0}, [1016] = {.lex_state = 0}, - [1017] = {.lex_state = 0}, + [1017] = {.lex_state = 1}, [1018] = {.lex_state = 0}, [1019] = {.lex_state = 0}, - [1020] = {.lex_state = 0}, + [1020] = {.lex_state = 3}, [1021] = {.lex_state = 0}, - [1022] = {.lex_state = 3}, + [1022] = {.lex_state = 0}, [1023] = {.lex_state = 0}, [1024] = {.lex_state = 0}, - [1025] = {.lex_state = 0}, + [1025] = {.lex_state = 3}, [1026] = {.lex_state = 0}, - [1027] = {.lex_state = 3}, - [1028] = {.lex_state = 0}, - [1029] = {.lex_state = 5}, - [1030] = {.lex_state = 0}, + [1027] = {.lex_state = 0}, + [1028] = {.lex_state = 3}, + [1029] = {.lex_state = 3}, + [1030] = {.lex_state = 1}, [1031] = {.lex_state = 0}, - [1032] = {.lex_state = 4}, - [1033] = {.lex_state = 3}, - [1034] = {.lex_state = 0}, - [1035] = {.lex_state = 0}, - [1036] = {.lex_state = 3}, - [1037] = {.lex_state = 3}, + [1032] = {.lex_state = 1}, + [1033] = {.lex_state = 0}, + [1034] = {.lex_state = 3}, + [1035] = {.lex_state = 3}, + [1036] = {.lex_state = 0}, + [1037] = {.lex_state = 0}, [1038] = {.lex_state = 0}, [1039] = {.lex_state = 0}, [1040] = {.lex_state = 0}, - [1041] = {.lex_state = 4}, - [1042] = {.lex_state = 4}, + [1041] = {.lex_state = 0}, + [1042] = {.lex_state = 0}, [1043] = {.lex_state = 0}, - [1044] = {.lex_state = 5}, - [1045] = {.lex_state = 0}, - [1046] = {.lex_state = 0}, - [1047] = {.lex_state = 5}, + [1044] = {.lex_state = 0}, + [1045] = {.lex_state = 3}, + [1046] = {.lex_state = 3}, + [1047] = {.lex_state = 0}, [1048] = {.lex_state = 0}, [1049] = {.lex_state = 0}, - [1050] = {.lex_state = 0}, - [1051] = {.lex_state = 5}, - [1052] = {.lex_state = 5}, - [1053] = {.lex_state = 0}, - [1054] = {.lex_state = 0}, - [1055] = {.lex_state = 0}, + [1050] = {.lex_state = 2}, + [1051] = {.lex_state = 0}, + [1052] = {.lex_state = 0}, + [1053] = {.lex_state = 1}, + [1054] = {.lex_state = 2}, + [1055] = {.lex_state = 1}, [1056] = {.lex_state = 0}, [1057] = {.lex_state = 0}, - [1058] = {.lex_state = 0}, + [1058] = {.lex_state = 2}, [1059] = {.lex_state = 0}, - [1060] = {.lex_state = 5}, - [1061] = {.lex_state = 5}, - [1062] = {.lex_state = 3}, + [1060] = {.lex_state = 2}, + [1061] = {.lex_state = 0}, + [1062] = {.lex_state = 0}, [1063] = {.lex_state = 0}, [1064] = {.lex_state = 0}, [1065] = {.lex_state = 0}, - [1066] = {.lex_state = 0}, - [1067] = {.lex_state = 0}, + [1066] = {.lex_state = 1}, + [1067] = {.lex_state = 1}, [1068] = {.lex_state = 0}, - [1069] = {.lex_state = 3}, + [1069] = {.lex_state = 1}, [1070] = {.lex_state = 0}, - [1071] = {.lex_state = 5}, + [1071] = {.lex_state = 3}, [1072] = {.lex_state = 0}, - [1073] = {.lex_state = 0}, - [1074] = {.lex_state = 0}, - [1075] = {.lex_state = 0}, - [1076] = {.lex_state = 0}, + [1073] = {.lex_state = 3}, + [1074] = {.lex_state = 3}, + [1075] = {.lex_state = 3}, + [1076] = {.lex_state = 2}, [1077] = {.lex_state = 0}, - [1078] = {.lex_state = 3}, + [1078] = {.lex_state = 2}, [1079] = {.lex_state = 0}, - [1080] = {.lex_state = 0}, + [1080] = {.lex_state = 2}, [1081] = {.lex_state = 3}, [1082] = {.lex_state = 0}, - [1083] = {.lex_state = 0}, + [1083] = {.lex_state = 3}, [1084] = {.lex_state = 0}, [1085] = {.lex_state = 0}, - [1086] = {.lex_state = 0}, + [1086] = {.lex_state = 3}, [1087] = {.lex_state = 3}, [1088] = {.lex_state = 3}, [1089] = {.lex_state = 0}, [1090] = {.lex_state = 0}, [1091] = {.lex_state = 0}, - [1092] = {.lex_state = 5}, + [1092] = {.lex_state = 0}, [1093] = {.lex_state = 0}, [1094] = {.lex_state = 0}, [1095] = {.lex_state = 0}, [1096] = {.lex_state = 0}, [1097] = {.lex_state = 0}, - [1098] = {.lex_state = 3}, + [1098] = {.lex_state = 0}, [1099] = {.lex_state = 0}, - [1100] = {.lex_state = 3}, + [1100] = {.lex_state = 0}, [1101] = {.lex_state = 3}, [1102] = {.lex_state = 0}, - [1103] = {.lex_state = 0}, - [1104] = {.lex_state = 0}, - [1105] = {.lex_state = 0}, - [1106] = {.lex_state = 0}, - [1107] = {.lex_state = 0}, - [1108] = {.lex_state = 0}, + [1103] = {.lex_state = 3}, + [1104] = {.lex_state = 3}, + [1105] = {.lex_state = 3}, + [1106] = {.lex_state = 3}, + [1107] = {.lex_state = 3}, + [1108] = {.lex_state = 1}, [1109] = {.lex_state = 0}, [1110] = {.lex_state = 0}, [1111] = {.lex_state = 0}, [1112] = {.lex_state = 0}, [1113] = {.lex_state = 0}, [1114] = {.lex_state = 0}, - [1115] = {.lex_state = 3}, + [1115] = {.lex_state = 0}, [1116] = {.lex_state = 0}, - [1117] = {.lex_state = 3}, + [1117] = {.lex_state = 0}, [1118] = {.lex_state = 0}, - [1119] = {.lex_state = 3}, - [1120] = {.lex_state = 3}, + [1119] = {.lex_state = 0}, + [1120] = {.lex_state = 0}, [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 = 0}, - [1127] = {.lex_state = 0}, - [1128] = {.lex_state = 0}, + [1127] = {.lex_state = 2}, + [1128] = {.lex_state = 1}, [1129] = {.lex_state = 0}, - [1130] = {.lex_state = 3}, - [1131] = {.lex_state = 3}, - [1132] = {.lex_state = 3}, - [1133] = {.lex_state = 3}, - [1134] = {.lex_state = 3}, - [1135] = {.lex_state = 3}, - [1136] = {.lex_state = 0}, - [1137] = {.lex_state = 3}, + [1130] = {.lex_state = 2}, + [1131] = {.lex_state = 2}, + [1132] = {.lex_state = 0}, + [1133] = {.lex_state = 2}, + [1134] = {.lex_state = 0}, + [1135] = {.lex_state = 2}, + [1136] = {.lex_state = 2}, + [1137] = {.lex_state = 0}, [1138] = {.lex_state = 0}, - [1139] = {.lex_state = 3}, + [1139] = {.lex_state = 1}, [1140] = {.lex_state = 0}, [1141] = {.lex_state = 3}, [1142] = {.lex_state = 0}, - [1143] = {.lex_state = 3}, + [1143] = {.lex_state = 0}, [1144] = {.lex_state = 0}, [1145] = {.lex_state = 0}, [1146] = {.lex_state = 0}, + [1147] = {.lex_state = 0}, + [1148] = {.lex_state = 1}, + [1149] = {.lex_state = 0}, + [1150] = {.lex_state = 0}, + [1151] = {.lex_state = 0}, + [1152] = {.lex_state = 0}, + [1153] = {.lex_state = 0}, + [1154] = {.lex_state = 0}, + [1155] = {.lex_state = 1}, + [1156] = {.lex_state = 0}, + [1157] = {.lex_state = 0}, + [1158] = {.lex_state = 0}, + [1159] = {.lex_state = 0}, + [1160] = {.lex_state = 0}, + [1161] = {.lex_state = 0}, + [1162] = {.lex_state = 0}, + [1163] = {.lex_state = 0}, + [1164] = {.lex_state = 0}, + [1165] = {.lex_state = 0}, + [1166] = {.lex_state = 1}, + [1167] = {.lex_state = 0}, + [1168] = {.lex_state = 1}, + [1169] = {.lex_state = 0}, + [1170] = {.lex_state = 0}, + [1171] = {.lex_state = 3}, + [1172] = {.lex_state = 0}, + [1173] = {.lex_state = 1}, + [1174] = {.lex_state = 3}, + [1175] = {.lex_state = 3}, + [1176] = {.lex_state = 0}, + [1177] = {.lex_state = 0}, + [1178] = {.lex_state = 0}, + [1179] = {.lex_state = 0}, + [1180] = {.lex_state = 1}, + [1181] = {.lex_state = 3}, + [1182] = {.lex_state = 0}, + [1183] = {.lex_state = 3}, + [1184] = {.lex_state = 0}, + [1185] = {.lex_state = 0}, + [1186] = {.lex_state = 0}, + [1187] = {.lex_state = 0}, + [1188] = {.lex_state = 0}, + [1189] = {.lex_state = 3}, + [1190] = {.lex_state = 3}, + [1191] = {.lex_state = 3}, + [1192] = {.lex_state = 1}, + [1193] = {.lex_state = 0}, + [1194] = {.lex_state = 0}, + [1195] = {.lex_state = 0}, + [1196] = {.lex_state = 0}, + [1197] = {.lex_state = 0}, + [1198] = {.lex_state = 2}, + [1199] = {.lex_state = 0}, + [1200] = {.lex_state = 3}, + [1201] = {.lex_state = 3}, + [1202] = {.lex_state = 0}, + [1203] = {.lex_state = 0}, + [1204] = {.lex_state = 3}, + [1205] = {.lex_state = 0}, + [1206] = {.lex_state = 0}, + [1207] = {.lex_state = 3}, + [1208] = {.lex_state = 0}, + [1209] = {.lex_state = 0}, + [1210] = {.lex_state = 0}, + [1211] = {.lex_state = 0}, + [1212] = {.lex_state = 1}, + [1213] = {.lex_state = 0}, + [1214] = {.lex_state = 0}, + [1215] = {.lex_state = 1}, + [1216] = {.lex_state = 1}, + [1217] = {.lex_state = 0}, + [1218] = {.lex_state = 1}, + [1219] = {.lex_state = 3}, + [1220] = {.lex_state = 0}, + [1221] = {.lex_state = 0}, + [1222] = {.lex_state = 0}, + [1223] = {.lex_state = 0}, + [1224] = {.lex_state = 0}, + [1225] = {.lex_state = 1}, + [1226] = {.lex_state = 0}, + [1227] = {.lex_state = 0}, + [1228] = {.lex_state = 0}, + [1229] = {.lex_state = 1}, + [1230] = {.lex_state = 1}, + [1231] = {.lex_state = 0}, + [1232] = {.lex_state = 0}, + [1233] = {.lex_state = 1}, + [1234] = {.lex_state = 0}, + [1235] = {.lex_state = 0}, + [1236] = {.lex_state = 1}, + [1237] = {.lex_state = 0}, + [1238] = {.lex_state = 0}, + [1239] = {.lex_state = 1}, + [1240] = {.lex_state = 0}, + [1241] = {.lex_state = 3}, + [1242] = {.lex_state = 0}, + [1243] = {.lex_state = 0}, + [1244] = {.lex_state = 1}, + [1245] = {.lex_state = 0}, + [1246] = {.lex_state = 0}, + [1247] = {.lex_state = 0}, + [1248] = {.lex_state = 0}, + [1249] = {.lex_state = 0}, + [1250] = {.lex_state = 0}, + [1251] = {.lex_state = 0}, + [1252] = {.lex_state = 0}, + [1253] = {.lex_state = 0}, + [1254] = {.lex_state = 0}, + [1255] = {.lex_state = 1}, + [1256] = {.lex_state = 1}, + [1257] = {.lex_state = 0}, + [1258] = {.lex_state = 0}, + [1259] = {.lex_state = 0}, + [1260] = {.lex_state = 0}, + [1261] = {.lex_state = 0}, + [1262] = {.lex_state = 0}, + [1263] = {.lex_state = 0}, + [1264] = {.lex_state = 1}, + [1265] = {.lex_state = 0}, + [1266] = {.lex_state = 1}, + [1267] = {.lex_state = 0}, + [1268] = {.lex_state = 0}, + [1269] = {.lex_state = 1}, + [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 = 1}, + [1287] = {.lex_state = 0}, + [1288] = {.lex_state = 0}, + [1289] = {.lex_state = 1}, + [1290] = {.lex_state = 0}, + [1291] = {.lex_state = 0}, + [1292] = {.lex_state = 1}, + [1293] = {.lex_state = 0}, + [1294] = {.lex_state = 1}, + [1295] = {.lex_state = 1}, + [1296] = {.lex_state = 1}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -7910,8 +10343,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1), [sym_false] = ACTIONS(1), [sym_character_literal] = ACTIONS(1), - [sym_string_literal] = ACTIONS(1), - [sym_text_block] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1), + [aux_sym__escape_sequence_token1] = ACTIONS(1), + [sym_escape_sequence] = ACTIONS(1), [sym_null_literal] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), [anon_sym_AMP] = ACTIONS(1), @@ -7947,6 +10382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(1), [anon_sym_GT_GT_GT] = ACTIONS(1), [anon_sym_instanceof] = ACTIONS(1), + [anon_sym_final] = ACTIONS(1), [anon_sym_DASH_GT] = ACTIONS(1), [anon_sym_COMMA] = ACTIONS(1), [anon_sym_QMARK] = ACTIONS(1), @@ -8002,7 +10438,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(1), [anon_sym_private] = ACTIONS(1), [anon_sym_abstract] = ACTIONS(1), - [anon_sym_final] = ACTIONS(1), [anon_sym_strictfp] = ACTIONS(1), [anon_sym_native] = ACTIONS(1), [anon_sym_transient] = ACTIONS(1), @@ -8031,72 +10466,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_program] = STATE(1075), - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(9), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym_program] = STATE(1223), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(12), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), @@ -8108,136 +10547,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [2] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(472), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_type_arguments] = STATE(1033), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(6), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_explicit_constructor_invocation] = STATE(7), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_program_repeat1] = STATE(6), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_switch_label] = STATE(1270), + [sym_statement] = STATE(5), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_program_repeat1] = STATE(5), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_switch_block_statement_group_repeat1] = STATE(318), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -8248,138 +10692,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(87), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_RBRACE] = ACTIONS(91), + [anon_sym_case] = ACTIONS(93), + [anon_sym_default] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [3] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_switch_label] = STATE(1084), - [sym_statement] = STATE(5), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_program_repeat1] = STATE(5), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_switch_block_statement_group_repeat1] = STATE(165), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(550), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_type_arguments] = STATE(1148), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(8), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_explicit_constructor_invocation] = STATE(7), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -8390,277 +10839,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(93), - [anon_sym_case] = ACTIONS(95), - [anon_sym_default] = ACTIONS(95), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_LT] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_RBRACE] = ACTIONS(97), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(99), + [sym_super] = ACTIONS(101), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [4] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), [sym_statement] = STATE(4), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), - [ts_builtin_sym_end] = ACTIONS(97), - [sym_identifier] = ACTIONS(99), - [sym_decimal_integer_literal] = ACTIONS(102), - [sym_hex_integer_literal] = ACTIONS(102), - [sym_octal_integer_literal] = ACTIONS(105), - [sym_binary_integer_literal] = ACTIONS(105), - [sym_decimal_floating_point_literal] = ACTIONS(105), - [sym_hex_floating_point_literal] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_character_literal] = ACTIONS(105), - [sym_string_literal] = ACTIONS(102), - [sym_text_block] = ACTIONS(105), - [sym_null_literal] = ACTIONS(102), - [anon_sym_LPAREN] = ACTIONS(108), - [anon_sym_PLUS] = ACTIONS(111), - [anon_sym_DASH] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(114), - [anon_sym_TILDE] = ACTIONS(114), - [anon_sym_PLUS_PLUS] = ACTIONS(117), - [anon_sym_DASH_DASH] = ACTIONS(117), - [anon_sym_new] = ACTIONS(120), - [anon_sym_class] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(126), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_RBRACE] = ACTIONS(97), - [anon_sym_case] = ACTIONS(132), - [anon_sym_default] = ACTIONS(134), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_assert] = ACTIONS(140), - [anon_sym_do] = ACTIONS(143), - [anon_sym_while] = ACTIONS(146), - [anon_sym_break] = ACTIONS(149), - [anon_sym_continue] = ACTIONS(152), - [anon_sym_return] = ACTIONS(155), - [anon_sym_yield] = ACTIONS(158), - [anon_sym_synchronized] = ACTIONS(161), - [anon_sym_throw] = ACTIONS(164), - [anon_sym_try] = ACTIONS(167), - [anon_sym_if] = ACTIONS(170), - [anon_sym_for] = ACTIONS(173), - [anon_sym_AT] = ACTIONS(176), - [anon_sym_open] = ACTIONS(179), - [anon_sym_module] = ACTIONS(182), - [anon_sym_static] = ACTIONS(134), - [anon_sym_package] = ACTIONS(185), - [anon_sym_import] = ACTIONS(188), - [anon_sym_enum] = ACTIONS(191), - [anon_sym_public] = ACTIONS(134), - [anon_sym_protected] = ACTIONS(134), - [anon_sym_private] = ACTIONS(134), - [anon_sym_abstract] = ACTIONS(134), - [anon_sym_final] = ACTIONS(134), - [anon_sym_strictfp] = ACTIONS(134), - [anon_sym_native] = ACTIONS(134), - [anon_sym_transient] = ACTIONS(134), - [anon_sym_volatile] = ACTIONS(134), - [anon_sym_sealed] = ACTIONS(134), - [anon_sym_non_DASHsealed] = ACTIONS(194), - [anon_sym_ATinterface] = ACTIONS(197), - [anon_sym_interface] = ACTIONS(200), - [anon_sym_byte] = ACTIONS(203), - [anon_sym_short] = ACTIONS(203), - [anon_sym_int] = ACTIONS(203), - [anon_sym_long] = ACTIONS(203), - [anon_sym_char] = ACTIONS(203), - [anon_sym_float] = ACTIONS(206), - [anon_sym_double] = ACTIONS(206), - [sym_boolean_type] = ACTIONS(209), - [sym_void_type] = ACTIONS(209), - [sym_this] = ACTIONS(212), - [sym_super] = ACTIONS(215), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [ts_builtin_sym_end] = ACTIONS(103), + [sym_identifier] = ACTIONS(105), + [sym_decimal_integer_literal] = ACTIONS(108), + [sym_hex_integer_literal] = ACTIONS(108), + [sym_octal_integer_literal] = ACTIONS(111), + [sym_binary_integer_literal] = ACTIONS(111), + [sym_decimal_floating_point_literal] = ACTIONS(111), + [sym_hex_floating_point_literal] = ACTIONS(108), + [sym_true] = ACTIONS(108), + [sym_false] = ACTIONS(108), + [sym_character_literal] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(114), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(117), + [sym_null_literal] = ACTIONS(108), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_final] = ACTIONS(126), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_PLUS_PLUS] = ACTIONS(132), + [anon_sym_DASH_DASH] = ACTIONS(132), + [anon_sym_new] = ACTIONS(135), + [anon_sym_class] = ACTIONS(138), + [anon_sym_switch] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(144), + [anon_sym_RBRACE] = ACTIONS(103), + [anon_sym_case] = ACTIONS(147), + [anon_sym_default] = ACTIONS(126), + [anon_sym_SEMI] = ACTIONS(149), + [anon_sym_assert] = ACTIONS(152), + [anon_sym_do] = ACTIONS(155), + [anon_sym_while] = ACTIONS(158), + [anon_sym_break] = ACTIONS(161), + [anon_sym_continue] = ACTIONS(164), + [anon_sym_return] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(170), + [anon_sym_synchronized] = ACTIONS(173), + [anon_sym_throw] = ACTIONS(176), + [anon_sym_try] = ACTIONS(179), + [anon_sym_if] = ACTIONS(182), + [anon_sym_for] = ACTIONS(185), + [anon_sym_AT] = ACTIONS(188), + [anon_sym_open] = ACTIONS(191), + [anon_sym_module] = ACTIONS(194), + [anon_sym_static] = ACTIONS(126), + [anon_sym_package] = ACTIONS(197), + [anon_sym_import] = ACTIONS(200), + [anon_sym_enum] = ACTIONS(203), + [anon_sym_public] = ACTIONS(126), + [anon_sym_protected] = ACTIONS(126), + [anon_sym_private] = ACTIONS(126), + [anon_sym_abstract] = ACTIONS(126), + [anon_sym_strictfp] = ACTIONS(126), + [anon_sym_native] = ACTIONS(126), + [anon_sym_transient] = ACTIONS(126), + [anon_sym_volatile] = ACTIONS(126), + [anon_sym_sealed] = ACTIONS(126), + [anon_sym_non_DASHsealed] = ACTIONS(206), + [anon_sym_record] = ACTIONS(209), + [anon_sym_ATinterface] = ACTIONS(212), + [anon_sym_interface] = ACTIONS(215), + [anon_sym_byte] = ACTIONS(218), + [anon_sym_short] = ACTIONS(218), + [anon_sym_int] = ACTIONS(218), + [anon_sym_long] = ACTIONS(218), + [anon_sym_char] = ACTIONS(218), + [anon_sym_float] = ACTIONS(221), + [anon_sym_double] = ACTIONS(221), + [sym_boolean_type] = ACTIONS(224), + [sym_void_type] = ACTIONS(224), + [sym_this] = ACTIONS(227), + [sym_super] = ACTIONS(230), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [5] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), [sym_statement] = STATE(4), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -8671,136 +11130,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(218), - [anon_sym_case] = ACTIONS(220), - [anon_sym_default] = ACTIONS(220), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_RBRACE] = ACTIONS(233), + [anon_sym_case] = ACTIONS(235), + [anon_sym_default] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [6] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(4), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_program_repeat1] = STATE(4), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(13), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -8811,135 +11275,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(222), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_RBRACE] = ACTIONS(237), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [7] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), [sym_statement] = STATE(10), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), [aux_sym_program_repeat1] = STATE(10), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -8950,135 +11419,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(222), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_RBRACE] = ACTIONS(239), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [8] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), [sym_statement] = STATE(4), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9089,136 +11563,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(224), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_RBRACE] = ACTIONS(239), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [9] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), [sym_statement] = STATE(4), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), - [ts_builtin_sym_end] = ACTIONS(226), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9229,134 +11707,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_RBRACE] = ACTIONS(241), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [10] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), [sym_statement] = STATE(4), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9367,135 +11851,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(228), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_RBRACE] = ACTIONS(243), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [11] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(8), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_program_repeat1] = STATE(8), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(9), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9506,135 +11995,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(230), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_RBRACE] = ACTIONS(245), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [12] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), [sym_statement] = STATE(4), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), [aux_sym_program_repeat1] = STATE(4), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [ts_builtin_sym_end] = ACTIONS(247), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9645,135 +12140,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(232), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [13] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(12), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(4), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_program_repeat1] = STATE(4), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9784,134 +12283,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(234), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_RBRACE] = ACTIONS(249), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [14] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(150), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(326), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -9922,134 +12426,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [15] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(159), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(327), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -10059,133 +12568,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [16] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(195), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(312), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10196,134 +12710,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [17] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(1081), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(1233), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -10333,133 +12852,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [18] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(197), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(346), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10470,133 +12994,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [19] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(198), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(303), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10607,133 +13136,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [20] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(158), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(284), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10744,133 +13278,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [21] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(189), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(313), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -10881,133 +13420,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [22] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(199), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(335), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11018,133 +13562,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [23] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(151), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(337), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -11155,134 +13704,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [24] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(155), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(272), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -11292,134 +13846,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [25] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(192), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(304), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -11429,134 +13988,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [26] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(160), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(305), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -11566,134 +14130,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [27] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(180), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(307), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -11703,134 +14272,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [28] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(185), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(319), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -11840,134 +14414,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [29] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(186), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(320), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -11977,134 +14556,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [30] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(148), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(322), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -12114,134 +14698,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [31] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(202), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(323), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -12251,134 +14840,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [32] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(149), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(326), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -12388,133 +14982,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [33] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(154), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(291), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -12525,134 +15124,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [34] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(156), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(329), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -12662,134 +15266,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [35] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(200), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(282), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -12799,134 +15408,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [36] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(161), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(291), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -12936,134 +15550,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [37] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(205), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(294), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -13073,134 +15692,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [38] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(162), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(297), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -13210,133 +15834,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [39] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(203), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(282), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), @@ -13347,134 +15976,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [40] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(215), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(311), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -13484,134 +16118,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [41] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(157), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(314), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -13621,134 +16260,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [42] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(196), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(316), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -13758,134 +16402,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [43] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(153), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(342), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -13895,134 +16544,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [44] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(53), - [sym_statement] = STATE(164), - [sym_block] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_assert_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_yield_statement] = STATE(178), - [sym_synchronized_statement] = STATE(178), - [sym_throw_statement] = STATE(178), - [sym_try_statement] = STATE(178), - [sym_try_with_resources_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_enhanced_for_statement] = STATE(178), - [sym__annotation] = STATE(427), - [sym_marker_annotation] = STATE(427), - [sym_annotation] = STATE(427), - [sym_declaration] = STATE(178), - [sym_module_declaration] = STATE(201), - [sym_package_declaration] = STATE(201), - [sym_import_declaration] = STATE(201), - [sym_enum_declaration] = STATE(201), - [sym_class_declaration] = STATE(201), - [sym_modifiers] = STATE(578), - [sym_annotation_type_declaration] = STATE(201), - [sym_interface_declaration] = STATE(201), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(598), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(178), - [aux_sym_dimensions_expr_repeat1] = STATE(537), - [aux_sym_modifiers_repeat1] = STATE(348), - [sym_identifier] = ACTIONS(7), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(340), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -14032,1024 +16686,1417 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [anon_sym_assert] = ACTIONS(33), - [anon_sym_do] = ACTIONS(35), - [anon_sym_while] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), - [anon_sym_synchronized] = ACTIONS(47), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_try] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_for] = ACTIONS(55), - [anon_sym_AT] = ACTIONS(57), - [anon_sym_open] = ACTIONS(59), - [anon_sym_module] = ACTIONS(61), - [anon_sym_static] = ACTIONS(29), - [anon_sym_package] = ACTIONS(63), - [anon_sym_import] = ACTIONS(65), - [anon_sym_enum] = ACTIONS(67), - [anon_sym_public] = ACTIONS(29), - [anon_sym_protected] = ACTIONS(29), - [anon_sym_private] = ACTIONS(29), - [anon_sym_abstract] = ACTIONS(29), - [anon_sym_final] = ACTIONS(29), - [anon_sym_strictfp] = ACTIONS(29), - [anon_sym_native] = ACTIONS(29), - [anon_sym_transient] = ACTIONS(29), - [anon_sym_volatile] = ACTIONS(29), - [anon_sym_sealed] = ACTIONS(29), - [anon_sym_non_DASHsealed] = ACTIONS(69), - [anon_sym_ATinterface] = ACTIONS(71), - [anon_sym_interface] = ACTIONS(73), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [45] = { - [ts_builtin_sym_end] = ACTIONS(236), - [sym_identifier] = ACTIONS(238), - [sym_decimal_integer_literal] = ACTIONS(238), - [sym_hex_integer_literal] = ACTIONS(238), - [sym_octal_integer_literal] = ACTIONS(236), - [sym_binary_integer_literal] = ACTIONS(236), - [sym_decimal_floating_point_literal] = ACTIONS(236), - [sym_hex_floating_point_literal] = ACTIONS(238), - [sym_true] = ACTIONS(238), - [sym_false] = ACTIONS(238), - [sym_character_literal] = ACTIONS(236), - [sym_string_literal] = ACTIONS(238), - [sym_text_block] = ACTIONS(236), - [sym_null_literal] = ACTIONS(238), - [anon_sym_LPAREN] = ACTIONS(236), - [anon_sym_AMP] = ACTIONS(238), - [anon_sym_RPAREN] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT_EQ] = ACTIONS(236), - [anon_sym_LT_EQ] = ACTIONS(236), - [anon_sym_EQ_EQ] = ACTIONS(236), - [anon_sym_BANG_EQ] = ACTIONS(236), - [anon_sym_AMP_AMP] = ACTIONS(236), - [anon_sym_PIPE_PIPE] = ACTIONS(236), - [anon_sym_PLUS] = ACTIONS(238), - [anon_sym_DASH] = ACTIONS(238), - [anon_sym_STAR] = ACTIONS(236), - [anon_sym_SLASH] = ACTIONS(238), - [anon_sym_PIPE] = ACTIONS(238), - [anon_sym_CARET] = ACTIONS(236), - [anon_sym_PERCENT] = ACTIONS(236), - [anon_sym_LT_LT] = ACTIONS(236), - [anon_sym_GT_GT] = ACTIONS(238), - [anon_sym_GT_GT_GT] = ACTIONS(236), - [anon_sym_instanceof] = ACTIONS(238), - [anon_sym_DASH_GT] = ACTIONS(236), - [anon_sym_COMMA] = ACTIONS(236), - [anon_sym_QMARK] = ACTIONS(236), - [anon_sym_COLON] = ACTIONS(238), - [anon_sym_BANG] = ACTIONS(238), - [anon_sym_TILDE] = ACTIONS(236), - [anon_sym_PLUS_PLUS] = ACTIONS(236), - [anon_sym_DASH_DASH] = ACTIONS(236), - [anon_sym_new] = ACTIONS(238), - [anon_sym_LBRACK] = ACTIONS(236), - [anon_sym_RBRACK] = ACTIONS(236), - [anon_sym_DOT] = ACTIONS(238), - [anon_sym_class] = ACTIONS(238), - [anon_sym_COLON_COLON] = ACTIONS(236), - [anon_sym_switch] = ACTIONS(238), - [anon_sym_LBRACE] = ACTIONS(236), - [anon_sym_RBRACE] = ACTIONS(236), - [anon_sym_case] = ACTIONS(238), - [anon_sym_default] = ACTIONS(238), - [anon_sym_SEMI] = ACTIONS(236), - [anon_sym_assert] = ACTIONS(238), - [anon_sym_do] = ACTIONS(238), - [anon_sym_while] = ACTIONS(238), - [anon_sym_break] = ACTIONS(238), - [anon_sym_continue] = ACTIONS(238), - [anon_sym_return] = ACTIONS(238), - [anon_sym_yield] = ACTIONS(238), - [anon_sym_synchronized] = ACTIONS(238), - [anon_sym_throw] = ACTIONS(238), - [anon_sym_try] = ACTIONS(238), - [anon_sym_if] = ACTIONS(238), - [anon_sym_else] = ACTIONS(238), - [anon_sym_for] = ACTIONS(238), - [anon_sym_AT] = ACTIONS(238), - [anon_sym_open] = ACTIONS(238), - [anon_sym_module] = ACTIONS(238), - [anon_sym_static] = ACTIONS(238), - [anon_sym_package] = ACTIONS(238), - [anon_sym_import] = ACTIONS(238), - [anon_sym_enum] = ACTIONS(238), - [anon_sym_public] = ACTIONS(238), - [anon_sym_protected] = ACTIONS(238), - [anon_sym_private] = ACTIONS(238), - [anon_sym_abstract] = ACTIONS(238), - [anon_sym_final] = ACTIONS(238), - [anon_sym_strictfp] = ACTIONS(238), - [anon_sym_native] = ACTIONS(238), - [anon_sym_transient] = ACTIONS(238), - [anon_sym_volatile] = ACTIONS(238), - [anon_sym_sealed] = ACTIONS(238), - [anon_sym_non_DASHsealed] = ACTIONS(236), - [anon_sym_record] = ACTIONS(238), - [anon_sym_ATinterface] = ACTIONS(236), - [anon_sym_interface] = ACTIONS(238), - [anon_sym_byte] = ACTIONS(238), - [anon_sym_short] = ACTIONS(238), - [anon_sym_int] = ACTIONS(238), - [anon_sym_long] = ACTIONS(238), - [anon_sym_char] = ACTIONS(238), - [anon_sym_float] = ACTIONS(238), - [anon_sym_double] = ACTIONS(238), - [sym_boolean_type] = ACTIONS(238), - [sym_void_type] = ACTIONS(238), - [sym_this] = ACTIONS(238), - [sym_super] = ACTIONS(238), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(339), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [46] = { - [ts_builtin_sym_end] = ACTIONS(240), - [sym_identifier] = ACTIONS(242), - [sym_decimal_integer_literal] = ACTIONS(242), - [sym_hex_integer_literal] = ACTIONS(242), - [sym_octal_integer_literal] = ACTIONS(240), - [sym_binary_integer_literal] = ACTIONS(240), - [sym_decimal_floating_point_literal] = ACTIONS(240), - [sym_hex_floating_point_literal] = ACTIONS(242), - [sym_true] = ACTIONS(242), - [sym_false] = ACTIONS(242), - [sym_character_literal] = ACTIONS(240), - [sym_string_literal] = ACTIONS(242), - [sym_text_block] = ACTIONS(240), - [sym_null_literal] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(240), - [anon_sym_AMP] = ACTIONS(242), - [anon_sym_RPAREN] = ACTIONS(240), - [anon_sym_GT] = ACTIONS(242), - [anon_sym_LT] = ACTIONS(242), - [anon_sym_GT_EQ] = ACTIONS(240), - [anon_sym_LT_EQ] = ACTIONS(240), - [anon_sym_EQ_EQ] = ACTIONS(240), - [anon_sym_BANG_EQ] = ACTIONS(240), - [anon_sym_AMP_AMP] = ACTIONS(240), - [anon_sym_PIPE_PIPE] = ACTIONS(240), - [anon_sym_PLUS] = ACTIONS(242), - [anon_sym_DASH] = ACTIONS(242), - [anon_sym_STAR] = ACTIONS(240), - [anon_sym_SLASH] = ACTIONS(242), - [anon_sym_PIPE] = ACTIONS(242), - [anon_sym_CARET] = ACTIONS(240), - [anon_sym_PERCENT] = ACTIONS(240), - [anon_sym_LT_LT] = ACTIONS(240), - [anon_sym_GT_GT] = ACTIONS(242), - [anon_sym_GT_GT_GT] = ACTIONS(240), - [anon_sym_instanceof] = ACTIONS(242), - [anon_sym_DASH_GT] = ACTIONS(240), - [anon_sym_COMMA] = ACTIONS(240), - [anon_sym_QMARK] = ACTIONS(240), - [anon_sym_COLON] = ACTIONS(242), - [anon_sym_BANG] = ACTIONS(242), - [anon_sym_TILDE] = ACTIONS(240), - [anon_sym_PLUS_PLUS] = ACTIONS(240), - [anon_sym_DASH_DASH] = ACTIONS(240), - [anon_sym_new] = ACTIONS(242), - [anon_sym_LBRACK] = ACTIONS(240), - [anon_sym_RBRACK] = ACTIONS(240), - [anon_sym_DOT] = ACTIONS(242), - [anon_sym_class] = ACTIONS(242), - [anon_sym_COLON_COLON] = 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_SEMI] = ACTIONS(240), - [anon_sym_assert] = ACTIONS(242), - [anon_sym_do] = ACTIONS(242), - [anon_sym_while] = ACTIONS(242), - [anon_sym_break] = ACTIONS(242), - [anon_sym_continue] = ACTIONS(242), - [anon_sym_return] = ACTIONS(242), - [anon_sym_yield] = ACTIONS(242), - [anon_sym_synchronized] = ACTIONS(242), - [anon_sym_throw] = ACTIONS(242), - [anon_sym_try] = ACTIONS(242), - [anon_sym_if] = ACTIONS(242), - [anon_sym_else] = ACTIONS(242), - [anon_sym_for] = ACTIONS(242), - [anon_sym_AT] = ACTIONS(242), - [anon_sym_open] = ACTIONS(242), - [anon_sym_module] = ACTIONS(242), - [anon_sym_static] = ACTIONS(242), - [anon_sym_package] = ACTIONS(242), - [anon_sym_import] = ACTIONS(242), - [anon_sym_enum] = ACTIONS(242), - [anon_sym_public] = ACTIONS(242), - [anon_sym_protected] = ACTIONS(242), - [anon_sym_private] = ACTIONS(242), - [anon_sym_abstract] = ACTIONS(242), - [anon_sym_final] = ACTIONS(242), - [anon_sym_strictfp] = ACTIONS(242), - [anon_sym_native] = ACTIONS(242), - [anon_sym_transient] = ACTIONS(242), - [anon_sym_volatile] = ACTIONS(242), - [anon_sym_sealed] = ACTIONS(242), - [anon_sym_non_DASHsealed] = ACTIONS(240), - [anon_sym_record] = ACTIONS(242), - [anon_sym_ATinterface] = ACTIONS(240), - [anon_sym_interface] = ACTIONS(242), - [anon_sym_byte] = ACTIONS(242), - [anon_sym_short] = ACTIONS(242), - [anon_sym_int] = ACTIONS(242), - [anon_sym_long] = ACTIONS(242), - [anon_sym_char] = ACTIONS(242), - [anon_sym_float] = ACTIONS(242), - [anon_sym_double] = ACTIONS(242), - [sym_boolean_type] = ACTIONS(242), - [sym_void_type] = ACTIONS(242), - [sym_this] = ACTIONS(242), - [sym_super] = ACTIONS(242), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(337), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [47] = { - [ts_builtin_sym_end] = ACTIONS(244), - [sym_identifier] = ACTIONS(246), - [sym_decimal_integer_literal] = ACTIONS(246), - [sym_hex_integer_literal] = ACTIONS(246), - [sym_octal_integer_literal] = ACTIONS(244), - [sym_binary_integer_literal] = ACTIONS(244), - [sym_decimal_floating_point_literal] = ACTIONS(244), - [sym_hex_floating_point_literal] = ACTIONS(246), - [sym_true] = ACTIONS(246), - [sym_false] = ACTIONS(246), - [sym_character_literal] = ACTIONS(244), - [sym_string_literal] = ACTIONS(246), - [sym_text_block] = ACTIONS(244), - [sym_null_literal] = ACTIONS(246), - [anon_sym_LPAREN] = ACTIONS(244), - [anon_sym_AMP] = ACTIONS(246), - [anon_sym_RPAREN] = ACTIONS(244), - [anon_sym_GT] = ACTIONS(246), - [anon_sym_LT] = ACTIONS(246), - [anon_sym_GT_EQ] = ACTIONS(244), - [anon_sym_LT_EQ] = ACTIONS(244), - [anon_sym_EQ_EQ] = ACTIONS(244), - [anon_sym_BANG_EQ] = ACTIONS(244), - [anon_sym_AMP_AMP] = ACTIONS(244), - [anon_sym_PIPE_PIPE] = ACTIONS(244), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_STAR] = ACTIONS(244), - [anon_sym_SLASH] = ACTIONS(246), - [anon_sym_PIPE] = ACTIONS(246), - [anon_sym_CARET] = ACTIONS(244), - [anon_sym_PERCENT] = ACTIONS(244), - [anon_sym_LT_LT] = ACTIONS(244), - [anon_sym_GT_GT] = ACTIONS(246), - [anon_sym_GT_GT_GT] = ACTIONS(244), - [anon_sym_instanceof] = ACTIONS(246), - [anon_sym_DASH_GT] = ACTIONS(244), - [anon_sym_COMMA] = ACTIONS(244), - [anon_sym_QMARK] = ACTIONS(244), - [anon_sym_COLON] = ACTIONS(244), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(244), - [anon_sym_PLUS_PLUS] = ACTIONS(244), - [anon_sym_DASH_DASH] = ACTIONS(244), - [anon_sym_new] = ACTIONS(246), - [anon_sym_RBRACK] = ACTIONS(244), - [anon_sym_class] = ACTIONS(246), - [anon_sym_switch] = ACTIONS(246), - [anon_sym_LBRACE] = ACTIONS(244), - [anon_sym_RBRACE] = ACTIONS(244), - [anon_sym_case] = ACTIONS(246), - [anon_sym_default] = ACTIONS(246), - [anon_sym_SEMI] = ACTIONS(244), - [anon_sym_assert] = ACTIONS(246), - [anon_sym_do] = ACTIONS(246), - [anon_sym_while] = ACTIONS(246), - [anon_sym_break] = ACTIONS(246), - [anon_sym_continue] = ACTIONS(246), - [anon_sym_return] = ACTIONS(246), - [anon_sym_yield] = ACTIONS(246), - [anon_sym_synchronized] = ACTIONS(246), - [anon_sym_throw] = ACTIONS(246), - [anon_sym_try] = ACTIONS(246), - [anon_sym_if] = ACTIONS(246), - [anon_sym_else] = ACTIONS(246), - [anon_sym_for] = ACTIONS(246), - [anon_sym_AT] = ACTIONS(246), - [anon_sym_open] = ACTIONS(246), - [anon_sym_module] = ACTIONS(246), - [anon_sym_static] = ACTIONS(246), - [anon_sym_package] = ACTIONS(246), - [anon_sym_import] = ACTIONS(246), - [anon_sym_enum] = ACTIONS(246), - [anon_sym_public] = ACTIONS(246), - [anon_sym_protected] = ACTIONS(246), - [anon_sym_private] = ACTIONS(246), - [anon_sym_abstract] = ACTIONS(246), - [anon_sym_final] = ACTIONS(246), - [anon_sym_strictfp] = ACTIONS(246), - [anon_sym_native] = ACTIONS(246), - [anon_sym_transient] = ACTIONS(246), - [anon_sym_volatile] = ACTIONS(246), - [anon_sym_sealed] = ACTIONS(246), - [anon_sym_non_DASHsealed] = ACTIONS(244), - [anon_sym_record] = ACTIONS(246), - [anon_sym_ATinterface] = ACTIONS(244), - [anon_sym_interface] = ACTIONS(246), - [anon_sym_byte] = ACTIONS(246), - [anon_sym_short] = ACTIONS(246), - [anon_sym_int] = ACTIONS(246), - [anon_sym_long] = ACTIONS(246), - [anon_sym_char] = ACTIONS(246), - [anon_sym_float] = ACTIONS(246), - [anon_sym_double] = ACTIONS(246), - [sym_boolean_type] = ACTIONS(246), - [sym_void_type] = ACTIONS(246), - [sym_this] = ACTIONS(246), - [sym_super] = ACTIONS(246), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(335), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [48] = { - [ts_builtin_sym_end] = ACTIONS(248), - [sym_identifier] = ACTIONS(250), - [sym_decimal_integer_literal] = ACTIONS(250), - [sym_hex_integer_literal] = ACTIONS(250), - [sym_octal_integer_literal] = ACTIONS(248), - [sym_binary_integer_literal] = ACTIONS(248), - [sym_decimal_floating_point_literal] = ACTIONS(248), - [sym_hex_floating_point_literal] = ACTIONS(250), - [sym_true] = ACTIONS(250), - [sym_false] = ACTIONS(250), - [sym_character_literal] = ACTIONS(248), - [sym_string_literal] = ACTIONS(250), - [sym_text_block] = ACTIONS(248), - [sym_null_literal] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_AMP] = ACTIONS(250), - [anon_sym_RPAREN] = ACTIONS(248), - [anon_sym_GT] = ACTIONS(250), - [anon_sym_LT] = ACTIONS(250), - [anon_sym_GT_EQ] = ACTIONS(248), - [anon_sym_LT_EQ] = ACTIONS(248), - [anon_sym_EQ_EQ] = ACTIONS(248), - [anon_sym_BANG_EQ] = ACTIONS(248), - [anon_sym_AMP_AMP] = ACTIONS(248), - [anon_sym_PIPE_PIPE] = ACTIONS(248), - [anon_sym_PLUS] = ACTIONS(250), - [anon_sym_DASH] = ACTIONS(250), - [anon_sym_STAR] = ACTIONS(248), - [anon_sym_SLASH] = ACTIONS(250), - [anon_sym_PIPE] = ACTIONS(250), - [anon_sym_CARET] = ACTIONS(248), - [anon_sym_PERCENT] = ACTIONS(248), - [anon_sym_LT_LT] = ACTIONS(248), - [anon_sym_GT_GT] = ACTIONS(250), - [anon_sym_GT_GT_GT] = ACTIONS(248), - [anon_sym_instanceof] = ACTIONS(250), - [anon_sym_DASH_GT] = ACTIONS(248), - [anon_sym_COMMA] = ACTIONS(248), - [anon_sym_QMARK] = ACTIONS(248), - [anon_sym_COLON] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(250), - [anon_sym_TILDE] = ACTIONS(248), - [anon_sym_PLUS_PLUS] = ACTIONS(248), - [anon_sym_DASH_DASH] = ACTIONS(248), - [anon_sym_new] = ACTIONS(250), - [anon_sym_RBRACK] = ACTIONS(248), - [anon_sym_class] = ACTIONS(250), - [anon_sym_switch] = ACTIONS(250), - [anon_sym_LBRACE] = ACTIONS(248), - [anon_sym_RBRACE] = ACTIONS(248), - [anon_sym_case] = ACTIONS(250), - [anon_sym_default] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(248), - [anon_sym_assert] = ACTIONS(250), - [anon_sym_do] = ACTIONS(250), - [anon_sym_while] = ACTIONS(250), - [anon_sym_break] = ACTIONS(250), - [anon_sym_continue] = ACTIONS(250), - [anon_sym_return] = ACTIONS(250), - [anon_sym_yield] = ACTIONS(250), - [anon_sym_synchronized] = ACTIONS(250), - [anon_sym_throw] = ACTIONS(250), - [anon_sym_try] = ACTIONS(250), - [anon_sym_if] = ACTIONS(250), - [anon_sym_else] = ACTIONS(250), - [anon_sym_for] = ACTIONS(250), - [anon_sym_AT] = ACTIONS(250), - [anon_sym_open] = ACTIONS(250), - [anon_sym_module] = ACTIONS(250), - [anon_sym_static] = ACTIONS(250), - [anon_sym_package] = ACTIONS(250), - [anon_sym_import] = ACTIONS(250), - [anon_sym_enum] = ACTIONS(250), - [anon_sym_public] = ACTIONS(250), - [anon_sym_protected] = ACTIONS(250), - [anon_sym_private] = ACTIONS(250), - [anon_sym_abstract] = ACTIONS(250), - [anon_sym_final] = ACTIONS(250), - [anon_sym_strictfp] = ACTIONS(250), - [anon_sym_native] = ACTIONS(250), - [anon_sym_transient] = ACTIONS(250), - [anon_sym_volatile] = ACTIONS(250), - [anon_sym_sealed] = ACTIONS(250), - [anon_sym_non_DASHsealed] = ACTIONS(248), - [anon_sym_record] = ACTIONS(250), - [anon_sym_ATinterface] = ACTIONS(248), - [anon_sym_interface] = ACTIONS(250), - [anon_sym_byte] = ACTIONS(250), - [anon_sym_short] = ACTIONS(250), - [anon_sym_int] = ACTIONS(250), - [anon_sym_long] = ACTIONS(250), - [anon_sym_char] = ACTIONS(250), - [anon_sym_float] = ACTIONS(250), - [anon_sym_double] = ACTIONS(250), - [sym_boolean_type] = ACTIONS(250), - [sym_void_type] = ACTIONS(250), - [sym_this] = ACTIONS(250), - [sym_super] = ACTIONS(250), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(313), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [49] = { - [ts_builtin_sym_end] = ACTIONS(252), - [sym_identifier] = ACTIONS(254), - [sym_decimal_integer_literal] = ACTIONS(254), - [sym_hex_integer_literal] = ACTIONS(254), - [sym_octal_integer_literal] = ACTIONS(252), - [sym_binary_integer_literal] = ACTIONS(252), - [sym_decimal_floating_point_literal] = ACTIONS(252), - [sym_hex_floating_point_literal] = ACTIONS(254), - [sym_true] = ACTIONS(254), - [sym_false] = ACTIONS(254), - [sym_character_literal] = ACTIONS(252), - [sym_string_literal] = ACTIONS(254), - [sym_text_block] = ACTIONS(252), - [sym_null_literal] = ACTIONS(254), - [anon_sym_LPAREN] = ACTIONS(252), - [anon_sym_AMP] = ACTIONS(254), - [anon_sym_RPAREN] = ACTIONS(252), - [anon_sym_GT] = ACTIONS(254), - [anon_sym_LT] = ACTIONS(254), - [anon_sym_GT_EQ] = ACTIONS(252), - [anon_sym_LT_EQ] = ACTIONS(252), - [anon_sym_EQ_EQ] = ACTIONS(252), - [anon_sym_BANG_EQ] = ACTIONS(252), - [anon_sym_AMP_AMP] = ACTIONS(252), - [anon_sym_PIPE_PIPE] = ACTIONS(252), - [anon_sym_PLUS] = ACTIONS(254), - [anon_sym_DASH] = ACTIONS(254), - [anon_sym_STAR] = ACTIONS(252), - [anon_sym_SLASH] = ACTIONS(254), - [anon_sym_PIPE] = ACTIONS(254), - [anon_sym_CARET] = ACTIONS(252), - [anon_sym_PERCENT] = ACTIONS(252), - [anon_sym_LT_LT] = ACTIONS(252), - [anon_sym_GT_GT] = ACTIONS(254), - [anon_sym_GT_GT_GT] = ACTIONS(252), - [anon_sym_instanceof] = ACTIONS(254), - [anon_sym_DASH_GT] = ACTIONS(252), - [anon_sym_COMMA] = ACTIONS(252), - [anon_sym_QMARK] = ACTIONS(252), - [anon_sym_COLON] = ACTIONS(252), - [anon_sym_BANG] = ACTIONS(254), - [anon_sym_TILDE] = ACTIONS(252), - [anon_sym_PLUS_PLUS] = ACTIONS(252), - [anon_sym_DASH_DASH] = ACTIONS(252), - [anon_sym_new] = ACTIONS(254), - [anon_sym_RBRACK] = ACTIONS(252), - [anon_sym_class] = ACTIONS(254), - [anon_sym_switch] = ACTIONS(254), - [anon_sym_LBRACE] = ACTIONS(252), - [anon_sym_RBRACE] = ACTIONS(252), - [anon_sym_case] = ACTIONS(254), - [anon_sym_default] = ACTIONS(254), - [anon_sym_SEMI] = ACTIONS(252), - [anon_sym_assert] = ACTIONS(254), - [anon_sym_do] = ACTIONS(254), - [anon_sym_while] = ACTIONS(254), - [anon_sym_break] = ACTIONS(254), - [anon_sym_continue] = ACTIONS(254), - [anon_sym_return] = ACTIONS(254), - [anon_sym_yield] = ACTIONS(254), - [anon_sym_synchronized] = ACTIONS(254), - [anon_sym_throw] = ACTIONS(254), - [anon_sym_try] = ACTIONS(254), - [anon_sym_if] = ACTIONS(254), - [anon_sym_else] = ACTIONS(254), - [anon_sym_for] = ACTIONS(254), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_open] = ACTIONS(254), - [anon_sym_module] = ACTIONS(254), - [anon_sym_static] = ACTIONS(254), - [anon_sym_package] = ACTIONS(254), - [anon_sym_import] = ACTIONS(254), - [anon_sym_enum] = ACTIONS(254), - [anon_sym_public] = ACTIONS(254), - [anon_sym_protected] = ACTIONS(254), - [anon_sym_private] = ACTIONS(254), - [anon_sym_abstract] = ACTIONS(254), - [anon_sym_final] = ACTIONS(254), - [anon_sym_strictfp] = ACTIONS(254), - [anon_sym_native] = ACTIONS(254), - [anon_sym_transient] = ACTIONS(254), - [anon_sym_volatile] = ACTIONS(254), - [anon_sym_sealed] = ACTIONS(254), - [anon_sym_non_DASHsealed] = ACTIONS(252), - [anon_sym_ATinterface] = ACTIONS(252), - [anon_sym_interface] = ACTIONS(254), - [anon_sym_byte] = ACTIONS(254), - [anon_sym_short] = ACTIONS(254), - [anon_sym_int] = ACTIONS(254), - [anon_sym_long] = ACTIONS(254), - [anon_sym_char] = ACTIONS(254), - [anon_sym_float] = ACTIONS(254), - [anon_sym_double] = ACTIONS(254), - [sym_boolean_type] = ACTIONS(254), - [sym_void_type] = ACTIONS(254), - [sym_this] = ACTIONS(254), - [sym_super] = ACTIONS(254), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(303), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [50] = { - [ts_builtin_sym_end] = ACTIONS(256), - [sym_identifier] = ACTIONS(258), - [sym_decimal_integer_literal] = ACTIONS(258), - [sym_hex_integer_literal] = ACTIONS(258), - [sym_octal_integer_literal] = ACTIONS(256), - [sym_binary_integer_literal] = ACTIONS(256), - [sym_decimal_floating_point_literal] = ACTIONS(256), - [sym_hex_floating_point_literal] = ACTIONS(258), - [sym_true] = ACTIONS(258), - [sym_false] = ACTIONS(258), - [sym_character_literal] = ACTIONS(256), - [sym_string_literal] = ACTIONS(258), - [sym_text_block] = ACTIONS(256), - [sym_null_literal] = ACTIONS(258), - [anon_sym_LPAREN] = ACTIONS(256), - [anon_sym_AMP] = ACTIONS(258), - [anon_sym_RPAREN] = ACTIONS(256), - [anon_sym_GT] = ACTIONS(258), - [anon_sym_LT] = ACTIONS(258), - [anon_sym_GT_EQ] = ACTIONS(256), - [anon_sym_LT_EQ] = ACTIONS(256), - [anon_sym_EQ_EQ] = ACTIONS(256), - [anon_sym_BANG_EQ] = ACTIONS(256), - [anon_sym_AMP_AMP] = ACTIONS(256), - [anon_sym_PIPE_PIPE] = ACTIONS(256), - [anon_sym_PLUS] = ACTIONS(258), - [anon_sym_DASH] = ACTIONS(258), - [anon_sym_STAR] = ACTIONS(256), - [anon_sym_SLASH] = ACTIONS(258), - [anon_sym_PIPE] = ACTIONS(258), - [anon_sym_CARET] = ACTIONS(256), - [anon_sym_PERCENT] = ACTIONS(256), - [anon_sym_LT_LT] = ACTIONS(256), - [anon_sym_GT_GT] = ACTIONS(258), - [anon_sym_GT_GT_GT] = ACTIONS(256), - [anon_sym_instanceof] = ACTIONS(258), - [anon_sym_DASH_GT] = ACTIONS(256), - [anon_sym_COMMA] = ACTIONS(256), - [anon_sym_QMARK] = ACTIONS(256), - [anon_sym_COLON] = ACTIONS(256), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_TILDE] = ACTIONS(256), - [anon_sym_PLUS_PLUS] = ACTIONS(256), - [anon_sym_DASH_DASH] = ACTIONS(256), - [anon_sym_new] = ACTIONS(258), - [anon_sym_RBRACK] = ACTIONS(256), - [anon_sym_class] = ACTIONS(258), - [anon_sym_switch] = ACTIONS(258), - [anon_sym_LBRACE] = ACTIONS(256), - [anon_sym_RBRACE] = ACTIONS(256), - [anon_sym_case] = ACTIONS(258), - [anon_sym_default] = ACTIONS(258), - [anon_sym_SEMI] = ACTIONS(256), - [anon_sym_assert] = ACTIONS(258), - [anon_sym_do] = ACTIONS(258), - [anon_sym_while] = ACTIONS(258), - [anon_sym_break] = ACTIONS(258), - [anon_sym_continue] = ACTIONS(258), - [anon_sym_return] = ACTIONS(258), - [anon_sym_yield] = ACTIONS(258), - [anon_sym_synchronized] = ACTIONS(258), - [anon_sym_throw] = ACTIONS(258), - [anon_sym_try] = ACTIONS(258), - [anon_sym_if] = ACTIONS(258), - [anon_sym_else] = ACTIONS(258), - [anon_sym_for] = ACTIONS(258), - [anon_sym_AT] = ACTIONS(258), - [anon_sym_open] = ACTIONS(258), - [anon_sym_module] = ACTIONS(258), - [anon_sym_static] = ACTIONS(258), - [anon_sym_package] = ACTIONS(258), - [anon_sym_import] = ACTIONS(258), - [anon_sym_enum] = ACTIONS(258), - [anon_sym_public] = ACTIONS(258), - [anon_sym_protected] = ACTIONS(258), - [anon_sym_private] = ACTIONS(258), - [anon_sym_abstract] = ACTIONS(258), - [anon_sym_final] = ACTIONS(258), - [anon_sym_strictfp] = ACTIONS(258), - [anon_sym_native] = ACTIONS(258), - [anon_sym_transient] = ACTIONS(258), - [anon_sym_volatile] = ACTIONS(258), - [anon_sym_sealed] = ACTIONS(258), - [anon_sym_non_DASHsealed] = ACTIONS(256), - [anon_sym_ATinterface] = ACTIONS(256), - [anon_sym_interface] = ACTIONS(258), - [anon_sym_byte] = ACTIONS(258), - [anon_sym_short] = ACTIONS(258), - [anon_sym_int] = ACTIONS(258), - [anon_sym_long] = ACTIONS(258), - [anon_sym_char] = ACTIONS(258), - [anon_sym_float] = ACTIONS(258), - [anon_sym_double] = ACTIONS(258), - [sym_boolean_type] = ACTIONS(258), - [sym_void_type] = ACTIONS(258), - [sym_this] = ACTIONS(258), - [sym_super] = ACTIONS(258), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(346), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [51] = { - [ts_builtin_sym_end] = ACTIONS(260), - [sym_identifier] = ACTIONS(262), - [sym_decimal_integer_literal] = ACTIONS(262), - [sym_hex_integer_literal] = ACTIONS(262), - [sym_octal_integer_literal] = ACTIONS(260), - [sym_binary_integer_literal] = ACTIONS(260), - [sym_decimal_floating_point_literal] = ACTIONS(260), - [sym_hex_floating_point_literal] = ACTIONS(262), - [sym_true] = ACTIONS(262), - [sym_false] = ACTIONS(262), - [sym_character_literal] = ACTIONS(260), - [sym_string_literal] = ACTIONS(262), - [sym_text_block] = ACTIONS(260), - [sym_null_literal] = ACTIONS(262), - [anon_sym_LPAREN] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(262), - [anon_sym_RPAREN] = ACTIONS(260), - [anon_sym_GT] = ACTIONS(262), - [anon_sym_LT] = ACTIONS(262), - [anon_sym_GT_EQ] = ACTIONS(260), - [anon_sym_LT_EQ] = ACTIONS(260), - [anon_sym_EQ_EQ] = ACTIONS(260), - [anon_sym_BANG_EQ] = ACTIONS(260), - [anon_sym_AMP_AMP] = ACTIONS(260), - [anon_sym_PIPE_PIPE] = ACTIONS(260), - [anon_sym_PLUS] = ACTIONS(262), - [anon_sym_DASH] = ACTIONS(262), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_SLASH] = ACTIONS(262), - [anon_sym_PIPE] = ACTIONS(262), - [anon_sym_CARET] = ACTIONS(260), - [anon_sym_PERCENT] = ACTIONS(260), - [anon_sym_LT_LT] = ACTIONS(260), - [anon_sym_GT_GT] = ACTIONS(262), - [anon_sym_GT_GT_GT] = ACTIONS(260), - [anon_sym_instanceof] = ACTIONS(262), - [anon_sym_DASH_GT] = ACTIONS(260), - [anon_sym_COMMA] = ACTIONS(260), - [anon_sym_QMARK] = ACTIONS(260), - [anon_sym_COLON] = ACTIONS(260), - [anon_sym_BANG] = ACTIONS(262), - [anon_sym_TILDE] = ACTIONS(260), - [anon_sym_PLUS_PLUS] = ACTIONS(260), - [anon_sym_DASH_DASH] = ACTIONS(260), - [anon_sym_new] = ACTIONS(262), - [anon_sym_RBRACK] = ACTIONS(260), - [anon_sym_class] = ACTIONS(262), - [anon_sym_switch] = ACTIONS(262), - [anon_sym_LBRACE] = ACTIONS(260), - [anon_sym_RBRACE] = ACTIONS(260), - [anon_sym_case] = ACTIONS(262), - [anon_sym_default] = ACTIONS(262), - [anon_sym_SEMI] = ACTIONS(260), - [anon_sym_assert] = ACTIONS(262), - [anon_sym_do] = ACTIONS(262), - [anon_sym_while] = ACTIONS(262), - [anon_sym_break] = ACTIONS(262), - [anon_sym_continue] = ACTIONS(262), - [anon_sym_return] = ACTIONS(262), - [anon_sym_yield] = ACTIONS(262), - [anon_sym_synchronized] = ACTIONS(262), - [anon_sym_throw] = ACTIONS(262), - [anon_sym_try] = ACTIONS(262), - [anon_sym_if] = ACTIONS(262), - [anon_sym_else] = ACTIONS(262), - [anon_sym_for] = ACTIONS(262), - [anon_sym_AT] = ACTIONS(262), - [anon_sym_open] = ACTIONS(262), - [anon_sym_module] = ACTIONS(262), - [anon_sym_static] = ACTIONS(262), - [anon_sym_package] = ACTIONS(262), - [anon_sym_import] = ACTIONS(262), - [anon_sym_enum] = ACTIONS(262), - [anon_sym_public] = ACTIONS(262), - [anon_sym_protected] = ACTIONS(262), - [anon_sym_private] = ACTIONS(262), - [anon_sym_abstract] = ACTIONS(262), - [anon_sym_final] = ACTIONS(262), - [anon_sym_strictfp] = ACTIONS(262), - [anon_sym_native] = ACTIONS(262), - [anon_sym_transient] = ACTIONS(262), - [anon_sym_volatile] = ACTIONS(262), - [anon_sym_sealed] = ACTIONS(262), - [anon_sym_non_DASHsealed] = ACTIONS(260), - [anon_sym_ATinterface] = ACTIONS(260), - [anon_sym_interface] = ACTIONS(262), - [anon_sym_byte] = ACTIONS(262), - [anon_sym_short] = ACTIONS(262), - [anon_sym_int] = ACTIONS(262), - [anon_sym_long] = ACTIONS(262), - [anon_sym_char] = ACTIONS(262), - [anon_sym_float] = ACTIONS(262), - [anon_sym_double] = ACTIONS(262), - [sym_boolean_type] = ACTIONS(262), - [sym_void_type] = ACTIONS(262), - [sym_this] = ACTIONS(262), - [sym_super] = ACTIONS(262), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(339), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [52] = { - [sym_identifier] = ACTIONS(264), - [sym_decimal_integer_literal] = ACTIONS(264), - [sym_hex_integer_literal] = ACTIONS(264), - [sym_octal_integer_literal] = ACTIONS(266), - [sym_binary_integer_literal] = ACTIONS(266), - [sym_decimal_floating_point_literal] = ACTIONS(266), - [sym_hex_floating_point_literal] = ACTIONS(264), - [sym_true] = ACTIONS(264), - [sym_false] = ACTIONS(264), - [sym_character_literal] = ACTIONS(266), - [sym_string_literal] = ACTIONS(264), - [sym_text_block] = ACTIONS(266), - [sym_null_literal] = ACTIONS(264), - [anon_sym_LPAREN] = ACTIONS(266), - [anon_sym_AMP] = ACTIONS(264), - [anon_sym_RPAREN] = ACTIONS(266), - [anon_sym_GT] = ACTIONS(264), - [anon_sym_LT] = ACTIONS(264), - [anon_sym_GT_EQ] = ACTIONS(266), - [anon_sym_LT_EQ] = ACTIONS(266), - [anon_sym_EQ_EQ] = ACTIONS(266), - [anon_sym_BANG_EQ] = ACTIONS(266), - [anon_sym_AMP_AMP] = ACTIONS(266), - [anon_sym_PIPE_PIPE] = ACTIONS(266), - [anon_sym_PLUS] = ACTIONS(264), - [anon_sym_DASH] = ACTIONS(264), - [anon_sym_STAR] = ACTIONS(266), - [anon_sym_SLASH] = ACTIONS(264), - [anon_sym_PIPE] = ACTIONS(264), - [anon_sym_CARET] = ACTIONS(266), - [anon_sym_PERCENT] = ACTIONS(266), - [anon_sym_LT_LT] = ACTIONS(266), - [anon_sym_GT_GT] = ACTIONS(264), - [anon_sym_GT_GT_GT] = ACTIONS(266), - [anon_sym_instanceof] = ACTIONS(264), - [anon_sym_DASH_GT] = ACTIONS(266), - [anon_sym_COMMA] = ACTIONS(266), - [anon_sym_QMARK] = ACTIONS(266), - [anon_sym_COLON] = ACTIONS(264), - [anon_sym_BANG] = ACTIONS(264), - [anon_sym_TILDE] = ACTIONS(266), - [anon_sym_PLUS_PLUS] = ACTIONS(266), - [anon_sym_DASH_DASH] = ACTIONS(266), - [anon_sym_new] = ACTIONS(264), - [anon_sym_LBRACK] = ACTIONS(266), - [anon_sym_RBRACK] = ACTIONS(266), - [anon_sym_DOT] = ACTIONS(264), - [anon_sym_class] = ACTIONS(264), - [anon_sym_COLON_COLON] = ACTIONS(266), - [anon_sym_switch] = ACTIONS(264), - [anon_sym_LBRACE] = ACTIONS(266), - [anon_sym_RBRACE] = ACTIONS(266), - [anon_sym_default] = ACTIONS(264), - [anon_sym_SEMI] = ACTIONS(266), - [anon_sym_assert] = ACTIONS(264), - [anon_sym_do] = ACTIONS(264), - [anon_sym_while] = ACTIONS(264), - [anon_sym_break] = ACTIONS(264), - [anon_sym_continue] = ACTIONS(264), - [anon_sym_return] = ACTIONS(264), - [anon_sym_yield] = ACTIONS(264), - [anon_sym_synchronized] = ACTIONS(264), - [anon_sym_throw] = ACTIONS(264), - [anon_sym_try] = ACTIONS(264), - [anon_sym_if] = ACTIONS(264), - [anon_sym_for] = ACTIONS(264), - [anon_sym_AT] = ACTIONS(264), - [anon_sym_open] = ACTIONS(264), - [anon_sym_module] = ACTIONS(264), - [anon_sym_static] = ACTIONS(264), - [anon_sym_package] = ACTIONS(264), - [anon_sym_import] = ACTIONS(264), - [anon_sym_enum] = ACTIONS(264), - [anon_sym_public] = ACTIONS(264), - [anon_sym_protected] = ACTIONS(264), - [anon_sym_private] = ACTIONS(264), - [anon_sym_abstract] = ACTIONS(264), - [anon_sym_final] = ACTIONS(264), - [anon_sym_strictfp] = ACTIONS(264), - [anon_sym_native] = ACTIONS(264), - [anon_sym_transient] = ACTIONS(264), - [anon_sym_volatile] = ACTIONS(264), - [anon_sym_sealed] = ACTIONS(264), - [anon_sym_non_DASHsealed] = ACTIONS(266), - [anon_sym_ATinterface] = ACTIONS(266), - [anon_sym_interface] = ACTIONS(264), - [anon_sym_byte] = ACTIONS(264), - [anon_sym_short] = ACTIONS(264), - [anon_sym_int] = ACTIONS(264), - [anon_sym_long] = ACTIONS(264), - [anon_sym_char] = ACTIONS(264), - [anon_sym_float] = ACTIONS(264), - [anon_sym_double] = ACTIONS(264), - [sym_boolean_type] = ACTIONS(264), - [sym_void_type] = ACTIONS(264), - [sym_this] = ACTIONS(264), - [sym_super] = ACTIONS(264), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(301), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [53] = { - [ts_builtin_sym_end] = ACTIONS(268), - [sym_identifier] = ACTIONS(270), - [sym_decimal_integer_literal] = ACTIONS(270), - [sym_hex_integer_literal] = ACTIONS(270), - [sym_octal_integer_literal] = ACTIONS(268), - [sym_binary_integer_literal] = ACTIONS(268), - [sym_decimal_floating_point_literal] = ACTIONS(268), - [sym_hex_floating_point_literal] = ACTIONS(270), - [sym_true] = ACTIONS(270), - [sym_false] = ACTIONS(270), - [sym_character_literal] = ACTIONS(268), - [sym_string_literal] = ACTIONS(270), - [sym_text_block] = ACTIONS(268), - [sym_null_literal] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(268), - [anon_sym_AMP] = ACTIONS(272), - [anon_sym_GT] = ACTIONS(272), - [anon_sym_LT] = ACTIONS(272), - [anon_sym_GT_EQ] = ACTIONS(274), - [anon_sym_LT_EQ] = ACTIONS(274), - [anon_sym_EQ_EQ] = ACTIONS(274), - [anon_sym_BANG_EQ] = ACTIONS(274), - [anon_sym_AMP_AMP] = ACTIONS(274), - [anon_sym_PIPE_PIPE] = ACTIONS(274), - [anon_sym_PLUS] = ACTIONS(272), - [anon_sym_DASH] = ACTIONS(272), - [anon_sym_STAR] = ACTIONS(274), - [anon_sym_SLASH] = ACTIONS(272), - [anon_sym_PIPE] = ACTIONS(272), - [anon_sym_CARET] = ACTIONS(274), - [anon_sym_PERCENT] = ACTIONS(274), - [anon_sym_LT_LT] = ACTIONS(274), - [anon_sym_GT_GT] = ACTIONS(272), - [anon_sym_GT_GT_GT] = ACTIONS(274), - [anon_sym_instanceof] = ACTIONS(272), - [anon_sym_QMARK] = ACTIONS(274), - [anon_sym_BANG] = ACTIONS(270), - [anon_sym_TILDE] = ACTIONS(268), - [anon_sym_PLUS_PLUS] = ACTIONS(274), - [anon_sym_DASH_DASH] = ACTIONS(274), - [anon_sym_new] = ACTIONS(270), - [anon_sym_class] = ACTIONS(270), - [anon_sym_switch] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_RBRACE] = ACTIONS(268), - [anon_sym_case] = ACTIONS(270), - [anon_sym_default] = ACTIONS(270), - [anon_sym_SEMI] = ACTIONS(274), - [anon_sym_assert] = ACTIONS(270), - [anon_sym_do] = ACTIONS(270), - [anon_sym_while] = ACTIONS(270), - [anon_sym_break] = ACTIONS(270), - [anon_sym_continue] = ACTIONS(270), - [anon_sym_return] = ACTIONS(270), - [anon_sym_yield] = ACTIONS(270), - [anon_sym_synchronized] = ACTIONS(270), - [anon_sym_throw] = ACTIONS(270), - [anon_sym_try] = ACTIONS(270), - [anon_sym_if] = ACTIONS(270), - [anon_sym_else] = ACTIONS(270), - [anon_sym_for] = ACTIONS(270), - [anon_sym_AT] = ACTIONS(270), - [anon_sym_open] = ACTIONS(270), - [anon_sym_module] = ACTIONS(270), - [anon_sym_static] = ACTIONS(270), - [anon_sym_package] = ACTIONS(270), - [anon_sym_import] = ACTIONS(270), - [anon_sym_enum] = ACTIONS(270), - [anon_sym_public] = ACTIONS(270), - [anon_sym_protected] = ACTIONS(270), - [anon_sym_private] = ACTIONS(270), - [anon_sym_abstract] = ACTIONS(270), - [anon_sym_final] = ACTIONS(270), - [anon_sym_strictfp] = ACTIONS(270), - [anon_sym_native] = ACTIONS(270), - [anon_sym_transient] = ACTIONS(270), - [anon_sym_volatile] = ACTIONS(270), - [anon_sym_sealed] = ACTIONS(270), - [anon_sym_non_DASHsealed] = ACTIONS(268), - [anon_sym_ATinterface] = ACTIONS(268), - [anon_sym_interface] = ACTIONS(270), - [anon_sym_byte] = ACTIONS(270), - [anon_sym_short] = ACTIONS(270), - [anon_sym_int] = ACTIONS(270), - [anon_sym_long] = ACTIONS(270), - [anon_sym_char] = ACTIONS(270), - [anon_sym_float] = ACTIONS(270), - [anon_sym_double] = ACTIONS(270), - [sym_boolean_type] = ACTIONS(270), - [sym_void_type] = ACTIONS(270), - [sym_this] = ACTIONS(270), - [sym_super] = ACTIONS(270), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(340), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [54] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(536), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(526), - [sym_marker_annotation] = STATE(526), - [sym_annotation] = STATE(526), - [sym_modifiers] = STATE(601), - [sym__type] = STATE(820), - [sym__unannotated_type] = STATE(592), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_formal_parameter] = STATE(950), - [sym_receiver_parameter] = STATE(335), - [sym_spread_parameter] = STATE(950), - [aux_sym_dimensions_expr_repeat1] = STATE(573), - [aux_sym_modifiers_repeat1] = STATE(461), - [sym_identifier] = ACTIONS(276), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(342), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15059,92 +18106,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_default] = ACTIONS(280), - [anon_sym_synchronized] = ACTIONS(280), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_static] = ACTIONS(280), - [anon_sym_public] = ACTIONS(280), - [anon_sym_protected] = ACTIONS(280), - [anon_sym_private] = ACTIONS(280), - [anon_sym_abstract] = ACTIONS(280), - [anon_sym_final] = ACTIONS(280), - [anon_sym_strictfp] = ACTIONS(280), - [anon_sym_native] = ACTIONS(280), - [anon_sym_transient] = ACTIONS(280), - [anon_sym_volatile] = ACTIONS(280), - [anon_sym_sealed] = ACTIONS(280), - [anon_sym_non_DASHsealed] = ACTIONS(286), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [55] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(536), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(526), - [sym_marker_annotation] = STATE(526), - [sym_annotation] = STATE(526), - [sym_modifiers] = STATE(601), - [sym__type] = STATE(845), - [sym__unannotated_type] = STATE(592), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_formal_parameter] = STATE(950), - [sym_receiver_parameter] = STATE(335), - [sym_spread_parameter] = STATE(950), - [aux_sym_dimensions_expr_repeat1] = STATE(573), - [aux_sym_modifiers_repeat1] = STATE(461), - [sym_identifier] = ACTIONS(276), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(312), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15154,90 +18248,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(278), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_default] = ACTIONS(280), - [anon_sym_synchronized] = ACTIONS(280), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_static] = ACTIONS(280), - [anon_sym_public] = ACTIONS(280), - [anon_sym_protected] = ACTIONS(280), - [anon_sym_private] = ACTIONS(280), - [anon_sym_abstract] = ACTIONS(280), - [anon_sym_final] = ACTIONS(280), - [anon_sym_strictfp] = ACTIONS(280), - [anon_sym_native] = ACTIONS(280), - [anon_sym_transient] = ACTIONS(280), - [anon_sym_volatile] = ACTIONS(280), - [anon_sym_sealed] = ACTIONS(280), - [anon_sym_non_DASHsealed] = ACTIONS(286), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [56] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(480), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(526), - [sym_marker_annotation] = STATE(526), - [sym_annotation] = STATE(526), - [sym_modifiers] = STATE(604), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(603), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [sym_local_variable_declaration] = STATE(233), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [aux_sym_modifiers_repeat1] = STATE(461), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(1173), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15247,417 +18390,707 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_default] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(290), - [anon_sym_synchronized] = ACTIONS(280), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_static] = ACTIONS(280), - [anon_sym_public] = ACTIONS(280), - [anon_sym_protected] = ACTIONS(280), - [anon_sym_private] = ACTIONS(280), - [anon_sym_abstract] = ACTIONS(280), - [anon_sym_final] = ACTIONS(280), - [anon_sym_strictfp] = ACTIONS(280), - [anon_sym_native] = ACTIONS(280), - [anon_sym_transient] = ACTIONS(280), - [anon_sym_volatile] = ACTIONS(280), - [anon_sym_sealed] = ACTIONS(280), - [anon_sym_non_DASHsealed] = ACTIONS(286), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [57] = { - [sym_catch_clause] = STATE(60), - [sym_finally_clause] = STATE(191), - [aux_sym_try_statement_repeat1] = STATE(60), - [ts_builtin_sym_end] = ACTIONS(292), - [sym_identifier] = ACTIONS(294), - [sym_decimal_integer_literal] = ACTIONS(294), - [sym_hex_integer_literal] = ACTIONS(294), - [sym_octal_integer_literal] = ACTIONS(292), - [sym_binary_integer_literal] = ACTIONS(292), - [sym_decimal_floating_point_literal] = ACTIONS(292), - [sym_hex_floating_point_literal] = ACTIONS(294), - [sym_true] = ACTIONS(294), - [sym_false] = ACTIONS(294), - [sym_character_literal] = ACTIONS(292), - [sym_string_literal] = ACTIONS(294), - [sym_text_block] = ACTIONS(292), - [sym_null_literal] = ACTIONS(294), - [anon_sym_LPAREN] = ACTIONS(292), - [anon_sym_PLUS] = ACTIONS(294), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_BANG] = ACTIONS(292), - [anon_sym_TILDE] = ACTIONS(292), - [anon_sym_PLUS_PLUS] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(292), - [anon_sym_new] = ACTIONS(294), - [anon_sym_class] = ACTIONS(294), - [anon_sym_switch] = ACTIONS(294), - [anon_sym_LBRACE] = ACTIONS(292), - [anon_sym_RBRACE] = ACTIONS(292), - [anon_sym_case] = ACTIONS(294), - [anon_sym_default] = ACTIONS(294), - [anon_sym_SEMI] = ACTIONS(292), - [anon_sym_assert] = ACTIONS(294), - [anon_sym_do] = ACTIONS(294), - [anon_sym_while] = ACTIONS(294), - [anon_sym_break] = ACTIONS(294), - [anon_sym_continue] = ACTIONS(294), - [anon_sym_return] = ACTIONS(294), - [anon_sym_yield] = ACTIONS(294), - [anon_sym_synchronized] = ACTIONS(294), - [anon_sym_throw] = ACTIONS(294), - [anon_sym_try] = ACTIONS(294), - [anon_sym_catch] = ACTIONS(296), - [anon_sym_finally] = ACTIONS(298), - [anon_sym_if] = ACTIONS(294), - [anon_sym_else] = ACTIONS(294), - [anon_sym_for] = ACTIONS(294), - [anon_sym_AT] = ACTIONS(294), - [anon_sym_open] = ACTIONS(294), - [anon_sym_module] = ACTIONS(294), - [anon_sym_static] = ACTIONS(294), - [anon_sym_package] = ACTIONS(294), - [anon_sym_import] = ACTIONS(294), - [anon_sym_enum] = ACTIONS(294), - [anon_sym_public] = ACTIONS(294), - [anon_sym_protected] = ACTIONS(294), - [anon_sym_private] = ACTIONS(294), - [anon_sym_abstract] = ACTIONS(294), - [anon_sym_final] = ACTIONS(294), - [anon_sym_strictfp] = ACTIONS(294), - [anon_sym_native] = ACTIONS(294), - [anon_sym_transient] = ACTIONS(294), - [anon_sym_volatile] = ACTIONS(294), - [anon_sym_sealed] = ACTIONS(294), - [anon_sym_non_DASHsealed] = ACTIONS(292), - [anon_sym_ATinterface] = ACTIONS(292), - [anon_sym_interface] = ACTIONS(294), - [anon_sym_byte] = ACTIONS(294), - [anon_sym_short] = ACTIONS(294), - [anon_sym_int] = ACTIONS(294), - [anon_sym_long] = ACTIONS(294), - [anon_sym_char] = ACTIONS(294), - [anon_sym_float] = ACTIONS(294), - [anon_sym_double] = ACTIONS(294), - [sym_boolean_type] = ACTIONS(294), - [sym_void_type] = ACTIONS(294), - [sym_this] = ACTIONS(294), - [sym_super] = ACTIONS(294), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(301), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [58] = { - [sym_catch_clause] = STATE(60), - [sym_finally_clause] = STATE(146), - [aux_sym_try_statement_repeat1] = STATE(60), - [ts_builtin_sym_end] = ACTIONS(300), - [sym_identifier] = ACTIONS(302), - [sym_decimal_integer_literal] = ACTIONS(302), - [sym_hex_integer_literal] = ACTIONS(302), - [sym_octal_integer_literal] = ACTIONS(300), - [sym_binary_integer_literal] = ACTIONS(300), - [sym_decimal_floating_point_literal] = ACTIONS(300), - [sym_hex_floating_point_literal] = ACTIONS(302), - [sym_true] = ACTIONS(302), - [sym_false] = ACTIONS(302), - [sym_character_literal] = ACTIONS(300), - [sym_string_literal] = ACTIONS(302), - [sym_text_block] = ACTIONS(300), - [sym_null_literal] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_BANG] = ACTIONS(300), - [anon_sym_TILDE] = ACTIONS(300), - [anon_sym_PLUS_PLUS] = ACTIONS(300), - [anon_sym_DASH_DASH] = ACTIONS(300), - [anon_sym_new] = ACTIONS(302), - [anon_sym_class] = ACTIONS(302), - [anon_sym_switch] = ACTIONS(302), - [anon_sym_LBRACE] = ACTIONS(300), - [anon_sym_RBRACE] = ACTIONS(300), - [anon_sym_case] = ACTIONS(302), - [anon_sym_default] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(300), - [anon_sym_assert] = ACTIONS(302), - [anon_sym_do] = ACTIONS(302), - [anon_sym_while] = ACTIONS(302), - [anon_sym_break] = ACTIONS(302), - [anon_sym_continue] = ACTIONS(302), - [anon_sym_return] = ACTIONS(302), - [anon_sym_yield] = ACTIONS(302), - [anon_sym_synchronized] = ACTIONS(302), - [anon_sym_throw] = ACTIONS(302), - [anon_sym_try] = ACTIONS(302), - [anon_sym_catch] = ACTIONS(296), - [anon_sym_finally] = ACTIONS(298), - [anon_sym_if] = ACTIONS(302), - [anon_sym_else] = ACTIONS(302), - [anon_sym_for] = ACTIONS(302), - [anon_sym_AT] = ACTIONS(302), - [anon_sym_open] = ACTIONS(302), - [anon_sym_module] = ACTIONS(302), - [anon_sym_static] = ACTIONS(302), - [anon_sym_package] = ACTIONS(302), - [anon_sym_import] = ACTIONS(302), - [anon_sym_enum] = ACTIONS(302), - [anon_sym_public] = ACTIONS(302), - [anon_sym_protected] = ACTIONS(302), - [anon_sym_private] = ACTIONS(302), - [anon_sym_abstract] = ACTIONS(302), - [anon_sym_final] = ACTIONS(302), - [anon_sym_strictfp] = ACTIONS(302), - [anon_sym_native] = ACTIONS(302), - [anon_sym_transient] = ACTIONS(302), - [anon_sym_volatile] = ACTIONS(302), - [anon_sym_sealed] = ACTIONS(302), - [anon_sym_non_DASHsealed] = ACTIONS(300), - [anon_sym_ATinterface] = ACTIONS(300), - [anon_sym_interface] = ACTIONS(302), - [anon_sym_byte] = ACTIONS(302), - [anon_sym_short] = ACTIONS(302), - [anon_sym_int] = ACTIONS(302), - [anon_sym_long] = ACTIONS(302), - [anon_sym_char] = ACTIONS(302), - [anon_sym_float] = ACTIONS(302), - [anon_sym_double] = ACTIONS(302), - [sym_boolean_type] = ACTIONS(302), - [sym_void_type] = ACTIONS(302), - [sym_this] = ACTIONS(302), - [sym_super] = ACTIONS(302), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(316), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [59] = { - [sym_catch_clause] = STATE(57), - [sym_finally_clause] = STATE(147), - [aux_sym_try_statement_repeat1] = STATE(57), - [ts_builtin_sym_end] = ACTIONS(304), - [sym_identifier] = ACTIONS(306), - [sym_decimal_integer_literal] = ACTIONS(306), - [sym_hex_integer_literal] = ACTIONS(306), - [sym_octal_integer_literal] = ACTIONS(304), - [sym_binary_integer_literal] = ACTIONS(304), - [sym_decimal_floating_point_literal] = ACTIONS(304), - [sym_hex_floating_point_literal] = ACTIONS(306), - [sym_true] = ACTIONS(306), - [sym_false] = ACTIONS(306), - [sym_character_literal] = ACTIONS(304), - [sym_string_literal] = ACTIONS(306), - [sym_text_block] = ACTIONS(304), - [sym_null_literal] = ACTIONS(306), - [anon_sym_LPAREN] = ACTIONS(304), - [anon_sym_PLUS] = ACTIONS(306), - [anon_sym_DASH] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(304), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS_PLUS] = ACTIONS(304), - [anon_sym_DASH_DASH] = ACTIONS(304), - [anon_sym_new] = ACTIONS(306), - [anon_sym_class] = ACTIONS(306), - [anon_sym_switch] = ACTIONS(306), - [anon_sym_LBRACE] = ACTIONS(304), - [anon_sym_RBRACE] = ACTIONS(304), - [anon_sym_case] = ACTIONS(306), - [anon_sym_default] = ACTIONS(306), - [anon_sym_SEMI] = ACTIONS(304), - [anon_sym_assert] = ACTIONS(306), - [anon_sym_do] = ACTIONS(306), - [anon_sym_while] = ACTIONS(306), - [anon_sym_break] = ACTIONS(306), - [anon_sym_continue] = ACTIONS(306), - [anon_sym_return] = ACTIONS(306), - [anon_sym_yield] = ACTIONS(306), - [anon_sym_synchronized] = ACTIONS(306), - [anon_sym_throw] = ACTIONS(306), - [anon_sym_try] = ACTIONS(306), - [anon_sym_catch] = ACTIONS(296), - [anon_sym_finally] = ACTIONS(298), - [anon_sym_if] = ACTIONS(306), - [anon_sym_else] = ACTIONS(306), - [anon_sym_for] = ACTIONS(306), - [anon_sym_AT] = ACTIONS(306), - [anon_sym_open] = ACTIONS(306), - [anon_sym_module] = ACTIONS(306), - [anon_sym_static] = ACTIONS(306), - [anon_sym_package] = ACTIONS(306), - [anon_sym_import] = ACTIONS(306), - [anon_sym_enum] = ACTIONS(306), - [anon_sym_public] = ACTIONS(306), - [anon_sym_protected] = ACTIONS(306), - [anon_sym_private] = ACTIONS(306), - [anon_sym_abstract] = ACTIONS(306), - [anon_sym_final] = ACTIONS(306), - [anon_sym_strictfp] = ACTIONS(306), - [anon_sym_native] = ACTIONS(306), - [anon_sym_transient] = ACTIONS(306), - [anon_sym_volatile] = ACTIONS(306), - [anon_sym_sealed] = ACTIONS(306), - [anon_sym_non_DASHsealed] = ACTIONS(304), - [anon_sym_ATinterface] = ACTIONS(304), - [anon_sym_interface] = ACTIONS(306), - [anon_sym_byte] = ACTIONS(306), - [anon_sym_short] = ACTIONS(306), - [anon_sym_int] = ACTIONS(306), - [anon_sym_long] = ACTIONS(306), - [anon_sym_char] = ACTIONS(306), - [anon_sym_float] = ACTIONS(306), - [anon_sym_double] = ACTIONS(306), - [sym_boolean_type] = ACTIONS(306), - [sym_void_type] = ACTIONS(306), - [sym_this] = ACTIONS(306), - [sym_super] = ACTIONS(306), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(314), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [60] = { - [sym_catch_clause] = STATE(60), - [aux_sym_try_statement_repeat1] = STATE(60), - [ts_builtin_sym_end] = ACTIONS(308), - [sym_identifier] = ACTIONS(310), - [sym_decimal_integer_literal] = ACTIONS(310), - [sym_hex_integer_literal] = ACTIONS(310), - [sym_octal_integer_literal] = ACTIONS(308), - [sym_binary_integer_literal] = ACTIONS(308), - [sym_decimal_floating_point_literal] = ACTIONS(308), - [sym_hex_floating_point_literal] = ACTIONS(310), - [sym_true] = ACTIONS(310), - [sym_false] = ACTIONS(310), - [sym_character_literal] = ACTIONS(308), - [sym_string_literal] = ACTIONS(310), - [sym_text_block] = ACTIONS(308), - [sym_null_literal] = ACTIONS(310), - [anon_sym_LPAREN] = ACTIONS(308), - [anon_sym_PLUS] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(310), - [anon_sym_BANG] = ACTIONS(308), - [anon_sym_TILDE] = ACTIONS(308), - [anon_sym_PLUS_PLUS] = ACTIONS(308), - [anon_sym_DASH_DASH] = ACTIONS(308), - [anon_sym_new] = ACTIONS(310), - [anon_sym_class] = ACTIONS(310), - [anon_sym_switch] = ACTIONS(310), - [anon_sym_LBRACE] = ACTIONS(308), - [anon_sym_RBRACE] = ACTIONS(308), - [anon_sym_case] = ACTIONS(310), - [anon_sym_default] = ACTIONS(310), - [anon_sym_SEMI] = ACTIONS(308), - [anon_sym_assert] = ACTIONS(310), - [anon_sym_do] = ACTIONS(310), - [anon_sym_while] = ACTIONS(310), - [anon_sym_break] = ACTIONS(310), - [anon_sym_continue] = ACTIONS(310), - [anon_sym_return] = ACTIONS(310), - [anon_sym_yield] = ACTIONS(310), - [anon_sym_synchronized] = ACTIONS(310), - [anon_sym_throw] = ACTIONS(310), - [anon_sym_try] = ACTIONS(310), - [anon_sym_catch] = ACTIONS(312), - [anon_sym_finally] = ACTIONS(310), - [anon_sym_if] = ACTIONS(310), - [anon_sym_else] = ACTIONS(310), - [anon_sym_for] = ACTIONS(310), - [anon_sym_AT] = ACTIONS(310), - [anon_sym_open] = ACTIONS(310), - [anon_sym_module] = ACTIONS(310), - [anon_sym_static] = ACTIONS(310), - [anon_sym_package] = ACTIONS(310), - [anon_sym_import] = ACTIONS(310), - [anon_sym_enum] = ACTIONS(310), - [anon_sym_public] = ACTIONS(310), - [anon_sym_protected] = ACTIONS(310), - [anon_sym_private] = ACTIONS(310), - [anon_sym_abstract] = ACTIONS(310), - [anon_sym_final] = ACTIONS(310), - [anon_sym_strictfp] = ACTIONS(310), - [anon_sym_native] = ACTIONS(310), - [anon_sym_transient] = ACTIONS(310), - [anon_sym_volatile] = ACTIONS(310), - [anon_sym_sealed] = ACTIONS(310), - [anon_sym_non_DASHsealed] = ACTIONS(308), - [anon_sym_ATinterface] = ACTIONS(308), - [anon_sym_interface] = ACTIONS(310), - [anon_sym_byte] = ACTIONS(310), - [anon_sym_short] = ACTIONS(310), - [anon_sym_int] = ACTIONS(310), - [anon_sym_long] = ACTIONS(310), - [anon_sym_char] = ACTIONS(310), - [anon_sym_float] = ACTIONS(310), - [anon_sym_double] = ACTIONS(310), - [sym_boolean_type] = ACTIONS(310), - [sym_void_type] = ACTIONS(310), - [sym_this] = ACTIONS(310), - [sym_super] = ACTIONS(310), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(311), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [61] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym_element_value_pair] = STATE(951), - [sym__element_value] = STATE(1080), - [sym_element_value_array_initializer] = STATE(1080), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(315), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(309), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15667,77 +19100,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [62] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym_element_value_pair] = STATE(876), - [sym__element_value] = STATE(1136), - [sym_element_value_array_initializer] = STATE(1136), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(315), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(272), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15747,77 +19242,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(323), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [63] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym_element_value_pair] = STATE(884), - [sym__element_value] = STATE(1129), - [sym_element_value_array_initializer] = STATE(1129), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(315), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(304), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15827,77 +19384,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(325), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [64] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(530), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym_block] = STATE(936), - [sym_expression_statement] = STATE(936), - [sym_throw_statement] = STATE(936), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(305), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15907,76 +19526,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_throw] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [65] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym__element_value] = STATE(854), - [sym_element_value_array_initializer] = STATE(854), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(307), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -15986,3394 +19668,3535 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(327), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_RBRACE] = ACTIONS(329), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [66] = { - [ts_builtin_sym_end] = ACTIONS(331), - [sym_identifier] = ACTIONS(333), - [sym_decimal_integer_literal] = ACTIONS(333), - [sym_hex_integer_literal] = ACTIONS(333), - [sym_octal_integer_literal] = ACTIONS(331), - [sym_binary_integer_literal] = ACTIONS(331), - [sym_decimal_floating_point_literal] = ACTIONS(331), - [sym_hex_floating_point_literal] = ACTIONS(333), - [sym_true] = ACTIONS(333), - [sym_false] = ACTIONS(333), - [sym_character_literal] = ACTIONS(331), - [sym_string_literal] = ACTIONS(333), - [sym_text_block] = ACTIONS(331), - [sym_null_literal] = ACTIONS(333), - [anon_sym_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_PLUS] = ACTIONS(333), - [anon_sym_DASH] = ACTIONS(333), - [anon_sym_BANG] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(331), - [anon_sym_PLUS_PLUS] = ACTIONS(331), - [anon_sym_DASH_DASH] = ACTIONS(331), - [anon_sym_new] = ACTIONS(333), - [anon_sym_class] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_RBRACE] = ACTIONS(331), - [anon_sym_case] = ACTIONS(333), - [anon_sym_default] = ACTIONS(333), - [anon_sym_SEMI] = ACTIONS(331), - [anon_sym_assert] = ACTIONS(333), - [anon_sym_do] = ACTIONS(333), - [anon_sym_while] = ACTIONS(333), - [anon_sym_break] = ACTIONS(333), - [anon_sym_continue] = ACTIONS(333), - [anon_sym_return] = ACTIONS(333), - [anon_sym_yield] = ACTIONS(333), - [anon_sym_synchronized] = ACTIONS(333), - [anon_sym_throw] = ACTIONS(333), - [anon_sym_try] = ACTIONS(333), - [anon_sym_if] = ACTIONS(333), - [anon_sym_else] = ACTIONS(333), - [anon_sym_for] = ACTIONS(333), - [anon_sym_AT] = ACTIONS(333), - [anon_sym_open] = ACTIONS(333), - [anon_sym_module] = ACTIONS(333), - [anon_sym_static] = ACTIONS(333), - [anon_sym_package] = ACTIONS(333), - [anon_sym_import] = ACTIONS(333), - [anon_sym_enum] = ACTIONS(333), - [anon_sym_public] = ACTIONS(333), - [anon_sym_protected] = ACTIONS(333), - [anon_sym_private] = ACTIONS(333), - [anon_sym_abstract] = ACTIONS(333), - [anon_sym_final] = ACTIONS(333), - [anon_sym_strictfp] = ACTIONS(333), - [anon_sym_native] = ACTIONS(333), - [anon_sym_transient] = ACTIONS(333), - [anon_sym_volatile] = ACTIONS(333), - [anon_sym_sealed] = ACTIONS(333), - [anon_sym_non_DASHsealed] = ACTIONS(331), - [anon_sym_record] = ACTIONS(333), - [anon_sym_ATinterface] = ACTIONS(331), - [anon_sym_interface] = ACTIONS(333), - [anon_sym_byte] = ACTIONS(333), - [anon_sym_short] = ACTIONS(333), - [anon_sym_int] = ACTIONS(333), - [anon_sym_long] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_float] = ACTIONS(333), - [anon_sym_double] = ACTIONS(333), - [sym_boolean_type] = ACTIONS(333), - [sym_void_type] = ACTIONS(333), - [sym_this] = ACTIONS(333), - [sym_super] = ACTIONS(333), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(297), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [67] = { - [ts_builtin_sym_end] = ACTIONS(335), - [sym_identifier] = ACTIONS(337), - [sym_decimal_integer_literal] = ACTIONS(337), - [sym_hex_integer_literal] = ACTIONS(337), - [sym_octal_integer_literal] = ACTIONS(335), - [sym_binary_integer_literal] = ACTIONS(335), - [sym_decimal_floating_point_literal] = ACTIONS(335), - [sym_hex_floating_point_literal] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_character_literal] = ACTIONS(335), - [sym_string_literal] = ACTIONS(337), - [sym_text_block] = ACTIONS(335), - [sym_null_literal] = ACTIONS(337), - [anon_sym_LPAREN] = ACTIONS(335), - [anon_sym_LT] = ACTIONS(335), - [anon_sym_PLUS] = ACTIONS(337), - [anon_sym_DASH] = ACTIONS(337), - [anon_sym_BANG] = ACTIONS(335), - [anon_sym_TILDE] = ACTIONS(335), - [anon_sym_PLUS_PLUS] = ACTIONS(335), - [anon_sym_DASH_DASH] = ACTIONS(335), - [anon_sym_new] = ACTIONS(337), - [anon_sym_class] = ACTIONS(337), - [anon_sym_switch] = ACTIONS(337), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_RBRACE] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [anon_sym_default] = ACTIONS(337), - [anon_sym_SEMI] = ACTIONS(335), - [anon_sym_assert] = ACTIONS(337), - [anon_sym_do] = ACTIONS(337), - [anon_sym_while] = ACTIONS(337), - [anon_sym_break] = ACTIONS(337), - [anon_sym_continue] = ACTIONS(337), - [anon_sym_return] = ACTIONS(337), - [anon_sym_yield] = ACTIONS(337), - [anon_sym_synchronized] = ACTIONS(337), - [anon_sym_throw] = ACTIONS(337), - [anon_sym_try] = ACTIONS(337), - [anon_sym_if] = ACTIONS(337), - [anon_sym_else] = ACTIONS(337), - [anon_sym_for] = ACTIONS(337), - [anon_sym_AT] = ACTIONS(337), - [anon_sym_open] = ACTIONS(337), - [anon_sym_module] = ACTIONS(337), - [anon_sym_static] = ACTIONS(337), - [anon_sym_package] = ACTIONS(337), - [anon_sym_import] = ACTIONS(337), - [anon_sym_enum] = ACTIONS(337), - [anon_sym_public] = ACTIONS(337), - [anon_sym_protected] = ACTIONS(337), - [anon_sym_private] = ACTIONS(337), - [anon_sym_abstract] = ACTIONS(337), - [anon_sym_final] = ACTIONS(337), - [anon_sym_strictfp] = ACTIONS(337), - [anon_sym_native] = ACTIONS(337), - [anon_sym_transient] = ACTIONS(337), - [anon_sym_volatile] = ACTIONS(337), - [anon_sym_sealed] = ACTIONS(337), - [anon_sym_non_DASHsealed] = ACTIONS(335), - [anon_sym_record] = ACTIONS(337), - [anon_sym_ATinterface] = ACTIONS(335), - [anon_sym_interface] = ACTIONS(337), - [anon_sym_byte] = ACTIONS(337), - [anon_sym_short] = ACTIONS(337), - [anon_sym_int] = ACTIONS(337), - [anon_sym_long] = ACTIONS(337), - [anon_sym_char] = ACTIONS(337), - [anon_sym_float] = ACTIONS(337), - [anon_sym_double] = ACTIONS(337), - [sym_boolean_type] = ACTIONS(337), - [sym_void_type] = ACTIONS(337), - [sym_this] = ACTIONS(337), - [sym_super] = ACTIONS(337), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(294), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [68] = { - [ts_builtin_sym_end] = ACTIONS(339), - [sym_identifier] = ACTIONS(341), - [sym_decimal_integer_literal] = ACTIONS(341), - [sym_hex_integer_literal] = ACTIONS(341), - [sym_octal_integer_literal] = ACTIONS(339), - [sym_binary_integer_literal] = ACTIONS(339), - [sym_decimal_floating_point_literal] = ACTIONS(339), - [sym_hex_floating_point_literal] = ACTIONS(341), - [sym_true] = ACTIONS(341), - [sym_false] = ACTIONS(341), - [sym_character_literal] = ACTIONS(339), - [sym_string_literal] = ACTIONS(341), - [sym_text_block] = ACTIONS(339), - [sym_null_literal] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_LT] = ACTIONS(339), - [anon_sym_PLUS] = ACTIONS(341), - [anon_sym_DASH] = ACTIONS(341), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_TILDE] = ACTIONS(339), - [anon_sym_PLUS_PLUS] = ACTIONS(339), - [anon_sym_DASH_DASH] = ACTIONS(339), - [anon_sym_new] = ACTIONS(341), - [anon_sym_class] = ACTIONS(341), - [anon_sym_switch] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(339), - [anon_sym_RBRACE] = ACTIONS(339), - [anon_sym_case] = ACTIONS(341), - [anon_sym_default] = ACTIONS(341), - [anon_sym_SEMI] = ACTIONS(339), - [anon_sym_assert] = ACTIONS(341), - [anon_sym_do] = ACTIONS(341), - [anon_sym_while] = ACTIONS(341), - [anon_sym_break] = ACTIONS(341), - [anon_sym_continue] = ACTIONS(341), - [anon_sym_return] = ACTIONS(341), - [anon_sym_yield] = ACTIONS(341), - [anon_sym_synchronized] = ACTIONS(341), - [anon_sym_throw] = ACTIONS(341), - [anon_sym_try] = ACTIONS(341), - [anon_sym_if] = ACTIONS(341), - [anon_sym_else] = ACTIONS(341), - [anon_sym_for] = ACTIONS(341), - [anon_sym_AT] = ACTIONS(341), - [anon_sym_open] = ACTIONS(341), - [anon_sym_module] = ACTIONS(341), - [anon_sym_static] = ACTIONS(341), - [anon_sym_package] = ACTIONS(341), - [anon_sym_import] = ACTIONS(341), - [anon_sym_enum] = ACTIONS(341), - [anon_sym_public] = ACTIONS(341), - [anon_sym_protected] = ACTIONS(341), - [anon_sym_private] = ACTIONS(341), - [anon_sym_abstract] = ACTIONS(341), - [anon_sym_final] = ACTIONS(341), - [anon_sym_strictfp] = ACTIONS(341), - [anon_sym_native] = ACTIONS(341), - [anon_sym_transient] = ACTIONS(341), - [anon_sym_volatile] = ACTIONS(341), - [anon_sym_sealed] = ACTIONS(341), - [anon_sym_non_DASHsealed] = ACTIONS(339), - [anon_sym_record] = ACTIONS(341), - [anon_sym_ATinterface] = ACTIONS(339), - [anon_sym_interface] = ACTIONS(341), - [anon_sym_byte] = ACTIONS(341), - [anon_sym_short] = ACTIONS(341), - [anon_sym_int] = ACTIONS(341), - [anon_sym_long] = ACTIONS(341), - [anon_sym_char] = ACTIONS(341), - [anon_sym_float] = ACTIONS(341), - [anon_sym_double] = ACTIONS(341), - [sym_boolean_type] = ACTIONS(341), - [sym_void_type] = ACTIONS(341), - [sym_this] = ACTIONS(341), - [sym_super] = ACTIONS(341), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(319), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [69] = { - [ts_builtin_sym_end] = ACTIONS(343), - [sym_identifier] = ACTIONS(345), - [sym_decimal_integer_literal] = ACTIONS(345), - [sym_hex_integer_literal] = ACTIONS(345), - [sym_octal_integer_literal] = ACTIONS(343), - [sym_binary_integer_literal] = ACTIONS(343), - [sym_decimal_floating_point_literal] = ACTIONS(343), - [sym_hex_floating_point_literal] = ACTIONS(345), - [sym_true] = ACTIONS(345), - [sym_false] = ACTIONS(345), - [sym_character_literal] = ACTIONS(343), - [sym_string_literal] = ACTIONS(345), - [sym_text_block] = ACTIONS(343), - [sym_null_literal] = ACTIONS(345), - [anon_sym_LPAREN] = ACTIONS(343), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(345), - [anon_sym_DASH] = ACTIONS(345), - [anon_sym_BANG] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(343), - [anon_sym_PLUS_PLUS] = ACTIONS(343), - [anon_sym_DASH_DASH] = ACTIONS(343), - [anon_sym_new] = ACTIONS(345), - [anon_sym_class] = ACTIONS(345), - [anon_sym_switch] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_case] = ACTIONS(345), - [anon_sym_default] = ACTIONS(345), - [anon_sym_SEMI] = ACTIONS(343), - [anon_sym_assert] = ACTIONS(345), - [anon_sym_do] = ACTIONS(345), - [anon_sym_while] = ACTIONS(345), - [anon_sym_break] = ACTIONS(345), - [anon_sym_continue] = ACTIONS(345), - [anon_sym_return] = ACTIONS(345), - [anon_sym_yield] = ACTIONS(345), - [anon_sym_synchronized] = ACTIONS(345), - [anon_sym_throw] = ACTIONS(345), - [anon_sym_try] = ACTIONS(345), - [anon_sym_if] = ACTIONS(345), - [anon_sym_else] = ACTIONS(345), - [anon_sym_for] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(345), - [anon_sym_open] = ACTIONS(345), - [anon_sym_module] = ACTIONS(345), - [anon_sym_static] = ACTIONS(345), - [anon_sym_package] = ACTIONS(345), - [anon_sym_import] = ACTIONS(345), - [anon_sym_enum] = ACTIONS(345), - [anon_sym_public] = ACTIONS(345), - [anon_sym_protected] = ACTIONS(345), - [anon_sym_private] = ACTIONS(345), - [anon_sym_abstract] = ACTIONS(345), - [anon_sym_final] = ACTIONS(345), - [anon_sym_strictfp] = ACTIONS(345), - [anon_sym_native] = ACTIONS(345), - [anon_sym_transient] = ACTIONS(345), - [anon_sym_volatile] = ACTIONS(345), - [anon_sym_sealed] = ACTIONS(345), - [anon_sym_non_DASHsealed] = ACTIONS(343), - [anon_sym_record] = ACTIONS(345), - [anon_sym_ATinterface] = ACTIONS(343), - [anon_sym_interface] = ACTIONS(345), - [anon_sym_byte] = ACTIONS(345), - [anon_sym_short] = ACTIONS(345), - [anon_sym_int] = ACTIONS(345), - [anon_sym_long] = ACTIONS(345), - [anon_sym_char] = ACTIONS(345), - [anon_sym_float] = ACTIONS(345), - [anon_sym_double] = ACTIONS(345), - [sym_boolean_type] = ACTIONS(345), - [sym_void_type] = ACTIONS(345), - [sym_this] = ACTIONS(345), - [sym_super] = ACTIONS(345), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(320), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [70] = { - [ts_builtin_sym_end] = ACTIONS(347), - [sym_identifier] = ACTIONS(349), - [sym_decimal_integer_literal] = ACTIONS(349), - [sym_hex_integer_literal] = ACTIONS(349), - [sym_octal_integer_literal] = ACTIONS(347), - [sym_binary_integer_literal] = ACTIONS(347), - [sym_decimal_floating_point_literal] = ACTIONS(347), - [sym_hex_floating_point_literal] = ACTIONS(349), - [sym_true] = ACTIONS(349), - [sym_false] = ACTIONS(349), - [sym_character_literal] = ACTIONS(347), - [sym_string_literal] = ACTIONS(349), - [sym_text_block] = ACTIONS(347), - [sym_null_literal] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_PLUS] = ACTIONS(349), - [anon_sym_DASH] = ACTIONS(349), - [anon_sym_BANG] = ACTIONS(347), - [anon_sym_TILDE] = ACTIONS(347), - [anon_sym_PLUS_PLUS] = ACTIONS(347), - [anon_sym_DASH_DASH] = ACTIONS(347), - [anon_sym_new] = ACTIONS(349), - [anon_sym_class] = ACTIONS(349), - [anon_sym_switch] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(347), - [anon_sym_RBRACE] = ACTIONS(347), - [anon_sym_case] = ACTIONS(349), - [anon_sym_default] = ACTIONS(349), - [anon_sym_SEMI] = ACTIONS(347), - [anon_sym_assert] = ACTIONS(349), - [anon_sym_do] = ACTIONS(349), - [anon_sym_while] = ACTIONS(349), - [anon_sym_break] = ACTIONS(349), - [anon_sym_continue] = ACTIONS(349), - [anon_sym_return] = ACTIONS(349), - [anon_sym_yield] = ACTIONS(349), - [anon_sym_synchronized] = ACTIONS(349), - [anon_sym_throw] = ACTIONS(349), - [anon_sym_try] = ACTIONS(349), - [anon_sym_if] = ACTIONS(349), - [anon_sym_else] = ACTIONS(349), - [anon_sym_for] = ACTIONS(349), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_open] = ACTIONS(349), - [anon_sym_module] = ACTIONS(349), - [anon_sym_static] = ACTIONS(349), - [anon_sym_package] = ACTIONS(349), - [anon_sym_import] = ACTIONS(349), - [anon_sym_enum] = ACTIONS(349), - [anon_sym_public] = ACTIONS(349), - [anon_sym_protected] = ACTIONS(349), - [anon_sym_private] = ACTIONS(349), - [anon_sym_abstract] = ACTIONS(349), - [anon_sym_final] = ACTIONS(349), - [anon_sym_strictfp] = ACTIONS(349), - [anon_sym_native] = ACTIONS(349), - [anon_sym_transient] = ACTIONS(349), - [anon_sym_volatile] = ACTIONS(349), - [anon_sym_sealed] = ACTIONS(349), - [anon_sym_non_DASHsealed] = ACTIONS(347), - [anon_sym_record] = ACTIONS(349), - [anon_sym_ATinterface] = ACTIONS(347), - [anon_sym_interface] = ACTIONS(349), - [anon_sym_byte] = ACTIONS(349), - [anon_sym_short] = ACTIONS(349), - [anon_sym_int] = ACTIONS(349), - [anon_sym_long] = ACTIONS(349), - [anon_sym_char] = ACTIONS(349), - [anon_sym_float] = ACTIONS(349), - [anon_sym_double] = ACTIONS(349), - [sym_boolean_type] = ACTIONS(349), - [sym_void_type] = ACTIONS(349), - [sym_this] = ACTIONS(349), - [sym_super] = ACTIONS(349), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(322), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [71] = { - [ts_builtin_sym_end] = ACTIONS(351), - [sym_identifier] = ACTIONS(353), - [sym_decimal_integer_literal] = ACTIONS(353), - [sym_hex_integer_literal] = ACTIONS(353), - [sym_octal_integer_literal] = ACTIONS(351), - [sym_binary_integer_literal] = ACTIONS(351), - [sym_decimal_floating_point_literal] = ACTIONS(351), - [sym_hex_floating_point_literal] = ACTIONS(353), - [sym_true] = ACTIONS(353), - [sym_false] = ACTIONS(353), - [sym_character_literal] = ACTIONS(351), - [sym_string_literal] = ACTIONS(353), - [sym_text_block] = ACTIONS(351), - [sym_null_literal] = ACTIONS(353), - [anon_sym_LPAREN] = ACTIONS(351), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_PLUS] = ACTIONS(353), - [anon_sym_DASH] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(351), - [anon_sym_TILDE] = ACTIONS(351), - [anon_sym_PLUS_PLUS] = ACTIONS(351), - [anon_sym_DASH_DASH] = ACTIONS(351), - [anon_sym_new] = ACTIONS(353), - [anon_sym_class] = ACTIONS(353), - [anon_sym_switch] = ACTIONS(353), - [anon_sym_LBRACE] = ACTIONS(351), - [anon_sym_RBRACE] = ACTIONS(351), - [anon_sym_case] = ACTIONS(353), - [anon_sym_default] = ACTIONS(353), - [anon_sym_SEMI] = ACTIONS(351), - [anon_sym_assert] = ACTIONS(353), - [anon_sym_do] = ACTIONS(353), - [anon_sym_while] = ACTIONS(353), - [anon_sym_break] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(353), - [anon_sym_return] = ACTIONS(353), - [anon_sym_yield] = ACTIONS(353), - [anon_sym_synchronized] = ACTIONS(353), - [anon_sym_throw] = ACTIONS(353), - [anon_sym_try] = ACTIONS(353), - [anon_sym_if] = ACTIONS(353), - [anon_sym_else] = ACTIONS(353), - [anon_sym_for] = ACTIONS(353), - [anon_sym_AT] = ACTIONS(353), - [anon_sym_open] = ACTIONS(353), - [anon_sym_module] = ACTIONS(353), - [anon_sym_static] = ACTIONS(353), - [anon_sym_package] = ACTIONS(353), - [anon_sym_import] = ACTIONS(353), - [anon_sym_enum] = ACTIONS(353), - [anon_sym_public] = ACTIONS(353), - [anon_sym_protected] = ACTIONS(353), - [anon_sym_private] = ACTIONS(353), - [anon_sym_abstract] = ACTIONS(353), - [anon_sym_final] = ACTIONS(353), - [anon_sym_strictfp] = ACTIONS(353), - [anon_sym_native] = ACTIONS(353), - [anon_sym_transient] = ACTIONS(353), - [anon_sym_volatile] = ACTIONS(353), - [anon_sym_sealed] = ACTIONS(353), - [anon_sym_non_DASHsealed] = ACTIONS(351), - [anon_sym_record] = ACTIONS(353), - [anon_sym_ATinterface] = ACTIONS(351), - [anon_sym_interface] = ACTIONS(353), - [anon_sym_byte] = ACTIONS(353), - [anon_sym_short] = ACTIONS(353), - [anon_sym_int] = ACTIONS(353), - [anon_sym_long] = ACTIONS(353), - [anon_sym_char] = ACTIONS(353), - [anon_sym_float] = ACTIONS(353), - [anon_sym_double] = ACTIONS(353), - [sym_boolean_type] = ACTIONS(353), - [sym_void_type] = ACTIONS(353), - [sym_this] = ACTIONS(353), - [sym_super] = ACTIONS(353), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(323), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [72] = { - [ts_builtin_sym_end] = ACTIONS(355), - [sym_identifier] = ACTIONS(357), - [sym_decimal_integer_literal] = ACTIONS(357), - [sym_hex_integer_literal] = ACTIONS(357), - [sym_octal_integer_literal] = ACTIONS(355), - [sym_binary_integer_literal] = ACTIONS(355), - [sym_decimal_floating_point_literal] = ACTIONS(355), - [sym_hex_floating_point_literal] = ACTIONS(357), - [sym_true] = ACTIONS(357), - [sym_false] = ACTIONS(357), - [sym_character_literal] = ACTIONS(355), - [sym_string_literal] = ACTIONS(357), - [sym_text_block] = ACTIONS(355), - [sym_null_literal] = ACTIONS(357), - [anon_sym_LPAREN] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(355), - [anon_sym_PLUS] = ACTIONS(357), - [anon_sym_DASH] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(355), - [anon_sym_TILDE] = ACTIONS(355), - [anon_sym_PLUS_PLUS] = ACTIONS(355), - [anon_sym_DASH_DASH] = ACTIONS(355), - [anon_sym_new] = ACTIONS(357), - [anon_sym_class] = ACTIONS(357), - [anon_sym_switch] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(355), - [anon_sym_RBRACE] = ACTIONS(355), - [anon_sym_case] = ACTIONS(357), - [anon_sym_default] = ACTIONS(357), - [anon_sym_SEMI] = ACTIONS(355), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_do] = ACTIONS(357), - [anon_sym_while] = ACTIONS(357), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(357), - [anon_sym_return] = ACTIONS(357), - [anon_sym_yield] = ACTIONS(357), - [anon_sym_synchronized] = ACTIONS(357), - [anon_sym_throw] = ACTIONS(357), - [anon_sym_try] = ACTIONS(357), - [anon_sym_if] = ACTIONS(357), - [anon_sym_else] = ACTIONS(357), - [anon_sym_for] = ACTIONS(357), - [anon_sym_AT] = ACTIONS(357), - [anon_sym_open] = ACTIONS(357), - [anon_sym_module] = ACTIONS(357), - [anon_sym_static] = ACTIONS(357), - [anon_sym_package] = ACTIONS(357), - [anon_sym_import] = ACTIONS(357), - [anon_sym_enum] = ACTIONS(357), - [anon_sym_public] = ACTIONS(357), - [anon_sym_protected] = ACTIONS(357), - [anon_sym_private] = ACTIONS(357), - [anon_sym_abstract] = ACTIONS(357), - [anon_sym_final] = ACTIONS(357), - [anon_sym_strictfp] = ACTIONS(357), - [anon_sym_native] = ACTIONS(357), - [anon_sym_transient] = ACTIONS(357), - [anon_sym_volatile] = ACTIONS(357), - [anon_sym_sealed] = ACTIONS(357), - [anon_sym_non_DASHsealed] = ACTIONS(355), - [anon_sym_record] = ACTIONS(357), - [anon_sym_ATinterface] = ACTIONS(355), - [anon_sym_interface] = ACTIONS(357), - [anon_sym_byte] = ACTIONS(357), - [anon_sym_short] = ACTIONS(357), - [anon_sym_int] = ACTIONS(357), - [anon_sym_long] = ACTIONS(357), - [anon_sym_char] = ACTIONS(357), - [anon_sym_float] = ACTIONS(357), - [anon_sym_double] = ACTIONS(357), - [sym_boolean_type] = ACTIONS(357), - [sym_void_type] = ACTIONS(357), - [sym_this] = ACTIONS(357), - [sym_super] = ACTIONS(357), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [73] = { - [ts_builtin_sym_end] = ACTIONS(359), - [sym_identifier] = ACTIONS(361), - [sym_decimal_integer_literal] = ACTIONS(361), - [sym_hex_integer_literal] = ACTIONS(361), - [sym_octal_integer_literal] = ACTIONS(359), - [sym_binary_integer_literal] = ACTIONS(359), - [sym_decimal_floating_point_literal] = ACTIONS(359), - [sym_hex_floating_point_literal] = ACTIONS(361), - [sym_true] = ACTIONS(361), - [sym_false] = ACTIONS(361), - [sym_character_literal] = ACTIONS(359), - [sym_string_literal] = ACTIONS(361), - [sym_text_block] = ACTIONS(359), - [sym_null_literal] = ACTIONS(361), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_LT] = ACTIONS(359), - [anon_sym_PLUS] = ACTIONS(361), - [anon_sym_DASH] = ACTIONS(361), - [anon_sym_BANG] = ACTIONS(359), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_PLUS_PLUS] = ACTIONS(359), - [anon_sym_DASH_DASH] = ACTIONS(359), - [anon_sym_new] = ACTIONS(361), - [anon_sym_class] = ACTIONS(361), - [anon_sym_switch] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(359), - [anon_sym_RBRACE] = ACTIONS(359), - [anon_sym_case] = ACTIONS(361), - [anon_sym_default] = ACTIONS(361), - [anon_sym_SEMI] = ACTIONS(359), - [anon_sym_assert] = ACTIONS(361), - [anon_sym_do] = ACTIONS(361), - [anon_sym_while] = ACTIONS(361), - [anon_sym_break] = ACTIONS(361), - [anon_sym_continue] = ACTIONS(361), - [anon_sym_return] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(361), - [anon_sym_synchronized] = ACTIONS(361), - [anon_sym_throw] = ACTIONS(361), - [anon_sym_try] = ACTIONS(361), - [anon_sym_if] = ACTIONS(361), - [anon_sym_else] = ACTIONS(361), - [anon_sym_for] = ACTIONS(361), - [anon_sym_AT] = ACTIONS(361), - [anon_sym_open] = ACTIONS(361), - [anon_sym_module] = ACTIONS(361), - [anon_sym_static] = ACTIONS(361), - [anon_sym_package] = ACTIONS(361), - [anon_sym_import] = ACTIONS(361), - [anon_sym_enum] = ACTIONS(361), - [anon_sym_public] = ACTIONS(361), - [anon_sym_protected] = ACTIONS(361), - [anon_sym_private] = ACTIONS(361), - [anon_sym_abstract] = ACTIONS(361), - [anon_sym_final] = ACTIONS(361), - [anon_sym_strictfp] = ACTIONS(361), - [anon_sym_native] = ACTIONS(361), - [anon_sym_transient] = ACTIONS(361), - [anon_sym_volatile] = ACTIONS(361), - [anon_sym_sealed] = ACTIONS(361), - [anon_sym_non_DASHsealed] = ACTIONS(359), - [anon_sym_record] = ACTIONS(361), - [anon_sym_ATinterface] = ACTIONS(359), - [anon_sym_interface] = ACTIONS(361), - [anon_sym_byte] = ACTIONS(361), - [anon_sym_short] = ACTIONS(361), - [anon_sym_int] = ACTIONS(361), - [anon_sym_long] = ACTIONS(361), - [anon_sym_char] = ACTIONS(361), - [anon_sym_float] = ACTIONS(361), - [anon_sym_double] = ACTIONS(361), - [sym_boolean_type] = ACTIONS(361), - [sym_void_type] = ACTIONS(361), - [sym_this] = ACTIONS(361), - [sym_super] = ACTIONS(361), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(566), + [sym_statement] = STATE(309), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(251), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(253), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(255), + [anon_sym_for] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [73] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(327), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), }, [74] = { - [ts_builtin_sym_end] = ACTIONS(363), - [sym_identifier] = ACTIONS(365), - [sym_decimal_integer_literal] = ACTIONS(365), - [sym_hex_integer_literal] = ACTIONS(365), - [sym_octal_integer_literal] = ACTIONS(363), - [sym_binary_integer_literal] = ACTIONS(363), - [sym_decimal_floating_point_literal] = ACTIONS(363), - [sym_hex_floating_point_literal] = ACTIONS(365), - [sym_true] = ACTIONS(365), - [sym_false] = ACTIONS(365), - [sym_character_literal] = ACTIONS(363), - [sym_string_literal] = ACTIONS(365), - [sym_text_block] = ACTIONS(363), - [sym_null_literal] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(363), - [anon_sym_LT] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_BANG] = ACTIONS(363), - [anon_sym_TILDE] = ACTIONS(363), - [anon_sym_PLUS_PLUS] = ACTIONS(363), - [anon_sym_DASH_DASH] = ACTIONS(363), - [anon_sym_new] = ACTIONS(365), - [anon_sym_class] = ACTIONS(365), - [anon_sym_switch] = ACTIONS(365), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_RBRACE] = ACTIONS(363), - [anon_sym_case] = ACTIONS(365), - [anon_sym_default] = ACTIONS(365), - [anon_sym_SEMI] = ACTIONS(363), - [anon_sym_assert] = ACTIONS(365), - [anon_sym_do] = ACTIONS(365), - [anon_sym_while] = ACTIONS(365), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(365), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_synchronized] = ACTIONS(365), - [anon_sym_throw] = ACTIONS(365), - [anon_sym_try] = ACTIONS(365), - [anon_sym_if] = ACTIONS(365), - [anon_sym_else] = ACTIONS(365), - [anon_sym_for] = ACTIONS(365), - [anon_sym_AT] = ACTIONS(365), - [anon_sym_open] = ACTIONS(365), - [anon_sym_module] = ACTIONS(365), - [anon_sym_static] = ACTIONS(365), - [anon_sym_package] = ACTIONS(365), - [anon_sym_import] = ACTIONS(365), - [anon_sym_enum] = ACTIONS(365), - [anon_sym_public] = ACTIONS(365), - [anon_sym_protected] = ACTIONS(365), - [anon_sym_private] = ACTIONS(365), - [anon_sym_abstract] = ACTIONS(365), - [anon_sym_final] = ACTIONS(365), - [anon_sym_strictfp] = ACTIONS(365), - [anon_sym_native] = ACTIONS(365), - [anon_sym_transient] = ACTIONS(365), - [anon_sym_volatile] = ACTIONS(365), - [anon_sym_sealed] = ACTIONS(365), - [anon_sym_non_DASHsealed] = ACTIONS(363), - [anon_sym_record] = ACTIONS(365), - [anon_sym_ATinterface] = ACTIONS(363), - [anon_sym_interface] = ACTIONS(365), - [anon_sym_byte] = ACTIONS(365), - [anon_sym_short] = ACTIONS(365), - [anon_sym_int] = ACTIONS(365), - [anon_sym_long] = ACTIONS(365), - [anon_sym_char] = ACTIONS(365), - [anon_sym_float] = ACTIONS(365), - [anon_sym_double] = ACTIONS(365), - [sym_boolean_type] = ACTIONS(365), - [sym_void_type] = ACTIONS(365), - [sym_this] = ACTIONS(365), - [sym_super] = ACTIONS(365), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(86), + [sym_statement] = STATE(329), + [sym_block] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_assert_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_yield_statement] = STATE(289), + [sym_synchronized_statement] = STATE(289), + [sym_throw_statement] = STATE(289), + [sym_try_statement] = STATE(289), + [sym_try_with_resources_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_enhanced_for_statement] = STATE(289), + [sym__annotation] = STATE(488), + [sym_marker_annotation] = STATE(488), + [sym_annotation] = STATE(488), + [sym_declaration] = STATE(289), + [sym_module_declaration] = STATE(276), + [sym_package_declaration] = STATE(276), + [sym_import_declaration] = STATE(276), + [sym_enum_declaration] = STATE(276), + [sym_class_declaration] = STATE(276), + [sym_modifiers] = STATE(675), + [sym_record_declaration] = STATE(276), + [sym_annotation_type_declaration] = STATE(276), + [sym_interface_declaration] = STATE(276), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(694), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(289), + [aux_sym_array_creation_expression_repeat1] = STATE(635), + [aux_sym_modifiers_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(7), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_class] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_default] = ACTIONS(21), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_assert] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_yield] = ACTIONS(49), + [anon_sym_synchronized] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_try] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_AT] = ACTIONS(61), + [anon_sym_open] = ACTIONS(63), + [anon_sym_module] = ACTIONS(65), + [anon_sym_static] = ACTIONS(21), + [anon_sym_package] = ACTIONS(67), + [anon_sym_import] = ACTIONS(69), + [anon_sym_enum] = ACTIONS(71), + [anon_sym_public] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(21), + [anon_sym_strictfp] = ACTIONS(21), + [anon_sym_native] = ACTIONS(21), + [anon_sym_transient] = ACTIONS(21), + [anon_sym_volatile] = ACTIONS(21), + [anon_sym_sealed] = ACTIONS(21), + [anon_sym_non_DASHsealed] = ACTIONS(73), + [anon_sym_record] = ACTIONS(75), + [anon_sym_ATinterface] = ACTIONS(77), + [anon_sym_interface] = ACTIONS(79), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [75] = { - [ts_builtin_sym_end] = ACTIONS(367), - [sym_identifier] = ACTIONS(369), - [sym_decimal_integer_literal] = ACTIONS(369), - [sym_hex_integer_literal] = ACTIONS(369), - [sym_octal_integer_literal] = ACTIONS(367), - [sym_binary_integer_literal] = ACTIONS(367), - [sym_decimal_floating_point_literal] = ACTIONS(367), - [sym_hex_floating_point_literal] = ACTIONS(369), - [sym_true] = ACTIONS(369), - [sym_false] = ACTIONS(369), - [sym_character_literal] = ACTIONS(367), - [sym_string_literal] = ACTIONS(369), - [sym_text_block] = ACTIONS(367), - [sym_null_literal] = ACTIONS(369), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(367), - [anon_sym_PLUS] = ACTIONS(369), - [anon_sym_DASH] = ACTIONS(369), - [anon_sym_BANG] = ACTIONS(367), - [anon_sym_TILDE] = ACTIONS(367), - [anon_sym_PLUS_PLUS] = ACTIONS(367), - [anon_sym_DASH_DASH] = ACTIONS(367), - [anon_sym_new] = ACTIONS(369), - [anon_sym_class] = ACTIONS(369), - [anon_sym_switch] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(367), - [anon_sym_RBRACE] = ACTIONS(367), - [anon_sym_case] = ACTIONS(369), - [anon_sym_default] = ACTIONS(369), - [anon_sym_SEMI] = ACTIONS(367), - [anon_sym_assert] = ACTIONS(369), - [anon_sym_do] = ACTIONS(369), - [anon_sym_while] = ACTIONS(369), - [anon_sym_break] = ACTIONS(369), - [anon_sym_continue] = ACTIONS(369), - [anon_sym_return] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(369), - [anon_sym_synchronized] = ACTIONS(369), - [anon_sym_throw] = ACTIONS(369), - [anon_sym_try] = ACTIONS(369), - [anon_sym_if] = ACTIONS(369), - [anon_sym_else] = ACTIONS(369), - [anon_sym_for] = ACTIONS(369), - [anon_sym_AT] = ACTIONS(369), - [anon_sym_open] = ACTIONS(369), - [anon_sym_module] = ACTIONS(369), - [anon_sym_static] = ACTIONS(369), - [anon_sym_package] = ACTIONS(369), - [anon_sym_import] = ACTIONS(369), - [anon_sym_enum] = ACTIONS(369), - [anon_sym_public] = ACTIONS(369), - [anon_sym_protected] = ACTIONS(369), - [anon_sym_private] = ACTIONS(369), - [anon_sym_abstract] = ACTIONS(369), - [anon_sym_final] = ACTIONS(369), - [anon_sym_strictfp] = ACTIONS(369), - [anon_sym_native] = ACTIONS(369), - [anon_sym_transient] = ACTIONS(369), - [anon_sym_volatile] = ACTIONS(369), - [anon_sym_sealed] = ACTIONS(369), - [anon_sym_non_DASHsealed] = ACTIONS(367), - [anon_sym_record] = ACTIONS(369), - [anon_sym_ATinterface] = ACTIONS(367), - [anon_sym_interface] = ACTIONS(369), - [anon_sym_byte] = ACTIONS(369), - [anon_sym_short] = ACTIONS(369), - [anon_sym_int] = ACTIONS(369), - [anon_sym_long] = ACTIONS(369), - [anon_sym_char] = ACTIONS(369), - [anon_sym_float] = ACTIONS(369), - [anon_sym_double] = ACTIONS(369), - [sym_boolean_type] = ACTIONS(369), - [sym_void_type] = ACTIONS(369), - [sym_this] = ACTIONS(369), - [sym_super] = ACTIONS(369), + [ts_builtin_sym_end] = ACTIONS(259), + [sym_identifier] = ACTIONS(261), + [sym_decimal_integer_literal] = ACTIONS(261), + [sym_hex_integer_literal] = ACTIONS(261), + [sym_octal_integer_literal] = ACTIONS(259), + [sym_binary_integer_literal] = ACTIONS(259), + [sym_decimal_floating_point_literal] = ACTIONS(259), + [sym_hex_floating_point_literal] = ACTIONS(261), + [sym_true] = ACTIONS(261), + [sym_false] = ACTIONS(261), + [sym_character_literal] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(259), + [sym_null_literal] = ACTIONS(261), + [anon_sym_LPAREN] = ACTIONS(259), + [anon_sym_AMP] = ACTIONS(261), + [anon_sym_RPAREN] = ACTIONS(259), + [anon_sym_GT] = ACTIONS(261), + [anon_sym_LT] = ACTIONS(261), + [anon_sym_GT_EQ] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(259), + [anon_sym_EQ_EQ] = ACTIONS(259), + [anon_sym_BANG_EQ] = ACTIONS(259), + [anon_sym_AMP_AMP] = ACTIONS(259), + [anon_sym_PIPE_PIPE] = ACTIONS(259), + [anon_sym_PLUS] = ACTIONS(261), + [anon_sym_DASH] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(261), + [anon_sym_PIPE] = ACTIONS(261), + [anon_sym_CARET] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(259), + [anon_sym_GT_GT] = ACTIONS(261), + [anon_sym_GT_GT_GT] = ACTIONS(259), + [anon_sym_instanceof] = ACTIONS(261), + [anon_sym_final] = ACTIONS(261), + [anon_sym_DASH_GT] = ACTIONS(259), + [anon_sym_COMMA] = ACTIONS(259), + [anon_sym_QMARK] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(261), + [anon_sym_BANG] = ACTIONS(261), + [anon_sym_TILDE] = ACTIONS(259), + [anon_sym_PLUS_PLUS] = ACTIONS(259), + [anon_sym_DASH_DASH] = ACTIONS(259), + [anon_sym_new] = ACTIONS(261), + [anon_sym_LBRACK] = ACTIONS(259), + [anon_sym_RBRACK] = ACTIONS(259), + [anon_sym_DOT] = ACTIONS(261), + [anon_sym_class] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(259), + [anon_sym_switch] = ACTIONS(261), + [anon_sym_LBRACE] = ACTIONS(259), + [anon_sym_RBRACE] = ACTIONS(259), + [anon_sym_case] = ACTIONS(261), + [anon_sym_default] = ACTIONS(261), + [anon_sym_SEMI] = ACTIONS(259), + [anon_sym_assert] = ACTIONS(261), + [anon_sym_do] = ACTIONS(261), + [anon_sym_while] = ACTIONS(261), + [anon_sym_break] = ACTIONS(261), + [anon_sym_continue] = ACTIONS(261), + [anon_sym_return] = ACTIONS(261), + [anon_sym_yield] = ACTIONS(261), + [anon_sym_synchronized] = ACTIONS(261), + [anon_sym_throw] = ACTIONS(261), + [anon_sym_try] = ACTIONS(261), + [anon_sym_if] = ACTIONS(261), + [anon_sym_else] = ACTIONS(261), + [anon_sym_for] = ACTIONS(261), + [anon_sym_AT] = ACTIONS(261), + [anon_sym_open] = ACTIONS(261), + [anon_sym_module] = ACTIONS(261), + [anon_sym_static] = ACTIONS(261), + [anon_sym_package] = ACTIONS(261), + [anon_sym_import] = ACTIONS(261), + [anon_sym_enum] = ACTIONS(261), + [anon_sym_public] = ACTIONS(261), + [anon_sym_protected] = ACTIONS(261), + [anon_sym_private] = ACTIONS(261), + [anon_sym_abstract] = ACTIONS(261), + [anon_sym_strictfp] = ACTIONS(261), + [anon_sym_native] = ACTIONS(261), + [anon_sym_transient] = ACTIONS(261), + [anon_sym_volatile] = ACTIONS(261), + [anon_sym_sealed] = ACTIONS(261), + [anon_sym_non_DASHsealed] = ACTIONS(259), + [anon_sym_record] = ACTIONS(261), + [anon_sym_ATinterface] = ACTIONS(259), + [anon_sym_interface] = ACTIONS(261), + [anon_sym_byte] = ACTIONS(261), + [anon_sym_short] = ACTIONS(261), + [anon_sym_int] = ACTIONS(261), + [anon_sym_long] = ACTIONS(261), + [anon_sym_char] = ACTIONS(261), + [anon_sym_float] = ACTIONS(261), + [anon_sym_double] = ACTIONS(261), + [sym_boolean_type] = ACTIONS(261), + [sym_void_type] = ACTIONS(261), + [sym_this] = ACTIONS(261), + [sym_super] = ACTIONS(261), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [76] = { - [ts_builtin_sym_end] = ACTIONS(371), - [sym_identifier] = ACTIONS(373), - [sym_decimal_integer_literal] = ACTIONS(373), - [sym_hex_integer_literal] = ACTIONS(373), - [sym_octal_integer_literal] = ACTIONS(371), - [sym_binary_integer_literal] = ACTIONS(371), - [sym_decimal_floating_point_literal] = ACTIONS(371), - [sym_hex_floating_point_literal] = ACTIONS(373), - [sym_true] = ACTIONS(373), - [sym_false] = ACTIONS(373), - [sym_character_literal] = ACTIONS(371), - [sym_string_literal] = ACTIONS(373), - [sym_text_block] = ACTIONS(371), - [sym_null_literal] = ACTIONS(373), - [anon_sym_LPAREN] = ACTIONS(371), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_PLUS] = ACTIONS(373), - [anon_sym_DASH] = ACTIONS(373), - [anon_sym_BANG] = ACTIONS(371), - [anon_sym_TILDE] = ACTIONS(371), - [anon_sym_PLUS_PLUS] = ACTIONS(371), - [anon_sym_DASH_DASH] = ACTIONS(371), - [anon_sym_new] = ACTIONS(373), - [anon_sym_class] = ACTIONS(373), - [anon_sym_switch] = ACTIONS(373), - [anon_sym_LBRACE] = ACTIONS(371), - [anon_sym_RBRACE] = ACTIONS(371), - [anon_sym_case] = ACTIONS(373), - [anon_sym_default] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(371), - [anon_sym_assert] = ACTIONS(373), - [anon_sym_do] = ACTIONS(373), - [anon_sym_while] = ACTIONS(373), - [anon_sym_break] = ACTIONS(373), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_return] = ACTIONS(373), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_synchronized] = ACTIONS(373), - [anon_sym_throw] = ACTIONS(373), - [anon_sym_try] = ACTIONS(373), - [anon_sym_if] = ACTIONS(373), - [anon_sym_else] = ACTIONS(373), - [anon_sym_for] = ACTIONS(373), - [anon_sym_AT] = ACTIONS(373), - [anon_sym_open] = ACTIONS(373), - [anon_sym_module] = ACTIONS(373), - [anon_sym_static] = ACTIONS(373), - [anon_sym_package] = ACTIONS(373), - [anon_sym_import] = ACTIONS(373), - [anon_sym_enum] = ACTIONS(373), - [anon_sym_public] = ACTIONS(373), - [anon_sym_protected] = ACTIONS(373), - [anon_sym_private] = ACTIONS(373), - [anon_sym_abstract] = ACTIONS(373), - [anon_sym_final] = ACTIONS(373), - [anon_sym_strictfp] = ACTIONS(373), - [anon_sym_native] = ACTIONS(373), - [anon_sym_transient] = ACTIONS(373), - [anon_sym_volatile] = ACTIONS(373), - [anon_sym_sealed] = ACTIONS(373), - [anon_sym_non_DASHsealed] = ACTIONS(371), - [anon_sym_record] = ACTIONS(373), - [anon_sym_ATinterface] = ACTIONS(371), - [anon_sym_interface] = ACTIONS(373), - [anon_sym_byte] = ACTIONS(373), - [anon_sym_short] = ACTIONS(373), - [anon_sym_int] = ACTIONS(373), - [anon_sym_long] = ACTIONS(373), - [anon_sym_char] = ACTIONS(373), - [anon_sym_float] = ACTIONS(373), - [anon_sym_double] = ACTIONS(373), - [sym_boolean_type] = ACTIONS(373), - [sym_void_type] = ACTIONS(373), - [sym_this] = ACTIONS(373), - [sym_super] = ACTIONS(373), + [ts_builtin_sym_end] = ACTIONS(263), + [sym_identifier] = ACTIONS(265), + [sym_decimal_integer_literal] = ACTIONS(265), + [sym_hex_integer_literal] = ACTIONS(265), + [sym_octal_integer_literal] = ACTIONS(263), + [sym_binary_integer_literal] = ACTIONS(263), + [sym_decimal_floating_point_literal] = ACTIONS(263), + [sym_hex_floating_point_literal] = ACTIONS(265), + [sym_true] = ACTIONS(265), + [sym_false] = ACTIONS(265), + [sym_character_literal] = ACTIONS(263), + [anon_sym_DQUOTE] = ACTIONS(265), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(263), + [sym_null_literal] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(263), + [anon_sym_AMP] = ACTIONS(265), + [anon_sym_RPAREN] = ACTIONS(263), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_GT_EQ] = ACTIONS(263), + [anon_sym_LT_EQ] = ACTIONS(263), + [anon_sym_EQ_EQ] = ACTIONS(263), + [anon_sym_BANG_EQ] = ACTIONS(263), + [anon_sym_AMP_AMP] = ACTIONS(263), + [anon_sym_PIPE_PIPE] = ACTIONS(263), + [anon_sym_PLUS] = ACTIONS(265), + [anon_sym_DASH] = ACTIONS(265), + [anon_sym_STAR] = ACTIONS(263), + [anon_sym_SLASH] = ACTIONS(265), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_CARET] = ACTIONS(263), + [anon_sym_PERCENT] = ACTIONS(263), + [anon_sym_LT_LT] = ACTIONS(263), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_GT_GT_GT] = ACTIONS(263), + [anon_sym_instanceof] = ACTIONS(265), + [anon_sym_final] = ACTIONS(265), + [anon_sym_DASH_GT] = ACTIONS(263), + [anon_sym_COMMA] = ACTIONS(263), + [anon_sym_QMARK] = ACTIONS(263), + [anon_sym_COLON] = ACTIONS(265), + [anon_sym_BANG] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(263), + [anon_sym_PLUS_PLUS] = ACTIONS(263), + [anon_sym_DASH_DASH] = ACTIONS(263), + [anon_sym_new] = ACTIONS(265), + [anon_sym_LBRACK] = ACTIONS(263), + [anon_sym_RBRACK] = ACTIONS(263), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_class] = ACTIONS(265), + [anon_sym_COLON_COLON] = ACTIONS(263), + [anon_sym_switch] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(263), + [anon_sym_RBRACE] = ACTIONS(263), + [anon_sym_case] = ACTIONS(265), + [anon_sym_default] = ACTIONS(265), + [anon_sym_SEMI] = ACTIONS(263), + [anon_sym_assert] = ACTIONS(265), + [anon_sym_do] = ACTIONS(265), + [anon_sym_while] = ACTIONS(265), + [anon_sym_break] = ACTIONS(265), + [anon_sym_continue] = ACTIONS(265), + [anon_sym_return] = ACTIONS(265), + [anon_sym_yield] = ACTIONS(265), + [anon_sym_synchronized] = ACTIONS(265), + [anon_sym_throw] = ACTIONS(265), + [anon_sym_try] = ACTIONS(265), + [anon_sym_if] = ACTIONS(265), + [anon_sym_else] = ACTIONS(265), + [anon_sym_for] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_open] = ACTIONS(265), + [anon_sym_module] = ACTIONS(265), + [anon_sym_static] = ACTIONS(265), + [anon_sym_package] = ACTIONS(265), + [anon_sym_import] = ACTIONS(265), + [anon_sym_enum] = ACTIONS(265), + [anon_sym_public] = ACTIONS(265), + [anon_sym_protected] = ACTIONS(265), + [anon_sym_private] = ACTIONS(265), + [anon_sym_abstract] = ACTIONS(265), + [anon_sym_strictfp] = ACTIONS(265), + [anon_sym_native] = ACTIONS(265), + [anon_sym_transient] = ACTIONS(265), + [anon_sym_volatile] = ACTIONS(265), + [anon_sym_sealed] = ACTIONS(265), + [anon_sym_non_DASHsealed] = ACTIONS(263), + [anon_sym_record] = ACTIONS(265), + [anon_sym_ATinterface] = ACTIONS(263), + [anon_sym_interface] = ACTIONS(265), + [anon_sym_byte] = ACTIONS(265), + [anon_sym_short] = ACTIONS(265), + [anon_sym_int] = ACTIONS(265), + [anon_sym_long] = ACTIONS(265), + [anon_sym_char] = ACTIONS(265), + [anon_sym_float] = ACTIONS(265), + [anon_sym_double] = ACTIONS(265), + [sym_boolean_type] = ACTIONS(265), + [sym_void_type] = ACTIONS(265), + [sym_this] = ACTIONS(265), + [sym_super] = ACTIONS(265), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [77] = { - [ts_builtin_sym_end] = ACTIONS(375), - [sym_identifier] = ACTIONS(377), - [sym_decimal_integer_literal] = ACTIONS(377), - [sym_hex_integer_literal] = ACTIONS(377), - [sym_octal_integer_literal] = ACTIONS(375), - [sym_binary_integer_literal] = ACTIONS(375), - [sym_decimal_floating_point_literal] = ACTIONS(375), - [sym_hex_floating_point_literal] = ACTIONS(377), - [sym_true] = ACTIONS(377), - [sym_false] = ACTIONS(377), - [sym_character_literal] = ACTIONS(375), - [sym_string_literal] = ACTIONS(377), - [sym_text_block] = ACTIONS(375), - [sym_null_literal] = ACTIONS(377), - [anon_sym_LPAREN] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(375), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_DASH] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(375), - [anon_sym_TILDE] = ACTIONS(375), - [anon_sym_PLUS_PLUS] = ACTIONS(375), - [anon_sym_DASH_DASH] = ACTIONS(375), - [anon_sym_new] = ACTIONS(377), - [anon_sym_class] = ACTIONS(377), - [anon_sym_switch] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(375), - [anon_sym_RBRACE] = ACTIONS(375), - [anon_sym_case] = ACTIONS(377), - [anon_sym_default] = ACTIONS(377), - [anon_sym_SEMI] = ACTIONS(375), - [anon_sym_assert] = ACTIONS(377), - [anon_sym_do] = ACTIONS(377), - [anon_sym_while] = ACTIONS(377), - [anon_sym_break] = ACTIONS(377), - [anon_sym_continue] = ACTIONS(377), - [anon_sym_return] = ACTIONS(377), - [anon_sym_yield] = ACTIONS(377), - [anon_sym_synchronized] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_try] = ACTIONS(377), - [anon_sym_if] = ACTIONS(377), - [anon_sym_else] = ACTIONS(377), - [anon_sym_for] = ACTIONS(377), - [anon_sym_AT] = ACTIONS(377), - [anon_sym_open] = ACTIONS(377), - [anon_sym_module] = ACTIONS(377), - [anon_sym_static] = ACTIONS(377), - [anon_sym_package] = ACTIONS(377), - [anon_sym_import] = ACTIONS(377), - [anon_sym_enum] = ACTIONS(377), - [anon_sym_public] = ACTIONS(377), - [anon_sym_protected] = ACTIONS(377), - [anon_sym_private] = ACTIONS(377), - [anon_sym_abstract] = ACTIONS(377), - [anon_sym_final] = ACTIONS(377), - [anon_sym_strictfp] = ACTIONS(377), - [anon_sym_native] = ACTIONS(377), - [anon_sym_transient] = ACTIONS(377), - [anon_sym_volatile] = ACTIONS(377), - [anon_sym_sealed] = ACTIONS(377), - [anon_sym_non_DASHsealed] = ACTIONS(375), - [anon_sym_record] = ACTIONS(377), - [anon_sym_ATinterface] = ACTIONS(375), - [anon_sym_interface] = ACTIONS(377), - [anon_sym_byte] = ACTIONS(377), - [anon_sym_short] = ACTIONS(377), - [anon_sym_int] = ACTIONS(377), - [anon_sym_long] = ACTIONS(377), - [anon_sym_char] = ACTIONS(377), - [anon_sym_float] = ACTIONS(377), - [anon_sym_double] = ACTIONS(377), - [sym_boolean_type] = ACTIONS(377), - [sym_void_type] = ACTIONS(377), - [sym_this] = ACTIONS(377), - [sym_super] = ACTIONS(377), + [ts_builtin_sym_end] = ACTIONS(267), + [sym_identifier] = ACTIONS(269), + [sym_decimal_integer_literal] = ACTIONS(269), + [sym_hex_integer_literal] = ACTIONS(269), + [sym_octal_integer_literal] = ACTIONS(267), + [sym_binary_integer_literal] = ACTIONS(267), + [sym_decimal_floating_point_literal] = ACTIONS(267), + [sym_hex_floating_point_literal] = ACTIONS(269), + [sym_true] = ACTIONS(269), + [sym_false] = ACTIONS(269), + [sym_character_literal] = ACTIONS(267), + [anon_sym_DQUOTE] = ACTIONS(269), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(267), + [sym_null_literal] = ACTIONS(269), + [anon_sym_LPAREN] = ACTIONS(267), + [anon_sym_AMP] = ACTIONS(269), + [anon_sym_RPAREN] = ACTIONS(267), + [anon_sym_GT] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(269), + [anon_sym_GT_EQ] = ACTIONS(267), + [anon_sym_LT_EQ] = ACTIONS(267), + [anon_sym_EQ_EQ] = ACTIONS(267), + [anon_sym_BANG_EQ] = ACTIONS(267), + [anon_sym_AMP_AMP] = ACTIONS(267), + [anon_sym_PIPE_PIPE] = ACTIONS(267), + [anon_sym_PLUS] = ACTIONS(269), + [anon_sym_DASH] = ACTIONS(269), + [anon_sym_STAR] = ACTIONS(267), + [anon_sym_SLASH] = ACTIONS(269), + [anon_sym_PIPE] = ACTIONS(269), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(267), + [anon_sym_LT_LT] = ACTIONS(267), + [anon_sym_GT_GT] = ACTIONS(269), + [anon_sym_GT_GT_GT] = ACTIONS(267), + [anon_sym_instanceof] = ACTIONS(269), + [anon_sym_final] = ACTIONS(269), + [anon_sym_DASH_GT] = ACTIONS(267), + [anon_sym_COMMA] = ACTIONS(267), + [anon_sym_QMARK] = ACTIONS(267), + [anon_sym_COLON] = ACTIONS(267), + [anon_sym_BANG] = ACTIONS(269), + [anon_sym_TILDE] = ACTIONS(267), + [anon_sym_PLUS_PLUS] = ACTIONS(267), + [anon_sym_DASH_DASH] = ACTIONS(267), + [anon_sym_new] = ACTIONS(269), + [anon_sym_RBRACK] = ACTIONS(267), + [anon_sym_class] = ACTIONS(269), + [anon_sym_switch] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_RBRACE] = ACTIONS(267), + [anon_sym_case] = ACTIONS(269), + [anon_sym_default] = ACTIONS(269), + [anon_sym_SEMI] = ACTIONS(267), + [anon_sym_assert] = ACTIONS(269), + [anon_sym_do] = ACTIONS(269), + [anon_sym_while] = ACTIONS(269), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(269), + [anon_sym_return] = ACTIONS(269), + [anon_sym_yield] = ACTIONS(269), + [anon_sym_synchronized] = ACTIONS(269), + [anon_sym_throw] = ACTIONS(269), + [anon_sym_try] = ACTIONS(269), + [anon_sym_if] = ACTIONS(269), + [anon_sym_else] = ACTIONS(269), + [anon_sym_for] = ACTIONS(269), + [anon_sym_AT] = ACTIONS(269), + [anon_sym_open] = ACTIONS(269), + [anon_sym_module] = ACTIONS(269), + [anon_sym_static] = ACTIONS(269), + [anon_sym_package] = ACTIONS(269), + [anon_sym_import] = ACTIONS(269), + [anon_sym_enum] = ACTIONS(269), + [anon_sym_public] = ACTIONS(269), + [anon_sym_protected] = ACTIONS(269), + [anon_sym_private] = ACTIONS(269), + [anon_sym_abstract] = ACTIONS(269), + [anon_sym_strictfp] = ACTIONS(269), + [anon_sym_native] = ACTIONS(269), + [anon_sym_transient] = ACTIONS(269), + [anon_sym_volatile] = ACTIONS(269), + [anon_sym_sealed] = ACTIONS(269), + [anon_sym_non_DASHsealed] = ACTIONS(267), + [anon_sym_record] = ACTIONS(269), + [anon_sym_ATinterface] = ACTIONS(267), + [anon_sym_interface] = ACTIONS(269), + [anon_sym_byte] = ACTIONS(269), + [anon_sym_short] = ACTIONS(269), + [anon_sym_int] = ACTIONS(269), + [anon_sym_long] = ACTIONS(269), + [anon_sym_char] = ACTIONS(269), + [anon_sym_float] = ACTIONS(269), + [anon_sym_double] = ACTIONS(269), + [sym_boolean_type] = ACTIONS(269), + [sym_void_type] = ACTIONS(269), + [sym_this] = ACTIONS(269), + [sym_super] = ACTIONS(269), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [78] = { - [ts_builtin_sym_end] = ACTIONS(379), - [sym_identifier] = ACTIONS(381), - [sym_decimal_integer_literal] = ACTIONS(381), - [sym_hex_integer_literal] = ACTIONS(381), - [sym_octal_integer_literal] = ACTIONS(379), - [sym_binary_integer_literal] = ACTIONS(379), - [sym_decimal_floating_point_literal] = ACTIONS(379), - [sym_hex_floating_point_literal] = ACTIONS(381), - [sym_true] = ACTIONS(381), - [sym_false] = ACTIONS(381), - [sym_character_literal] = ACTIONS(379), - [sym_string_literal] = ACTIONS(381), - [sym_text_block] = ACTIONS(379), - [sym_null_literal] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_LT] = ACTIONS(379), - [anon_sym_PLUS] = ACTIONS(381), - [anon_sym_DASH] = ACTIONS(381), - [anon_sym_BANG] = ACTIONS(379), - [anon_sym_TILDE] = ACTIONS(379), - [anon_sym_PLUS_PLUS] = ACTIONS(379), - [anon_sym_DASH_DASH] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_class] = ACTIONS(381), - [anon_sym_switch] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(379), - [anon_sym_RBRACE] = ACTIONS(379), - [anon_sym_case] = ACTIONS(381), - [anon_sym_default] = ACTIONS(381), - [anon_sym_SEMI] = ACTIONS(379), - [anon_sym_assert] = ACTIONS(381), - [anon_sym_do] = ACTIONS(381), - [anon_sym_while] = ACTIONS(381), - [anon_sym_break] = ACTIONS(381), - [anon_sym_continue] = ACTIONS(381), - [anon_sym_return] = ACTIONS(381), - [anon_sym_yield] = ACTIONS(381), - [anon_sym_synchronized] = ACTIONS(381), - [anon_sym_throw] = ACTIONS(381), - [anon_sym_try] = ACTIONS(381), - [anon_sym_if] = ACTIONS(381), - [anon_sym_else] = ACTIONS(381), - [anon_sym_for] = ACTIONS(381), - [anon_sym_AT] = ACTIONS(381), - [anon_sym_open] = ACTIONS(381), - [anon_sym_module] = ACTIONS(381), - [anon_sym_static] = ACTIONS(381), - [anon_sym_package] = ACTIONS(381), - [anon_sym_import] = ACTIONS(381), - [anon_sym_enum] = ACTIONS(381), - [anon_sym_public] = ACTIONS(381), - [anon_sym_protected] = ACTIONS(381), - [anon_sym_private] = ACTIONS(381), - [anon_sym_abstract] = ACTIONS(381), - [anon_sym_final] = ACTIONS(381), - [anon_sym_strictfp] = ACTIONS(381), - [anon_sym_native] = ACTIONS(381), - [anon_sym_transient] = ACTIONS(381), - [anon_sym_volatile] = ACTIONS(381), - [anon_sym_sealed] = ACTIONS(381), - [anon_sym_non_DASHsealed] = ACTIONS(379), - [anon_sym_record] = ACTIONS(381), - [anon_sym_ATinterface] = ACTIONS(379), - [anon_sym_interface] = ACTIONS(381), - [anon_sym_byte] = ACTIONS(381), - [anon_sym_short] = ACTIONS(381), - [anon_sym_int] = ACTIONS(381), - [anon_sym_long] = ACTIONS(381), - [anon_sym_char] = ACTIONS(381), - [anon_sym_float] = ACTIONS(381), - [anon_sym_double] = ACTIONS(381), - [sym_boolean_type] = ACTIONS(381), - [sym_void_type] = ACTIONS(381), - [sym_this] = ACTIONS(381), - [sym_super] = ACTIONS(381), + [ts_builtin_sym_end] = ACTIONS(271), + [sym_identifier] = ACTIONS(273), + [sym_decimal_integer_literal] = ACTIONS(273), + [sym_hex_integer_literal] = ACTIONS(273), + [sym_octal_integer_literal] = ACTIONS(271), + [sym_binary_integer_literal] = ACTIONS(271), + [sym_decimal_floating_point_literal] = ACTIONS(271), + [sym_hex_floating_point_literal] = ACTIONS(273), + [sym_true] = ACTIONS(273), + [sym_false] = ACTIONS(273), + [sym_character_literal] = ACTIONS(271), + [anon_sym_DQUOTE] = ACTIONS(273), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(271), + [sym_null_literal] = ACTIONS(273), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_AMP] = ACTIONS(273), + [anon_sym_RPAREN] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(273), + [anon_sym_LT] = ACTIONS(273), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PLUS] = ACTIONS(273), + [anon_sym_DASH] = ACTIONS(273), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(273), + [anon_sym_PIPE] = ACTIONS(273), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_PERCENT] = ACTIONS(271), + [anon_sym_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT] = ACTIONS(273), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_instanceof] = ACTIONS(273), + [anon_sym_final] = ACTIONS(273), + [anon_sym_DASH_GT] = ACTIONS(271), + [anon_sym_COMMA] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(271), + [anon_sym_COLON] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(273), + [anon_sym_TILDE] = ACTIONS(271), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_new] = ACTIONS(273), + [anon_sym_RBRACK] = ACTIONS(271), + [anon_sym_class] = ACTIONS(273), + [anon_sym_switch] = ACTIONS(273), + [anon_sym_LBRACE] = ACTIONS(271), + [anon_sym_RBRACE] = ACTIONS(271), + [anon_sym_case] = ACTIONS(273), + [anon_sym_default] = ACTIONS(273), + [anon_sym_SEMI] = ACTIONS(271), + [anon_sym_assert] = ACTIONS(273), + [anon_sym_do] = ACTIONS(273), + [anon_sym_while] = ACTIONS(273), + [anon_sym_break] = ACTIONS(273), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_return] = ACTIONS(273), + [anon_sym_yield] = ACTIONS(273), + [anon_sym_synchronized] = ACTIONS(273), + [anon_sym_throw] = ACTIONS(273), + [anon_sym_try] = ACTIONS(273), + [anon_sym_if] = ACTIONS(273), + [anon_sym_else] = ACTIONS(273), + [anon_sym_for] = ACTIONS(273), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_open] = ACTIONS(273), + [anon_sym_module] = ACTIONS(273), + [anon_sym_static] = ACTIONS(273), + [anon_sym_package] = ACTIONS(273), + [anon_sym_import] = ACTIONS(273), + [anon_sym_enum] = ACTIONS(273), + [anon_sym_public] = ACTIONS(273), + [anon_sym_protected] = ACTIONS(273), + [anon_sym_private] = ACTIONS(273), + [anon_sym_abstract] = ACTIONS(273), + [anon_sym_strictfp] = ACTIONS(273), + [anon_sym_native] = ACTIONS(273), + [anon_sym_transient] = ACTIONS(273), + [anon_sym_volatile] = ACTIONS(273), + [anon_sym_sealed] = ACTIONS(273), + [anon_sym_non_DASHsealed] = ACTIONS(271), + [anon_sym_record] = ACTIONS(273), + [anon_sym_ATinterface] = ACTIONS(271), + [anon_sym_interface] = ACTIONS(273), + [anon_sym_byte] = ACTIONS(273), + [anon_sym_short] = ACTIONS(273), + [anon_sym_int] = ACTIONS(273), + [anon_sym_long] = ACTIONS(273), + [anon_sym_char] = ACTIONS(273), + [anon_sym_float] = ACTIONS(273), + [anon_sym_double] = ACTIONS(273), + [sym_boolean_type] = ACTIONS(273), + [sym_void_type] = ACTIONS(273), + [sym_this] = ACTIONS(273), + [sym_super] = ACTIONS(273), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [79] = { - [ts_builtin_sym_end] = ACTIONS(383), - [sym_identifier] = ACTIONS(385), - [sym_decimal_integer_literal] = ACTIONS(385), - [sym_hex_integer_literal] = ACTIONS(385), - [sym_octal_integer_literal] = ACTIONS(383), - [sym_binary_integer_literal] = ACTIONS(383), - [sym_decimal_floating_point_literal] = ACTIONS(383), - [sym_hex_floating_point_literal] = ACTIONS(385), - [sym_true] = ACTIONS(385), - [sym_false] = ACTIONS(385), - [sym_character_literal] = ACTIONS(383), - [sym_string_literal] = ACTIONS(385), - [sym_text_block] = ACTIONS(383), - [sym_null_literal] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_DASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(383), - [anon_sym_TILDE] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(383), - [anon_sym_DASH_DASH] = ACTIONS(383), - [anon_sym_new] = ACTIONS(385), - [anon_sym_class] = ACTIONS(385), - [anon_sym_switch] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(383), - [anon_sym_RBRACE] = ACTIONS(383), - [anon_sym_case] = ACTIONS(385), - [anon_sym_default] = ACTIONS(385), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym_assert] = ACTIONS(385), - [anon_sym_do] = ACTIONS(385), - [anon_sym_while] = ACTIONS(385), - [anon_sym_break] = ACTIONS(385), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_return] = ACTIONS(385), - [anon_sym_yield] = ACTIONS(385), - [anon_sym_synchronized] = ACTIONS(385), - [anon_sym_throw] = ACTIONS(385), - [anon_sym_try] = ACTIONS(385), - [anon_sym_if] = ACTIONS(385), - [anon_sym_else] = ACTIONS(385), - [anon_sym_for] = ACTIONS(385), - [anon_sym_AT] = ACTIONS(385), - [anon_sym_open] = ACTIONS(385), - [anon_sym_module] = ACTIONS(385), - [anon_sym_static] = ACTIONS(385), - [anon_sym_package] = ACTIONS(385), - [anon_sym_import] = ACTIONS(385), - [anon_sym_enum] = ACTIONS(385), - [anon_sym_public] = ACTIONS(385), - [anon_sym_protected] = ACTIONS(385), - [anon_sym_private] = ACTIONS(385), - [anon_sym_abstract] = ACTIONS(385), - [anon_sym_final] = ACTIONS(385), - [anon_sym_strictfp] = ACTIONS(385), - [anon_sym_native] = ACTIONS(385), - [anon_sym_transient] = ACTIONS(385), - [anon_sym_volatile] = ACTIONS(385), - [anon_sym_sealed] = ACTIONS(385), - [anon_sym_non_DASHsealed] = ACTIONS(383), - [anon_sym_record] = ACTIONS(385), - [anon_sym_ATinterface] = ACTIONS(383), - [anon_sym_interface] = ACTIONS(385), - [anon_sym_byte] = ACTIONS(385), - [anon_sym_short] = ACTIONS(385), - [anon_sym_int] = ACTIONS(385), - [anon_sym_long] = ACTIONS(385), - [anon_sym_char] = ACTIONS(385), - [anon_sym_float] = ACTIONS(385), - [anon_sym_double] = ACTIONS(385), - [sym_boolean_type] = ACTIONS(385), - [sym_void_type] = ACTIONS(385), - [sym_this] = ACTIONS(385), - [sym_super] = ACTIONS(385), + [sym_identifier] = ACTIONS(275), + [sym_decimal_integer_literal] = ACTIONS(275), + [sym_hex_integer_literal] = ACTIONS(275), + [sym_octal_integer_literal] = ACTIONS(277), + [sym_binary_integer_literal] = ACTIONS(277), + [sym_decimal_floating_point_literal] = ACTIONS(277), + [sym_hex_floating_point_literal] = ACTIONS(275), + [sym_true] = ACTIONS(275), + [sym_false] = ACTIONS(275), + [sym_character_literal] = ACTIONS(277), + [anon_sym_DQUOTE] = ACTIONS(275), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(277), + [sym_null_literal] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(277), + [anon_sym_AMP] = ACTIONS(275), + [anon_sym_RPAREN] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(275), + [anon_sym_LT] = ACTIONS(275), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_AMP_AMP] = ACTIONS(277), + [anon_sym_PIPE_PIPE] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_STAR] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(275), + [anon_sym_PIPE] = ACTIONS(275), + [anon_sym_CARET] = ACTIONS(277), + [anon_sym_PERCENT] = ACTIONS(277), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_GT_GT] = ACTIONS(275), + [anon_sym_GT_GT_GT] = ACTIONS(277), + [anon_sym_instanceof] = ACTIONS(275), + [anon_sym_final] = ACTIONS(275), + [anon_sym_DASH_GT] = ACTIONS(277), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_QMARK] = ACTIONS(277), + [anon_sym_COLON] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(275), + [anon_sym_TILDE] = ACTIONS(277), + [anon_sym_PLUS_PLUS] = ACTIONS(277), + [anon_sym_DASH_DASH] = ACTIONS(277), + [anon_sym_new] = ACTIONS(275), + [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(277), + [anon_sym_DOT] = ACTIONS(275), + [anon_sym_class] = ACTIONS(275), + [anon_sym_COLON_COLON] = ACTIONS(277), + [anon_sym_switch] = ACTIONS(275), + [anon_sym_LBRACE] = ACTIONS(277), + [anon_sym_RBRACE] = ACTIONS(277), + [anon_sym_default] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_assert] = ACTIONS(275), + [anon_sym_do] = ACTIONS(275), + [anon_sym_while] = ACTIONS(275), + [anon_sym_break] = ACTIONS(275), + [anon_sym_continue] = ACTIONS(275), + [anon_sym_return] = ACTIONS(275), + [anon_sym_yield] = ACTIONS(275), + [anon_sym_synchronized] = ACTIONS(275), + [anon_sym_throw] = ACTIONS(275), + [anon_sym_try] = ACTIONS(275), + [anon_sym_if] = ACTIONS(275), + [anon_sym_for] = ACTIONS(275), + [anon_sym_AT] = ACTIONS(275), + [anon_sym_open] = ACTIONS(275), + [anon_sym_module] = ACTIONS(275), + [anon_sym_static] = ACTIONS(275), + [anon_sym_package] = ACTIONS(275), + [anon_sym_import] = ACTIONS(275), + [anon_sym_enum] = ACTIONS(275), + [anon_sym_public] = ACTIONS(275), + [anon_sym_protected] = ACTIONS(275), + [anon_sym_private] = ACTIONS(275), + [anon_sym_abstract] = ACTIONS(275), + [anon_sym_strictfp] = ACTIONS(275), + [anon_sym_native] = ACTIONS(275), + [anon_sym_transient] = ACTIONS(275), + [anon_sym_volatile] = ACTIONS(275), + [anon_sym_sealed] = ACTIONS(275), + [anon_sym_non_DASHsealed] = ACTIONS(277), + [anon_sym_record] = ACTIONS(275), + [anon_sym_ATinterface] = ACTIONS(277), + [anon_sym_interface] = ACTIONS(275), + [anon_sym_byte] = ACTIONS(275), + [anon_sym_short] = ACTIONS(275), + [anon_sym_int] = ACTIONS(275), + [anon_sym_long] = ACTIONS(275), + [anon_sym_char] = ACTIONS(275), + [anon_sym_float] = ACTIONS(275), + [anon_sym_double] = ACTIONS(275), + [sym_boolean_type] = ACTIONS(275), + [sym_void_type] = ACTIONS(275), + [sym_this] = ACTIONS(275), + [sym_super] = ACTIONS(275), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [80] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym__element_value] = STATE(975), - [sym_element_value_array_initializer] = STATE(975), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [ts_builtin_sym_end] = ACTIONS(279), + [sym_identifier] = ACTIONS(281), + [sym_decimal_integer_literal] = ACTIONS(281), + [sym_hex_integer_literal] = ACTIONS(281), + [sym_octal_integer_literal] = ACTIONS(279), + [sym_binary_integer_literal] = ACTIONS(279), + [sym_decimal_floating_point_literal] = ACTIONS(279), + [sym_hex_floating_point_literal] = ACTIONS(281), + [sym_true] = ACTIONS(281), + [sym_false] = ACTIONS(281), + [sym_character_literal] = ACTIONS(279), + [anon_sym_DQUOTE] = ACTIONS(281), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(279), + [sym_null_literal] = ACTIONS(281), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(281), + [anon_sym_RPAREN] = ACTIONS(279), + [anon_sym_GT] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(281), + [anon_sym_GT_EQ] = ACTIONS(279), + [anon_sym_LT_EQ] = ACTIONS(279), + [anon_sym_EQ_EQ] = ACTIONS(279), + [anon_sym_BANG_EQ] = ACTIONS(279), + [anon_sym_AMP_AMP] = ACTIONS(279), + [anon_sym_PIPE_PIPE] = ACTIONS(279), + [anon_sym_PLUS] = ACTIONS(281), + [anon_sym_DASH] = ACTIONS(281), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_SLASH] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(281), + [anon_sym_CARET] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(279), + [anon_sym_LT_LT] = ACTIONS(279), + [anon_sym_GT_GT] = ACTIONS(281), + [anon_sym_GT_GT_GT] = ACTIONS(279), + [anon_sym_instanceof] = ACTIONS(281), + [anon_sym_final] = ACTIONS(281), + [anon_sym_DASH_GT] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(281), + [anon_sym_TILDE] = ACTIONS(279), + [anon_sym_PLUS_PLUS] = ACTIONS(279), + [anon_sym_DASH_DASH] = ACTIONS(279), + [anon_sym_new] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(279), + [anon_sym_class] = ACTIONS(281), + [anon_sym_switch] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_RBRACE] = ACTIONS(279), + [anon_sym_case] = ACTIONS(281), + [anon_sym_default] = ACTIONS(281), + [anon_sym_SEMI] = ACTIONS(279), + [anon_sym_assert] = ACTIONS(281), + [anon_sym_do] = ACTIONS(281), + [anon_sym_while] = ACTIONS(281), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_return] = ACTIONS(281), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_synchronized] = ACTIONS(281), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_try] = ACTIONS(281), + [anon_sym_if] = ACTIONS(281), + [anon_sym_else] = ACTIONS(281), + [anon_sym_for] = ACTIONS(281), + [anon_sym_AT] = ACTIONS(281), + [anon_sym_open] = ACTIONS(281), + [anon_sym_module] = ACTIONS(281), + [anon_sym_static] = ACTIONS(281), + [anon_sym_package] = ACTIONS(281), + [anon_sym_import] = ACTIONS(281), + [anon_sym_enum] = ACTIONS(281), + [anon_sym_public] = ACTIONS(281), + [anon_sym_protected] = ACTIONS(281), + [anon_sym_private] = ACTIONS(281), + [anon_sym_abstract] = ACTIONS(281), + [anon_sym_strictfp] = ACTIONS(281), + [anon_sym_native] = ACTIONS(281), + [anon_sym_transient] = ACTIONS(281), + [anon_sym_volatile] = ACTIONS(281), + [anon_sym_sealed] = ACTIONS(281), + [anon_sym_non_DASHsealed] = ACTIONS(279), + [anon_sym_record] = ACTIONS(281), + [anon_sym_ATinterface] = ACTIONS(279), + [anon_sym_interface] = ACTIONS(281), + [anon_sym_byte] = ACTIONS(281), + [anon_sym_short] = ACTIONS(281), + [anon_sym_int] = ACTIONS(281), + [anon_sym_long] = ACTIONS(281), + [anon_sym_char] = ACTIONS(281), + [anon_sym_float] = ACTIONS(281), + [anon_sym_double] = ACTIONS(281), + [sym_boolean_type] = ACTIONS(281), + [sym_void_type] = ACTIONS(281), + [sym_this] = ACTIONS(281), + [sym_super] = ACTIONS(281), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [81] = { - [ts_builtin_sym_end] = ACTIONS(389), - [sym_identifier] = ACTIONS(391), - [sym_decimal_integer_literal] = ACTIONS(391), - [sym_hex_integer_literal] = ACTIONS(391), - [sym_octal_integer_literal] = ACTIONS(389), - [sym_binary_integer_literal] = ACTIONS(389), - [sym_decimal_floating_point_literal] = ACTIONS(389), - [sym_hex_floating_point_literal] = ACTIONS(391), - [sym_true] = ACTIONS(391), - [sym_false] = ACTIONS(391), - [sym_character_literal] = ACTIONS(389), - [sym_string_literal] = ACTIONS(391), - [sym_text_block] = ACTIONS(389), - [sym_null_literal] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_TILDE] = ACTIONS(389), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [anon_sym_new] = ACTIONS(391), - [anon_sym_class] = ACTIONS(391), - [anon_sym_switch] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(389), - [anon_sym_RBRACE] = ACTIONS(389), - [anon_sym_case] = ACTIONS(391), - [anon_sym_default] = ACTIONS(391), - [anon_sym_SEMI] = ACTIONS(389), - [anon_sym_assert] = ACTIONS(391), - [anon_sym_do] = ACTIONS(391), - [anon_sym_while] = ACTIONS(391), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(391), - [anon_sym_return] = ACTIONS(391), - [anon_sym_yield] = ACTIONS(391), - [anon_sym_synchronized] = ACTIONS(391), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_try] = ACTIONS(391), - [anon_sym_if] = ACTIONS(391), - [anon_sym_else] = ACTIONS(391), - [anon_sym_for] = ACTIONS(391), - [anon_sym_AT] = ACTIONS(391), - [anon_sym_open] = ACTIONS(391), - [anon_sym_module] = ACTIONS(391), - [anon_sym_static] = ACTIONS(391), - [anon_sym_package] = ACTIONS(391), - [anon_sym_import] = ACTIONS(391), - [anon_sym_enum] = ACTIONS(391), - [anon_sym_public] = ACTIONS(391), - [anon_sym_protected] = ACTIONS(391), - [anon_sym_private] = ACTIONS(391), - [anon_sym_abstract] = ACTIONS(391), - [anon_sym_final] = ACTIONS(391), - [anon_sym_strictfp] = ACTIONS(391), - [anon_sym_native] = ACTIONS(391), - [anon_sym_transient] = ACTIONS(391), - [anon_sym_volatile] = ACTIONS(391), - [anon_sym_sealed] = ACTIONS(391), - [anon_sym_non_DASHsealed] = ACTIONS(389), - [anon_sym_record] = ACTIONS(391), - [anon_sym_ATinterface] = ACTIONS(389), - [anon_sym_interface] = ACTIONS(391), - [anon_sym_byte] = ACTIONS(391), - [anon_sym_short] = ACTIONS(391), - [anon_sym_int] = ACTIONS(391), - [anon_sym_long] = ACTIONS(391), - [anon_sym_char] = ACTIONS(391), - [anon_sym_float] = ACTIONS(391), - [anon_sym_double] = ACTIONS(391), - [sym_boolean_type] = ACTIONS(391), - [sym_void_type] = ACTIONS(391), - [sym_this] = ACTIONS(391), - [sym_super] = ACTIONS(391), + [ts_builtin_sym_end] = ACTIONS(283), + [sym_identifier] = ACTIONS(285), + [sym_decimal_integer_literal] = ACTIONS(285), + [sym_hex_integer_literal] = ACTIONS(285), + [sym_octal_integer_literal] = ACTIONS(283), + [sym_binary_integer_literal] = ACTIONS(283), + [sym_decimal_floating_point_literal] = ACTIONS(283), + [sym_hex_floating_point_literal] = ACTIONS(285), + [sym_true] = ACTIONS(285), + [sym_false] = ACTIONS(285), + [sym_character_literal] = ACTIONS(283), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(283), + [sym_null_literal] = ACTIONS(285), + [anon_sym_LPAREN] = ACTIONS(283), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_RPAREN] = ACTIONS(283), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_GT_EQ] = ACTIONS(283), + [anon_sym_LT_EQ] = ACTIONS(283), + [anon_sym_EQ_EQ] = ACTIONS(283), + [anon_sym_BANG_EQ] = ACTIONS(283), + [anon_sym_AMP_AMP] = ACTIONS(283), + [anon_sym_PIPE_PIPE] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(283), + [anon_sym_SLASH] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_CARET] = ACTIONS(283), + [anon_sym_PERCENT] = ACTIONS(283), + [anon_sym_LT_LT] = ACTIONS(283), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_GT_GT_GT] = ACTIONS(283), + [anon_sym_instanceof] = ACTIONS(285), + [anon_sym_final] = ACTIONS(285), + [anon_sym_DASH_GT] = ACTIONS(283), + [anon_sym_COMMA] = ACTIONS(283), + [anon_sym_QMARK] = ACTIONS(283), + [anon_sym_COLON] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_TILDE] = ACTIONS(283), + [anon_sym_PLUS_PLUS] = ACTIONS(283), + [anon_sym_DASH_DASH] = ACTIONS(283), + [anon_sym_new] = ACTIONS(285), + [anon_sym_RBRACK] = ACTIONS(283), + [anon_sym_class] = ACTIONS(285), + [anon_sym_switch] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_case] = ACTIONS(285), + [anon_sym_default] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(283), + [anon_sym_assert] = ACTIONS(285), + [anon_sym_do] = ACTIONS(285), + [anon_sym_while] = ACTIONS(285), + [anon_sym_break] = ACTIONS(285), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_return] = ACTIONS(285), + [anon_sym_yield] = ACTIONS(285), + [anon_sym_synchronized] = ACTIONS(285), + [anon_sym_throw] = ACTIONS(285), + [anon_sym_try] = ACTIONS(285), + [anon_sym_if] = ACTIONS(285), + [anon_sym_else] = ACTIONS(285), + [anon_sym_for] = ACTIONS(285), + [anon_sym_AT] = ACTIONS(285), + [anon_sym_open] = ACTIONS(285), + [anon_sym_module] = ACTIONS(285), + [anon_sym_static] = ACTIONS(285), + [anon_sym_package] = ACTIONS(285), + [anon_sym_import] = ACTIONS(285), + [anon_sym_enum] = ACTIONS(285), + [anon_sym_public] = ACTIONS(285), + [anon_sym_protected] = ACTIONS(285), + [anon_sym_private] = ACTIONS(285), + [anon_sym_abstract] = ACTIONS(285), + [anon_sym_strictfp] = ACTIONS(285), + [anon_sym_native] = ACTIONS(285), + [anon_sym_transient] = ACTIONS(285), + [anon_sym_volatile] = ACTIONS(285), + [anon_sym_sealed] = ACTIONS(285), + [anon_sym_non_DASHsealed] = ACTIONS(283), + [anon_sym_record] = ACTIONS(285), + [anon_sym_ATinterface] = ACTIONS(283), + [anon_sym_interface] = ACTIONS(285), + [anon_sym_byte] = ACTIONS(285), + [anon_sym_short] = ACTIONS(285), + [anon_sym_int] = ACTIONS(285), + [anon_sym_long] = ACTIONS(285), + [anon_sym_char] = ACTIONS(285), + [anon_sym_float] = ACTIONS(285), + [anon_sym_double] = ACTIONS(285), + [sym_boolean_type] = ACTIONS(285), + [sym_void_type] = ACTIONS(285), + [sym_this] = ACTIONS(285), + [sym_super] = ACTIONS(285), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [82] = { - [ts_builtin_sym_end] = ACTIONS(393), - [sym_identifier] = ACTIONS(395), - [sym_decimal_integer_literal] = ACTIONS(395), - [sym_hex_integer_literal] = ACTIONS(395), - [sym_octal_integer_literal] = ACTIONS(393), - [sym_binary_integer_literal] = ACTIONS(393), - [sym_decimal_floating_point_literal] = ACTIONS(393), - [sym_hex_floating_point_literal] = ACTIONS(395), - [sym_true] = ACTIONS(395), - [sym_false] = ACTIONS(395), - [sym_character_literal] = ACTIONS(393), - [sym_string_literal] = ACTIONS(395), - [sym_text_block] = ACTIONS(393), - [sym_null_literal] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_PLUS_PLUS] = ACTIONS(393), - [anon_sym_DASH_DASH] = ACTIONS(393), - [anon_sym_new] = ACTIONS(395), - [anon_sym_class] = ACTIONS(395), - [anon_sym_switch] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(393), - [anon_sym_case] = ACTIONS(395), - [anon_sym_default] = ACTIONS(395), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_assert] = ACTIONS(395), - [anon_sym_do] = ACTIONS(395), - [anon_sym_while] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_return] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(395), - [anon_sym_synchronized] = ACTIONS(395), - [anon_sym_throw] = ACTIONS(395), - [anon_sym_try] = ACTIONS(395), - [anon_sym_if] = ACTIONS(395), - [anon_sym_else] = ACTIONS(395), - [anon_sym_for] = ACTIONS(395), - [anon_sym_AT] = ACTIONS(395), - [anon_sym_open] = ACTIONS(395), - [anon_sym_module] = ACTIONS(395), - [anon_sym_static] = ACTIONS(395), - [anon_sym_package] = ACTIONS(395), - [anon_sym_import] = ACTIONS(395), - [anon_sym_enum] = ACTIONS(395), - [anon_sym_public] = ACTIONS(395), - [anon_sym_protected] = ACTIONS(395), - [anon_sym_private] = ACTIONS(395), - [anon_sym_abstract] = ACTIONS(395), - [anon_sym_final] = ACTIONS(395), - [anon_sym_strictfp] = ACTIONS(395), - [anon_sym_native] = ACTIONS(395), - [anon_sym_transient] = ACTIONS(395), - [anon_sym_volatile] = ACTIONS(395), - [anon_sym_sealed] = ACTIONS(395), - [anon_sym_non_DASHsealed] = ACTIONS(393), - [anon_sym_record] = ACTIONS(395), - [anon_sym_ATinterface] = ACTIONS(393), - [anon_sym_interface] = ACTIONS(395), - [anon_sym_byte] = ACTIONS(395), - [anon_sym_short] = ACTIONS(395), - [anon_sym_int] = ACTIONS(395), - [anon_sym_long] = ACTIONS(395), - [anon_sym_char] = ACTIONS(395), - [anon_sym_float] = ACTIONS(395), - [anon_sym_double] = ACTIONS(395), - [sym_boolean_type] = ACTIONS(395), - [sym_void_type] = ACTIONS(395), - [sym_this] = ACTIONS(395), - [sym_super] = ACTIONS(395), + [ts_builtin_sym_end] = ACTIONS(287), + [sym_identifier] = ACTIONS(289), + [sym_decimal_integer_literal] = ACTIONS(289), + [sym_hex_integer_literal] = ACTIONS(289), + [sym_octal_integer_literal] = ACTIONS(287), + [sym_binary_integer_literal] = ACTIONS(287), + [sym_decimal_floating_point_literal] = ACTIONS(287), + [sym_hex_floating_point_literal] = ACTIONS(289), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + [sym_character_literal] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(287), + [sym_null_literal] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(287), + [anon_sym_AMP] = ACTIONS(289), + [anon_sym_RPAREN] = ACTIONS(287), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(287), + [anon_sym_LT_EQ] = ACTIONS(287), + [anon_sym_EQ_EQ] = ACTIONS(287), + [anon_sym_BANG_EQ] = ACTIONS(287), + [anon_sym_AMP_AMP] = ACTIONS(287), + [anon_sym_PIPE_PIPE] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(289), + [anon_sym_STAR] = ACTIONS(287), + [anon_sym_SLASH] = ACTIONS(289), + [anon_sym_PIPE] = ACTIONS(289), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_PERCENT] = ACTIONS(287), + [anon_sym_LT_LT] = ACTIONS(287), + [anon_sym_GT_GT] = ACTIONS(289), + [anon_sym_GT_GT_GT] = ACTIONS(287), + [anon_sym_instanceof] = ACTIONS(289), + [anon_sym_final] = ACTIONS(289), + [anon_sym_DASH_GT] = ACTIONS(287), + [anon_sym_COMMA] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(287), + [anon_sym_COLON] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_TILDE] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_new] = ACTIONS(289), + [anon_sym_RBRACK] = ACTIONS(287), + [anon_sym_class] = ACTIONS(289), + [anon_sym_switch] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_case] = ACTIONS(289), + [anon_sym_default] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_assert] = ACTIONS(289), + [anon_sym_do] = ACTIONS(289), + [anon_sym_while] = ACTIONS(289), + [anon_sym_break] = ACTIONS(289), + [anon_sym_continue] = ACTIONS(289), + [anon_sym_return] = ACTIONS(289), + [anon_sym_yield] = ACTIONS(289), + [anon_sym_synchronized] = ACTIONS(289), + [anon_sym_throw] = ACTIONS(289), + [anon_sym_try] = ACTIONS(289), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(289), + [anon_sym_for] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_static] = ACTIONS(289), + [anon_sym_package] = ACTIONS(289), + [anon_sym_import] = ACTIONS(289), + [anon_sym_enum] = ACTIONS(289), + [anon_sym_public] = ACTIONS(289), + [anon_sym_protected] = ACTIONS(289), + [anon_sym_private] = ACTIONS(289), + [anon_sym_abstract] = ACTIONS(289), + [anon_sym_strictfp] = ACTIONS(289), + [anon_sym_native] = ACTIONS(289), + [anon_sym_transient] = ACTIONS(289), + [anon_sym_volatile] = ACTIONS(289), + [anon_sym_sealed] = ACTIONS(289), + [anon_sym_non_DASHsealed] = ACTIONS(287), + [anon_sym_record] = ACTIONS(289), + [anon_sym_ATinterface] = ACTIONS(287), + [anon_sym_interface] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(289), + [anon_sym_short] = ACTIONS(289), + [anon_sym_int] = ACTIONS(289), + [anon_sym_long] = ACTIONS(289), + [anon_sym_char] = ACTIONS(289), + [anon_sym_float] = ACTIONS(289), + [anon_sym_double] = ACTIONS(289), + [sym_boolean_type] = ACTIONS(289), + [sym_void_type] = ACTIONS(289), + [sym_this] = ACTIONS(289), + [sym_super] = ACTIONS(289), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [83] = { - [ts_builtin_sym_end] = ACTIONS(397), - [sym_identifier] = ACTIONS(399), - [sym_decimal_integer_literal] = ACTIONS(399), - [sym_hex_integer_literal] = ACTIONS(399), - [sym_octal_integer_literal] = ACTIONS(397), - [sym_binary_integer_literal] = ACTIONS(397), - [sym_decimal_floating_point_literal] = ACTIONS(397), - [sym_hex_floating_point_literal] = ACTIONS(399), - [sym_true] = ACTIONS(399), - [sym_false] = ACTIONS(399), - [sym_character_literal] = ACTIONS(397), - [sym_string_literal] = ACTIONS(399), - [sym_text_block] = ACTIONS(397), - [sym_null_literal] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_TILDE] = ACTIONS(397), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_new] = ACTIONS(399), - [anon_sym_class] = ACTIONS(399), - [anon_sym_switch] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(397), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_default] = ACTIONS(399), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_assert] = ACTIONS(399), - [anon_sym_do] = ACTIONS(399), - [anon_sym_while] = ACTIONS(399), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(399), - [anon_sym_return] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_synchronized] = ACTIONS(399), - [anon_sym_throw] = ACTIONS(399), - [anon_sym_try] = ACTIONS(399), - [anon_sym_if] = ACTIONS(399), - [anon_sym_else] = ACTIONS(399), - [anon_sym_for] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(399), - [anon_sym_open] = ACTIONS(399), - [anon_sym_module] = ACTIONS(399), - [anon_sym_static] = ACTIONS(399), - [anon_sym_package] = ACTIONS(399), - [anon_sym_import] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(399), - [anon_sym_public] = ACTIONS(399), - [anon_sym_protected] = ACTIONS(399), - [anon_sym_private] = ACTIONS(399), - [anon_sym_abstract] = ACTIONS(399), - [anon_sym_final] = ACTIONS(399), - [anon_sym_strictfp] = ACTIONS(399), - [anon_sym_native] = ACTIONS(399), - [anon_sym_transient] = ACTIONS(399), - [anon_sym_volatile] = ACTIONS(399), - [anon_sym_sealed] = ACTIONS(399), - [anon_sym_non_DASHsealed] = ACTIONS(397), - [anon_sym_record] = ACTIONS(399), - [anon_sym_ATinterface] = ACTIONS(397), - [anon_sym_interface] = ACTIONS(399), - [anon_sym_byte] = ACTIONS(399), - [anon_sym_short] = ACTIONS(399), - [anon_sym_int] = ACTIONS(399), - [anon_sym_long] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_float] = ACTIONS(399), - [anon_sym_double] = ACTIONS(399), - [sym_boolean_type] = ACTIONS(399), - [sym_void_type] = ACTIONS(399), - [sym_this] = ACTIONS(399), - [sym_super] = ACTIONS(399), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(627), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(610), + [sym_marker_annotation] = STATE(610), + [sym_annotation] = STATE(610), + [sym_modifiers] = STATE(704), + [sym__type] = STATE(920), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_formal_parameter] = STATE(984), + [sym_receiver_parameter] = STATE(398), + [sym_spread_parameter] = STATE(984), + [aux_sym_array_creation_expression_repeat1] = STATE(670), + [aux_sym_modifiers_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(291), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_default] = ACTIONS(295), + [anon_sym_synchronized] = ACTIONS(295), + [anon_sym_AT] = ACTIONS(297), + [anon_sym_open] = ACTIONS(299), + [anon_sym_module] = ACTIONS(299), + [anon_sym_static] = ACTIONS(295), + [anon_sym_public] = ACTIONS(295), + [anon_sym_protected] = ACTIONS(295), + [anon_sym_private] = ACTIONS(295), + [anon_sym_abstract] = ACTIONS(295), + [anon_sym_strictfp] = ACTIONS(295), + [anon_sym_native] = ACTIONS(295), + [anon_sym_transient] = ACTIONS(295), + [anon_sym_volatile] = ACTIONS(295), + [anon_sym_sealed] = ACTIONS(295), + [anon_sym_non_DASHsealed] = ACTIONS(301), + [anon_sym_record] = ACTIONS(299), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [84] = { - [ts_builtin_sym_end] = ACTIONS(401), - [sym_identifier] = ACTIONS(403), - [sym_decimal_integer_literal] = ACTIONS(403), - [sym_hex_integer_literal] = ACTIONS(403), - [sym_octal_integer_literal] = ACTIONS(401), - [sym_binary_integer_literal] = ACTIONS(401), - [sym_decimal_floating_point_literal] = ACTIONS(401), - [sym_hex_floating_point_literal] = ACTIONS(403), - [sym_true] = ACTIONS(403), - [sym_false] = ACTIONS(403), - [sym_character_literal] = ACTIONS(401), - [sym_string_literal] = ACTIONS(403), - [sym_text_block] = ACTIONS(401), - [sym_null_literal] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(401), - [anon_sym_LT] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_TILDE] = ACTIONS(401), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_new] = ACTIONS(403), - [anon_sym_class] = ACTIONS(403), - [anon_sym_switch] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_RBRACE] = ACTIONS(401), - [anon_sym_case] = ACTIONS(403), - [anon_sym_default] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(401), - [anon_sym_assert] = ACTIONS(403), - [anon_sym_do] = ACTIONS(403), - [anon_sym_while] = ACTIONS(403), - [anon_sym_break] = ACTIONS(403), - [anon_sym_continue] = ACTIONS(403), - [anon_sym_return] = ACTIONS(403), - [anon_sym_yield] = ACTIONS(403), - [anon_sym_synchronized] = ACTIONS(403), - [anon_sym_throw] = ACTIONS(403), - [anon_sym_try] = ACTIONS(403), - [anon_sym_if] = ACTIONS(403), - [anon_sym_else] = ACTIONS(403), - [anon_sym_for] = ACTIONS(403), - [anon_sym_AT] = ACTIONS(403), - [anon_sym_open] = ACTIONS(403), - [anon_sym_module] = ACTIONS(403), - [anon_sym_static] = ACTIONS(403), - [anon_sym_package] = ACTIONS(403), - [anon_sym_import] = ACTIONS(403), - [anon_sym_enum] = ACTIONS(403), - [anon_sym_public] = ACTIONS(403), - [anon_sym_protected] = ACTIONS(403), - [anon_sym_private] = ACTIONS(403), - [anon_sym_abstract] = ACTIONS(403), - [anon_sym_final] = ACTIONS(403), - [anon_sym_strictfp] = ACTIONS(403), - [anon_sym_native] = ACTIONS(403), - [anon_sym_transient] = ACTIONS(403), - [anon_sym_volatile] = ACTIONS(403), - [anon_sym_sealed] = ACTIONS(403), - [anon_sym_non_DASHsealed] = ACTIONS(401), - [anon_sym_record] = ACTIONS(403), - [anon_sym_ATinterface] = ACTIONS(401), - [anon_sym_interface] = ACTIONS(403), - [anon_sym_byte] = ACTIONS(403), - [anon_sym_short] = ACTIONS(403), - [anon_sym_int] = ACTIONS(403), - [anon_sym_long] = ACTIONS(403), - [anon_sym_char] = ACTIONS(403), - [anon_sym_float] = ACTIONS(403), - [anon_sym_double] = ACTIONS(403), - [sym_boolean_type] = ACTIONS(403), - [sym_void_type] = ACTIONS(403), - [sym_this] = ACTIONS(403), - [sym_super] = ACTIONS(403), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(627), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(610), + [sym_marker_annotation] = STATE(610), + [sym_annotation] = STATE(610), + [sym_modifiers] = STATE(704), + [sym__type] = STATE(967), + [sym__unannotated_type] = STATE(682), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_formal_parameter] = STATE(984), + [sym_receiver_parameter] = STATE(398), + [sym_spread_parameter] = STATE(984), + [aux_sym_array_creation_expression_repeat1] = STATE(670), + [aux_sym_modifiers_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(291), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_default] = ACTIONS(295), + [anon_sym_synchronized] = ACTIONS(295), + [anon_sym_AT] = ACTIONS(297), + [anon_sym_open] = ACTIONS(299), + [anon_sym_module] = ACTIONS(299), + [anon_sym_static] = ACTIONS(295), + [anon_sym_public] = ACTIONS(295), + [anon_sym_protected] = ACTIONS(295), + [anon_sym_private] = ACTIONS(295), + [anon_sym_abstract] = ACTIONS(295), + [anon_sym_strictfp] = ACTIONS(295), + [anon_sym_native] = ACTIONS(295), + [anon_sym_transient] = ACTIONS(295), + [anon_sym_volatile] = ACTIONS(295), + [anon_sym_sealed] = ACTIONS(295), + [anon_sym_non_DASHsealed] = ACTIONS(301), + [anon_sym_record] = ACTIONS(299), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [85] = { - [ts_builtin_sym_end] = ACTIONS(244), - [sym_identifier] = ACTIONS(246), - [sym_decimal_integer_literal] = ACTIONS(246), - [sym_hex_integer_literal] = ACTIONS(246), - [sym_octal_integer_literal] = ACTIONS(244), - [sym_binary_integer_literal] = ACTIONS(244), - [sym_decimal_floating_point_literal] = ACTIONS(244), - [sym_hex_floating_point_literal] = ACTIONS(246), - [sym_true] = ACTIONS(246), - [sym_false] = ACTIONS(246), - [sym_character_literal] = ACTIONS(244), - [sym_string_literal] = ACTIONS(246), - [sym_text_block] = ACTIONS(244), - [sym_null_literal] = ACTIONS(246), - [anon_sym_LPAREN] = ACTIONS(244), - [anon_sym_PLUS] = ACTIONS(246), - [anon_sym_DASH] = ACTIONS(246), - [anon_sym_BANG] = ACTIONS(244), - [anon_sym_TILDE] = ACTIONS(244), - [anon_sym_PLUS_PLUS] = ACTIONS(244), - [anon_sym_DASH_DASH] = ACTIONS(244), - [anon_sym_new] = ACTIONS(246), - [anon_sym_class] = ACTIONS(246), - [anon_sym_switch] = ACTIONS(246), - [anon_sym_LBRACE] = ACTIONS(244), - [anon_sym_RBRACE] = ACTIONS(244), - [anon_sym_case] = ACTIONS(246), - [anon_sym_default] = ACTIONS(246), - [anon_sym_SEMI] = ACTIONS(244), - [anon_sym_assert] = ACTIONS(246), - [anon_sym_do] = ACTIONS(246), - [anon_sym_while] = ACTIONS(246), - [anon_sym_break] = ACTIONS(246), - [anon_sym_continue] = ACTIONS(246), - [anon_sym_return] = ACTIONS(246), - [anon_sym_yield] = ACTIONS(246), - [anon_sym_synchronized] = ACTIONS(246), - [anon_sym_throw] = ACTIONS(246), - [anon_sym_try] = ACTIONS(246), - [anon_sym_catch] = ACTIONS(246), - [anon_sym_finally] = ACTIONS(246), - [anon_sym_if] = ACTIONS(246), - [anon_sym_else] = ACTIONS(246), - [anon_sym_for] = ACTIONS(246), - [anon_sym_AT] = ACTIONS(246), - [anon_sym_open] = ACTIONS(246), - [anon_sym_module] = ACTIONS(246), - [anon_sym_static] = ACTIONS(246), - [anon_sym_package] = ACTIONS(246), - [anon_sym_import] = ACTIONS(246), - [anon_sym_enum] = ACTIONS(246), - [anon_sym_public] = ACTIONS(246), - [anon_sym_protected] = ACTIONS(246), - [anon_sym_private] = ACTIONS(246), - [anon_sym_abstract] = ACTIONS(246), - [anon_sym_final] = ACTIONS(246), - [anon_sym_strictfp] = ACTIONS(246), - [anon_sym_native] = ACTIONS(246), - [anon_sym_transient] = ACTIONS(246), - [anon_sym_volatile] = ACTIONS(246), - [anon_sym_sealed] = ACTIONS(246), - [anon_sym_non_DASHsealed] = ACTIONS(244), - [anon_sym_ATinterface] = ACTIONS(244), - [anon_sym_interface] = ACTIONS(246), - [anon_sym_byte] = ACTIONS(246), - [anon_sym_short] = ACTIONS(246), - [anon_sym_int] = ACTIONS(246), - [anon_sym_long] = ACTIONS(246), - [anon_sym_char] = ACTIONS(246), - [anon_sym_float] = ACTIONS(246), - [anon_sym_double] = ACTIONS(246), - [sym_boolean_type] = ACTIONS(246), - [sym_void_type] = ACTIONS(246), - [sym_this] = ACTIONS(246), - [sym_super] = ACTIONS(246), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(568), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(610), + [sym_marker_annotation] = STATE(610), + [sym_annotation] = STATE(610), + [sym_modifiers] = STATE(706), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(697), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(116), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [aux_sym_modifiers_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_default] = ACTIONS(295), + [anon_sym_SEMI] = ACTIONS(305), + [anon_sym_synchronized] = ACTIONS(295), + [anon_sym_AT] = ACTIONS(297), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_static] = ACTIONS(295), + [anon_sym_public] = ACTIONS(295), + [anon_sym_protected] = ACTIONS(295), + [anon_sym_private] = ACTIONS(295), + [anon_sym_abstract] = ACTIONS(295), + [anon_sym_strictfp] = ACTIONS(295), + [anon_sym_native] = ACTIONS(295), + [anon_sym_transient] = ACTIONS(295), + [anon_sym_volatile] = ACTIONS(295), + [anon_sym_sealed] = ACTIONS(295), + [anon_sym_non_DASHsealed] = ACTIONS(301), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [86] = { - [ts_builtin_sym_end] = ACTIONS(405), - [sym_identifier] = ACTIONS(407), - [sym_decimal_integer_literal] = ACTIONS(407), - [sym_hex_integer_literal] = ACTIONS(407), - [sym_octal_integer_literal] = ACTIONS(405), - [sym_binary_integer_literal] = ACTIONS(405), - [sym_decimal_floating_point_literal] = ACTIONS(405), - [sym_hex_floating_point_literal] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [sym_character_literal] = ACTIONS(405), - [sym_string_literal] = ACTIONS(407), - [sym_text_block] = ACTIONS(405), - [sym_null_literal] = ACTIONS(407), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(405), - [anon_sym_PLUS] = ACTIONS(407), - [anon_sym_DASH] = ACTIONS(407), - [anon_sym_BANG] = ACTIONS(405), - [anon_sym_TILDE] = ACTIONS(405), - [anon_sym_PLUS_PLUS] = ACTIONS(405), - [anon_sym_DASH_DASH] = ACTIONS(405), - [anon_sym_new] = ACTIONS(407), - [anon_sym_class] = ACTIONS(407), - [anon_sym_switch] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(405), - [anon_sym_RBRACE] = ACTIONS(405), - [anon_sym_case] = ACTIONS(407), - [anon_sym_default] = ACTIONS(407), - [anon_sym_SEMI] = ACTIONS(405), - [anon_sym_assert] = ACTIONS(407), - [anon_sym_do] = ACTIONS(407), - [anon_sym_while] = ACTIONS(407), - [anon_sym_break] = ACTIONS(407), - [anon_sym_continue] = ACTIONS(407), - [anon_sym_return] = ACTIONS(407), - [anon_sym_yield] = ACTIONS(407), - [anon_sym_synchronized] = ACTIONS(407), - [anon_sym_throw] = ACTIONS(407), - [anon_sym_try] = ACTIONS(407), - [anon_sym_if] = ACTIONS(407), - [anon_sym_else] = ACTIONS(407), - [anon_sym_for] = ACTIONS(407), - [anon_sym_AT] = ACTIONS(407), - [anon_sym_open] = ACTIONS(407), - [anon_sym_module] = ACTIONS(407), - [anon_sym_static] = ACTIONS(407), - [anon_sym_package] = ACTIONS(407), - [anon_sym_import] = ACTIONS(407), - [anon_sym_enum] = ACTIONS(407), - [anon_sym_public] = ACTIONS(407), - [anon_sym_protected] = ACTIONS(407), - [anon_sym_private] = ACTIONS(407), - [anon_sym_abstract] = ACTIONS(407), - [anon_sym_final] = ACTIONS(407), - [anon_sym_strictfp] = ACTIONS(407), - [anon_sym_native] = ACTIONS(407), - [anon_sym_transient] = ACTIONS(407), - [anon_sym_volatile] = ACTIONS(407), - [anon_sym_sealed] = ACTIONS(407), - [anon_sym_non_DASHsealed] = ACTIONS(405), - [anon_sym_record] = ACTIONS(407), - [anon_sym_ATinterface] = ACTIONS(405), - [anon_sym_interface] = ACTIONS(407), - [anon_sym_byte] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [anon_sym_int] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_char] = ACTIONS(407), - [anon_sym_float] = ACTIONS(407), - [anon_sym_double] = ACTIONS(407), - [sym_boolean_type] = ACTIONS(407), - [sym_void_type] = ACTIONS(407), - [sym_this] = ACTIONS(407), - [sym_super] = ACTIONS(407), + [ts_builtin_sym_end] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_decimal_integer_literal] = ACTIONS(311), + [sym_hex_integer_literal] = ACTIONS(311), + [sym_octal_integer_literal] = ACTIONS(309), + [sym_binary_integer_literal] = ACTIONS(309), + [sym_decimal_floating_point_literal] = ACTIONS(309), + [sym_hex_floating_point_literal] = ACTIONS(311), + [sym_true] = ACTIONS(311), + [sym_false] = ACTIONS(311), + [sym_character_literal] = ACTIONS(309), + [anon_sym_DQUOTE] = ACTIONS(311), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(309), + [sym_null_literal] = ACTIONS(311), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(313), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(315), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_EQ_EQ] = ACTIONS(315), + [anon_sym_BANG_EQ] = ACTIONS(315), + [anon_sym_AMP_AMP] = ACTIONS(315), + [anon_sym_PIPE_PIPE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(315), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(313), + [anon_sym_CARET] = ACTIONS(315), + [anon_sym_PERCENT] = ACTIONS(315), + [anon_sym_LT_LT] = ACTIONS(315), + [anon_sym_GT_GT] = ACTIONS(313), + [anon_sym_GT_GT_GT] = ACTIONS(315), + [anon_sym_instanceof] = ACTIONS(313), + [anon_sym_final] = ACTIONS(311), + [anon_sym_QMARK] = ACTIONS(315), + [anon_sym_BANG] = ACTIONS(311), + [anon_sym_TILDE] = ACTIONS(309), + [anon_sym_PLUS_PLUS] = ACTIONS(320), + [anon_sym_DASH_DASH] = ACTIONS(320), + [anon_sym_new] = ACTIONS(311), + [anon_sym_class] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(311), + [anon_sym_SEMI] = ACTIONS(320), + [anon_sym_assert] = ACTIONS(311), + [anon_sym_do] = ACTIONS(311), + [anon_sym_while] = ACTIONS(311), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(311), + [anon_sym_return] = ACTIONS(311), + [anon_sym_yield] = ACTIONS(311), + [anon_sym_synchronized] = ACTIONS(311), + [anon_sym_throw] = ACTIONS(311), + [anon_sym_try] = ACTIONS(311), + [anon_sym_if] = ACTIONS(311), + [anon_sym_else] = ACTIONS(311), + [anon_sym_for] = ACTIONS(311), + [anon_sym_AT] = ACTIONS(311), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_static] = ACTIONS(311), + [anon_sym_package] = ACTIONS(311), + [anon_sym_import] = ACTIONS(311), + [anon_sym_enum] = ACTIONS(311), + [anon_sym_public] = ACTIONS(311), + [anon_sym_protected] = ACTIONS(311), + [anon_sym_private] = ACTIONS(311), + [anon_sym_abstract] = ACTIONS(311), + [anon_sym_strictfp] = ACTIONS(311), + [anon_sym_native] = ACTIONS(311), + [anon_sym_transient] = ACTIONS(311), + [anon_sym_volatile] = ACTIONS(311), + [anon_sym_sealed] = ACTIONS(311), + [anon_sym_non_DASHsealed] = ACTIONS(309), + [anon_sym_record] = ACTIONS(311), + [anon_sym_ATinterface] = ACTIONS(309), + [anon_sym_interface] = ACTIONS(311), + [anon_sym_byte] = ACTIONS(311), + [anon_sym_short] = ACTIONS(311), + [anon_sym_int] = ACTIONS(311), + [anon_sym_long] = ACTIONS(311), + [anon_sym_char] = ACTIONS(311), + [anon_sym_float] = ACTIONS(311), + [anon_sym_double] = ACTIONS(311), + [sym_boolean_type] = ACTIONS(311), + [sym_void_type] = ACTIONS(311), + [sym_this] = ACTIONS(311), + [sym_super] = ACTIONS(311), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [87] = { - [ts_builtin_sym_end] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), - [sym_decimal_integer_literal] = ACTIONS(411), - [sym_hex_integer_literal] = ACTIONS(411), - [sym_octal_integer_literal] = ACTIONS(409), - [sym_binary_integer_literal] = ACTIONS(409), - [sym_decimal_floating_point_literal] = ACTIONS(409), - [sym_hex_floating_point_literal] = ACTIONS(411), - [sym_true] = ACTIONS(411), - [sym_false] = ACTIONS(411), - [sym_character_literal] = ACTIONS(409), - [sym_string_literal] = ACTIONS(411), - [sym_text_block] = ACTIONS(409), - [sym_null_literal] = ACTIONS(411), - [anon_sym_LPAREN] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(409), - [anon_sym_PLUS] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(411), - [anon_sym_BANG] = ACTIONS(409), - [anon_sym_TILDE] = ACTIONS(409), - [anon_sym_PLUS_PLUS] = ACTIONS(409), - [anon_sym_DASH_DASH] = ACTIONS(409), - [anon_sym_new] = ACTIONS(411), - [anon_sym_class] = ACTIONS(411), - [anon_sym_switch] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(409), - [anon_sym_RBRACE] = ACTIONS(409), - [anon_sym_case] = ACTIONS(411), - [anon_sym_default] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(409), - [anon_sym_assert] = ACTIONS(411), - [anon_sym_do] = ACTIONS(411), - [anon_sym_while] = ACTIONS(411), - [anon_sym_break] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_return] = ACTIONS(411), - [anon_sym_yield] = ACTIONS(411), - [anon_sym_synchronized] = ACTIONS(411), - [anon_sym_throw] = ACTIONS(411), - [anon_sym_try] = ACTIONS(411), - [anon_sym_if] = ACTIONS(411), - [anon_sym_else] = ACTIONS(411), - [anon_sym_for] = ACTIONS(411), - [anon_sym_AT] = ACTIONS(411), - [anon_sym_open] = ACTIONS(411), - [anon_sym_module] = ACTIONS(411), - [anon_sym_static] = ACTIONS(411), - [anon_sym_package] = ACTIONS(411), - [anon_sym_import] = ACTIONS(411), - [anon_sym_enum] = ACTIONS(411), - [anon_sym_public] = ACTIONS(411), - [anon_sym_protected] = ACTIONS(411), - [anon_sym_private] = ACTIONS(411), - [anon_sym_abstract] = ACTIONS(411), - [anon_sym_final] = ACTIONS(411), - [anon_sym_strictfp] = ACTIONS(411), - [anon_sym_native] = ACTIONS(411), - [anon_sym_transient] = ACTIONS(411), - [anon_sym_volatile] = ACTIONS(411), - [anon_sym_sealed] = ACTIONS(411), - [anon_sym_non_DASHsealed] = ACTIONS(409), - [anon_sym_record] = ACTIONS(411), - [anon_sym_ATinterface] = ACTIONS(409), - [anon_sym_interface] = ACTIONS(411), - [anon_sym_byte] = ACTIONS(411), - [anon_sym_short] = ACTIONS(411), - [anon_sym_int] = ACTIONS(411), - [anon_sym_long] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_float] = ACTIONS(411), - [anon_sym_double] = ACTIONS(411), - [sym_boolean_type] = ACTIONS(411), - [sym_void_type] = ACTIONS(411), - [sym_this] = ACTIONS(411), - [sym_super] = ACTIONS(411), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(599), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(610), + [sym_marker_annotation] = STATE(610), + [sym_annotation] = STATE(610), + [sym_modifiers] = STATE(709), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(693), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [sym_local_variable_declaration] = STATE(137), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [aux_sym_modifiers_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_final] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_default] = ACTIONS(295), + [anon_sym_SEMI] = ACTIONS(323), + [anon_sym_synchronized] = ACTIONS(295), + [anon_sym_AT] = ACTIONS(297), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_static] = ACTIONS(295), + [anon_sym_public] = ACTIONS(295), + [anon_sym_protected] = ACTIONS(295), + [anon_sym_private] = ACTIONS(295), + [anon_sym_abstract] = ACTIONS(295), + [anon_sym_strictfp] = ACTIONS(295), + [anon_sym_native] = ACTIONS(295), + [anon_sym_transient] = ACTIONS(295), + [anon_sym_volatile] = ACTIONS(295), + [anon_sym_sealed] = ACTIONS(295), + [anon_sym_non_DASHsealed] = ACTIONS(301), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [88] = { - [ts_builtin_sym_end] = ACTIONS(413), - [sym_identifier] = ACTIONS(415), - [sym_decimal_integer_literal] = ACTIONS(415), - [sym_hex_integer_literal] = ACTIONS(415), - [sym_octal_integer_literal] = ACTIONS(413), - [sym_binary_integer_literal] = ACTIONS(413), - [sym_decimal_floating_point_literal] = ACTIONS(413), - [sym_hex_floating_point_literal] = ACTIONS(415), - [sym_true] = ACTIONS(415), - [sym_false] = ACTIONS(415), - [sym_character_literal] = ACTIONS(413), - [sym_string_literal] = ACTIONS(415), - [sym_text_block] = ACTIONS(413), - [sym_null_literal] = ACTIONS(415), - [anon_sym_LPAREN] = ACTIONS(413), - [anon_sym_LT] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_TILDE] = ACTIONS(413), - [anon_sym_PLUS_PLUS] = ACTIONS(413), - [anon_sym_DASH_DASH] = ACTIONS(413), - [anon_sym_new] = ACTIONS(415), - [anon_sym_class] = ACTIONS(415), - [anon_sym_switch] = ACTIONS(415), - [anon_sym_LBRACE] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(413), - [anon_sym_case] = ACTIONS(415), - [anon_sym_default] = ACTIONS(415), - [anon_sym_SEMI] = ACTIONS(413), - [anon_sym_assert] = ACTIONS(415), - [anon_sym_do] = ACTIONS(415), - [anon_sym_while] = ACTIONS(415), - [anon_sym_break] = ACTIONS(415), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_return] = ACTIONS(415), - [anon_sym_yield] = ACTIONS(415), - [anon_sym_synchronized] = ACTIONS(415), - [anon_sym_throw] = ACTIONS(415), - [anon_sym_try] = ACTIONS(415), - [anon_sym_if] = ACTIONS(415), - [anon_sym_else] = ACTIONS(415), - [anon_sym_for] = ACTIONS(415), - [anon_sym_AT] = ACTIONS(415), - [anon_sym_open] = ACTIONS(415), - [anon_sym_module] = ACTIONS(415), - [anon_sym_static] = ACTIONS(415), - [anon_sym_package] = ACTIONS(415), - [anon_sym_import] = ACTIONS(415), - [anon_sym_enum] = ACTIONS(415), - [anon_sym_public] = ACTIONS(415), - [anon_sym_protected] = ACTIONS(415), - [anon_sym_private] = ACTIONS(415), - [anon_sym_abstract] = ACTIONS(415), - [anon_sym_final] = ACTIONS(415), - [anon_sym_strictfp] = ACTIONS(415), - [anon_sym_native] = ACTIONS(415), - [anon_sym_transient] = ACTIONS(415), - [anon_sym_volatile] = ACTIONS(415), - [anon_sym_sealed] = ACTIONS(415), - [anon_sym_non_DASHsealed] = ACTIONS(413), - [anon_sym_record] = ACTIONS(415), - [anon_sym_ATinterface] = ACTIONS(413), - [anon_sym_interface] = ACTIONS(415), - [anon_sym_byte] = ACTIONS(415), - [anon_sym_short] = ACTIONS(415), - [anon_sym_int] = ACTIONS(415), - [anon_sym_long] = ACTIONS(415), - [anon_sym_char] = ACTIONS(415), - [anon_sym_float] = ACTIONS(415), - [anon_sym_double] = ACTIONS(415), - [sym_boolean_type] = ACTIONS(415), - [sym_void_type] = ACTIONS(415), - [sym_this] = ACTIONS(415), - [sym_super] = ACTIONS(415), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(549), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(717), + [sym_marker_annotation] = STATE(717), + [sym_annotation] = STATE(717), + [sym_element_value_pair] = STATE(1052), + [sym__element_value] = STATE(1221), + [sym_element_value_array_initializer] = STATE(1221), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(325), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(327), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [89] = { - [ts_builtin_sym_end] = ACTIONS(417), - [sym_identifier] = ACTIONS(419), - [sym_decimal_integer_literal] = ACTIONS(419), - [sym_hex_integer_literal] = ACTIONS(419), - [sym_octal_integer_literal] = ACTIONS(417), - [sym_binary_integer_literal] = ACTIONS(417), - [sym_decimal_floating_point_literal] = ACTIONS(417), - [sym_hex_floating_point_literal] = ACTIONS(419), - [sym_true] = ACTIONS(419), - [sym_false] = ACTIONS(419), - [sym_character_literal] = ACTIONS(417), - [sym_string_literal] = ACTIONS(419), - [sym_text_block] = ACTIONS(417), - [sym_null_literal] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_DASH] = ACTIONS(419), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_PLUS_PLUS] = ACTIONS(417), - [anon_sym_DASH_DASH] = ACTIONS(417), - [anon_sym_new] = ACTIONS(419), - [anon_sym_class] = ACTIONS(419), - [anon_sym_switch] = ACTIONS(419), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_RBRACE] = ACTIONS(417), - [anon_sym_case] = ACTIONS(419), - [anon_sym_default] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(417), - [anon_sym_assert] = ACTIONS(419), - [anon_sym_do] = ACTIONS(419), - [anon_sym_while] = ACTIONS(419), - [anon_sym_break] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(419), - [anon_sym_return] = ACTIONS(419), - [anon_sym_yield] = ACTIONS(419), - [anon_sym_synchronized] = ACTIONS(419), - [anon_sym_throw] = ACTIONS(419), - [anon_sym_try] = ACTIONS(419), - [anon_sym_if] = ACTIONS(419), - [anon_sym_else] = ACTIONS(419), - [anon_sym_for] = ACTIONS(419), - [anon_sym_AT] = ACTIONS(419), - [anon_sym_open] = ACTIONS(419), - [anon_sym_module] = ACTIONS(419), - [anon_sym_static] = ACTIONS(419), - [anon_sym_package] = ACTIONS(419), - [anon_sym_import] = ACTIONS(419), - [anon_sym_enum] = ACTIONS(419), - [anon_sym_public] = ACTIONS(419), - [anon_sym_protected] = ACTIONS(419), - [anon_sym_private] = ACTIONS(419), - [anon_sym_abstract] = ACTIONS(419), - [anon_sym_final] = ACTIONS(419), - [anon_sym_strictfp] = ACTIONS(419), - [anon_sym_native] = ACTIONS(419), - [anon_sym_transient] = ACTIONS(419), - [anon_sym_volatile] = ACTIONS(419), - [anon_sym_sealed] = ACTIONS(419), - [anon_sym_non_DASHsealed] = ACTIONS(417), - [anon_sym_record] = ACTIONS(419), - [anon_sym_ATinterface] = ACTIONS(417), - [anon_sym_interface] = ACTIONS(419), - [anon_sym_byte] = ACTIONS(419), - [anon_sym_short] = ACTIONS(419), - [anon_sym_int] = ACTIONS(419), - [anon_sym_long] = ACTIONS(419), - [anon_sym_char] = ACTIONS(419), - [anon_sym_float] = ACTIONS(419), - [anon_sym_double] = ACTIONS(419), - [sym_boolean_type] = ACTIONS(419), - [sym_void_type] = ACTIONS(419), - [sym_this] = ACTIONS(419), - [sym_super] = ACTIONS(419), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(549), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(717), + [sym_marker_annotation] = STATE(717), + [sym_annotation] = STATE(717), + [sym__element_value] = STATE(1091), + [sym_element_value_array_initializer] = STATE(1091), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COMMA] = ACTIONS(333), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(335), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [90] = { - [ts_builtin_sym_end] = ACTIONS(421), - [sym_identifier] = ACTIONS(423), - [sym_decimal_integer_literal] = ACTIONS(423), - [sym_hex_integer_literal] = ACTIONS(423), - [sym_octal_integer_literal] = ACTIONS(421), - [sym_binary_integer_literal] = ACTIONS(421), - [sym_decimal_floating_point_literal] = ACTIONS(421), - [sym_hex_floating_point_literal] = ACTIONS(423), - [sym_true] = ACTIONS(423), - [sym_false] = ACTIONS(423), - [sym_character_literal] = ACTIONS(421), - [sym_string_literal] = ACTIONS(423), - [sym_text_block] = ACTIONS(421), - [sym_null_literal] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(421), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(421), - [anon_sym_TILDE] = ACTIONS(421), - [anon_sym_PLUS_PLUS] = ACTIONS(421), - [anon_sym_DASH_DASH] = ACTIONS(421), - [anon_sym_new] = ACTIONS(423), - [anon_sym_class] = ACTIONS(423), - [anon_sym_switch] = ACTIONS(423), - [anon_sym_LBRACE] = ACTIONS(421), - [anon_sym_RBRACE] = ACTIONS(421), - [anon_sym_case] = ACTIONS(423), - [anon_sym_default] = ACTIONS(423), - [anon_sym_SEMI] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_do] = ACTIONS(423), - [anon_sym_while] = ACTIONS(423), - [anon_sym_break] = ACTIONS(423), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_return] = ACTIONS(423), - [anon_sym_yield] = ACTIONS(423), - [anon_sym_synchronized] = ACTIONS(423), - [anon_sym_throw] = ACTIONS(423), - [anon_sym_try] = ACTIONS(423), - [anon_sym_if] = ACTIONS(423), - [anon_sym_else] = ACTIONS(423), - [anon_sym_for] = ACTIONS(423), - [anon_sym_AT] = ACTIONS(423), - [anon_sym_open] = ACTIONS(423), - [anon_sym_module] = ACTIONS(423), - [anon_sym_static] = ACTIONS(423), - [anon_sym_package] = ACTIONS(423), - [anon_sym_import] = ACTIONS(423), - [anon_sym_enum] = ACTIONS(423), - [anon_sym_public] = ACTIONS(423), - [anon_sym_protected] = ACTIONS(423), - [anon_sym_private] = ACTIONS(423), - [anon_sym_abstract] = ACTIONS(423), - [anon_sym_final] = ACTIONS(423), - [anon_sym_strictfp] = ACTIONS(423), - [anon_sym_native] = ACTIONS(423), - [anon_sym_transient] = ACTIONS(423), - [anon_sym_volatile] = ACTIONS(423), - [anon_sym_sealed] = ACTIONS(423), - [anon_sym_non_DASHsealed] = ACTIONS(421), - [anon_sym_record] = ACTIONS(423), - [anon_sym_ATinterface] = ACTIONS(421), - [anon_sym_interface] = ACTIONS(423), - [anon_sym_byte] = ACTIONS(423), - [anon_sym_short] = ACTIONS(423), - [anon_sym_int] = ACTIONS(423), - [anon_sym_long] = ACTIONS(423), - [anon_sym_char] = ACTIONS(423), - [anon_sym_float] = ACTIONS(423), - [anon_sym_double] = ACTIONS(423), - [sym_boolean_type] = ACTIONS(423), - [sym_void_type] = ACTIONS(423), - [sym_this] = ACTIONS(423), - [sym_super] = ACTIONS(423), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(549), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(717), + [sym_marker_annotation] = STATE(717), + [sym_annotation] = STATE(717), + [sym_element_value_pair] = STATE(1063), + [sym__element_value] = STATE(1254), + [sym_element_value_array_initializer] = STATE(1254), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(325), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(337), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [91] = { - [ts_builtin_sym_end] = ACTIONS(425), - [sym_identifier] = ACTIONS(427), - [sym_decimal_integer_literal] = ACTIONS(427), - [sym_hex_integer_literal] = ACTIONS(427), - [sym_octal_integer_literal] = ACTIONS(425), - [sym_binary_integer_literal] = ACTIONS(425), - [sym_decimal_floating_point_literal] = ACTIONS(425), - [sym_hex_floating_point_literal] = ACTIONS(427), - [sym_true] = ACTIONS(427), - [sym_false] = ACTIONS(427), - [sym_character_literal] = ACTIONS(425), - [sym_string_literal] = ACTIONS(427), - [sym_text_block] = ACTIONS(425), - [sym_null_literal] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(425), - [anon_sym_LT] = ACTIONS(425), - [anon_sym_PLUS] = ACTIONS(427), - [anon_sym_DASH] = ACTIONS(427), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_TILDE] = ACTIONS(425), - [anon_sym_PLUS_PLUS] = ACTIONS(425), - [anon_sym_DASH_DASH] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_class] = ACTIONS(427), - [anon_sym_switch] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(425), - [anon_sym_RBRACE] = ACTIONS(425), - [anon_sym_case] = ACTIONS(427), - [anon_sym_default] = ACTIONS(427), - [anon_sym_SEMI] = ACTIONS(425), - [anon_sym_assert] = ACTIONS(427), - [anon_sym_do] = ACTIONS(427), - [anon_sym_while] = ACTIONS(427), - [anon_sym_break] = ACTIONS(427), - [anon_sym_continue] = ACTIONS(427), - [anon_sym_return] = ACTIONS(427), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_synchronized] = ACTIONS(427), - [anon_sym_throw] = ACTIONS(427), - [anon_sym_try] = ACTIONS(427), - [anon_sym_if] = ACTIONS(427), - [anon_sym_else] = ACTIONS(427), - [anon_sym_for] = ACTIONS(427), - [anon_sym_AT] = ACTIONS(427), - [anon_sym_open] = ACTIONS(427), - [anon_sym_module] = ACTIONS(427), - [anon_sym_static] = ACTIONS(427), - [anon_sym_package] = ACTIONS(427), - [anon_sym_import] = ACTIONS(427), - [anon_sym_enum] = ACTIONS(427), - [anon_sym_public] = ACTIONS(427), - [anon_sym_protected] = ACTIONS(427), - [anon_sym_private] = ACTIONS(427), - [anon_sym_abstract] = ACTIONS(427), - [anon_sym_final] = ACTIONS(427), - [anon_sym_strictfp] = ACTIONS(427), - [anon_sym_native] = ACTIONS(427), - [anon_sym_transient] = ACTIONS(427), - [anon_sym_volatile] = ACTIONS(427), - [anon_sym_sealed] = ACTIONS(427), - [anon_sym_non_DASHsealed] = ACTIONS(425), - [anon_sym_record] = ACTIONS(427), - [anon_sym_ATinterface] = ACTIONS(425), - [anon_sym_interface] = ACTIONS(427), - [anon_sym_byte] = ACTIONS(427), - [anon_sym_short] = ACTIONS(427), - [anon_sym_int] = ACTIONS(427), - [anon_sym_long] = ACTIONS(427), - [anon_sym_char] = ACTIONS(427), - [anon_sym_float] = ACTIONS(427), - [anon_sym_double] = ACTIONS(427), - [sym_boolean_type] = ACTIONS(427), - [sym_void_type] = ACTIONS(427), - [sym_this] = ACTIONS(427), - [sym_super] = ACTIONS(427), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(618), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym_block] = STATE(1069), + [sym_expression_statement] = STATE(1069), + [sym_throw_statement] = STATE(1069), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [92] = { - [ts_builtin_sym_end] = ACTIONS(429), - [sym_identifier] = ACTIONS(431), - [sym_decimal_integer_literal] = ACTIONS(431), - [sym_hex_integer_literal] = ACTIONS(431), - [sym_octal_integer_literal] = ACTIONS(429), - [sym_binary_integer_literal] = ACTIONS(429), - [sym_decimal_floating_point_literal] = ACTIONS(429), - [sym_hex_floating_point_literal] = ACTIONS(431), - [sym_true] = ACTIONS(431), - [sym_false] = ACTIONS(431), - [sym_character_literal] = ACTIONS(429), - [sym_string_literal] = ACTIONS(431), - [sym_text_block] = ACTIONS(429), - [sym_null_literal] = ACTIONS(431), - [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(429), - [anon_sym_PLUS] = ACTIONS(431), - [anon_sym_DASH] = ACTIONS(431), - [anon_sym_BANG] = ACTIONS(429), - [anon_sym_TILDE] = ACTIONS(429), - [anon_sym_PLUS_PLUS] = ACTIONS(429), - [anon_sym_DASH_DASH] = ACTIONS(429), - [anon_sym_new] = ACTIONS(431), - [anon_sym_class] = ACTIONS(431), - [anon_sym_switch] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(429), - [anon_sym_RBRACE] = ACTIONS(429), - [anon_sym_case] = ACTIONS(431), - [anon_sym_default] = ACTIONS(431), - [anon_sym_SEMI] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(431), - [anon_sym_do] = ACTIONS(431), - [anon_sym_while] = ACTIONS(431), - [anon_sym_break] = ACTIONS(431), - [anon_sym_continue] = ACTIONS(431), - [anon_sym_return] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(431), - [anon_sym_synchronized] = ACTIONS(431), - [anon_sym_throw] = ACTIONS(431), - [anon_sym_try] = ACTIONS(431), - [anon_sym_if] = ACTIONS(431), - [anon_sym_else] = ACTIONS(431), - [anon_sym_for] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(431), - [anon_sym_open] = ACTIONS(431), - [anon_sym_module] = ACTIONS(431), - [anon_sym_static] = ACTIONS(431), - [anon_sym_package] = ACTIONS(431), - [anon_sym_import] = ACTIONS(431), - [anon_sym_enum] = ACTIONS(431), - [anon_sym_public] = ACTIONS(431), - [anon_sym_protected] = ACTIONS(431), - [anon_sym_private] = ACTIONS(431), - [anon_sym_abstract] = ACTIONS(431), - [anon_sym_final] = ACTIONS(431), - [anon_sym_strictfp] = ACTIONS(431), - [anon_sym_native] = ACTIONS(431), - [anon_sym_transient] = ACTIONS(431), - [anon_sym_volatile] = ACTIONS(431), - [anon_sym_sealed] = ACTIONS(431), - [anon_sym_non_DASHsealed] = ACTIONS(429), - [anon_sym_record] = ACTIONS(431), - [anon_sym_ATinterface] = ACTIONS(429), - [anon_sym_interface] = ACTIONS(431), - [anon_sym_byte] = ACTIONS(431), - [anon_sym_short] = ACTIONS(431), - [anon_sym_int] = ACTIONS(431), - [anon_sym_long] = ACTIONS(431), - [anon_sym_char] = ACTIONS(431), - [anon_sym_float] = ACTIONS(431), - [anon_sym_double] = ACTIONS(431), - [sym_boolean_type] = ACTIONS(431), - [sym_void_type] = ACTIONS(431), - [sym_this] = ACTIONS(431), - [sym_super] = ACTIONS(431), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(549), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(717), + [sym_marker_annotation] = STATE(717), + [sym_annotation] = STATE(717), + [sym_element_value_pair] = STATE(1041), + [sym__element_value] = STATE(1232), + [sym_element_value_array_initializer] = STATE(1232), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(325), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(339), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [93] = { - [ts_builtin_sym_end] = ACTIONS(248), - [sym_identifier] = ACTIONS(250), - [sym_decimal_integer_literal] = ACTIONS(250), - [sym_hex_integer_literal] = ACTIONS(250), - [sym_octal_integer_literal] = ACTIONS(248), - [sym_binary_integer_literal] = ACTIONS(248), - [sym_decimal_floating_point_literal] = ACTIONS(248), - [sym_hex_floating_point_literal] = ACTIONS(250), - [sym_true] = ACTIONS(250), - [sym_false] = ACTIONS(250), - [sym_character_literal] = ACTIONS(248), - [sym_string_literal] = ACTIONS(250), - [sym_text_block] = ACTIONS(248), - [sym_null_literal] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_PLUS] = ACTIONS(250), - [anon_sym_DASH] = ACTIONS(250), - [anon_sym_BANG] = ACTIONS(248), - [anon_sym_TILDE] = ACTIONS(248), - [anon_sym_PLUS_PLUS] = ACTIONS(248), - [anon_sym_DASH_DASH] = ACTIONS(248), - [anon_sym_new] = ACTIONS(250), - [anon_sym_class] = ACTIONS(250), - [anon_sym_switch] = ACTIONS(250), - [anon_sym_LBRACE] = ACTIONS(248), - [anon_sym_RBRACE] = ACTIONS(248), - [anon_sym_case] = ACTIONS(250), - [anon_sym_default] = ACTIONS(250), - [anon_sym_SEMI] = ACTIONS(248), - [anon_sym_assert] = ACTIONS(250), - [anon_sym_do] = ACTIONS(250), - [anon_sym_while] = ACTIONS(250), - [anon_sym_break] = ACTIONS(250), - [anon_sym_continue] = ACTIONS(250), - [anon_sym_return] = ACTIONS(250), - [anon_sym_yield] = ACTIONS(250), - [anon_sym_synchronized] = ACTIONS(250), - [anon_sym_throw] = ACTIONS(250), - [anon_sym_try] = ACTIONS(250), - [anon_sym_catch] = ACTIONS(250), - [anon_sym_finally] = ACTIONS(250), - [anon_sym_if] = ACTIONS(250), - [anon_sym_else] = ACTIONS(250), - [anon_sym_for] = ACTIONS(250), - [anon_sym_AT] = ACTIONS(250), - [anon_sym_open] = ACTIONS(250), - [anon_sym_module] = ACTIONS(250), - [anon_sym_static] = ACTIONS(250), - [anon_sym_package] = ACTIONS(250), - [anon_sym_import] = ACTIONS(250), - [anon_sym_enum] = ACTIONS(250), - [anon_sym_public] = ACTIONS(250), - [anon_sym_protected] = ACTIONS(250), - [anon_sym_private] = ACTIONS(250), - [anon_sym_abstract] = ACTIONS(250), - [anon_sym_final] = ACTIONS(250), - [anon_sym_strictfp] = ACTIONS(250), - [anon_sym_native] = ACTIONS(250), - [anon_sym_transient] = ACTIONS(250), - [anon_sym_volatile] = ACTIONS(250), - [anon_sym_sealed] = ACTIONS(250), - [anon_sym_non_DASHsealed] = ACTIONS(248), - [anon_sym_ATinterface] = ACTIONS(248), - [anon_sym_interface] = ACTIONS(250), - [anon_sym_byte] = ACTIONS(250), - [anon_sym_short] = ACTIONS(250), - [anon_sym_int] = ACTIONS(250), - [anon_sym_long] = ACTIONS(250), - [anon_sym_char] = ACTIONS(250), - [anon_sym_float] = ACTIONS(250), - [anon_sym_double] = ACTIONS(250), - [sym_boolean_type] = ACTIONS(250), - [sym_void_type] = ACTIONS(250), - [sym_this] = ACTIONS(250), - [sym_super] = ACTIONS(250), + [sym_catch_clause] = STATE(96), + [sym_finally_clause] = STATE(273), + [aux_sym_try_statement_repeat1] = STATE(96), + [ts_builtin_sym_end] = ACTIONS(341), + [sym_identifier] = ACTIONS(343), + [sym_decimal_integer_literal] = ACTIONS(343), + [sym_hex_integer_literal] = ACTIONS(343), + [sym_octal_integer_literal] = ACTIONS(341), + [sym_binary_integer_literal] = ACTIONS(341), + [sym_decimal_floating_point_literal] = ACTIONS(341), + [sym_hex_floating_point_literal] = ACTIONS(343), + [sym_true] = ACTIONS(343), + [sym_false] = ACTIONS(343), + [sym_character_literal] = ACTIONS(341), + [anon_sym_DQUOTE] = ACTIONS(343), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(341), + [sym_null_literal] = ACTIONS(343), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_PLUS] = ACTIONS(343), + [anon_sym_DASH] = ACTIONS(343), + [anon_sym_final] = ACTIONS(343), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_TILDE] = ACTIONS(341), + [anon_sym_PLUS_PLUS] = ACTIONS(341), + [anon_sym_DASH_DASH] = ACTIONS(341), + [anon_sym_new] = ACTIONS(343), + [anon_sym_class] = ACTIONS(343), + [anon_sym_switch] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(341), + [anon_sym_case] = ACTIONS(343), + [anon_sym_default] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(341), + [anon_sym_assert] = ACTIONS(343), + [anon_sym_do] = ACTIONS(343), + [anon_sym_while] = ACTIONS(343), + [anon_sym_break] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(343), + [anon_sym_return] = ACTIONS(343), + [anon_sym_yield] = ACTIONS(343), + [anon_sym_synchronized] = ACTIONS(343), + [anon_sym_throw] = ACTIONS(343), + [anon_sym_try] = ACTIONS(343), + [anon_sym_catch] = ACTIONS(345), + [anon_sym_finally] = ACTIONS(347), + [anon_sym_if] = ACTIONS(343), + [anon_sym_else] = ACTIONS(343), + [anon_sym_for] = ACTIONS(343), + [anon_sym_AT] = ACTIONS(343), + [anon_sym_open] = ACTIONS(343), + [anon_sym_module] = ACTIONS(343), + [anon_sym_static] = ACTIONS(343), + [anon_sym_package] = ACTIONS(343), + [anon_sym_import] = ACTIONS(343), + [anon_sym_enum] = ACTIONS(343), + [anon_sym_public] = ACTIONS(343), + [anon_sym_protected] = ACTIONS(343), + [anon_sym_private] = ACTIONS(343), + [anon_sym_abstract] = ACTIONS(343), + [anon_sym_strictfp] = ACTIONS(343), + [anon_sym_native] = ACTIONS(343), + [anon_sym_transient] = ACTIONS(343), + [anon_sym_volatile] = ACTIONS(343), + [anon_sym_sealed] = ACTIONS(343), + [anon_sym_non_DASHsealed] = ACTIONS(341), + [anon_sym_record] = ACTIONS(343), + [anon_sym_ATinterface] = ACTIONS(341), + [anon_sym_interface] = ACTIONS(343), + [anon_sym_byte] = ACTIONS(343), + [anon_sym_short] = ACTIONS(343), + [anon_sym_int] = ACTIONS(343), + [anon_sym_long] = ACTIONS(343), + [anon_sym_char] = ACTIONS(343), + [anon_sym_float] = ACTIONS(343), + [anon_sym_double] = ACTIONS(343), + [sym_boolean_type] = ACTIONS(343), + [sym_void_type] = ACTIONS(343), + [sym_this] = ACTIONS(343), + [sym_super] = ACTIONS(343), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [94] = { - [ts_builtin_sym_end] = ACTIONS(433), - [sym_identifier] = ACTIONS(435), - [sym_decimal_integer_literal] = ACTIONS(435), - [sym_hex_integer_literal] = ACTIONS(435), - [sym_octal_integer_literal] = ACTIONS(433), - [sym_binary_integer_literal] = ACTIONS(433), - [sym_decimal_floating_point_literal] = ACTIONS(433), - [sym_hex_floating_point_literal] = ACTIONS(435), - [sym_true] = ACTIONS(435), - [sym_false] = ACTIONS(435), - [sym_character_literal] = ACTIONS(433), - [sym_string_literal] = ACTIONS(435), - [sym_text_block] = ACTIONS(433), - [sym_null_literal] = ACTIONS(435), - [anon_sym_LPAREN] = ACTIONS(433), - [anon_sym_LT] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(433), - [anon_sym_DASH_DASH] = ACTIONS(433), - [anon_sym_new] = ACTIONS(435), - [anon_sym_class] = ACTIONS(435), - [anon_sym_switch] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(433), - [anon_sym_RBRACE] = ACTIONS(433), - [anon_sym_case] = ACTIONS(435), - [anon_sym_default] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(433), - [anon_sym_assert] = ACTIONS(435), - [anon_sym_do] = ACTIONS(435), - [anon_sym_while] = ACTIONS(435), - [anon_sym_break] = ACTIONS(435), - [anon_sym_continue] = ACTIONS(435), - [anon_sym_return] = ACTIONS(435), - [anon_sym_yield] = ACTIONS(435), - [anon_sym_synchronized] = ACTIONS(435), - [anon_sym_throw] = ACTIONS(435), - [anon_sym_try] = ACTIONS(435), - [anon_sym_if] = ACTIONS(435), - [anon_sym_else] = ACTIONS(435), - [anon_sym_for] = ACTIONS(435), - [anon_sym_AT] = ACTIONS(435), - [anon_sym_open] = ACTIONS(435), - [anon_sym_module] = ACTIONS(435), - [anon_sym_static] = ACTIONS(435), - [anon_sym_package] = ACTIONS(435), - [anon_sym_import] = ACTIONS(435), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_public] = ACTIONS(435), - [anon_sym_protected] = ACTIONS(435), - [anon_sym_private] = ACTIONS(435), - [anon_sym_abstract] = ACTIONS(435), - [anon_sym_final] = ACTIONS(435), - [anon_sym_strictfp] = ACTIONS(435), - [anon_sym_native] = ACTIONS(435), - [anon_sym_transient] = ACTIONS(435), - [anon_sym_volatile] = ACTIONS(435), - [anon_sym_sealed] = ACTIONS(435), - [anon_sym_non_DASHsealed] = ACTIONS(433), - [anon_sym_record] = ACTIONS(435), - [anon_sym_ATinterface] = ACTIONS(433), - [anon_sym_interface] = ACTIONS(435), - [anon_sym_byte] = ACTIONS(435), - [anon_sym_short] = ACTIONS(435), - [anon_sym_int] = ACTIONS(435), - [anon_sym_long] = ACTIONS(435), - [anon_sym_char] = ACTIONS(435), - [anon_sym_float] = ACTIONS(435), - [anon_sym_double] = ACTIONS(435), - [sym_boolean_type] = ACTIONS(435), - [sym_void_type] = ACTIONS(435), - [sym_this] = ACTIONS(435), - [sym_super] = ACTIONS(435), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(549), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(717), + [sym_marker_annotation] = STATE(717), + [sym_annotation] = STATE(717), + [sym__element_value] = STATE(1109), + [sym_element_value_array_initializer] = STATE(1109), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(349), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [95] = { - [ts_builtin_sym_end] = ACTIONS(437), - [sym_identifier] = ACTIONS(439), - [sym_decimal_integer_literal] = ACTIONS(439), - [sym_hex_integer_literal] = ACTIONS(439), - [sym_octal_integer_literal] = ACTIONS(437), - [sym_binary_integer_literal] = ACTIONS(437), - [sym_decimal_floating_point_literal] = ACTIONS(437), - [sym_hex_floating_point_literal] = ACTIONS(439), - [sym_true] = ACTIONS(439), - [sym_false] = ACTIONS(439), - [sym_character_literal] = ACTIONS(437), - [sym_string_literal] = ACTIONS(439), - [sym_text_block] = ACTIONS(437), - [sym_null_literal] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_PLUS_PLUS] = ACTIONS(437), - [anon_sym_DASH_DASH] = ACTIONS(437), - [anon_sym_new] = ACTIONS(439), - [anon_sym_class] = ACTIONS(439), - [anon_sym_switch] = ACTIONS(439), - [anon_sym_LBRACE] = ACTIONS(437), - [anon_sym_RBRACE] = ACTIONS(437), - [anon_sym_case] = ACTIONS(439), - [anon_sym_default] = ACTIONS(439), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_assert] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_while] = ACTIONS(439), - [anon_sym_break] = ACTIONS(439), - [anon_sym_continue] = ACTIONS(439), - [anon_sym_return] = ACTIONS(439), - [anon_sym_yield] = ACTIONS(439), - [anon_sym_synchronized] = ACTIONS(439), - [anon_sym_throw] = ACTIONS(439), - [anon_sym_try] = ACTIONS(439), - [anon_sym_if] = ACTIONS(439), - [anon_sym_else] = ACTIONS(439), - [anon_sym_for] = ACTIONS(439), - [anon_sym_AT] = ACTIONS(439), - [anon_sym_open] = ACTIONS(439), - [anon_sym_module] = ACTIONS(439), - [anon_sym_static] = ACTIONS(439), - [anon_sym_package] = ACTIONS(439), - [anon_sym_import] = ACTIONS(439), - [anon_sym_enum] = ACTIONS(439), - [anon_sym_public] = ACTIONS(439), - [anon_sym_protected] = ACTIONS(439), - [anon_sym_private] = ACTIONS(439), - [anon_sym_abstract] = ACTIONS(439), - [anon_sym_final] = ACTIONS(439), - [anon_sym_strictfp] = ACTIONS(439), - [anon_sym_native] = ACTIONS(439), - [anon_sym_transient] = ACTIONS(439), - [anon_sym_volatile] = ACTIONS(439), - [anon_sym_sealed] = ACTIONS(439), - [anon_sym_non_DASHsealed] = ACTIONS(437), - [anon_sym_record] = ACTIONS(439), - [anon_sym_ATinterface] = ACTIONS(437), - [anon_sym_interface] = ACTIONS(439), - [anon_sym_byte] = ACTIONS(439), - [anon_sym_short] = ACTIONS(439), - [anon_sym_int] = ACTIONS(439), - [anon_sym_long] = ACTIONS(439), - [anon_sym_char] = ACTIONS(439), - [anon_sym_float] = ACTIONS(439), - [anon_sym_double] = ACTIONS(439), - [sym_boolean_type] = ACTIONS(439), - [sym_void_type] = ACTIONS(439), - [sym_this] = ACTIONS(439), - [sym_super] = ACTIONS(439), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(565), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym_array_initializer] = STATE(1077), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(355), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [96] = { - [ts_builtin_sym_end] = ACTIONS(441), - [sym_identifier] = ACTIONS(443), - [sym_decimal_integer_literal] = ACTIONS(443), - [sym_hex_integer_literal] = ACTIONS(443), - [sym_octal_integer_literal] = ACTIONS(441), - [sym_binary_integer_literal] = ACTIONS(441), - [sym_decimal_floating_point_literal] = ACTIONS(441), - [sym_hex_floating_point_literal] = ACTIONS(443), - [sym_true] = ACTIONS(443), - [sym_false] = ACTIONS(443), - [sym_character_literal] = ACTIONS(441), - [sym_string_literal] = ACTIONS(443), - [sym_text_block] = ACTIONS(441), - [sym_null_literal] = ACTIONS(443), - [anon_sym_LPAREN] = ACTIONS(441), - [anon_sym_LT] = ACTIONS(441), - [anon_sym_PLUS] = ACTIONS(443), - [anon_sym_DASH] = ACTIONS(443), - [anon_sym_BANG] = ACTIONS(441), - [anon_sym_TILDE] = ACTIONS(441), - [anon_sym_PLUS_PLUS] = ACTIONS(441), - [anon_sym_DASH_DASH] = ACTIONS(441), - [anon_sym_new] = ACTIONS(443), - [anon_sym_class] = ACTIONS(443), - [anon_sym_switch] = ACTIONS(443), - [anon_sym_LBRACE] = ACTIONS(441), - [anon_sym_RBRACE] = ACTIONS(441), - [anon_sym_case] = ACTIONS(443), - [anon_sym_default] = ACTIONS(443), - [anon_sym_SEMI] = ACTIONS(441), - [anon_sym_assert] = ACTIONS(443), - [anon_sym_do] = ACTIONS(443), - [anon_sym_while] = ACTIONS(443), - [anon_sym_break] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(443), - [anon_sym_return] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(443), - [anon_sym_synchronized] = ACTIONS(443), - [anon_sym_throw] = ACTIONS(443), - [anon_sym_try] = ACTIONS(443), - [anon_sym_if] = ACTIONS(443), - [anon_sym_else] = ACTIONS(443), - [anon_sym_for] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(443), - [anon_sym_open] = ACTIONS(443), - [anon_sym_module] = ACTIONS(443), - [anon_sym_static] = ACTIONS(443), - [anon_sym_package] = ACTIONS(443), - [anon_sym_import] = ACTIONS(443), - [anon_sym_enum] = ACTIONS(443), - [anon_sym_public] = ACTIONS(443), - [anon_sym_protected] = ACTIONS(443), - [anon_sym_private] = ACTIONS(443), - [anon_sym_abstract] = ACTIONS(443), - [anon_sym_final] = ACTIONS(443), - [anon_sym_strictfp] = ACTIONS(443), - [anon_sym_native] = ACTIONS(443), - [anon_sym_transient] = ACTIONS(443), - [anon_sym_volatile] = ACTIONS(443), - [anon_sym_sealed] = ACTIONS(443), - [anon_sym_non_DASHsealed] = ACTIONS(441), - [anon_sym_record] = ACTIONS(443), - [anon_sym_ATinterface] = ACTIONS(441), - [anon_sym_interface] = ACTIONS(443), - [anon_sym_byte] = ACTIONS(443), - [anon_sym_short] = ACTIONS(443), - [anon_sym_int] = ACTIONS(443), - [anon_sym_long] = ACTIONS(443), - [anon_sym_char] = ACTIONS(443), - [anon_sym_float] = ACTIONS(443), - [anon_sym_double] = ACTIONS(443), - [sym_boolean_type] = ACTIONS(443), - [sym_void_type] = ACTIONS(443), - [sym_this] = ACTIONS(443), - [sym_super] = ACTIONS(443), + [sym_catch_clause] = STATE(100), + [sym_finally_clause] = STATE(343), + [aux_sym_try_statement_repeat1] = STATE(100), + [ts_builtin_sym_end] = ACTIONS(357), + [sym_identifier] = ACTIONS(359), + [sym_decimal_integer_literal] = ACTIONS(359), + [sym_hex_integer_literal] = ACTIONS(359), + [sym_octal_integer_literal] = ACTIONS(357), + [sym_binary_integer_literal] = ACTIONS(357), + [sym_decimal_floating_point_literal] = ACTIONS(357), + [sym_hex_floating_point_literal] = ACTIONS(359), + [sym_true] = ACTIONS(359), + [sym_false] = ACTIONS(359), + [sym_character_literal] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(357), + [sym_null_literal] = ACTIONS(359), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(359), + [anon_sym_DASH] = ACTIONS(359), + [anon_sym_final] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [anon_sym_new] = ACTIONS(359), + [anon_sym_class] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_RBRACE] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(359), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_assert] = ACTIONS(359), + [anon_sym_do] = ACTIONS(359), + [anon_sym_while] = ACTIONS(359), + [anon_sym_break] = ACTIONS(359), + [anon_sym_continue] = ACTIONS(359), + [anon_sym_return] = ACTIONS(359), + [anon_sym_yield] = ACTIONS(359), + [anon_sym_synchronized] = ACTIONS(359), + [anon_sym_throw] = ACTIONS(359), + [anon_sym_try] = ACTIONS(359), + [anon_sym_catch] = ACTIONS(345), + [anon_sym_finally] = ACTIONS(347), + [anon_sym_if] = ACTIONS(359), + [anon_sym_else] = ACTIONS(359), + [anon_sym_for] = ACTIONS(359), + [anon_sym_AT] = ACTIONS(359), + [anon_sym_open] = ACTIONS(359), + [anon_sym_module] = ACTIONS(359), + [anon_sym_static] = ACTIONS(359), + [anon_sym_package] = ACTIONS(359), + [anon_sym_import] = ACTIONS(359), + [anon_sym_enum] = ACTIONS(359), + [anon_sym_public] = ACTIONS(359), + [anon_sym_protected] = ACTIONS(359), + [anon_sym_private] = ACTIONS(359), + [anon_sym_abstract] = ACTIONS(359), + [anon_sym_strictfp] = ACTIONS(359), + [anon_sym_native] = ACTIONS(359), + [anon_sym_transient] = ACTIONS(359), + [anon_sym_volatile] = ACTIONS(359), + [anon_sym_sealed] = ACTIONS(359), + [anon_sym_non_DASHsealed] = ACTIONS(357), + [anon_sym_record] = ACTIONS(359), + [anon_sym_ATinterface] = ACTIONS(357), + [anon_sym_interface] = ACTIONS(359), + [anon_sym_byte] = ACTIONS(359), + [anon_sym_short] = ACTIONS(359), + [anon_sym_int] = ACTIONS(359), + [anon_sym_long] = ACTIONS(359), + [anon_sym_char] = ACTIONS(359), + [anon_sym_float] = ACTIONS(359), + [anon_sym_double] = ACTIONS(359), + [sym_boolean_type] = ACTIONS(359), + [sym_void_type] = ACTIONS(359), + [sym_this] = ACTIONS(359), + [sym_super] = ACTIONS(359), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [97] = { - [ts_builtin_sym_end] = ACTIONS(445), - [sym_identifier] = ACTIONS(447), - [sym_decimal_integer_literal] = ACTIONS(447), - [sym_hex_integer_literal] = ACTIONS(447), - [sym_octal_integer_literal] = ACTIONS(445), - [sym_binary_integer_literal] = ACTIONS(445), - [sym_decimal_floating_point_literal] = ACTIONS(445), - [sym_hex_floating_point_literal] = ACTIONS(447), - [sym_true] = ACTIONS(447), - [sym_false] = ACTIONS(447), - [sym_character_literal] = ACTIONS(445), - [sym_string_literal] = ACTIONS(447), - [sym_text_block] = ACTIONS(445), - [sym_null_literal] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(445), - [anon_sym_LT] = ACTIONS(445), - [anon_sym_PLUS] = ACTIONS(447), - [anon_sym_DASH] = ACTIONS(447), - [anon_sym_BANG] = ACTIONS(445), - [anon_sym_TILDE] = ACTIONS(445), - [anon_sym_PLUS_PLUS] = ACTIONS(445), - [anon_sym_DASH_DASH] = ACTIONS(445), - [anon_sym_new] = ACTIONS(447), - [anon_sym_class] = ACTIONS(447), - [anon_sym_switch] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(445), - [anon_sym_RBRACE] = ACTIONS(445), - [anon_sym_case] = ACTIONS(447), - [anon_sym_default] = ACTIONS(447), - [anon_sym_SEMI] = ACTIONS(445), - [anon_sym_assert] = ACTIONS(447), - [anon_sym_do] = ACTIONS(447), - [anon_sym_while] = ACTIONS(447), - [anon_sym_break] = ACTIONS(447), - [anon_sym_continue] = ACTIONS(447), - [anon_sym_return] = ACTIONS(447), - [anon_sym_yield] = ACTIONS(447), - [anon_sym_synchronized] = ACTIONS(447), - [anon_sym_throw] = ACTIONS(447), - [anon_sym_try] = ACTIONS(447), - [anon_sym_if] = ACTIONS(447), - [anon_sym_else] = ACTIONS(447), - [anon_sym_for] = ACTIONS(447), - [anon_sym_AT] = ACTIONS(447), - [anon_sym_open] = ACTIONS(447), - [anon_sym_module] = ACTIONS(447), - [anon_sym_static] = ACTIONS(447), - [anon_sym_package] = ACTIONS(447), - [anon_sym_import] = ACTIONS(447), - [anon_sym_enum] = ACTIONS(447), - [anon_sym_public] = ACTIONS(447), - [anon_sym_protected] = ACTIONS(447), - [anon_sym_private] = ACTIONS(447), - [anon_sym_abstract] = ACTIONS(447), - [anon_sym_final] = ACTIONS(447), - [anon_sym_strictfp] = ACTIONS(447), - [anon_sym_native] = ACTIONS(447), - [anon_sym_transient] = ACTIONS(447), - [anon_sym_volatile] = ACTIONS(447), - [anon_sym_sealed] = ACTIONS(447), - [anon_sym_non_DASHsealed] = ACTIONS(445), - [anon_sym_record] = ACTIONS(447), - [anon_sym_ATinterface] = ACTIONS(445), - [anon_sym_interface] = ACTIONS(447), - [anon_sym_byte] = ACTIONS(447), - [anon_sym_short] = ACTIONS(447), - [anon_sym_int] = ACTIONS(447), - [anon_sym_long] = ACTIONS(447), - [anon_sym_char] = ACTIONS(447), - [anon_sym_float] = ACTIONS(447), - [anon_sym_double] = ACTIONS(447), - [sym_boolean_type] = ACTIONS(447), - [sym_void_type] = ACTIONS(447), - [sym_this] = ACTIONS(447), - [sym_super] = ACTIONS(447), + [sym_catch_clause] = STATE(100), + [sym_finally_clause] = STATE(274), + [aux_sym_try_statement_repeat1] = STATE(100), + [ts_builtin_sym_end] = ACTIONS(361), + [sym_identifier] = ACTIONS(363), + [sym_decimal_integer_literal] = ACTIONS(363), + [sym_hex_integer_literal] = ACTIONS(363), + [sym_octal_integer_literal] = ACTIONS(361), + [sym_binary_integer_literal] = ACTIONS(361), + [sym_decimal_floating_point_literal] = ACTIONS(361), + [sym_hex_floating_point_literal] = ACTIONS(363), + [sym_true] = ACTIONS(363), + [sym_false] = ACTIONS(363), + [sym_character_literal] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(361), + [sym_null_literal] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_PLUS] = ACTIONS(363), + [anon_sym_DASH] = ACTIONS(363), + [anon_sym_final] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_PLUS_PLUS] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(361), + [anon_sym_new] = ACTIONS(363), + [anon_sym_class] = ACTIONS(363), + [anon_sym_switch] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_RBRACE] = ACTIONS(361), + [anon_sym_case] = ACTIONS(363), + [anon_sym_default] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym_assert] = ACTIONS(363), + [anon_sym_do] = ACTIONS(363), + [anon_sym_while] = ACTIONS(363), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(363), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(363), + [anon_sym_synchronized] = ACTIONS(363), + [anon_sym_throw] = ACTIONS(363), + [anon_sym_try] = ACTIONS(363), + [anon_sym_catch] = ACTIONS(345), + [anon_sym_finally] = ACTIONS(347), + [anon_sym_if] = ACTIONS(363), + [anon_sym_else] = ACTIONS(363), + [anon_sym_for] = ACTIONS(363), + [anon_sym_AT] = ACTIONS(363), + [anon_sym_open] = ACTIONS(363), + [anon_sym_module] = ACTIONS(363), + [anon_sym_static] = ACTIONS(363), + [anon_sym_package] = ACTIONS(363), + [anon_sym_import] = ACTIONS(363), + [anon_sym_enum] = ACTIONS(363), + [anon_sym_public] = ACTIONS(363), + [anon_sym_protected] = ACTIONS(363), + [anon_sym_private] = ACTIONS(363), + [anon_sym_abstract] = ACTIONS(363), + [anon_sym_strictfp] = ACTIONS(363), + [anon_sym_native] = ACTIONS(363), + [anon_sym_transient] = ACTIONS(363), + [anon_sym_volatile] = ACTIONS(363), + [anon_sym_sealed] = ACTIONS(363), + [anon_sym_non_DASHsealed] = ACTIONS(361), + [anon_sym_record] = ACTIONS(363), + [anon_sym_ATinterface] = ACTIONS(361), + [anon_sym_interface] = ACTIONS(363), + [anon_sym_byte] = ACTIONS(363), + [anon_sym_short] = ACTIONS(363), + [anon_sym_int] = ACTIONS(363), + [anon_sym_long] = ACTIONS(363), + [anon_sym_char] = ACTIONS(363), + [anon_sym_float] = ACTIONS(363), + [anon_sym_double] = ACTIONS(363), + [sym_boolean_type] = ACTIONS(363), + [sym_void_type] = ACTIONS(363), + [sym_this] = ACTIONS(363), + [sym_super] = ACTIONS(363), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, [98] = { - [ts_builtin_sym_end] = ACTIONS(449), - [sym_identifier] = ACTIONS(451), - [sym_decimal_integer_literal] = ACTIONS(451), - [sym_hex_integer_literal] = ACTIONS(451), - [sym_octal_integer_literal] = ACTIONS(449), - [sym_binary_integer_literal] = ACTIONS(449), - [sym_decimal_floating_point_literal] = ACTIONS(449), - [sym_hex_floating_point_literal] = ACTIONS(451), - [sym_true] = ACTIONS(451), - [sym_false] = ACTIONS(451), - [sym_character_literal] = ACTIONS(449), - [sym_string_literal] = ACTIONS(451), - [sym_text_block] = ACTIONS(449), - [sym_null_literal] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(449), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(449), - [anon_sym_TILDE] = ACTIONS(449), - [anon_sym_PLUS_PLUS] = ACTIONS(449), - [anon_sym_DASH_DASH] = ACTIONS(449), - [anon_sym_new] = ACTIONS(451), - [anon_sym_class] = ACTIONS(451), - [anon_sym_switch] = ACTIONS(451), - [anon_sym_LBRACE] = ACTIONS(449), - [anon_sym_RBRACE] = ACTIONS(449), - [anon_sym_case] = ACTIONS(451), - [anon_sym_default] = ACTIONS(451), - [anon_sym_SEMI] = ACTIONS(449), - [anon_sym_assert] = ACTIONS(451), - [anon_sym_do] = ACTIONS(451), - [anon_sym_while] = ACTIONS(451), - [anon_sym_break] = ACTIONS(451), - [anon_sym_continue] = ACTIONS(451), - [anon_sym_return] = ACTIONS(451), - [anon_sym_yield] = ACTIONS(451), - [anon_sym_synchronized] = ACTIONS(451), - [anon_sym_throw] = ACTIONS(451), - [anon_sym_try] = ACTIONS(451), - [anon_sym_if] = ACTIONS(451), - [anon_sym_else] = ACTIONS(451), - [anon_sym_for] = ACTIONS(451), - [anon_sym_AT] = ACTIONS(451), - [anon_sym_open] = ACTIONS(451), - [anon_sym_module] = ACTIONS(451), - [anon_sym_static] = ACTIONS(451), - [anon_sym_package] = ACTIONS(451), - [anon_sym_import] = ACTIONS(451), - [anon_sym_enum] = ACTIONS(451), - [anon_sym_public] = ACTIONS(451), - [anon_sym_protected] = ACTIONS(451), - [anon_sym_private] = ACTIONS(451), - [anon_sym_abstract] = ACTIONS(451), - [anon_sym_final] = ACTIONS(451), - [anon_sym_strictfp] = ACTIONS(451), - [anon_sym_native] = ACTIONS(451), - [anon_sym_transient] = ACTIONS(451), - [anon_sym_volatile] = ACTIONS(451), - [anon_sym_sealed] = ACTIONS(451), - [anon_sym_non_DASHsealed] = ACTIONS(449), - [anon_sym_record] = ACTIONS(451), - [anon_sym_ATinterface] = ACTIONS(449), - [anon_sym_interface] = ACTIONS(451), - [anon_sym_byte] = ACTIONS(451), - [anon_sym_short] = ACTIONS(451), - [anon_sym_int] = ACTIONS(451), - [anon_sym_long] = ACTIONS(451), - [anon_sym_char] = ACTIONS(451), - [anon_sym_float] = ACTIONS(451), - [anon_sym_double] = ACTIONS(451), - [sym_boolean_type] = ACTIONS(451), - [sym_void_type] = ACTIONS(451), - [sym_this] = ACTIONS(451), - [sym_super] = ACTIONS(451), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [99] = { - [ts_builtin_sym_end] = ACTIONS(453), - [sym_identifier] = ACTIONS(455), - [sym_decimal_integer_literal] = ACTIONS(455), - [sym_hex_integer_literal] = ACTIONS(455), - [sym_octal_integer_literal] = ACTIONS(453), - [sym_binary_integer_literal] = ACTIONS(453), - [sym_decimal_floating_point_literal] = ACTIONS(453), - [sym_hex_floating_point_literal] = ACTIONS(455), - [sym_true] = ACTIONS(455), - [sym_false] = ACTIONS(455), - [sym_character_literal] = ACTIONS(453), - [sym_string_literal] = ACTIONS(455), - [sym_text_block] = ACTIONS(453), - [sym_null_literal] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LT] = ACTIONS(453), - [anon_sym_PLUS] = ACTIONS(455), - [anon_sym_DASH] = ACTIONS(455), - [anon_sym_BANG] = ACTIONS(453), - [anon_sym_TILDE] = ACTIONS(453), - [anon_sym_PLUS_PLUS] = ACTIONS(453), - [anon_sym_DASH_DASH] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_class] = ACTIONS(455), - [anon_sym_switch] = ACTIONS(455), - [anon_sym_LBRACE] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(453), - [anon_sym_case] = ACTIONS(455), - [anon_sym_default] = ACTIONS(455), - [anon_sym_SEMI] = ACTIONS(453), - [anon_sym_assert] = ACTIONS(455), - [anon_sym_do] = ACTIONS(455), - [anon_sym_while] = ACTIONS(455), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(455), - [anon_sym_return] = ACTIONS(455), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_synchronized] = ACTIONS(455), - [anon_sym_throw] = ACTIONS(455), - [anon_sym_try] = ACTIONS(455), - [anon_sym_if] = ACTIONS(455), - [anon_sym_else] = ACTIONS(455), - [anon_sym_for] = ACTIONS(455), - [anon_sym_AT] = ACTIONS(455), - [anon_sym_open] = ACTIONS(455), - [anon_sym_module] = ACTIONS(455), - [anon_sym_static] = ACTIONS(455), - [anon_sym_package] = ACTIONS(455), - [anon_sym_import] = ACTIONS(455), - [anon_sym_enum] = ACTIONS(455), - [anon_sym_public] = ACTIONS(455), - [anon_sym_protected] = ACTIONS(455), - [anon_sym_private] = ACTIONS(455), - [anon_sym_abstract] = ACTIONS(455), - [anon_sym_final] = ACTIONS(455), - [anon_sym_strictfp] = ACTIONS(455), - [anon_sym_native] = ACTIONS(455), - [anon_sym_transient] = ACTIONS(455), - [anon_sym_volatile] = ACTIONS(455), - [anon_sym_sealed] = ACTIONS(455), - [anon_sym_non_DASHsealed] = ACTIONS(453), - [anon_sym_record] = ACTIONS(455), - [anon_sym_ATinterface] = ACTIONS(453), - [anon_sym_interface] = ACTIONS(455), - [anon_sym_byte] = ACTIONS(455), - [anon_sym_short] = ACTIONS(455), - [anon_sym_int] = ACTIONS(455), - [anon_sym_long] = ACTIONS(455), - [anon_sym_char] = ACTIONS(455), - [anon_sym_float] = ACTIONS(455), - [anon_sym_double] = ACTIONS(455), - [sym_boolean_type] = ACTIONS(455), - [sym_void_type] = ACTIONS(455), - [sym_this] = ACTIONS(455), - [sym_super] = ACTIONS(455), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [100] = { - [ts_builtin_sym_end] = ACTIONS(457), - [sym_identifier] = ACTIONS(459), - [sym_decimal_integer_literal] = ACTIONS(459), - [sym_hex_integer_literal] = ACTIONS(459), - [sym_octal_integer_literal] = ACTIONS(457), - [sym_binary_integer_literal] = ACTIONS(457), - [sym_decimal_floating_point_literal] = ACTIONS(457), - [sym_hex_floating_point_literal] = ACTIONS(459), - [sym_true] = ACTIONS(459), - [sym_false] = ACTIONS(459), - [sym_character_literal] = ACTIONS(457), - [sym_string_literal] = ACTIONS(459), - [sym_text_block] = ACTIONS(457), - [sym_null_literal] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(457), - [anon_sym_PLUS] = ACTIONS(459), - [anon_sym_DASH] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(457), - [anon_sym_TILDE] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(457), - [anon_sym_DASH_DASH] = ACTIONS(457), - [anon_sym_new] = ACTIONS(459), - [anon_sym_class] = ACTIONS(459), - [anon_sym_switch] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(457), - [anon_sym_RBRACE] = ACTIONS(457), - [anon_sym_case] = ACTIONS(459), - [anon_sym_default] = ACTIONS(459), - [anon_sym_SEMI] = ACTIONS(457), - [anon_sym_assert] = ACTIONS(459), - [anon_sym_do] = ACTIONS(459), - [anon_sym_while] = ACTIONS(459), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(459), - [anon_sym_return] = ACTIONS(459), - [anon_sym_yield] = ACTIONS(459), - [anon_sym_synchronized] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(459), - [anon_sym_try] = ACTIONS(459), - [anon_sym_if] = ACTIONS(459), - [anon_sym_else] = ACTIONS(459), - [anon_sym_for] = ACTIONS(459), - [anon_sym_AT] = ACTIONS(459), - [anon_sym_open] = ACTIONS(459), - [anon_sym_module] = ACTIONS(459), - [anon_sym_static] = ACTIONS(459), - [anon_sym_package] = ACTIONS(459), - [anon_sym_import] = ACTIONS(459), - [anon_sym_enum] = ACTIONS(459), - [anon_sym_public] = ACTIONS(459), - [anon_sym_protected] = ACTIONS(459), - [anon_sym_private] = ACTIONS(459), - [anon_sym_abstract] = ACTIONS(459), - [anon_sym_final] = ACTIONS(459), - [anon_sym_strictfp] = ACTIONS(459), - [anon_sym_native] = ACTIONS(459), - [anon_sym_transient] = ACTIONS(459), - [anon_sym_volatile] = ACTIONS(459), - [anon_sym_sealed] = ACTIONS(459), - [anon_sym_non_DASHsealed] = ACTIONS(457), - [anon_sym_record] = ACTIONS(459), - [anon_sym_ATinterface] = ACTIONS(457), - [anon_sym_interface] = ACTIONS(459), - [anon_sym_byte] = ACTIONS(459), - [anon_sym_short] = ACTIONS(459), - [anon_sym_int] = ACTIONS(459), - [anon_sym_long] = ACTIONS(459), - [anon_sym_char] = ACTIONS(459), - [anon_sym_float] = ACTIONS(459), - [anon_sym_double] = ACTIONS(459), - [sym_boolean_type] = ACTIONS(459), - [sym_void_type] = ACTIONS(459), - [sym_this] = ACTIONS(459), - [sym_super] = ACTIONS(459), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [101] = { - [ts_builtin_sym_end] = ACTIONS(461), - [sym_identifier] = ACTIONS(463), - [sym_decimal_integer_literal] = ACTIONS(463), - [sym_hex_integer_literal] = ACTIONS(463), - [sym_octal_integer_literal] = ACTIONS(461), - [sym_binary_integer_literal] = ACTIONS(461), - [sym_decimal_floating_point_literal] = ACTIONS(461), - [sym_hex_floating_point_literal] = ACTIONS(463), - [sym_true] = ACTIONS(463), - [sym_false] = ACTIONS(463), - [sym_character_literal] = ACTIONS(461), - [sym_string_literal] = ACTIONS(463), - [sym_text_block] = ACTIONS(461), - [sym_null_literal] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_BANG] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_new] = ACTIONS(463), - [anon_sym_class] = ACTIONS(463), - [anon_sym_switch] = ACTIONS(463), - [anon_sym_LBRACE] = ACTIONS(461), - [anon_sym_RBRACE] = ACTIONS(461), - [anon_sym_case] = ACTIONS(463), - [anon_sym_default] = ACTIONS(463), - [anon_sym_SEMI] = ACTIONS(461), - [anon_sym_assert] = ACTIONS(463), - [anon_sym_do] = ACTIONS(463), - [anon_sym_while] = ACTIONS(463), - [anon_sym_break] = ACTIONS(463), - [anon_sym_continue] = ACTIONS(463), - [anon_sym_return] = ACTIONS(463), - [anon_sym_yield] = ACTIONS(463), - [anon_sym_synchronized] = ACTIONS(463), - [anon_sym_throw] = ACTIONS(463), - [anon_sym_try] = ACTIONS(463), - [anon_sym_if] = ACTIONS(463), - [anon_sym_else] = ACTIONS(463), - [anon_sym_for] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(463), - [anon_sym_open] = ACTIONS(463), - [anon_sym_module] = ACTIONS(463), - [anon_sym_static] = ACTIONS(463), - [anon_sym_package] = ACTIONS(463), - [anon_sym_import] = ACTIONS(463), - [anon_sym_enum] = ACTIONS(463), - [anon_sym_public] = ACTIONS(463), - [anon_sym_protected] = ACTIONS(463), - [anon_sym_private] = ACTIONS(463), - [anon_sym_abstract] = ACTIONS(463), - [anon_sym_final] = ACTIONS(463), - [anon_sym_strictfp] = ACTIONS(463), - [anon_sym_native] = ACTIONS(463), - [anon_sym_transient] = ACTIONS(463), - [anon_sym_volatile] = ACTIONS(463), - [anon_sym_sealed] = ACTIONS(463), - [anon_sym_non_DASHsealed] = ACTIONS(461), - [anon_sym_record] = ACTIONS(463), - [anon_sym_ATinterface] = ACTIONS(461), - [anon_sym_interface] = ACTIONS(463), - [anon_sym_byte] = ACTIONS(463), - [anon_sym_short] = ACTIONS(463), - [anon_sym_int] = ACTIONS(463), - [anon_sym_long] = ACTIONS(463), - [anon_sym_char] = ACTIONS(463), - [anon_sym_float] = ACTIONS(463), - [anon_sym_double] = ACTIONS(463), - [sym_boolean_type] = ACTIONS(463), - [sym_void_type] = ACTIONS(463), - [sym_this] = ACTIONS(463), - [sym_super] = ACTIONS(463), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [102] = { - [ts_builtin_sym_end] = ACTIONS(465), - [sym_identifier] = ACTIONS(467), - [sym_decimal_integer_literal] = ACTIONS(467), - [sym_hex_integer_literal] = ACTIONS(467), - [sym_octal_integer_literal] = ACTIONS(465), - [sym_binary_integer_literal] = ACTIONS(465), - [sym_decimal_floating_point_literal] = ACTIONS(465), - [sym_hex_floating_point_literal] = ACTIONS(467), - [sym_true] = ACTIONS(467), - [sym_false] = ACTIONS(467), - [sym_character_literal] = ACTIONS(465), - [sym_string_literal] = ACTIONS(467), - [sym_text_block] = ACTIONS(465), - [sym_null_literal] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(465), - [anon_sym_LT] = ACTIONS(465), - [anon_sym_PLUS] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(467), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_PLUS_PLUS] = ACTIONS(465), - [anon_sym_DASH_DASH] = ACTIONS(465), - [anon_sym_new] = ACTIONS(467), - [anon_sym_class] = ACTIONS(467), - [anon_sym_switch] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(465), - [anon_sym_RBRACE] = ACTIONS(465), - [anon_sym_case] = ACTIONS(467), - [anon_sym_default] = ACTIONS(467), - [anon_sym_SEMI] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(467), - [anon_sym_do] = ACTIONS(467), - [anon_sym_while] = ACTIONS(467), - [anon_sym_break] = ACTIONS(467), - [anon_sym_continue] = ACTIONS(467), - [anon_sym_return] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(467), - [anon_sym_synchronized] = ACTIONS(467), - [anon_sym_throw] = ACTIONS(467), - [anon_sym_try] = ACTIONS(467), - [anon_sym_if] = ACTIONS(467), - [anon_sym_else] = ACTIONS(467), - [anon_sym_for] = ACTIONS(467), - [anon_sym_AT] = ACTIONS(467), - [anon_sym_open] = ACTIONS(467), - [anon_sym_module] = ACTIONS(467), - [anon_sym_static] = ACTIONS(467), - [anon_sym_package] = ACTIONS(467), - [anon_sym_import] = ACTIONS(467), - [anon_sym_enum] = ACTIONS(467), - [anon_sym_public] = ACTIONS(467), - [anon_sym_protected] = ACTIONS(467), - [anon_sym_private] = ACTIONS(467), - [anon_sym_abstract] = ACTIONS(467), - [anon_sym_final] = ACTIONS(467), - [anon_sym_strictfp] = ACTIONS(467), - [anon_sym_native] = ACTIONS(467), - [anon_sym_transient] = ACTIONS(467), - [anon_sym_volatile] = ACTIONS(467), - [anon_sym_sealed] = ACTIONS(467), - [anon_sym_non_DASHsealed] = ACTIONS(465), - [anon_sym_record] = ACTIONS(467), - [anon_sym_ATinterface] = ACTIONS(465), - [anon_sym_interface] = ACTIONS(467), - [anon_sym_byte] = ACTIONS(467), - [anon_sym_short] = ACTIONS(467), - [anon_sym_int] = ACTIONS(467), - [anon_sym_long] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_float] = ACTIONS(467), - [anon_sym_double] = ACTIONS(467), - [sym_boolean_type] = ACTIONS(467), - [sym_void_type] = ACTIONS(467), - [sym_this] = ACTIONS(467), - [sym_super] = ACTIONS(467), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [103] = { - [ts_builtin_sym_end] = ACTIONS(469), - [sym_identifier] = ACTIONS(471), - [sym_decimal_integer_literal] = ACTIONS(471), - [sym_hex_integer_literal] = ACTIONS(471), - [sym_octal_integer_literal] = ACTIONS(469), - [sym_binary_integer_literal] = ACTIONS(469), - [sym_decimal_floating_point_literal] = ACTIONS(469), - [sym_hex_floating_point_literal] = ACTIONS(471), - [sym_true] = ACTIONS(471), - [sym_false] = ACTIONS(471), - [sym_character_literal] = ACTIONS(469), - [sym_string_literal] = ACTIONS(471), - [sym_text_block] = ACTIONS(469), - [sym_null_literal] = ACTIONS(471), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_LT] = ACTIONS(469), - [anon_sym_PLUS] = ACTIONS(471), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_TILDE] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(469), - [anon_sym_DASH_DASH] = ACTIONS(469), - [anon_sym_new] = ACTIONS(471), - [anon_sym_class] = ACTIONS(471), - [anon_sym_switch] = ACTIONS(471), - [anon_sym_LBRACE] = ACTIONS(469), - [anon_sym_RBRACE] = ACTIONS(469), - [anon_sym_case] = ACTIONS(471), - [anon_sym_default] = ACTIONS(471), - [anon_sym_SEMI] = ACTIONS(469), - [anon_sym_assert] = ACTIONS(471), - [anon_sym_do] = ACTIONS(471), - [anon_sym_while] = ACTIONS(471), - [anon_sym_break] = ACTIONS(471), - [anon_sym_continue] = ACTIONS(471), - [anon_sym_return] = ACTIONS(471), - [anon_sym_yield] = ACTIONS(471), - [anon_sym_synchronized] = ACTIONS(471), - [anon_sym_throw] = ACTIONS(471), - [anon_sym_try] = ACTIONS(471), - [anon_sym_if] = ACTIONS(471), - [anon_sym_else] = ACTIONS(471), - [anon_sym_for] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(471), - [anon_sym_open] = ACTIONS(471), - [anon_sym_module] = ACTIONS(471), - [anon_sym_static] = ACTIONS(471), - [anon_sym_package] = ACTIONS(471), - [anon_sym_import] = ACTIONS(471), - [anon_sym_enum] = ACTIONS(471), - [anon_sym_public] = ACTIONS(471), - [anon_sym_protected] = ACTIONS(471), - [anon_sym_private] = ACTIONS(471), - [anon_sym_abstract] = ACTIONS(471), - [anon_sym_final] = ACTIONS(471), - [anon_sym_strictfp] = ACTIONS(471), - [anon_sym_native] = ACTIONS(471), - [anon_sym_transient] = ACTIONS(471), - [anon_sym_volatile] = ACTIONS(471), - [anon_sym_sealed] = ACTIONS(471), - [anon_sym_non_DASHsealed] = ACTIONS(469), - [anon_sym_record] = ACTIONS(471), - [anon_sym_ATinterface] = ACTIONS(469), - [anon_sym_interface] = ACTIONS(471), - [anon_sym_byte] = ACTIONS(471), - [anon_sym_short] = ACTIONS(471), - [anon_sym_int] = ACTIONS(471), - [anon_sym_long] = ACTIONS(471), - [anon_sym_char] = ACTIONS(471), - [anon_sym_float] = ACTIONS(471), - [anon_sym_double] = ACTIONS(471), - [sym_boolean_type] = ACTIONS(471), - [sym_void_type] = ACTIONS(471), - [sym_this] = ACTIONS(471), - [sym_super] = ACTIONS(471), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [104] = { - [ts_builtin_sym_end] = ACTIONS(473), - [sym_identifier] = ACTIONS(475), - [sym_decimal_integer_literal] = ACTIONS(475), - [sym_hex_integer_literal] = ACTIONS(475), - [sym_octal_integer_literal] = ACTIONS(473), - [sym_binary_integer_literal] = ACTIONS(473), - [sym_decimal_floating_point_literal] = ACTIONS(473), - [sym_hex_floating_point_literal] = ACTIONS(475), - [sym_true] = ACTIONS(475), - [sym_false] = ACTIONS(475), - [sym_character_literal] = ACTIONS(473), - [sym_string_literal] = ACTIONS(475), - [sym_text_block] = ACTIONS(473), - [sym_null_literal] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(473), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_PLUS] = ACTIONS(475), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_BANG] = ACTIONS(473), - [anon_sym_TILDE] = ACTIONS(473), - [anon_sym_PLUS_PLUS] = ACTIONS(473), - [anon_sym_DASH_DASH] = ACTIONS(473), - [anon_sym_new] = ACTIONS(475), - [anon_sym_class] = ACTIONS(475), - [anon_sym_switch] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(473), - [anon_sym_RBRACE] = ACTIONS(473), - [anon_sym_case] = ACTIONS(475), - [anon_sym_default] = ACTIONS(475), - [anon_sym_SEMI] = ACTIONS(473), - [anon_sym_assert] = ACTIONS(475), - [anon_sym_do] = ACTIONS(475), - [anon_sym_while] = ACTIONS(475), - [anon_sym_break] = ACTIONS(475), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_return] = ACTIONS(475), - [anon_sym_yield] = ACTIONS(475), - [anon_sym_synchronized] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(475), - [anon_sym_try] = ACTIONS(475), - [anon_sym_if] = ACTIONS(475), - [anon_sym_else] = ACTIONS(475), - [anon_sym_for] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_open] = ACTIONS(475), - [anon_sym_module] = ACTIONS(475), - [anon_sym_static] = ACTIONS(475), - [anon_sym_package] = ACTIONS(475), - [anon_sym_import] = ACTIONS(475), - [anon_sym_enum] = ACTIONS(475), - [anon_sym_public] = ACTIONS(475), - [anon_sym_protected] = ACTIONS(475), - [anon_sym_private] = ACTIONS(475), - [anon_sym_abstract] = ACTIONS(475), - [anon_sym_final] = ACTIONS(475), - [anon_sym_strictfp] = ACTIONS(475), - [anon_sym_native] = ACTIONS(475), - [anon_sym_transient] = ACTIONS(475), - [anon_sym_volatile] = ACTIONS(475), - [anon_sym_sealed] = ACTIONS(475), - [anon_sym_non_DASHsealed] = ACTIONS(473), - [anon_sym_record] = ACTIONS(475), - [anon_sym_ATinterface] = ACTIONS(473), - [anon_sym_interface] = ACTIONS(475), - [anon_sym_byte] = ACTIONS(475), - [anon_sym_short] = ACTIONS(475), - [anon_sym_int] = ACTIONS(475), - [anon_sym_long] = ACTIONS(475), - [anon_sym_char] = ACTIONS(475), - [anon_sym_float] = ACTIONS(475), - [anon_sym_double] = ACTIONS(475), - [sym_boolean_type] = ACTIONS(475), - [sym_void_type] = ACTIONS(475), - [sym_this] = ACTIONS(475), - [sym_super] = ACTIONS(475), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [105] = { - [ts_builtin_sym_end] = ACTIONS(477), - [sym_identifier] = ACTIONS(479), - [sym_decimal_integer_literal] = ACTIONS(479), - [sym_hex_integer_literal] = ACTIONS(479), - [sym_octal_integer_literal] = ACTIONS(477), - [sym_binary_integer_literal] = ACTIONS(477), - [sym_decimal_floating_point_literal] = ACTIONS(477), - [sym_hex_floating_point_literal] = ACTIONS(479), - [sym_true] = ACTIONS(479), - [sym_false] = ACTIONS(479), - [sym_character_literal] = ACTIONS(477), - [sym_string_literal] = ACTIONS(479), - [sym_text_block] = ACTIONS(477), - [sym_null_literal] = ACTIONS(479), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(477), - [anon_sym_TILDE] = ACTIONS(477), - [anon_sym_PLUS_PLUS] = ACTIONS(477), - [anon_sym_DASH_DASH] = ACTIONS(477), - [anon_sym_new] = ACTIONS(479), - [anon_sym_class] = ACTIONS(479), - [anon_sym_switch] = ACTIONS(479), - [anon_sym_LBRACE] = ACTIONS(477), - [anon_sym_RBRACE] = ACTIONS(477), - [anon_sym_case] = ACTIONS(479), - [anon_sym_default] = ACTIONS(479), - [anon_sym_SEMI] = ACTIONS(477), - [anon_sym_assert] = ACTIONS(479), - [anon_sym_do] = ACTIONS(479), - [anon_sym_while] = ACTIONS(479), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_return] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(479), - [anon_sym_synchronized] = ACTIONS(479), - [anon_sym_throw] = ACTIONS(479), - [anon_sym_try] = ACTIONS(479), - [anon_sym_if] = ACTIONS(479), - [anon_sym_else] = ACTIONS(479), - [anon_sym_for] = ACTIONS(479), - [anon_sym_AT] = ACTIONS(479), - [anon_sym_open] = ACTIONS(479), - [anon_sym_module] = ACTIONS(479), - [anon_sym_static] = ACTIONS(479), - [anon_sym_package] = ACTIONS(479), - [anon_sym_import] = ACTIONS(479), - [anon_sym_enum] = ACTIONS(479), - [anon_sym_public] = ACTIONS(479), - [anon_sym_protected] = ACTIONS(479), - [anon_sym_private] = ACTIONS(479), - [anon_sym_abstract] = ACTIONS(479), - [anon_sym_final] = ACTIONS(479), - [anon_sym_strictfp] = ACTIONS(479), - [anon_sym_native] = ACTIONS(479), - [anon_sym_transient] = ACTIONS(479), - [anon_sym_volatile] = ACTIONS(479), - [anon_sym_sealed] = ACTIONS(479), - [anon_sym_non_DASHsealed] = ACTIONS(477), - [anon_sym_record] = ACTIONS(479), - [anon_sym_ATinterface] = ACTIONS(477), - [anon_sym_interface] = ACTIONS(479), - [anon_sym_byte] = ACTIONS(479), - [anon_sym_short] = ACTIONS(479), - [anon_sym_int] = ACTIONS(479), - [anon_sym_long] = ACTIONS(479), - [anon_sym_char] = ACTIONS(479), - [anon_sym_float] = ACTIONS(479), - [anon_sym_double] = ACTIONS(479), - [sym_boolean_type] = ACTIONS(479), - [sym_void_type] = ACTIONS(479), - [sym_this] = ACTIONS(479), - [sym_super] = ACTIONS(479), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [106] = { - [ts_builtin_sym_end] = ACTIONS(481), - [sym_identifier] = ACTIONS(483), - [sym_decimal_integer_literal] = ACTIONS(483), - [sym_hex_integer_literal] = ACTIONS(483), - [sym_octal_integer_literal] = ACTIONS(481), - [sym_binary_integer_literal] = ACTIONS(481), - [sym_decimal_floating_point_literal] = ACTIONS(481), - [sym_hex_floating_point_literal] = ACTIONS(483), - [sym_true] = ACTIONS(483), - [sym_false] = ACTIONS(483), - [sym_character_literal] = ACTIONS(481), - [sym_string_literal] = ACTIONS(483), - [sym_text_block] = ACTIONS(481), - [sym_null_literal] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(483), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_TILDE] = ACTIONS(481), - [anon_sym_PLUS_PLUS] = ACTIONS(481), - [anon_sym_DASH_DASH] = ACTIONS(481), - [anon_sym_new] = ACTIONS(483), - [anon_sym_class] = ACTIONS(483), - [anon_sym_switch] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(481), - [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_case] = ACTIONS(483), - [anon_sym_default] = ACTIONS(483), - [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_assert] = ACTIONS(483), - [anon_sym_do] = ACTIONS(483), - [anon_sym_while] = ACTIONS(483), - [anon_sym_break] = ACTIONS(483), - [anon_sym_continue] = ACTIONS(483), - [anon_sym_return] = ACTIONS(483), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_synchronized] = ACTIONS(483), - [anon_sym_throw] = ACTIONS(483), - [anon_sym_try] = ACTIONS(483), - [anon_sym_if] = ACTIONS(483), - [anon_sym_else] = ACTIONS(483), - [anon_sym_for] = ACTIONS(483), - [anon_sym_AT] = ACTIONS(483), - [anon_sym_open] = ACTIONS(483), - [anon_sym_module] = ACTIONS(483), - [anon_sym_static] = ACTIONS(483), - [anon_sym_package] = ACTIONS(483), - [anon_sym_import] = ACTIONS(483), - [anon_sym_enum] = ACTIONS(483), - [anon_sym_public] = ACTIONS(483), - [anon_sym_protected] = ACTIONS(483), - [anon_sym_private] = ACTIONS(483), - [anon_sym_abstract] = ACTIONS(483), - [anon_sym_final] = ACTIONS(483), - [anon_sym_strictfp] = ACTIONS(483), - [anon_sym_native] = ACTIONS(483), - [anon_sym_transient] = ACTIONS(483), - [anon_sym_volatile] = ACTIONS(483), - [anon_sym_sealed] = ACTIONS(483), - [anon_sym_non_DASHsealed] = ACTIONS(481), - [anon_sym_record] = ACTIONS(483), - [anon_sym_ATinterface] = ACTIONS(481), - [anon_sym_interface] = ACTIONS(483), - [anon_sym_byte] = ACTIONS(483), - [anon_sym_short] = ACTIONS(483), - [anon_sym_int] = ACTIONS(483), - [anon_sym_long] = ACTIONS(483), - [anon_sym_char] = ACTIONS(483), - [anon_sym_float] = ACTIONS(483), - [anon_sym_double] = ACTIONS(483), - [sym_boolean_type] = ACTIONS(483), - [sym_void_type] = ACTIONS(483), - [sym_this] = ACTIONS(483), - [sym_super] = ACTIONS(483), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [107] = { - [ts_builtin_sym_end] = ACTIONS(485), - [sym_identifier] = ACTIONS(487), - [sym_decimal_integer_literal] = ACTIONS(487), - [sym_hex_integer_literal] = ACTIONS(487), - [sym_octal_integer_literal] = ACTIONS(485), - [sym_binary_integer_literal] = ACTIONS(485), - [sym_decimal_floating_point_literal] = ACTIONS(485), - [sym_hex_floating_point_literal] = ACTIONS(487), - [sym_true] = ACTIONS(487), - [sym_false] = ACTIONS(487), - [sym_character_literal] = ACTIONS(485), - [sym_string_literal] = ACTIONS(487), - [sym_text_block] = ACTIONS(485), - [sym_null_literal] = ACTIONS(487), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(485), - [anon_sym_TILDE] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(485), - [anon_sym_DASH_DASH] = ACTIONS(485), - [anon_sym_new] = ACTIONS(487), - [anon_sym_class] = ACTIONS(487), - [anon_sym_switch] = ACTIONS(487), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_RBRACE] = ACTIONS(485), - [anon_sym_case] = ACTIONS(487), - [anon_sym_default] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(485), - [anon_sym_assert] = ACTIONS(487), - [anon_sym_do] = ACTIONS(487), - [anon_sym_while] = ACTIONS(487), - [anon_sym_break] = ACTIONS(487), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_return] = ACTIONS(487), - [anon_sym_yield] = ACTIONS(487), - [anon_sym_synchronized] = ACTIONS(487), - [anon_sym_throw] = ACTIONS(487), - [anon_sym_try] = ACTIONS(487), - [anon_sym_catch] = ACTIONS(487), - [anon_sym_finally] = ACTIONS(487), - [anon_sym_if] = ACTIONS(487), - [anon_sym_else] = ACTIONS(487), - [anon_sym_for] = ACTIONS(487), - [anon_sym_AT] = ACTIONS(487), - [anon_sym_open] = ACTIONS(487), - [anon_sym_module] = ACTIONS(487), - [anon_sym_static] = ACTIONS(487), - [anon_sym_package] = ACTIONS(487), - [anon_sym_import] = ACTIONS(487), - [anon_sym_enum] = ACTIONS(487), - [anon_sym_public] = ACTIONS(487), - [anon_sym_protected] = ACTIONS(487), - [anon_sym_private] = ACTIONS(487), - [anon_sym_abstract] = ACTIONS(487), - [anon_sym_final] = ACTIONS(487), - [anon_sym_strictfp] = ACTIONS(487), - [anon_sym_native] = ACTIONS(487), - [anon_sym_transient] = ACTIONS(487), - [anon_sym_volatile] = ACTIONS(487), - [anon_sym_sealed] = ACTIONS(487), - [anon_sym_non_DASHsealed] = ACTIONS(485), - [anon_sym_ATinterface] = ACTIONS(485), - [anon_sym_interface] = ACTIONS(487), - [anon_sym_byte] = ACTIONS(487), - [anon_sym_short] = ACTIONS(487), - [anon_sym_int] = ACTIONS(487), - [anon_sym_long] = ACTIONS(487), - [anon_sym_char] = ACTIONS(487), - [anon_sym_float] = ACTIONS(487), - [anon_sym_double] = ACTIONS(487), - [sym_boolean_type] = ACTIONS(487), - [sym_void_type] = ACTIONS(487), - [sym_this] = ACTIONS(487), - [sym_super] = ACTIONS(487), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [108] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(514), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym_array_initializer] = STATE(933), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(549), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(717), + [sym_marker_annotation] = STATE(717), + [sym_annotation] = STATE(717), + [sym__element_value] = STATE(1109), + [sym_element_value_array_initializer] = STATE(1109), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -19383,788 +23206,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_RBRACE] = ACTIONS(493), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [109] = { - [ts_builtin_sym_end] = ACTIONS(495), - [sym_identifier] = ACTIONS(497), - [sym_decimal_integer_literal] = ACTIONS(497), - [sym_hex_integer_literal] = ACTIONS(497), - [sym_octal_integer_literal] = ACTIONS(495), - [sym_binary_integer_literal] = ACTIONS(495), - [sym_decimal_floating_point_literal] = ACTIONS(495), - [sym_hex_floating_point_literal] = ACTIONS(497), - [sym_true] = ACTIONS(497), - [sym_false] = ACTIONS(497), - [sym_character_literal] = ACTIONS(495), - [sym_string_literal] = ACTIONS(497), - [sym_text_block] = ACTIONS(495), - [sym_null_literal] = ACTIONS(497), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LT] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(497), - [anon_sym_DASH] = ACTIONS(497), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_PLUS_PLUS] = ACTIONS(495), - [anon_sym_DASH_DASH] = ACTIONS(495), - [anon_sym_new] = ACTIONS(497), - [anon_sym_class] = ACTIONS(497), - [anon_sym_switch] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(495), - [anon_sym_RBRACE] = ACTIONS(495), - [anon_sym_case] = ACTIONS(497), - [anon_sym_default] = ACTIONS(497), - [anon_sym_SEMI] = ACTIONS(495), - [anon_sym_assert] = ACTIONS(497), - [anon_sym_do] = ACTIONS(497), - [anon_sym_while] = ACTIONS(497), - [anon_sym_break] = ACTIONS(497), - [anon_sym_continue] = ACTIONS(497), - [anon_sym_return] = ACTIONS(497), - [anon_sym_yield] = ACTIONS(497), - [anon_sym_synchronized] = ACTIONS(497), - [anon_sym_throw] = ACTIONS(497), - [anon_sym_try] = ACTIONS(497), - [anon_sym_if] = ACTIONS(497), - [anon_sym_else] = ACTIONS(497), - [anon_sym_for] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(497), - [anon_sym_open] = ACTIONS(497), - [anon_sym_module] = ACTIONS(497), - [anon_sym_static] = ACTIONS(497), - [anon_sym_package] = ACTIONS(497), - [anon_sym_import] = ACTIONS(497), - [anon_sym_enum] = ACTIONS(497), - [anon_sym_public] = ACTIONS(497), - [anon_sym_protected] = ACTIONS(497), - [anon_sym_private] = ACTIONS(497), - [anon_sym_abstract] = ACTIONS(497), - [anon_sym_final] = ACTIONS(497), - [anon_sym_strictfp] = ACTIONS(497), - [anon_sym_native] = ACTIONS(497), - [anon_sym_transient] = ACTIONS(497), - [anon_sym_volatile] = ACTIONS(497), - [anon_sym_sealed] = ACTIONS(497), - [anon_sym_non_DASHsealed] = ACTIONS(495), - [anon_sym_record] = ACTIONS(497), - [anon_sym_ATinterface] = ACTIONS(495), - [anon_sym_interface] = ACTIONS(497), - [anon_sym_byte] = ACTIONS(497), - [anon_sym_short] = ACTIONS(497), - [anon_sym_int] = ACTIONS(497), - [anon_sym_long] = ACTIONS(497), - [anon_sym_char] = ACTIONS(497), - [anon_sym_float] = ACTIONS(497), - [anon_sym_double] = ACTIONS(497), - [sym_boolean_type] = ACTIONS(497), - [sym_void_type] = ACTIONS(497), - [sym_this] = ACTIONS(497), - [sym_super] = ACTIONS(497), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [110] = { - [ts_builtin_sym_end] = ACTIONS(499), - [sym_identifier] = ACTIONS(501), - [sym_decimal_integer_literal] = ACTIONS(501), - [sym_hex_integer_literal] = ACTIONS(501), - [sym_octal_integer_literal] = ACTIONS(499), - [sym_binary_integer_literal] = ACTIONS(499), - [sym_decimal_floating_point_literal] = ACTIONS(499), - [sym_hex_floating_point_literal] = ACTIONS(501), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_character_literal] = ACTIONS(499), - [sym_string_literal] = ACTIONS(501), - [sym_text_block] = ACTIONS(499), - [sym_null_literal] = ACTIONS(501), - [anon_sym_LPAREN] = ACTIONS(499), - [anon_sym_LT] = ACTIONS(499), - [anon_sym_PLUS] = ACTIONS(501), - [anon_sym_DASH] = ACTIONS(501), - [anon_sym_BANG] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_new] = ACTIONS(501), - [anon_sym_class] = ACTIONS(501), - [anon_sym_switch] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(499), - [anon_sym_case] = ACTIONS(501), - [anon_sym_default] = ACTIONS(501), - [anon_sym_SEMI] = ACTIONS(499), - [anon_sym_assert] = ACTIONS(501), - [anon_sym_do] = ACTIONS(501), - [anon_sym_while] = ACTIONS(501), - [anon_sym_break] = ACTIONS(501), - [anon_sym_continue] = ACTIONS(501), - [anon_sym_return] = ACTIONS(501), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_synchronized] = ACTIONS(501), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_try] = ACTIONS(501), - [anon_sym_if] = ACTIONS(501), - [anon_sym_else] = ACTIONS(501), - [anon_sym_for] = ACTIONS(501), - [anon_sym_AT] = ACTIONS(501), - [anon_sym_open] = ACTIONS(501), - [anon_sym_module] = ACTIONS(501), - [anon_sym_static] = ACTIONS(501), - [anon_sym_package] = ACTIONS(501), - [anon_sym_import] = ACTIONS(501), - [anon_sym_enum] = ACTIONS(501), - [anon_sym_public] = ACTIONS(501), - [anon_sym_protected] = ACTIONS(501), - [anon_sym_private] = ACTIONS(501), - [anon_sym_abstract] = ACTIONS(501), - [anon_sym_final] = ACTIONS(501), - [anon_sym_strictfp] = ACTIONS(501), - [anon_sym_native] = ACTIONS(501), - [anon_sym_transient] = ACTIONS(501), - [anon_sym_volatile] = ACTIONS(501), - [anon_sym_sealed] = ACTIONS(501), - [anon_sym_non_DASHsealed] = ACTIONS(499), - [anon_sym_record] = ACTIONS(501), - [anon_sym_ATinterface] = ACTIONS(499), - [anon_sym_interface] = ACTIONS(501), - [anon_sym_byte] = ACTIONS(501), - [anon_sym_short] = ACTIONS(501), - [anon_sym_int] = ACTIONS(501), - [anon_sym_long] = ACTIONS(501), - [anon_sym_char] = ACTIONS(501), - [anon_sym_float] = ACTIONS(501), - [anon_sym_double] = ACTIONS(501), - [sym_boolean_type] = ACTIONS(501), - [sym_void_type] = ACTIONS(501), - [sym_this] = ACTIONS(501), - [sym_super] = ACTIONS(501), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [111] = { - [ts_builtin_sym_end] = ACTIONS(503), - [sym_identifier] = ACTIONS(505), - [sym_decimal_integer_literal] = ACTIONS(505), - [sym_hex_integer_literal] = ACTIONS(505), - [sym_octal_integer_literal] = ACTIONS(503), - [sym_binary_integer_literal] = ACTIONS(503), - [sym_decimal_floating_point_literal] = ACTIONS(503), - [sym_hex_floating_point_literal] = ACTIONS(505), - [sym_true] = ACTIONS(505), - [sym_false] = ACTIONS(505), - [sym_character_literal] = ACTIONS(503), - [sym_string_literal] = ACTIONS(505), - [sym_text_block] = ACTIONS(503), - [sym_null_literal] = ACTIONS(505), - [anon_sym_LPAREN] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(505), - [anon_sym_DASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_TILDE] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(503), - [anon_sym_DASH_DASH] = ACTIONS(503), - [anon_sym_new] = ACTIONS(505), - [anon_sym_class] = ACTIONS(505), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_LBRACE] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(503), - [anon_sym_case] = ACTIONS(505), - [anon_sym_default] = ACTIONS(505), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_assert] = ACTIONS(505), - [anon_sym_do] = ACTIONS(505), - [anon_sym_while] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_return] = ACTIONS(505), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_synchronized] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(505), - [anon_sym_try] = ACTIONS(505), - [anon_sym_if] = ACTIONS(505), - [anon_sym_else] = ACTIONS(505), - [anon_sym_for] = ACTIONS(505), - [anon_sym_AT] = ACTIONS(505), - [anon_sym_open] = ACTIONS(505), - [anon_sym_module] = ACTIONS(505), - [anon_sym_static] = ACTIONS(505), - [anon_sym_package] = ACTIONS(505), - [anon_sym_import] = ACTIONS(505), - [anon_sym_enum] = ACTIONS(505), - [anon_sym_public] = ACTIONS(505), - [anon_sym_protected] = ACTIONS(505), - [anon_sym_private] = ACTIONS(505), - [anon_sym_abstract] = ACTIONS(505), - [anon_sym_final] = ACTIONS(505), - [anon_sym_strictfp] = ACTIONS(505), - [anon_sym_native] = ACTIONS(505), - [anon_sym_transient] = ACTIONS(505), - [anon_sym_volatile] = ACTIONS(505), - [anon_sym_sealed] = ACTIONS(505), - [anon_sym_non_DASHsealed] = ACTIONS(503), - [anon_sym_record] = ACTIONS(505), - [anon_sym_ATinterface] = ACTIONS(503), - [anon_sym_interface] = ACTIONS(505), - [anon_sym_byte] = ACTIONS(505), - [anon_sym_short] = ACTIONS(505), - [anon_sym_int] = ACTIONS(505), - [anon_sym_long] = ACTIONS(505), - [anon_sym_char] = ACTIONS(505), - [anon_sym_float] = ACTIONS(505), - [anon_sym_double] = ACTIONS(505), - [sym_boolean_type] = ACTIONS(505), - [sym_void_type] = ACTIONS(505), - [sym_this] = ACTIONS(505), - [sym_super] = ACTIONS(505), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [112] = { - [ts_builtin_sym_end] = ACTIONS(507), - [sym_identifier] = ACTIONS(509), - [sym_decimal_integer_literal] = ACTIONS(509), - [sym_hex_integer_literal] = ACTIONS(509), - [sym_octal_integer_literal] = ACTIONS(507), - [sym_binary_integer_literal] = ACTIONS(507), - [sym_decimal_floating_point_literal] = ACTIONS(507), - [sym_hex_floating_point_literal] = ACTIONS(509), - [sym_true] = ACTIONS(509), - [sym_false] = ACTIONS(509), - [sym_character_literal] = ACTIONS(507), - [sym_string_literal] = ACTIONS(509), - [sym_text_block] = ACTIONS(507), - [sym_null_literal] = ACTIONS(509), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(509), - [anon_sym_DASH] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(507), - [anon_sym_DASH_DASH] = ACTIONS(507), - [anon_sym_new] = ACTIONS(509), - [anon_sym_class] = ACTIONS(509), - [anon_sym_switch] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(507), - [anon_sym_RBRACE] = ACTIONS(507), - [anon_sym_case] = ACTIONS(509), - [anon_sym_default] = ACTIONS(509), - [anon_sym_SEMI] = ACTIONS(507), - [anon_sym_assert] = ACTIONS(509), - [anon_sym_do] = ACTIONS(509), - [anon_sym_while] = ACTIONS(509), - [anon_sym_break] = ACTIONS(509), - [anon_sym_continue] = ACTIONS(509), - [anon_sym_return] = ACTIONS(509), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_synchronized] = ACTIONS(509), - [anon_sym_throw] = ACTIONS(509), - [anon_sym_try] = ACTIONS(509), - [anon_sym_if] = ACTIONS(509), - [anon_sym_else] = ACTIONS(509), - [anon_sym_for] = ACTIONS(509), - [anon_sym_AT] = ACTIONS(509), - [anon_sym_open] = ACTIONS(509), - [anon_sym_module] = ACTIONS(509), - [anon_sym_static] = ACTIONS(509), - [anon_sym_package] = ACTIONS(509), - [anon_sym_import] = ACTIONS(509), - [anon_sym_enum] = ACTIONS(509), - [anon_sym_public] = ACTIONS(509), - [anon_sym_protected] = ACTIONS(509), - [anon_sym_private] = ACTIONS(509), - [anon_sym_abstract] = ACTIONS(509), - [anon_sym_final] = ACTIONS(509), - [anon_sym_strictfp] = ACTIONS(509), - [anon_sym_native] = ACTIONS(509), - [anon_sym_transient] = ACTIONS(509), - [anon_sym_volatile] = ACTIONS(509), - [anon_sym_sealed] = ACTIONS(509), - [anon_sym_non_DASHsealed] = ACTIONS(507), - [anon_sym_record] = ACTIONS(509), - [anon_sym_ATinterface] = ACTIONS(507), - [anon_sym_interface] = ACTIONS(509), - [anon_sym_byte] = ACTIONS(509), - [anon_sym_short] = ACTIONS(509), - [anon_sym_int] = ACTIONS(509), - [anon_sym_long] = ACTIONS(509), - [anon_sym_char] = ACTIONS(509), - [anon_sym_float] = ACTIONS(509), - [anon_sym_double] = ACTIONS(509), - [sym_boolean_type] = ACTIONS(509), - [sym_void_type] = ACTIONS(509), - [sym_this] = ACTIONS(509), - [sym_super] = ACTIONS(509), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [113] = { - [ts_builtin_sym_end] = ACTIONS(511), - [sym_identifier] = ACTIONS(513), - [sym_decimal_integer_literal] = ACTIONS(513), - [sym_hex_integer_literal] = ACTIONS(513), - [sym_octal_integer_literal] = ACTIONS(511), - [sym_binary_integer_literal] = ACTIONS(511), - [sym_decimal_floating_point_literal] = ACTIONS(511), - [sym_hex_floating_point_literal] = ACTIONS(513), - [sym_true] = ACTIONS(513), - [sym_false] = ACTIONS(513), - [sym_character_literal] = ACTIONS(511), - [sym_string_literal] = ACTIONS(513), - [sym_text_block] = ACTIONS(511), - [sym_null_literal] = ACTIONS(513), - [anon_sym_LPAREN] = ACTIONS(511), - [anon_sym_LT] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(513), - [anon_sym_DASH] = ACTIONS(513), - [anon_sym_BANG] = ACTIONS(511), - [anon_sym_TILDE] = ACTIONS(511), - [anon_sym_PLUS_PLUS] = ACTIONS(511), - [anon_sym_DASH_DASH] = ACTIONS(511), - [anon_sym_new] = ACTIONS(513), - [anon_sym_class] = ACTIONS(513), - [anon_sym_switch] = ACTIONS(513), - [anon_sym_LBRACE] = ACTIONS(511), - [anon_sym_RBRACE] = ACTIONS(511), - [anon_sym_case] = ACTIONS(513), - [anon_sym_default] = ACTIONS(513), - [anon_sym_SEMI] = ACTIONS(511), - [anon_sym_assert] = ACTIONS(513), - [anon_sym_do] = ACTIONS(513), - [anon_sym_while] = ACTIONS(513), - [anon_sym_break] = ACTIONS(513), - [anon_sym_continue] = ACTIONS(513), - [anon_sym_return] = ACTIONS(513), - [anon_sym_yield] = ACTIONS(513), - [anon_sym_synchronized] = ACTIONS(513), - [anon_sym_throw] = ACTIONS(513), - [anon_sym_try] = ACTIONS(513), - [anon_sym_if] = ACTIONS(513), - [anon_sym_else] = ACTIONS(513), - [anon_sym_for] = ACTIONS(513), - [anon_sym_AT] = ACTIONS(513), - [anon_sym_open] = ACTIONS(513), - [anon_sym_module] = ACTIONS(513), - [anon_sym_static] = ACTIONS(513), - [anon_sym_package] = ACTIONS(513), - [anon_sym_import] = ACTIONS(513), - [anon_sym_enum] = ACTIONS(513), - [anon_sym_public] = ACTIONS(513), - [anon_sym_protected] = ACTIONS(513), - [anon_sym_private] = ACTIONS(513), - [anon_sym_abstract] = ACTIONS(513), - [anon_sym_final] = ACTIONS(513), - [anon_sym_strictfp] = ACTIONS(513), - [anon_sym_native] = ACTIONS(513), - [anon_sym_transient] = ACTIONS(513), - [anon_sym_volatile] = ACTIONS(513), - [anon_sym_sealed] = ACTIONS(513), - [anon_sym_non_DASHsealed] = ACTIONS(511), - [anon_sym_record] = ACTIONS(513), - [anon_sym_ATinterface] = ACTIONS(511), - [anon_sym_interface] = ACTIONS(513), - [anon_sym_byte] = ACTIONS(513), - [anon_sym_short] = ACTIONS(513), - [anon_sym_int] = ACTIONS(513), - [anon_sym_long] = ACTIONS(513), - [anon_sym_char] = ACTIONS(513), - [anon_sym_float] = ACTIONS(513), - [anon_sym_double] = ACTIONS(513), - [sym_boolean_type] = ACTIONS(513), - [sym_void_type] = ACTIONS(513), - [sym_this] = ACTIONS(513), - [sym_super] = ACTIONS(513), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [114] = { - [ts_builtin_sym_end] = ACTIONS(515), - [sym_identifier] = ACTIONS(517), - [sym_decimal_integer_literal] = ACTIONS(517), - [sym_hex_integer_literal] = ACTIONS(517), - [sym_octal_integer_literal] = ACTIONS(515), - [sym_binary_integer_literal] = ACTIONS(515), - [sym_decimal_floating_point_literal] = ACTIONS(515), - [sym_hex_floating_point_literal] = ACTIONS(517), - [sym_true] = ACTIONS(517), - [sym_false] = ACTIONS(517), - [sym_character_literal] = ACTIONS(515), - [sym_string_literal] = ACTIONS(517), - [sym_text_block] = ACTIONS(515), - [sym_null_literal] = ACTIONS(517), - [anon_sym_LPAREN] = ACTIONS(515), - [anon_sym_LT] = ACTIONS(515), - [anon_sym_PLUS] = ACTIONS(517), - [anon_sym_DASH] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_TILDE] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(515), - [anon_sym_DASH_DASH] = ACTIONS(515), - [anon_sym_new] = ACTIONS(517), - [anon_sym_class] = ACTIONS(517), - [anon_sym_switch] = ACTIONS(517), - [anon_sym_LBRACE] = ACTIONS(515), - [anon_sym_RBRACE] = ACTIONS(515), - [anon_sym_case] = ACTIONS(517), - [anon_sym_default] = ACTIONS(517), - [anon_sym_SEMI] = ACTIONS(515), - [anon_sym_assert] = ACTIONS(517), - [anon_sym_do] = ACTIONS(517), - [anon_sym_while] = ACTIONS(517), - [anon_sym_break] = ACTIONS(517), - [anon_sym_continue] = ACTIONS(517), - [anon_sym_return] = ACTIONS(517), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_synchronized] = ACTIONS(517), - [anon_sym_throw] = ACTIONS(517), - [anon_sym_try] = ACTIONS(517), - [anon_sym_if] = ACTIONS(517), - [anon_sym_else] = ACTIONS(517), - [anon_sym_for] = ACTIONS(517), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_open] = ACTIONS(517), - [anon_sym_module] = ACTIONS(517), - [anon_sym_static] = ACTIONS(517), - [anon_sym_package] = ACTIONS(517), - [anon_sym_import] = ACTIONS(517), - [anon_sym_enum] = ACTIONS(517), - [anon_sym_public] = ACTIONS(517), - [anon_sym_protected] = ACTIONS(517), - [anon_sym_private] = ACTIONS(517), - [anon_sym_abstract] = ACTIONS(517), - [anon_sym_final] = ACTIONS(517), - [anon_sym_strictfp] = ACTIONS(517), - [anon_sym_native] = ACTIONS(517), - [anon_sym_transient] = ACTIONS(517), - [anon_sym_volatile] = ACTIONS(517), - [anon_sym_sealed] = ACTIONS(517), - [anon_sym_non_DASHsealed] = ACTIONS(515), - [anon_sym_record] = ACTIONS(517), - [anon_sym_ATinterface] = ACTIONS(515), - [anon_sym_interface] = ACTIONS(517), - [anon_sym_byte] = ACTIONS(517), - [anon_sym_short] = ACTIONS(517), - [anon_sym_int] = ACTIONS(517), - [anon_sym_long] = ACTIONS(517), - [anon_sym_char] = ACTIONS(517), - [anon_sym_float] = ACTIONS(517), - [anon_sym_double] = ACTIONS(517), - [sym_boolean_type] = ACTIONS(517), - [sym_void_type] = ACTIONS(517), - [sym_this] = ACTIONS(517), - [sym_super] = ACTIONS(517), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [115] = { - [ts_builtin_sym_end] = ACTIONS(519), - [sym_identifier] = ACTIONS(521), - [sym_decimal_integer_literal] = ACTIONS(521), - [sym_hex_integer_literal] = ACTIONS(521), - [sym_octal_integer_literal] = ACTIONS(519), - [sym_binary_integer_literal] = ACTIONS(519), - [sym_decimal_floating_point_literal] = ACTIONS(519), - [sym_hex_floating_point_literal] = ACTIONS(521), - [sym_true] = ACTIONS(521), - [sym_false] = ACTIONS(521), - [sym_character_literal] = ACTIONS(519), - [sym_string_literal] = ACTIONS(521), - [sym_text_block] = ACTIONS(519), - [sym_null_literal] = ACTIONS(521), - [anon_sym_LPAREN] = ACTIONS(519), - [anon_sym_LT] = ACTIONS(519), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(519), - [anon_sym_TILDE] = ACTIONS(519), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_new] = ACTIONS(521), - [anon_sym_class] = ACTIONS(521), - [anon_sym_switch] = ACTIONS(521), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_RBRACE] = ACTIONS(519), - [anon_sym_case] = ACTIONS(521), - [anon_sym_default] = ACTIONS(521), - [anon_sym_SEMI] = ACTIONS(519), - [anon_sym_assert] = ACTIONS(521), - [anon_sym_do] = ACTIONS(521), - [anon_sym_while] = ACTIONS(521), - [anon_sym_break] = ACTIONS(521), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_return] = ACTIONS(521), - [anon_sym_yield] = ACTIONS(521), - [anon_sym_synchronized] = ACTIONS(521), - [anon_sym_throw] = ACTIONS(521), - [anon_sym_try] = ACTIONS(521), - [anon_sym_if] = ACTIONS(521), - [anon_sym_else] = ACTIONS(521), - [anon_sym_for] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(521), - [anon_sym_open] = ACTIONS(521), - [anon_sym_module] = ACTIONS(521), - [anon_sym_static] = ACTIONS(521), - [anon_sym_package] = ACTIONS(521), - [anon_sym_import] = ACTIONS(521), - [anon_sym_enum] = ACTIONS(521), - [anon_sym_public] = ACTIONS(521), - [anon_sym_protected] = ACTIONS(521), - [anon_sym_private] = ACTIONS(521), - [anon_sym_abstract] = ACTIONS(521), - [anon_sym_final] = ACTIONS(521), - [anon_sym_strictfp] = ACTIONS(521), - [anon_sym_native] = ACTIONS(521), - [anon_sym_transient] = ACTIONS(521), - [anon_sym_volatile] = ACTIONS(521), - [anon_sym_sealed] = ACTIONS(521), - [anon_sym_non_DASHsealed] = ACTIONS(519), - [anon_sym_record] = ACTIONS(521), - [anon_sym_ATinterface] = ACTIONS(519), - [anon_sym_interface] = ACTIONS(521), - [anon_sym_byte] = ACTIONS(521), - [anon_sym_short] = ACTIONS(521), - [anon_sym_int] = ACTIONS(521), - [anon_sym_long] = ACTIONS(521), - [anon_sym_char] = ACTIONS(521), - [anon_sym_float] = ACTIONS(521), - [anon_sym_double] = ACTIONS(521), - [sym_boolean_type] = ACTIONS(521), - [sym_void_type] = ACTIONS(521), - [sym_this] = ACTIONS(521), - [sym_super] = ACTIONS(521), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [116] = { - [ts_builtin_sym_end] = ACTIONS(523), - [sym_identifier] = ACTIONS(525), - [sym_decimal_integer_literal] = ACTIONS(525), - [sym_hex_integer_literal] = ACTIONS(525), - [sym_octal_integer_literal] = ACTIONS(523), - [sym_binary_integer_literal] = ACTIONS(523), - [sym_decimal_floating_point_literal] = ACTIONS(523), - [sym_hex_floating_point_literal] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_character_literal] = ACTIONS(523), - [sym_string_literal] = ACTIONS(525), - [sym_text_block] = ACTIONS(523), - [sym_null_literal] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(523), - [anon_sym_LT] = ACTIONS(523), - [anon_sym_PLUS] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(525), - [anon_sym_BANG] = ACTIONS(523), - [anon_sym_TILDE] = ACTIONS(523), - [anon_sym_PLUS_PLUS] = ACTIONS(523), - [anon_sym_DASH_DASH] = ACTIONS(523), - [anon_sym_new] = ACTIONS(525), - [anon_sym_class] = ACTIONS(525), - [anon_sym_switch] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(523), - [anon_sym_RBRACE] = ACTIONS(523), - [anon_sym_case] = ACTIONS(525), - [anon_sym_default] = ACTIONS(525), - [anon_sym_SEMI] = ACTIONS(523), - [anon_sym_assert] = ACTIONS(525), - [anon_sym_do] = ACTIONS(525), - [anon_sym_while] = ACTIONS(525), - [anon_sym_break] = ACTIONS(525), - [anon_sym_continue] = ACTIONS(525), - [anon_sym_return] = ACTIONS(525), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_synchronized] = ACTIONS(525), - [anon_sym_throw] = ACTIONS(525), - [anon_sym_try] = ACTIONS(525), - [anon_sym_if] = ACTIONS(525), - [anon_sym_else] = ACTIONS(525), - [anon_sym_for] = ACTIONS(525), - [anon_sym_AT] = ACTIONS(525), - [anon_sym_open] = ACTIONS(525), - [anon_sym_module] = ACTIONS(525), - [anon_sym_static] = ACTIONS(525), - [anon_sym_package] = ACTIONS(525), - [anon_sym_import] = ACTIONS(525), - [anon_sym_enum] = ACTIONS(525), - [anon_sym_public] = ACTIONS(525), - [anon_sym_protected] = ACTIONS(525), - [anon_sym_private] = ACTIONS(525), - [anon_sym_abstract] = ACTIONS(525), - [anon_sym_final] = ACTIONS(525), - [anon_sym_strictfp] = ACTIONS(525), - [anon_sym_native] = ACTIONS(525), - [anon_sym_transient] = ACTIONS(525), - [anon_sym_volatile] = ACTIONS(525), - [anon_sym_sealed] = ACTIONS(525), - [anon_sym_non_DASHsealed] = ACTIONS(523), - [anon_sym_record] = ACTIONS(525), - [anon_sym_ATinterface] = ACTIONS(523), - [anon_sym_interface] = ACTIONS(525), - [anon_sym_byte] = ACTIONS(525), - [anon_sym_short] = ACTIONS(525), - [anon_sym_int] = ACTIONS(525), - [anon_sym_long] = ACTIONS(525), - [anon_sym_char] = ACTIONS(525), - [anon_sym_float] = ACTIONS(525), - [anon_sym_double] = ACTIONS(525), - [sym_boolean_type] = ACTIONS(525), - [sym_void_type] = ACTIONS(525), - [sym_this] = ACTIONS(525), - [sym_super] = ACTIONS(525), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [117] = { - [ts_builtin_sym_end] = ACTIONS(527), - [sym_identifier] = ACTIONS(529), - [sym_decimal_integer_literal] = ACTIONS(529), - [sym_hex_integer_literal] = ACTIONS(529), - [sym_octal_integer_literal] = ACTIONS(527), - [sym_binary_integer_literal] = ACTIONS(527), - [sym_decimal_floating_point_literal] = ACTIONS(527), - [sym_hex_floating_point_literal] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [sym_character_literal] = ACTIONS(527), - [sym_string_literal] = ACTIONS(529), - [sym_text_block] = ACTIONS(527), - [sym_null_literal] = ACTIONS(529), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_BANG] = ACTIONS(527), - [anon_sym_TILDE] = ACTIONS(527), - [anon_sym_PLUS_PLUS] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(527), - [anon_sym_new] = ACTIONS(529), - [anon_sym_class] = ACTIONS(529), - [anon_sym_switch] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_RBRACE] = ACTIONS(527), - [anon_sym_case] = ACTIONS(529), - [anon_sym_default] = ACTIONS(529), - [anon_sym_SEMI] = ACTIONS(527), - [anon_sym_assert] = ACTIONS(529), - [anon_sym_do] = ACTIONS(529), - [anon_sym_while] = ACTIONS(529), - [anon_sym_break] = ACTIONS(529), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_return] = ACTIONS(529), - [anon_sym_yield] = ACTIONS(529), - [anon_sym_synchronized] = ACTIONS(529), - [anon_sym_throw] = ACTIONS(529), - [anon_sym_try] = ACTIONS(529), - [anon_sym_if] = ACTIONS(529), - [anon_sym_else] = ACTIONS(529), - [anon_sym_for] = ACTIONS(529), - [anon_sym_AT] = ACTIONS(529), - [anon_sym_open] = ACTIONS(529), - [anon_sym_module] = ACTIONS(529), - [anon_sym_static] = ACTIONS(529), - [anon_sym_package] = ACTIONS(529), - [anon_sym_import] = ACTIONS(529), - [anon_sym_enum] = ACTIONS(529), - [anon_sym_public] = ACTIONS(529), - [anon_sym_protected] = ACTIONS(529), - [anon_sym_private] = ACTIONS(529), - [anon_sym_abstract] = ACTIONS(529), - [anon_sym_final] = ACTIONS(529), - [anon_sym_strictfp] = ACTIONS(529), - [anon_sym_native] = ACTIONS(529), - [anon_sym_transient] = ACTIONS(529), - [anon_sym_volatile] = ACTIONS(529), - [anon_sym_sealed] = ACTIONS(529), - [anon_sym_non_DASHsealed] = ACTIONS(527), - [anon_sym_record] = ACTIONS(529), - [anon_sym_ATinterface] = ACTIONS(527), - [anon_sym_interface] = ACTIONS(529), - [anon_sym_byte] = ACTIONS(529), - [anon_sym_short] = ACTIONS(529), - [anon_sym_int] = ACTIONS(529), - [anon_sym_long] = ACTIONS(529), - [anon_sym_char] = ACTIONS(529), - [anon_sym_float] = ACTIONS(529), - [anon_sym_double] = ACTIONS(529), - [sym_boolean_type] = ACTIONS(529), - [sym_void_type] = ACTIONS(529), - [sym_this] = ACTIONS(529), - [sym_super] = ACTIONS(529), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(365), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [118] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym__element_value] = STATE(975), - [sym_element_value_array_initializer] = STATE(975), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [99] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(549), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(717), + [sym_marker_annotation] = STATE(717), + [sym_annotation] = STATE(717), + [sym__element_value] = STATE(1211), + [sym_element_value_array_initializer] = STATE(1211), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -20174,1340 +23289,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_RBRACE] = ACTIONS(531), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [119] = { - [ts_builtin_sym_end] = ACTIONS(533), - [sym_identifier] = ACTIONS(535), - [sym_decimal_integer_literal] = ACTIONS(535), - [sym_hex_integer_literal] = ACTIONS(535), - [sym_octal_integer_literal] = ACTIONS(533), - [sym_binary_integer_literal] = ACTIONS(533), - [sym_decimal_floating_point_literal] = ACTIONS(533), - [sym_hex_floating_point_literal] = ACTIONS(535), - [sym_true] = ACTIONS(535), - [sym_false] = ACTIONS(535), - [sym_character_literal] = ACTIONS(533), - [sym_string_literal] = ACTIONS(535), - [sym_text_block] = ACTIONS(533), - [sym_null_literal] = ACTIONS(535), - [anon_sym_LPAREN] = ACTIONS(533), - [anon_sym_LT] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(535), - [anon_sym_DASH] = ACTIONS(535), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(533), - [anon_sym_PLUS_PLUS] = ACTIONS(533), - [anon_sym_DASH_DASH] = ACTIONS(533), - [anon_sym_new] = ACTIONS(535), - [anon_sym_class] = ACTIONS(535), - [anon_sym_switch] = ACTIONS(535), - [anon_sym_LBRACE] = ACTIONS(533), - [anon_sym_RBRACE] = ACTIONS(533), - [anon_sym_case] = ACTIONS(535), - [anon_sym_default] = ACTIONS(535), - [anon_sym_SEMI] = ACTIONS(533), - [anon_sym_assert] = ACTIONS(535), - [anon_sym_do] = ACTIONS(535), - [anon_sym_while] = ACTIONS(535), - [anon_sym_break] = ACTIONS(535), - [anon_sym_continue] = ACTIONS(535), - [anon_sym_return] = ACTIONS(535), - [anon_sym_yield] = ACTIONS(535), - [anon_sym_synchronized] = ACTIONS(535), - [anon_sym_throw] = ACTIONS(535), - [anon_sym_try] = ACTIONS(535), - [anon_sym_if] = ACTIONS(535), - [anon_sym_else] = ACTIONS(535), - [anon_sym_for] = ACTIONS(535), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_open] = ACTIONS(535), - [anon_sym_module] = ACTIONS(535), - [anon_sym_static] = ACTIONS(535), - [anon_sym_package] = ACTIONS(535), - [anon_sym_import] = ACTIONS(535), - [anon_sym_enum] = ACTIONS(535), - [anon_sym_public] = ACTIONS(535), - [anon_sym_protected] = ACTIONS(535), - [anon_sym_private] = ACTIONS(535), - [anon_sym_abstract] = ACTIONS(535), - [anon_sym_final] = ACTIONS(535), - [anon_sym_strictfp] = ACTIONS(535), - [anon_sym_native] = ACTIONS(535), - [anon_sym_transient] = ACTIONS(535), - [anon_sym_volatile] = ACTIONS(535), - [anon_sym_sealed] = ACTIONS(535), - [anon_sym_non_DASHsealed] = ACTIONS(533), - [anon_sym_record] = ACTIONS(535), - [anon_sym_ATinterface] = ACTIONS(533), - [anon_sym_interface] = ACTIONS(535), - [anon_sym_byte] = ACTIONS(535), - [anon_sym_short] = ACTIONS(535), - [anon_sym_int] = ACTIONS(535), - [anon_sym_long] = ACTIONS(535), - [anon_sym_char] = ACTIONS(535), - [anon_sym_float] = ACTIONS(535), - [anon_sym_double] = ACTIONS(535), - [sym_boolean_type] = ACTIONS(535), - [sym_void_type] = ACTIONS(535), - [sym_this] = ACTIONS(535), - [sym_super] = ACTIONS(535), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [120] = { - [ts_builtin_sym_end] = ACTIONS(537), - [sym_identifier] = ACTIONS(539), - [sym_decimal_integer_literal] = ACTIONS(539), - [sym_hex_integer_literal] = ACTIONS(539), - [sym_octal_integer_literal] = ACTIONS(537), - [sym_binary_integer_literal] = ACTIONS(537), - [sym_decimal_floating_point_literal] = ACTIONS(537), - [sym_hex_floating_point_literal] = ACTIONS(539), - [sym_true] = ACTIONS(539), - [sym_false] = ACTIONS(539), - [sym_character_literal] = ACTIONS(537), - [sym_string_literal] = ACTIONS(539), - [sym_text_block] = ACTIONS(537), - [sym_null_literal] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(537), - [anon_sym_LT] = ACTIONS(537), - [anon_sym_PLUS] = ACTIONS(539), - [anon_sym_DASH] = ACTIONS(539), - [anon_sym_BANG] = ACTIONS(537), - [anon_sym_TILDE] = ACTIONS(537), - [anon_sym_PLUS_PLUS] = ACTIONS(537), - [anon_sym_DASH_DASH] = ACTIONS(537), - [anon_sym_new] = ACTIONS(539), - [anon_sym_class] = ACTIONS(539), - [anon_sym_switch] = ACTIONS(539), - [anon_sym_LBRACE] = ACTIONS(537), - [anon_sym_RBRACE] = ACTIONS(537), - [anon_sym_case] = ACTIONS(539), - [anon_sym_default] = ACTIONS(539), - [anon_sym_SEMI] = ACTIONS(537), - [anon_sym_assert] = ACTIONS(539), - [anon_sym_do] = ACTIONS(539), - [anon_sym_while] = ACTIONS(539), - [anon_sym_break] = ACTIONS(539), - [anon_sym_continue] = ACTIONS(539), - [anon_sym_return] = ACTIONS(539), - [anon_sym_yield] = ACTIONS(539), - [anon_sym_synchronized] = ACTIONS(539), - [anon_sym_throw] = ACTIONS(539), - [anon_sym_try] = ACTIONS(539), - [anon_sym_if] = ACTIONS(539), - [anon_sym_else] = ACTIONS(539), - [anon_sym_for] = ACTIONS(539), - [anon_sym_AT] = ACTIONS(539), - [anon_sym_open] = ACTIONS(539), - [anon_sym_module] = ACTIONS(539), - [anon_sym_static] = ACTIONS(539), - [anon_sym_package] = ACTIONS(539), - [anon_sym_import] = ACTIONS(539), - [anon_sym_enum] = ACTIONS(539), - [anon_sym_public] = ACTIONS(539), - [anon_sym_protected] = ACTIONS(539), - [anon_sym_private] = ACTIONS(539), - [anon_sym_abstract] = ACTIONS(539), - [anon_sym_final] = ACTIONS(539), - [anon_sym_strictfp] = ACTIONS(539), - [anon_sym_native] = ACTIONS(539), - [anon_sym_transient] = ACTIONS(539), - [anon_sym_volatile] = ACTIONS(539), - [anon_sym_sealed] = ACTIONS(539), - [anon_sym_non_DASHsealed] = ACTIONS(537), - [anon_sym_record] = ACTIONS(539), - [anon_sym_ATinterface] = ACTIONS(537), - [anon_sym_interface] = ACTIONS(539), - [anon_sym_byte] = ACTIONS(539), - [anon_sym_short] = ACTIONS(539), - [anon_sym_int] = ACTIONS(539), - [anon_sym_long] = ACTIONS(539), - [anon_sym_char] = ACTIONS(539), - [anon_sym_float] = ACTIONS(539), - [anon_sym_double] = ACTIONS(539), - [sym_boolean_type] = ACTIONS(539), - [sym_void_type] = ACTIONS(539), - [sym_this] = ACTIONS(539), - [sym_super] = ACTIONS(539), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [121] = { - [ts_builtin_sym_end] = ACTIONS(541), - [sym_identifier] = ACTIONS(543), - [sym_decimal_integer_literal] = ACTIONS(543), - [sym_hex_integer_literal] = ACTIONS(543), - [sym_octal_integer_literal] = ACTIONS(541), - [sym_binary_integer_literal] = ACTIONS(541), - [sym_decimal_floating_point_literal] = ACTIONS(541), - [sym_hex_floating_point_literal] = ACTIONS(543), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_character_literal] = ACTIONS(541), - [sym_string_literal] = ACTIONS(543), - [sym_text_block] = ACTIONS(541), - [sym_null_literal] = ACTIONS(543), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_LT] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(543), - [anon_sym_BANG] = ACTIONS(541), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_PLUS_PLUS] = ACTIONS(541), - [anon_sym_DASH_DASH] = ACTIONS(541), - [anon_sym_new] = ACTIONS(543), - [anon_sym_class] = ACTIONS(543), - [anon_sym_switch] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(541), - [anon_sym_RBRACE] = ACTIONS(541), - [anon_sym_case] = ACTIONS(543), - [anon_sym_default] = ACTIONS(543), - [anon_sym_SEMI] = ACTIONS(541), - [anon_sym_assert] = ACTIONS(543), - [anon_sym_do] = ACTIONS(543), - [anon_sym_while] = ACTIONS(543), - [anon_sym_break] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(543), - [anon_sym_return] = ACTIONS(543), - [anon_sym_yield] = ACTIONS(543), - [anon_sym_synchronized] = ACTIONS(543), - [anon_sym_throw] = ACTIONS(543), - [anon_sym_try] = ACTIONS(543), - [anon_sym_if] = ACTIONS(543), - [anon_sym_else] = ACTIONS(543), - [anon_sym_for] = ACTIONS(543), - [anon_sym_AT] = ACTIONS(543), - [anon_sym_open] = ACTIONS(543), - [anon_sym_module] = ACTIONS(543), - [anon_sym_static] = ACTIONS(543), - [anon_sym_package] = ACTIONS(543), - [anon_sym_import] = ACTIONS(543), - [anon_sym_enum] = ACTIONS(543), - [anon_sym_public] = ACTIONS(543), - [anon_sym_protected] = ACTIONS(543), - [anon_sym_private] = ACTIONS(543), - [anon_sym_abstract] = ACTIONS(543), - [anon_sym_final] = ACTIONS(543), - [anon_sym_strictfp] = ACTIONS(543), - [anon_sym_native] = ACTIONS(543), - [anon_sym_transient] = ACTIONS(543), - [anon_sym_volatile] = ACTIONS(543), - [anon_sym_sealed] = ACTIONS(543), - [anon_sym_non_DASHsealed] = ACTIONS(541), - [anon_sym_record] = ACTIONS(543), - [anon_sym_ATinterface] = ACTIONS(541), - [anon_sym_interface] = ACTIONS(543), - [anon_sym_byte] = ACTIONS(543), - [anon_sym_short] = ACTIONS(543), - [anon_sym_int] = ACTIONS(543), - [anon_sym_long] = ACTIONS(543), - [anon_sym_char] = ACTIONS(543), - [anon_sym_float] = ACTIONS(543), - [anon_sym_double] = ACTIONS(543), - [sym_boolean_type] = ACTIONS(543), - [sym_void_type] = ACTIONS(543), - [sym_this] = ACTIONS(543), - [sym_super] = ACTIONS(543), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [122] = { - [ts_builtin_sym_end] = ACTIONS(545), - [sym_identifier] = ACTIONS(547), - [sym_decimal_integer_literal] = ACTIONS(547), - [sym_hex_integer_literal] = ACTIONS(547), - [sym_octal_integer_literal] = ACTIONS(545), - [sym_binary_integer_literal] = ACTIONS(545), - [sym_decimal_floating_point_literal] = ACTIONS(545), - [sym_hex_floating_point_literal] = ACTIONS(547), - [sym_true] = ACTIONS(547), - [sym_false] = ACTIONS(547), - [sym_character_literal] = ACTIONS(545), - [sym_string_literal] = ACTIONS(547), - [sym_text_block] = ACTIONS(545), - [sym_null_literal] = ACTIONS(547), - [anon_sym_LPAREN] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_PLUS] = ACTIONS(547), - [anon_sym_DASH] = ACTIONS(547), - [anon_sym_BANG] = ACTIONS(545), - [anon_sym_TILDE] = ACTIONS(545), - [anon_sym_PLUS_PLUS] = ACTIONS(545), - [anon_sym_DASH_DASH] = ACTIONS(545), - [anon_sym_new] = ACTIONS(547), - [anon_sym_class] = ACTIONS(547), - [anon_sym_switch] = ACTIONS(547), - [anon_sym_LBRACE] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(545), - [anon_sym_case] = ACTIONS(547), - [anon_sym_default] = ACTIONS(547), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_assert] = ACTIONS(547), - [anon_sym_do] = ACTIONS(547), - [anon_sym_while] = ACTIONS(547), - [anon_sym_break] = ACTIONS(547), - [anon_sym_continue] = ACTIONS(547), - [anon_sym_return] = ACTIONS(547), - [anon_sym_yield] = ACTIONS(547), - [anon_sym_synchronized] = ACTIONS(547), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_try] = ACTIONS(547), - [anon_sym_if] = ACTIONS(547), - [anon_sym_else] = ACTIONS(547), - [anon_sym_for] = ACTIONS(547), - [anon_sym_AT] = ACTIONS(547), - [anon_sym_open] = ACTIONS(547), - [anon_sym_module] = ACTIONS(547), - [anon_sym_static] = ACTIONS(547), - [anon_sym_package] = ACTIONS(547), - [anon_sym_import] = ACTIONS(547), - [anon_sym_enum] = ACTIONS(547), - [anon_sym_public] = ACTIONS(547), - [anon_sym_protected] = ACTIONS(547), - [anon_sym_private] = ACTIONS(547), - [anon_sym_abstract] = ACTIONS(547), - [anon_sym_final] = ACTIONS(547), - [anon_sym_strictfp] = ACTIONS(547), - [anon_sym_native] = ACTIONS(547), - [anon_sym_transient] = ACTIONS(547), - [anon_sym_volatile] = ACTIONS(547), - [anon_sym_sealed] = ACTIONS(547), - [anon_sym_non_DASHsealed] = ACTIONS(545), - [anon_sym_record] = ACTIONS(547), - [anon_sym_ATinterface] = ACTIONS(545), - [anon_sym_interface] = ACTIONS(547), - [anon_sym_byte] = ACTIONS(547), - [anon_sym_short] = ACTIONS(547), - [anon_sym_int] = ACTIONS(547), - [anon_sym_long] = ACTIONS(547), - [anon_sym_char] = ACTIONS(547), - [anon_sym_float] = ACTIONS(547), - [anon_sym_double] = ACTIONS(547), - [sym_boolean_type] = ACTIONS(547), - [sym_void_type] = ACTIONS(547), - [sym_this] = ACTIONS(547), - [sym_super] = ACTIONS(547), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [123] = { - [ts_builtin_sym_end] = ACTIONS(549), - [sym_identifier] = ACTIONS(551), - [sym_decimal_integer_literal] = ACTIONS(551), - [sym_hex_integer_literal] = ACTIONS(551), - [sym_octal_integer_literal] = ACTIONS(549), - [sym_binary_integer_literal] = ACTIONS(549), - [sym_decimal_floating_point_literal] = ACTIONS(549), - [sym_hex_floating_point_literal] = ACTIONS(551), - [sym_true] = ACTIONS(551), - [sym_false] = ACTIONS(551), - [sym_character_literal] = ACTIONS(549), - [sym_string_literal] = ACTIONS(551), - [sym_text_block] = ACTIONS(549), - [sym_null_literal] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(549), - [anon_sym_LT] = ACTIONS(549), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_BANG] = ACTIONS(549), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_PLUS_PLUS] = ACTIONS(549), - [anon_sym_DASH_DASH] = ACTIONS(549), - [anon_sym_new] = ACTIONS(551), - [anon_sym_class] = ACTIONS(551), - [anon_sym_switch] = ACTIONS(551), - [anon_sym_LBRACE] = ACTIONS(549), - [anon_sym_RBRACE] = ACTIONS(549), - [anon_sym_case] = ACTIONS(551), - [anon_sym_default] = ACTIONS(551), - [anon_sym_SEMI] = ACTIONS(549), - [anon_sym_assert] = ACTIONS(551), - [anon_sym_do] = ACTIONS(551), - [anon_sym_while] = ACTIONS(551), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(551), - [anon_sym_return] = ACTIONS(551), - [anon_sym_yield] = ACTIONS(551), - [anon_sym_synchronized] = ACTIONS(551), - [anon_sym_throw] = ACTIONS(551), - [anon_sym_try] = ACTIONS(551), - [anon_sym_if] = ACTIONS(551), - [anon_sym_else] = ACTIONS(551), - [anon_sym_for] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(551), - [anon_sym_open] = ACTIONS(551), - [anon_sym_module] = ACTIONS(551), - [anon_sym_static] = ACTIONS(551), - [anon_sym_package] = ACTIONS(551), - [anon_sym_import] = ACTIONS(551), - [anon_sym_enum] = ACTIONS(551), - [anon_sym_public] = ACTIONS(551), - [anon_sym_protected] = ACTIONS(551), - [anon_sym_private] = ACTIONS(551), - [anon_sym_abstract] = ACTIONS(551), - [anon_sym_final] = ACTIONS(551), - [anon_sym_strictfp] = ACTIONS(551), - [anon_sym_native] = ACTIONS(551), - [anon_sym_transient] = ACTIONS(551), - [anon_sym_volatile] = ACTIONS(551), - [anon_sym_sealed] = ACTIONS(551), - [anon_sym_non_DASHsealed] = ACTIONS(549), - [anon_sym_record] = ACTIONS(551), - [anon_sym_ATinterface] = ACTIONS(549), - [anon_sym_interface] = ACTIONS(551), - [anon_sym_byte] = ACTIONS(551), - [anon_sym_short] = ACTIONS(551), - [anon_sym_int] = ACTIONS(551), - [anon_sym_long] = ACTIONS(551), - [anon_sym_char] = ACTIONS(551), - [anon_sym_float] = ACTIONS(551), - [anon_sym_double] = ACTIONS(551), - [sym_boolean_type] = ACTIONS(551), - [sym_void_type] = ACTIONS(551), - [sym_this] = ACTIONS(551), - [sym_super] = ACTIONS(551), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [124] = { - [ts_builtin_sym_end] = ACTIONS(553), - [sym_identifier] = ACTIONS(555), - [sym_decimal_integer_literal] = ACTIONS(555), - [sym_hex_integer_literal] = ACTIONS(555), - [sym_octal_integer_literal] = ACTIONS(553), - [sym_binary_integer_literal] = ACTIONS(553), - [sym_decimal_floating_point_literal] = ACTIONS(553), - [sym_hex_floating_point_literal] = ACTIONS(555), - [sym_true] = ACTIONS(555), - [sym_false] = ACTIONS(555), - [sym_character_literal] = ACTIONS(553), - [sym_string_literal] = ACTIONS(555), - [sym_text_block] = ACTIONS(553), - [sym_null_literal] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(553), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_TILDE] = ACTIONS(553), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_new] = ACTIONS(555), - [anon_sym_class] = ACTIONS(555), - [anon_sym_switch] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(553), - [anon_sym_RBRACE] = ACTIONS(553), - [anon_sym_case] = ACTIONS(555), - [anon_sym_default] = ACTIONS(555), - [anon_sym_SEMI] = ACTIONS(553), - [anon_sym_assert] = ACTIONS(555), - [anon_sym_do] = ACTIONS(555), - [anon_sym_while] = ACTIONS(555), - [anon_sym_break] = ACTIONS(555), - [anon_sym_continue] = ACTIONS(555), - [anon_sym_return] = ACTIONS(555), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_synchronized] = ACTIONS(555), - [anon_sym_throw] = ACTIONS(555), - [anon_sym_try] = ACTIONS(555), - [anon_sym_if] = ACTIONS(555), - [anon_sym_else] = ACTIONS(555), - [anon_sym_for] = ACTIONS(555), - [anon_sym_AT] = ACTIONS(555), - [anon_sym_open] = ACTIONS(555), - [anon_sym_module] = ACTIONS(555), - [anon_sym_static] = ACTIONS(555), - [anon_sym_package] = ACTIONS(555), - [anon_sym_import] = ACTIONS(555), - [anon_sym_enum] = ACTIONS(555), - [anon_sym_public] = ACTIONS(555), - [anon_sym_protected] = ACTIONS(555), - [anon_sym_private] = ACTIONS(555), - [anon_sym_abstract] = ACTIONS(555), - [anon_sym_final] = ACTIONS(555), - [anon_sym_strictfp] = ACTIONS(555), - [anon_sym_native] = ACTIONS(555), - [anon_sym_transient] = ACTIONS(555), - [anon_sym_volatile] = ACTIONS(555), - [anon_sym_sealed] = ACTIONS(555), - [anon_sym_non_DASHsealed] = ACTIONS(553), - [anon_sym_record] = ACTIONS(555), - [anon_sym_ATinterface] = ACTIONS(553), - [anon_sym_interface] = ACTIONS(555), - [anon_sym_byte] = ACTIONS(555), - [anon_sym_short] = ACTIONS(555), - [anon_sym_int] = ACTIONS(555), - [anon_sym_long] = ACTIONS(555), - [anon_sym_char] = ACTIONS(555), - [anon_sym_float] = ACTIONS(555), - [anon_sym_double] = ACTIONS(555), - [sym_boolean_type] = ACTIONS(555), - [sym_void_type] = ACTIONS(555), - [sym_this] = ACTIONS(555), - [sym_super] = ACTIONS(555), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [125] = { - [ts_builtin_sym_end] = ACTIONS(557), - [sym_identifier] = ACTIONS(559), - [sym_decimal_integer_literal] = ACTIONS(559), - [sym_hex_integer_literal] = ACTIONS(559), - [sym_octal_integer_literal] = ACTIONS(557), - [sym_binary_integer_literal] = ACTIONS(557), - [sym_decimal_floating_point_literal] = ACTIONS(557), - [sym_hex_floating_point_literal] = ACTIONS(559), - [sym_true] = ACTIONS(559), - [sym_false] = ACTIONS(559), - [sym_character_literal] = ACTIONS(557), - [sym_string_literal] = ACTIONS(559), - [sym_text_block] = ACTIONS(557), - [sym_null_literal] = ACTIONS(559), - [anon_sym_LPAREN] = ACTIONS(557), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_PLUS] = ACTIONS(559), - [anon_sym_DASH] = ACTIONS(559), - [anon_sym_BANG] = ACTIONS(557), - [anon_sym_TILDE] = ACTIONS(557), - [anon_sym_PLUS_PLUS] = ACTIONS(557), - [anon_sym_DASH_DASH] = ACTIONS(557), - [anon_sym_new] = ACTIONS(559), - [anon_sym_class] = ACTIONS(559), - [anon_sym_switch] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(557), - [anon_sym_RBRACE] = ACTIONS(557), - [anon_sym_case] = ACTIONS(559), - [anon_sym_default] = ACTIONS(559), - [anon_sym_SEMI] = ACTIONS(557), - [anon_sym_assert] = ACTIONS(559), - [anon_sym_do] = ACTIONS(559), - [anon_sym_while] = ACTIONS(559), - [anon_sym_break] = ACTIONS(559), - [anon_sym_continue] = ACTIONS(559), - [anon_sym_return] = ACTIONS(559), - [anon_sym_yield] = ACTIONS(559), - [anon_sym_synchronized] = ACTIONS(559), - [anon_sym_throw] = ACTIONS(559), - [anon_sym_try] = ACTIONS(559), - [anon_sym_if] = ACTIONS(559), - [anon_sym_else] = ACTIONS(559), - [anon_sym_for] = ACTIONS(559), - [anon_sym_AT] = ACTIONS(559), - [anon_sym_open] = ACTIONS(559), - [anon_sym_module] = ACTIONS(559), - [anon_sym_static] = ACTIONS(559), - [anon_sym_package] = ACTIONS(559), - [anon_sym_import] = ACTIONS(559), - [anon_sym_enum] = ACTIONS(559), - [anon_sym_public] = ACTIONS(559), - [anon_sym_protected] = ACTIONS(559), - [anon_sym_private] = ACTIONS(559), - [anon_sym_abstract] = ACTIONS(559), - [anon_sym_final] = ACTIONS(559), - [anon_sym_strictfp] = ACTIONS(559), - [anon_sym_native] = ACTIONS(559), - [anon_sym_transient] = ACTIONS(559), - [anon_sym_volatile] = ACTIONS(559), - [anon_sym_sealed] = ACTIONS(559), - [anon_sym_non_DASHsealed] = ACTIONS(557), - [anon_sym_record] = ACTIONS(559), - [anon_sym_ATinterface] = ACTIONS(557), - [anon_sym_interface] = ACTIONS(559), - [anon_sym_byte] = ACTIONS(559), - [anon_sym_short] = ACTIONS(559), - [anon_sym_int] = ACTIONS(559), - [anon_sym_long] = ACTIONS(559), - [anon_sym_char] = ACTIONS(559), - [anon_sym_float] = ACTIONS(559), - [anon_sym_double] = ACTIONS(559), - [sym_boolean_type] = ACTIONS(559), - [sym_void_type] = ACTIONS(559), - [sym_this] = ACTIONS(559), - [sym_super] = ACTIONS(559), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [126] = { - [ts_builtin_sym_end] = ACTIONS(561), - [sym_identifier] = ACTIONS(563), - [sym_decimal_integer_literal] = ACTIONS(563), - [sym_hex_integer_literal] = ACTIONS(563), - [sym_octal_integer_literal] = ACTIONS(561), - [sym_binary_integer_literal] = ACTIONS(561), - [sym_decimal_floating_point_literal] = ACTIONS(561), - [sym_hex_floating_point_literal] = ACTIONS(563), - [sym_true] = ACTIONS(563), - [sym_false] = ACTIONS(563), - [sym_character_literal] = ACTIONS(561), - [sym_string_literal] = ACTIONS(563), - [sym_text_block] = ACTIONS(561), - [sym_null_literal] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_BANG] = ACTIONS(561), - [anon_sym_TILDE] = ACTIONS(561), - [anon_sym_PLUS_PLUS] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(561), - [anon_sym_new] = ACTIONS(563), - [anon_sym_class] = ACTIONS(563), - [anon_sym_switch] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(561), - [anon_sym_RBRACE] = ACTIONS(561), - [anon_sym_case] = ACTIONS(563), - [anon_sym_default] = ACTIONS(563), - [anon_sym_SEMI] = ACTIONS(561), - [anon_sym_assert] = ACTIONS(563), - [anon_sym_do] = ACTIONS(563), - [anon_sym_while] = ACTIONS(563), - [anon_sym_break] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(563), - [anon_sym_return] = ACTIONS(563), - [anon_sym_yield] = ACTIONS(563), - [anon_sym_synchronized] = ACTIONS(563), - [anon_sym_throw] = ACTIONS(563), - [anon_sym_try] = ACTIONS(563), - [anon_sym_if] = ACTIONS(563), - [anon_sym_else] = ACTIONS(563), - [anon_sym_for] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(563), - [anon_sym_open] = ACTIONS(563), - [anon_sym_module] = ACTIONS(563), - [anon_sym_static] = ACTIONS(563), - [anon_sym_package] = ACTIONS(563), - [anon_sym_import] = ACTIONS(563), - [anon_sym_enum] = ACTIONS(563), - [anon_sym_public] = ACTIONS(563), - [anon_sym_protected] = ACTIONS(563), - [anon_sym_private] = ACTIONS(563), - [anon_sym_abstract] = ACTIONS(563), - [anon_sym_final] = ACTIONS(563), - [anon_sym_strictfp] = ACTIONS(563), - [anon_sym_native] = ACTIONS(563), - [anon_sym_transient] = ACTIONS(563), - [anon_sym_volatile] = ACTIONS(563), - [anon_sym_sealed] = ACTIONS(563), - [anon_sym_non_DASHsealed] = ACTIONS(561), - [anon_sym_record] = ACTIONS(563), - [anon_sym_ATinterface] = ACTIONS(561), - [anon_sym_interface] = ACTIONS(563), - [anon_sym_byte] = ACTIONS(563), - [anon_sym_short] = ACTIONS(563), - [anon_sym_int] = ACTIONS(563), - [anon_sym_long] = ACTIONS(563), - [anon_sym_char] = ACTIONS(563), - [anon_sym_float] = ACTIONS(563), - [anon_sym_double] = ACTIONS(563), - [sym_boolean_type] = ACTIONS(563), - [sym_void_type] = ACTIONS(563), - [sym_this] = ACTIONS(563), - [sym_super] = ACTIONS(563), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [127] = { - [ts_builtin_sym_end] = ACTIONS(565), - [sym_identifier] = ACTIONS(567), - [sym_decimal_integer_literal] = ACTIONS(567), - [sym_hex_integer_literal] = ACTIONS(567), - [sym_octal_integer_literal] = ACTIONS(565), - [sym_binary_integer_literal] = ACTIONS(565), - [sym_decimal_floating_point_literal] = ACTIONS(565), - [sym_hex_floating_point_literal] = ACTIONS(567), - [sym_true] = ACTIONS(567), - [sym_false] = ACTIONS(567), - [sym_character_literal] = ACTIONS(565), - [sym_string_literal] = ACTIONS(567), - [sym_text_block] = ACTIONS(565), - [sym_null_literal] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_BANG] = ACTIONS(565), - [anon_sym_TILDE] = ACTIONS(565), - [anon_sym_PLUS_PLUS] = ACTIONS(565), - [anon_sym_DASH_DASH] = ACTIONS(565), - [anon_sym_new] = ACTIONS(567), - [anon_sym_class] = ACTIONS(567), - [anon_sym_switch] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(565), - [anon_sym_RBRACE] = ACTIONS(565), - [anon_sym_case] = ACTIONS(567), - [anon_sym_default] = ACTIONS(567), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_assert] = ACTIONS(567), - [anon_sym_do] = ACTIONS(567), - [anon_sym_while] = ACTIONS(567), - [anon_sym_break] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(567), - [anon_sym_return] = ACTIONS(567), - [anon_sym_yield] = ACTIONS(567), - [anon_sym_synchronized] = ACTIONS(567), - [anon_sym_throw] = ACTIONS(567), - [anon_sym_try] = ACTIONS(567), - [anon_sym_if] = ACTIONS(567), - [anon_sym_else] = ACTIONS(567), - [anon_sym_for] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym_open] = ACTIONS(567), - [anon_sym_module] = ACTIONS(567), - [anon_sym_static] = ACTIONS(567), - [anon_sym_package] = ACTIONS(567), - [anon_sym_import] = ACTIONS(567), - [anon_sym_enum] = ACTIONS(567), - [anon_sym_public] = ACTIONS(567), - [anon_sym_protected] = ACTIONS(567), - [anon_sym_private] = ACTIONS(567), - [anon_sym_abstract] = ACTIONS(567), - [anon_sym_final] = ACTIONS(567), - [anon_sym_strictfp] = ACTIONS(567), - [anon_sym_native] = ACTIONS(567), - [anon_sym_transient] = ACTIONS(567), - [anon_sym_volatile] = ACTIONS(567), - [anon_sym_sealed] = ACTIONS(567), - [anon_sym_non_DASHsealed] = ACTIONS(565), - [anon_sym_record] = ACTIONS(567), - [anon_sym_ATinterface] = ACTIONS(565), - [anon_sym_interface] = ACTIONS(567), - [anon_sym_byte] = ACTIONS(567), - [anon_sym_short] = ACTIONS(567), - [anon_sym_int] = ACTIONS(567), - [anon_sym_long] = ACTIONS(567), - [anon_sym_char] = ACTIONS(567), - [anon_sym_float] = ACTIONS(567), - [anon_sym_double] = ACTIONS(567), - [sym_boolean_type] = ACTIONS(567), - [sym_void_type] = ACTIONS(567), - [sym_this] = ACTIONS(567), - [sym_super] = ACTIONS(567), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [128] = { - [ts_builtin_sym_end] = ACTIONS(569), - [sym_identifier] = ACTIONS(571), - [sym_decimal_integer_literal] = ACTIONS(571), - [sym_hex_integer_literal] = ACTIONS(571), - [sym_octal_integer_literal] = ACTIONS(569), - [sym_binary_integer_literal] = ACTIONS(569), - [sym_decimal_floating_point_literal] = ACTIONS(569), - [sym_hex_floating_point_literal] = ACTIONS(571), - [sym_true] = ACTIONS(571), - [sym_false] = ACTIONS(571), - [sym_character_literal] = ACTIONS(569), - [sym_string_literal] = ACTIONS(571), - [sym_text_block] = ACTIONS(569), - [sym_null_literal] = ACTIONS(571), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(569), - [anon_sym_PLUS] = ACTIONS(571), - [anon_sym_DASH] = ACTIONS(571), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(569), - [anon_sym_PLUS_PLUS] = ACTIONS(569), - [anon_sym_DASH_DASH] = ACTIONS(569), - [anon_sym_new] = ACTIONS(571), - [anon_sym_class] = ACTIONS(571), - [anon_sym_switch] = ACTIONS(571), - [anon_sym_LBRACE] = ACTIONS(569), - [anon_sym_RBRACE] = ACTIONS(569), - [anon_sym_case] = ACTIONS(571), - [anon_sym_default] = ACTIONS(571), - [anon_sym_SEMI] = ACTIONS(569), - [anon_sym_assert] = ACTIONS(571), - [anon_sym_do] = ACTIONS(571), - [anon_sym_while] = ACTIONS(571), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_return] = ACTIONS(571), - [anon_sym_yield] = ACTIONS(571), - [anon_sym_synchronized] = ACTIONS(571), - [anon_sym_throw] = ACTIONS(571), - [anon_sym_try] = ACTIONS(571), - [anon_sym_if] = ACTIONS(571), - [anon_sym_else] = ACTIONS(571), - [anon_sym_for] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_open] = ACTIONS(571), - [anon_sym_module] = ACTIONS(571), - [anon_sym_static] = ACTIONS(571), - [anon_sym_package] = ACTIONS(571), - [anon_sym_import] = ACTIONS(571), - [anon_sym_enum] = ACTIONS(571), - [anon_sym_public] = ACTIONS(571), - [anon_sym_protected] = ACTIONS(571), - [anon_sym_private] = ACTIONS(571), - [anon_sym_abstract] = ACTIONS(571), - [anon_sym_final] = ACTIONS(571), - [anon_sym_strictfp] = ACTIONS(571), - [anon_sym_native] = ACTIONS(571), - [anon_sym_transient] = ACTIONS(571), - [anon_sym_volatile] = ACTIONS(571), - [anon_sym_sealed] = ACTIONS(571), - [anon_sym_non_DASHsealed] = ACTIONS(569), - [anon_sym_record] = ACTIONS(571), - [anon_sym_ATinterface] = ACTIONS(569), - [anon_sym_interface] = ACTIONS(571), - [anon_sym_byte] = ACTIONS(571), - [anon_sym_short] = ACTIONS(571), - [anon_sym_int] = ACTIONS(571), - [anon_sym_long] = ACTIONS(571), - [anon_sym_char] = ACTIONS(571), - [anon_sym_float] = ACTIONS(571), - [anon_sym_double] = ACTIONS(571), - [sym_boolean_type] = ACTIONS(571), - [sym_void_type] = ACTIONS(571), - [sym_this] = ACTIONS(571), - [sym_super] = ACTIONS(571), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [129] = { - [ts_builtin_sym_end] = ACTIONS(573), - [sym_identifier] = ACTIONS(575), - [sym_decimal_integer_literal] = ACTIONS(575), - [sym_hex_integer_literal] = ACTIONS(575), - [sym_octal_integer_literal] = ACTIONS(573), - [sym_binary_integer_literal] = ACTIONS(573), - [sym_decimal_floating_point_literal] = ACTIONS(573), - [sym_hex_floating_point_literal] = ACTIONS(575), - [sym_true] = ACTIONS(575), - [sym_false] = ACTIONS(575), - [sym_character_literal] = ACTIONS(573), - [sym_string_literal] = ACTIONS(575), - [sym_text_block] = ACTIONS(573), - [sym_null_literal] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(573), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_PLUS] = ACTIONS(575), - [anon_sym_DASH] = ACTIONS(575), - [anon_sym_BANG] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(573), - [anon_sym_DASH_DASH] = ACTIONS(573), - [anon_sym_new] = ACTIONS(575), - [anon_sym_class] = ACTIONS(575), - [anon_sym_switch] = ACTIONS(575), - [anon_sym_LBRACE] = ACTIONS(573), - [anon_sym_RBRACE] = ACTIONS(573), - [anon_sym_case] = ACTIONS(575), - [anon_sym_default] = ACTIONS(575), - [anon_sym_SEMI] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_do] = ACTIONS(575), - [anon_sym_while] = ACTIONS(575), - [anon_sym_break] = ACTIONS(575), - [anon_sym_continue] = ACTIONS(575), - [anon_sym_return] = ACTIONS(575), - [anon_sym_yield] = ACTIONS(575), - [anon_sym_synchronized] = ACTIONS(575), - [anon_sym_throw] = ACTIONS(575), - [anon_sym_try] = ACTIONS(575), - [anon_sym_if] = ACTIONS(575), - [anon_sym_else] = ACTIONS(575), - [anon_sym_for] = ACTIONS(575), - [anon_sym_AT] = ACTIONS(575), - [anon_sym_open] = ACTIONS(575), - [anon_sym_module] = ACTIONS(575), - [anon_sym_static] = ACTIONS(575), - [anon_sym_package] = ACTIONS(575), - [anon_sym_import] = ACTIONS(575), - [anon_sym_enum] = ACTIONS(575), - [anon_sym_public] = ACTIONS(575), - [anon_sym_protected] = ACTIONS(575), - [anon_sym_private] = ACTIONS(575), - [anon_sym_abstract] = ACTIONS(575), - [anon_sym_final] = ACTIONS(575), - [anon_sym_strictfp] = ACTIONS(575), - [anon_sym_native] = ACTIONS(575), - [anon_sym_transient] = ACTIONS(575), - [anon_sym_volatile] = ACTIONS(575), - [anon_sym_sealed] = ACTIONS(575), - [anon_sym_non_DASHsealed] = ACTIONS(573), - [anon_sym_record] = ACTIONS(575), - [anon_sym_ATinterface] = ACTIONS(573), - [anon_sym_interface] = ACTIONS(575), - [anon_sym_byte] = ACTIONS(575), - [anon_sym_short] = ACTIONS(575), - [anon_sym_int] = ACTIONS(575), - [anon_sym_long] = ACTIONS(575), - [anon_sym_char] = ACTIONS(575), - [anon_sym_float] = ACTIONS(575), - [anon_sym_double] = ACTIONS(575), - [sym_boolean_type] = ACTIONS(575), - [sym_void_type] = ACTIONS(575), - [sym_this] = ACTIONS(575), - [sym_super] = ACTIONS(575), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [130] = { - [ts_builtin_sym_end] = ACTIONS(577), - [sym_identifier] = ACTIONS(579), - [sym_decimal_integer_literal] = ACTIONS(579), - [sym_hex_integer_literal] = ACTIONS(579), - [sym_octal_integer_literal] = ACTIONS(577), - [sym_binary_integer_literal] = ACTIONS(577), - [sym_decimal_floating_point_literal] = ACTIONS(577), - [sym_hex_floating_point_literal] = ACTIONS(579), - [sym_true] = ACTIONS(579), - [sym_false] = ACTIONS(579), - [sym_character_literal] = ACTIONS(577), - [sym_string_literal] = ACTIONS(579), - [sym_text_block] = ACTIONS(577), - [sym_null_literal] = ACTIONS(579), - [anon_sym_LPAREN] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(577), - [anon_sym_PLUS_PLUS] = ACTIONS(577), - [anon_sym_DASH_DASH] = ACTIONS(577), - [anon_sym_new] = ACTIONS(579), - [anon_sym_class] = ACTIONS(579), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_LBRACE] = ACTIONS(577), - [anon_sym_RBRACE] = ACTIONS(577), - [anon_sym_case] = ACTIONS(579), - [anon_sym_default] = ACTIONS(579), - [anon_sym_SEMI] = ACTIONS(577), - [anon_sym_assert] = ACTIONS(579), - [anon_sym_do] = ACTIONS(579), - [anon_sym_while] = ACTIONS(579), - [anon_sym_break] = ACTIONS(579), - [anon_sym_continue] = ACTIONS(579), - [anon_sym_return] = ACTIONS(579), - [anon_sym_yield] = ACTIONS(579), - [anon_sym_synchronized] = ACTIONS(579), - [anon_sym_throw] = ACTIONS(579), - [anon_sym_try] = ACTIONS(579), - [anon_sym_if] = ACTIONS(579), - [anon_sym_else] = ACTIONS(579), - [anon_sym_for] = ACTIONS(579), - [anon_sym_AT] = ACTIONS(579), - [anon_sym_open] = ACTIONS(579), - [anon_sym_module] = ACTIONS(579), - [anon_sym_static] = ACTIONS(579), - [anon_sym_package] = ACTIONS(579), - [anon_sym_import] = ACTIONS(579), - [anon_sym_enum] = ACTIONS(579), - [anon_sym_public] = ACTIONS(579), - [anon_sym_protected] = ACTIONS(579), - [anon_sym_private] = ACTIONS(579), - [anon_sym_abstract] = ACTIONS(579), - [anon_sym_final] = ACTIONS(579), - [anon_sym_strictfp] = ACTIONS(579), - [anon_sym_native] = ACTIONS(579), - [anon_sym_transient] = ACTIONS(579), - [anon_sym_volatile] = ACTIONS(579), - [anon_sym_sealed] = ACTIONS(579), - [anon_sym_non_DASHsealed] = ACTIONS(577), - [anon_sym_record] = ACTIONS(579), - [anon_sym_ATinterface] = ACTIONS(577), - [anon_sym_interface] = ACTIONS(579), - [anon_sym_byte] = ACTIONS(579), - [anon_sym_short] = ACTIONS(579), - [anon_sym_int] = ACTIONS(579), - [anon_sym_long] = ACTIONS(579), - [anon_sym_char] = ACTIONS(579), - [anon_sym_float] = ACTIONS(579), - [anon_sym_double] = ACTIONS(579), - [sym_boolean_type] = ACTIONS(579), - [sym_void_type] = ACTIONS(579), - [sym_this] = ACTIONS(579), - [sym_super] = ACTIONS(579), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [131] = { - [ts_builtin_sym_end] = ACTIONS(581), - [sym_identifier] = ACTIONS(583), - [sym_decimal_integer_literal] = ACTIONS(583), - [sym_hex_integer_literal] = ACTIONS(583), - [sym_octal_integer_literal] = ACTIONS(581), - [sym_binary_integer_literal] = ACTIONS(581), - [sym_decimal_floating_point_literal] = ACTIONS(581), - [sym_hex_floating_point_literal] = ACTIONS(583), - [sym_true] = ACTIONS(583), - [sym_false] = ACTIONS(583), - [sym_character_literal] = ACTIONS(581), - [sym_string_literal] = ACTIONS(583), - [sym_text_block] = ACTIONS(581), - [sym_null_literal] = ACTIONS(583), - [anon_sym_LPAREN] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_BANG] = ACTIONS(581), - [anon_sym_TILDE] = ACTIONS(581), - [anon_sym_PLUS_PLUS] = ACTIONS(581), - [anon_sym_DASH_DASH] = ACTIONS(581), - [anon_sym_new] = ACTIONS(583), - [anon_sym_class] = ACTIONS(583), - [anon_sym_switch] = ACTIONS(583), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_RBRACE] = ACTIONS(581), - [anon_sym_case] = ACTIONS(583), - [anon_sym_default] = ACTIONS(583), - [anon_sym_SEMI] = ACTIONS(581), - [anon_sym_assert] = ACTIONS(583), - [anon_sym_do] = ACTIONS(583), - [anon_sym_while] = ACTIONS(583), - [anon_sym_break] = ACTIONS(583), - [anon_sym_continue] = ACTIONS(583), - [anon_sym_return] = ACTIONS(583), - [anon_sym_yield] = ACTIONS(583), - [anon_sym_synchronized] = ACTIONS(583), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_try] = ACTIONS(583), - [anon_sym_if] = ACTIONS(583), - [anon_sym_else] = ACTIONS(583), - [anon_sym_for] = ACTIONS(583), - [anon_sym_AT] = ACTIONS(583), - [anon_sym_open] = ACTIONS(583), - [anon_sym_module] = ACTIONS(583), - [anon_sym_static] = ACTIONS(583), - [anon_sym_package] = ACTIONS(583), - [anon_sym_import] = ACTIONS(583), - [anon_sym_enum] = ACTIONS(583), - [anon_sym_public] = ACTIONS(583), - [anon_sym_protected] = ACTIONS(583), - [anon_sym_private] = ACTIONS(583), - [anon_sym_abstract] = ACTIONS(583), - [anon_sym_final] = ACTIONS(583), - [anon_sym_strictfp] = ACTIONS(583), - [anon_sym_native] = ACTIONS(583), - [anon_sym_transient] = ACTIONS(583), - [anon_sym_volatile] = ACTIONS(583), - [anon_sym_sealed] = ACTIONS(583), - [anon_sym_non_DASHsealed] = ACTIONS(581), - [anon_sym_record] = ACTIONS(583), - [anon_sym_ATinterface] = ACTIONS(581), - [anon_sym_interface] = ACTIONS(583), - [anon_sym_byte] = ACTIONS(583), - [anon_sym_short] = ACTIONS(583), - [anon_sym_int] = ACTIONS(583), - [anon_sym_long] = ACTIONS(583), - [anon_sym_char] = ACTIONS(583), - [anon_sym_float] = ACTIONS(583), - [anon_sym_double] = ACTIONS(583), - [sym_boolean_type] = ACTIONS(583), - [sym_void_type] = ACTIONS(583), - [sym_this] = ACTIONS(583), - [sym_super] = ACTIONS(583), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [132] = { - [ts_builtin_sym_end] = ACTIONS(585), - [sym_identifier] = ACTIONS(587), - [sym_decimal_integer_literal] = ACTIONS(587), - [sym_hex_integer_literal] = ACTIONS(587), - [sym_octal_integer_literal] = ACTIONS(585), - [sym_binary_integer_literal] = ACTIONS(585), - [sym_decimal_floating_point_literal] = ACTIONS(585), - [sym_hex_floating_point_literal] = ACTIONS(587), - [sym_true] = ACTIONS(587), - [sym_false] = ACTIONS(587), - [sym_character_literal] = ACTIONS(585), - [sym_string_literal] = ACTIONS(587), - [sym_text_block] = ACTIONS(585), - [sym_null_literal] = ACTIONS(587), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(587), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_new] = ACTIONS(587), - [anon_sym_class] = ACTIONS(587), - [anon_sym_switch] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(585), - [anon_sym_case] = ACTIONS(587), - [anon_sym_default] = ACTIONS(587), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_assert] = ACTIONS(587), - [anon_sym_do] = ACTIONS(587), - [anon_sym_while] = ACTIONS(587), - [anon_sym_break] = ACTIONS(587), - [anon_sym_continue] = ACTIONS(587), - [anon_sym_return] = ACTIONS(587), - [anon_sym_yield] = ACTIONS(587), - [anon_sym_synchronized] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(587), - [anon_sym_try] = ACTIONS(587), - [anon_sym_if] = ACTIONS(587), - [anon_sym_else] = ACTIONS(587), - [anon_sym_for] = ACTIONS(587), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_open] = ACTIONS(587), - [anon_sym_module] = ACTIONS(587), - [anon_sym_static] = ACTIONS(587), - [anon_sym_package] = ACTIONS(587), - [anon_sym_import] = ACTIONS(587), - [anon_sym_enum] = ACTIONS(587), - [anon_sym_public] = ACTIONS(587), - [anon_sym_protected] = ACTIONS(587), - [anon_sym_private] = ACTIONS(587), - [anon_sym_abstract] = ACTIONS(587), - [anon_sym_final] = ACTIONS(587), - [anon_sym_strictfp] = ACTIONS(587), - [anon_sym_native] = ACTIONS(587), - [anon_sym_transient] = ACTIONS(587), - [anon_sym_volatile] = ACTIONS(587), - [anon_sym_sealed] = ACTIONS(587), - [anon_sym_non_DASHsealed] = ACTIONS(585), - [anon_sym_record] = ACTIONS(587), - [anon_sym_ATinterface] = ACTIONS(585), - [anon_sym_interface] = ACTIONS(587), - [anon_sym_byte] = ACTIONS(587), - [anon_sym_short] = ACTIONS(587), - [anon_sym_int] = ACTIONS(587), - [anon_sym_long] = ACTIONS(587), - [anon_sym_char] = ACTIONS(587), - [anon_sym_float] = ACTIONS(587), - [anon_sym_double] = ACTIONS(587), - [sym_boolean_type] = ACTIONS(587), - [sym_void_type] = ACTIONS(587), - [sym_this] = ACTIONS(587), - [sym_super] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [133] = { - [ts_builtin_sym_end] = ACTIONS(589), - [sym_identifier] = ACTIONS(591), - [sym_decimal_integer_literal] = ACTIONS(591), - [sym_hex_integer_literal] = ACTIONS(591), - [sym_octal_integer_literal] = ACTIONS(589), - [sym_binary_integer_literal] = ACTIONS(589), - [sym_decimal_floating_point_literal] = ACTIONS(589), - [sym_hex_floating_point_literal] = ACTIONS(591), - [sym_true] = ACTIONS(591), - [sym_false] = ACTIONS(591), - [sym_character_literal] = ACTIONS(589), - [sym_string_literal] = ACTIONS(591), - [sym_text_block] = ACTIONS(589), - [sym_null_literal] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_PLUS] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(589), - [anon_sym_TILDE] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_new] = ACTIONS(591), - [anon_sym_class] = ACTIONS(591), - [anon_sym_switch] = ACTIONS(591), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_case] = ACTIONS(591), - [anon_sym_default] = ACTIONS(591), - [anon_sym_SEMI] = ACTIONS(589), - [anon_sym_assert] = ACTIONS(591), - [anon_sym_do] = ACTIONS(591), - [anon_sym_while] = ACTIONS(591), - [anon_sym_break] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(591), - [anon_sym_return] = ACTIONS(591), - [anon_sym_yield] = ACTIONS(591), - [anon_sym_synchronized] = ACTIONS(591), - [anon_sym_throw] = ACTIONS(591), - [anon_sym_try] = ACTIONS(591), - [anon_sym_if] = ACTIONS(591), - [anon_sym_else] = ACTIONS(591), - [anon_sym_for] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(591), - [anon_sym_open] = ACTIONS(591), - [anon_sym_module] = ACTIONS(591), - [anon_sym_static] = ACTIONS(591), - [anon_sym_package] = ACTIONS(591), - [anon_sym_import] = ACTIONS(591), - [anon_sym_enum] = ACTIONS(591), - [anon_sym_public] = ACTIONS(591), - [anon_sym_protected] = ACTIONS(591), - [anon_sym_private] = ACTIONS(591), - [anon_sym_abstract] = ACTIONS(591), - [anon_sym_final] = ACTIONS(591), - [anon_sym_strictfp] = ACTIONS(591), - [anon_sym_native] = ACTIONS(591), - [anon_sym_transient] = ACTIONS(591), - [anon_sym_volatile] = ACTIONS(591), - [anon_sym_sealed] = ACTIONS(591), - [anon_sym_non_DASHsealed] = ACTIONS(589), - [anon_sym_record] = ACTIONS(591), - [anon_sym_ATinterface] = ACTIONS(589), - [anon_sym_interface] = ACTIONS(591), - [anon_sym_byte] = ACTIONS(591), - [anon_sym_short] = ACTIONS(591), - [anon_sym_int] = ACTIONS(591), - [anon_sym_long] = ACTIONS(591), - [anon_sym_char] = ACTIONS(591), - [anon_sym_float] = ACTIONS(591), - [anon_sym_double] = ACTIONS(591), - [sym_boolean_type] = ACTIONS(591), - [sym_void_type] = ACTIONS(591), - [sym_this] = ACTIONS(591), - [sym_super] = ACTIONS(591), + [100] = { + [sym_catch_clause] = STATE(100), + [aux_sym_try_statement_repeat1] = STATE(100), + [ts_builtin_sym_end] = ACTIONS(367), + [sym_identifier] = ACTIONS(369), + [sym_decimal_integer_literal] = ACTIONS(369), + [sym_hex_integer_literal] = ACTIONS(369), + [sym_octal_integer_literal] = ACTIONS(367), + [sym_binary_integer_literal] = ACTIONS(367), + [sym_decimal_floating_point_literal] = ACTIONS(367), + [sym_hex_floating_point_literal] = ACTIONS(369), + [sym_true] = ACTIONS(369), + [sym_false] = ACTIONS(369), + [sym_character_literal] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(369), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(367), + [sym_null_literal] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_final] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(367), + [anon_sym_PLUS_PLUS] = ACTIONS(367), + [anon_sym_DASH_DASH] = ACTIONS(367), + [anon_sym_new] = ACTIONS(369), + [anon_sym_class] = ACTIONS(369), + [anon_sym_switch] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_RBRACE] = ACTIONS(367), + [anon_sym_case] = ACTIONS(369), + [anon_sym_default] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(367), + [anon_sym_assert] = ACTIONS(369), + [anon_sym_do] = ACTIONS(369), + [anon_sym_while] = ACTIONS(369), + [anon_sym_break] = ACTIONS(369), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(369), + [anon_sym_synchronized] = ACTIONS(369), + [anon_sym_throw] = ACTIONS(369), + [anon_sym_try] = ACTIONS(369), + [anon_sym_catch] = ACTIONS(371), + [anon_sym_finally] = ACTIONS(369), + [anon_sym_if] = ACTIONS(369), + [anon_sym_else] = ACTIONS(369), + [anon_sym_for] = ACTIONS(369), + [anon_sym_AT] = ACTIONS(369), + [anon_sym_open] = ACTIONS(369), + [anon_sym_module] = ACTIONS(369), + [anon_sym_static] = ACTIONS(369), + [anon_sym_package] = ACTIONS(369), + [anon_sym_import] = ACTIONS(369), + [anon_sym_enum] = ACTIONS(369), + [anon_sym_public] = ACTIONS(369), + [anon_sym_protected] = ACTIONS(369), + [anon_sym_private] = ACTIONS(369), + [anon_sym_abstract] = ACTIONS(369), + [anon_sym_strictfp] = ACTIONS(369), + [anon_sym_native] = ACTIONS(369), + [anon_sym_transient] = ACTIONS(369), + [anon_sym_volatile] = ACTIONS(369), + [anon_sym_sealed] = ACTIONS(369), + [anon_sym_non_DASHsealed] = ACTIONS(367), + [anon_sym_record] = ACTIONS(369), + [anon_sym_ATinterface] = ACTIONS(367), + [anon_sym_interface] = ACTIONS(369), + [anon_sym_byte] = ACTIONS(369), + [anon_sym_short] = ACTIONS(369), + [anon_sym_int] = ACTIONS(369), + [anon_sym_long] = ACTIONS(369), + [anon_sym_char] = ACTIONS(369), + [anon_sym_float] = ACTIONS(369), + [anon_sym_double] = ACTIONS(369), + [sym_boolean_type] = ACTIONS(369), + [sym_void_type] = ACTIONS(369), + [sym_this] = ACTIONS(369), + [sym_super] = ACTIONS(369), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [134] = { - [ts_builtin_sym_end] = ACTIONS(593), - [sym_identifier] = ACTIONS(595), - [sym_decimal_integer_literal] = ACTIONS(595), - [sym_hex_integer_literal] = ACTIONS(595), - [sym_octal_integer_literal] = ACTIONS(593), - [sym_binary_integer_literal] = ACTIONS(593), - [sym_decimal_floating_point_literal] = ACTIONS(593), - [sym_hex_floating_point_literal] = ACTIONS(595), - [sym_true] = ACTIONS(595), - [sym_false] = ACTIONS(595), - [sym_character_literal] = ACTIONS(593), - [sym_string_literal] = ACTIONS(595), - [sym_text_block] = ACTIONS(593), - [sym_null_literal] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_LT] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_TILDE] = ACTIONS(593), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_new] = ACTIONS(595), - [anon_sym_class] = ACTIONS(595), - [anon_sym_switch] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_RBRACE] = ACTIONS(593), - [anon_sym_case] = ACTIONS(595), - [anon_sym_default] = ACTIONS(595), - [anon_sym_SEMI] = ACTIONS(593), - [anon_sym_assert] = ACTIONS(595), - [anon_sym_do] = ACTIONS(595), - [anon_sym_while] = ACTIONS(595), - [anon_sym_break] = ACTIONS(595), - [anon_sym_continue] = ACTIONS(595), - [anon_sym_return] = ACTIONS(595), - [anon_sym_yield] = ACTIONS(595), - [anon_sym_synchronized] = ACTIONS(595), - [anon_sym_throw] = ACTIONS(595), - [anon_sym_try] = ACTIONS(595), - [anon_sym_if] = ACTIONS(595), - [anon_sym_else] = ACTIONS(595), - [anon_sym_for] = ACTIONS(595), - [anon_sym_AT] = ACTIONS(595), - [anon_sym_open] = ACTIONS(595), - [anon_sym_module] = ACTIONS(595), - [anon_sym_static] = ACTIONS(595), - [anon_sym_package] = ACTIONS(595), - [anon_sym_import] = ACTIONS(595), - [anon_sym_enum] = ACTIONS(595), - [anon_sym_public] = ACTIONS(595), - [anon_sym_protected] = ACTIONS(595), - [anon_sym_private] = ACTIONS(595), - [anon_sym_abstract] = ACTIONS(595), - [anon_sym_final] = ACTIONS(595), - [anon_sym_strictfp] = ACTIONS(595), - [anon_sym_native] = ACTIONS(595), - [anon_sym_transient] = ACTIONS(595), - [anon_sym_volatile] = ACTIONS(595), - [anon_sym_sealed] = ACTIONS(595), - [anon_sym_non_DASHsealed] = ACTIONS(593), - [anon_sym_record] = ACTIONS(595), - [anon_sym_ATinterface] = ACTIONS(593), - [anon_sym_interface] = ACTIONS(595), - [anon_sym_byte] = ACTIONS(595), - [anon_sym_short] = ACTIONS(595), - [anon_sym_int] = ACTIONS(595), - [anon_sym_long] = ACTIONS(595), - [anon_sym_char] = ACTIONS(595), - [anon_sym_float] = ACTIONS(595), - [anon_sym_double] = ACTIONS(595), - [sym_boolean_type] = ACTIONS(595), - [sym_void_type] = ACTIONS(595), - [sym_this] = ACTIONS(595), - [sym_super] = ACTIONS(595), + [101] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(549), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(717), + [sym_marker_annotation] = STATE(717), + [sym_annotation] = STATE(717), + [sym__element_value] = STATE(1197), + [sym_element_value_array_initializer] = STATE(1197), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [135] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym__element_value] = STATE(975), - [sym_element_value_array_initializer] = STATE(975), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [102] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(613), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym_array_initializer] = STATE(1132), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -21517,75 +23534,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [136] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym__element_value] = STATE(1108), - [sym_element_value_array_initializer] = STATE(1108), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [103] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(613), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym_array_initializer] = STATE(1132), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -21595,75 +23616,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(376), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [137] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(474), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym__element_value] = STATE(1018), - [sym_element_value_array_initializer] = STATE(1018), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [104] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(607), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(717), + [sym_marker_annotation] = STATE(717), + [sym_annotation] = STATE(717), + [sym__element_value] = STATE(1197), + [sym_element_value_array_initializer] = STATE(1197), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -21673,75 +23699,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [138] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(525), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(609), - [sym_marker_annotation] = STATE(609), - [sym_annotation] = STATE(609), - [sym__element_value] = STATE(1018), - [sym_element_value_array_initializer] = STATE(1018), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [105] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(549), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(717), + [sym_marker_annotation] = STATE(717), + [sym_annotation] = STATE(717), + [sym__element_value] = STATE(1109), + [sym_element_value_array_initializer] = STATE(1109), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -21751,74 +23781,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(319), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(329), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [139] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(522), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym_array_initializer] = STATE(986), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [106] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(613), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym_array_initializer] = STATE(1132), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -21828,75 +23862,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_RBRACE] = ACTIONS(597), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [140] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(522), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym_array_initializer] = STATE(986), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [107] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(528), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym_block] = STATE(511), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -21906,2154 +23943,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_RBRACE] = ACTIONS(599), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [141] = { - [ts_builtin_sym_end] = ACTIONS(601), - [sym_identifier] = ACTIONS(603), - [sym_decimal_integer_literal] = ACTIONS(603), - [sym_hex_integer_literal] = ACTIONS(603), - [sym_octal_integer_literal] = ACTIONS(601), - [sym_binary_integer_literal] = ACTIONS(601), - [sym_decimal_floating_point_literal] = ACTIONS(601), - [sym_hex_floating_point_literal] = ACTIONS(603), - [sym_true] = ACTIONS(603), - [sym_false] = ACTIONS(603), - [sym_character_literal] = ACTIONS(601), - [sym_string_literal] = ACTIONS(603), - [sym_text_block] = ACTIONS(601), - [sym_null_literal] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(601), - [anon_sym_PLUS] = ACTIONS(603), - [anon_sym_DASH] = ACTIONS(603), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_new] = ACTIONS(603), - [anon_sym_class] = ACTIONS(603), - [anon_sym_switch] = ACTIONS(603), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_RBRACE] = ACTIONS(601), - [anon_sym_case] = ACTIONS(603), - [anon_sym_default] = ACTIONS(603), - [anon_sym_SEMI] = ACTIONS(601), - [anon_sym_assert] = ACTIONS(603), - [anon_sym_do] = ACTIONS(603), - [anon_sym_while] = ACTIONS(603), - [anon_sym_break] = ACTIONS(603), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_return] = ACTIONS(603), - [anon_sym_yield] = ACTIONS(603), - [anon_sym_synchronized] = ACTIONS(603), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_try] = ACTIONS(603), - [anon_sym_if] = ACTIONS(603), - [anon_sym_else] = ACTIONS(603), - [anon_sym_for] = ACTIONS(603), - [anon_sym_AT] = ACTIONS(603), - [anon_sym_open] = ACTIONS(603), - [anon_sym_module] = ACTIONS(603), - [anon_sym_static] = ACTIONS(603), - [anon_sym_package] = ACTIONS(603), - [anon_sym_import] = ACTIONS(603), - [anon_sym_enum] = ACTIONS(603), - [anon_sym_public] = ACTIONS(603), - [anon_sym_protected] = ACTIONS(603), - [anon_sym_private] = ACTIONS(603), - [anon_sym_abstract] = ACTIONS(603), - [anon_sym_final] = ACTIONS(603), - [anon_sym_strictfp] = ACTIONS(603), - [anon_sym_native] = ACTIONS(603), - [anon_sym_transient] = ACTIONS(603), - [anon_sym_volatile] = ACTIONS(603), - [anon_sym_sealed] = ACTIONS(603), - [anon_sym_non_DASHsealed] = ACTIONS(601), - [anon_sym_ATinterface] = ACTIONS(601), - [anon_sym_interface] = ACTIONS(603), - [anon_sym_byte] = ACTIONS(603), - [anon_sym_short] = ACTIONS(603), - [anon_sym_int] = ACTIONS(603), - [anon_sym_long] = ACTIONS(603), - [anon_sym_char] = ACTIONS(603), - [anon_sym_float] = ACTIONS(603), - [anon_sym_double] = ACTIONS(603), - [sym_boolean_type] = ACTIONS(603), - [sym_void_type] = ACTIONS(603), - [sym_this] = ACTIONS(603), - [sym_super] = ACTIONS(603), + [108] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(552), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym_block] = STATE(511), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [142] = { - [ts_builtin_sym_end] = ACTIONS(605), - [sym_identifier] = ACTIONS(607), - [sym_decimal_integer_literal] = ACTIONS(607), - [sym_hex_integer_literal] = ACTIONS(607), - [sym_octal_integer_literal] = ACTIONS(605), - [sym_binary_integer_literal] = ACTIONS(605), - [sym_decimal_floating_point_literal] = ACTIONS(605), - [sym_hex_floating_point_literal] = ACTIONS(607), - [sym_true] = ACTIONS(607), - [sym_false] = ACTIONS(607), - [sym_character_literal] = ACTIONS(605), - [sym_string_literal] = ACTIONS(607), - [sym_text_block] = ACTIONS(605), - [sym_null_literal] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(605), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_BANG] = ACTIONS(605), - [anon_sym_TILDE] = ACTIONS(605), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_new] = ACTIONS(607), - [anon_sym_class] = ACTIONS(607), - [anon_sym_switch] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(605), - [anon_sym_RBRACE] = ACTIONS(605), - [anon_sym_case] = ACTIONS(607), - [anon_sym_default] = ACTIONS(607), - [anon_sym_SEMI] = ACTIONS(605), - [anon_sym_assert] = ACTIONS(607), - [anon_sym_do] = ACTIONS(607), - [anon_sym_while] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_yield] = ACTIONS(607), - [anon_sym_synchronized] = ACTIONS(607), - [anon_sym_throw] = ACTIONS(607), - [anon_sym_try] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_else] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_AT] = ACTIONS(607), - [anon_sym_open] = ACTIONS(607), - [anon_sym_module] = ACTIONS(607), - [anon_sym_static] = ACTIONS(607), - [anon_sym_package] = ACTIONS(607), - [anon_sym_import] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_public] = ACTIONS(607), - [anon_sym_protected] = ACTIONS(607), - [anon_sym_private] = ACTIONS(607), - [anon_sym_abstract] = ACTIONS(607), - [anon_sym_final] = ACTIONS(607), - [anon_sym_strictfp] = ACTIONS(607), - [anon_sym_native] = ACTIONS(607), - [anon_sym_transient] = ACTIONS(607), - [anon_sym_volatile] = ACTIONS(607), - [anon_sym_sealed] = ACTIONS(607), - [anon_sym_non_DASHsealed] = ACTIONS(605), - [anon_sym_ATinterface] = ACTIONS(605), - [anon_sym_interface] = ACTIONS(607), - [anon_sym_byte] = ACTIONS(607), - [anon_sym_short] = ACTIONS(607), - [anon_sym_int] = ACTIONS(607), - [anon_sym_long] = ACTIONS(607), - [anon_sym_char] = ACTIONS(607), - [anon_sym_float] = ACTIONS(607), - [anon_sym_double] = ACTIONS(607), - [sym_boolean_type] = ACTIONS(607), - [sym_void_type] = ACTIONS(607), - [sym_this] = ACTIONS(607), - [sym_super] = ACTIONS(607), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [143] = { - [ts_builtin_sym_end] = ACTIONS(609), - [sym_identifier] = ACTIONS(611), - [sym_decimal_integer_literal] = ACTIONS(611), - [sym_hex_integer_literal] = ACTIONS(611), - [sym_octal_integer_literal] = ACTIONS(609), - [sym_binary_integer_literal] = ACTIONS(609), - [sym_decimal_floating_point_literal] = ACTIONS(609), - [sym_hex_floating_point_literal] = ACTIONS(611), - [sym_true] = ACTIONS(611), - [sym_false] = ACTIONS(611), - [sym_character_literal] = ACTIONS(609), - [sym_string_literal] = ACTIONS(611), - [sym_text_block] = ACTIONS(609), - [sym_null_literal] = ACTIONS(611), - [anon_sym_LPAREN] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_BANG] = ACTIONS(609), - [anon_sym_TILDE] = ACTIONS(609), - [anon_sym_PLUS_PLUS] = ACTIONS(609), - [anon_sym_DASH_DASH] = ACTIONS(609), - [anon_sym_new] = ACTIONS(611), - [anon_sym_class] = ACTIONS(611), - [anon_sym_switch] = ACTIONS(611), - [anon_sym_LBRACE] = ACTIONS(609), - [anon_sym_RBRACE] = ACTIONS(609), - [anon_sym_case] = ACTIONS(611), - [anon_sym_default] = ACTIONS(611), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_assert] = ACTIONS(611), - [anon_sym_do] = ACTIONS(611), - [anon_sym_while] = ACTIONS(611), - [anon_sym_break] = ACTIONS(611), - [anon_sym_continue] = ACTIONS(611), - [anon_sym_return] = ACTIONS(611), - [anon_sym_yield] = ACTIONS(611), - [anon_sym_synchronized] = ACTIONS(611), - [anon_sym_throw] = ACTIONS(611), - [anon_sym_try] = ACTIONS(611), - [anon_sym_if] = ACTIONS(611), - [anon_sym_else] = ACTIONS(611), - [anon_sym_for] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(611), - [anon_sym_open] = ACTIONS(611), - [anon_sym_module] = ACTIONS(611), - [anon_sym_static] = ACTIONS(611), - [anon_sym_package] = ACTIONS(611), - [anon_sym_import] = ACTIONS(611), - [anon_sym_enum] = ACTIONS(611), - [anon_sym_public] = ACTIONS(611), - [anon_sym_protected] = ACTIONS(611), - [anon_sym_private] = ACTIONS(611), - [anon_sym_abstract] = ACTIONS(611), - [anon_sym_final] = ACTIONS(611), - [anon_sym_strictfp] = ACTIONS(611), - [anon_sym_native] = ACTIONS(611), - [anon_sym_transient] = ACTIONS(611), - [anon_sym_volatile] = ACTIONS(611), - [anon_sym_sealed] = ACTIONS(611), - [anon_sym_non_DASHsealed] = ACTIONS(609), - [anon_sym_ATinterface] = ACTIONS(609), - [anon_sym_interface] = ACTIONS(611), - [anon_sym_byte] = ACTIONS(611), - [anon_sym_short] = ACTIONS(611), - [anon_sym_int] = ACTIONS(611), - [anon_sym_long] = ACTIONS(611), - [anon_sym_char] = ACTIONS(611), - [anon_sym_float] = ACTIONS(611), - [anon_sym_double] = ACTIONS(611), - [sym_boolean_type] = ACTIONS(611), - [sym_void_type] = ACTIONS(611), - [sym_this] = ACTIONS(611), - [sym_super] = ACTIONS(611), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [144] = { - [ts_builtin_sym_end] = ACTIONS(613), - [sym_identifier] = ACTIONS(615), - [sym_decimal_integer_literal] = ACTIONS(615), - [sym_hex_integer_literal] = ACTIONS(615), - [sym_octal_integer_literal] = ACTIONS(613), - [sym_binary_integer_literal] = ACTIONS(613), - [sym_decimal_floating_point_literal] = ACTIONS(613), - [sym_hex_floating_point_literal] = ACTIONS(615), - [sym_true] = ACTIONS(615), - [sym_false] = ACTIONS(615), - [sym_character_literal] = ACTIONS(613), - [sym_string_literal] = ACTIONS(615), - [sym_text_block] = ACTIONS(613), - [sym_null_literal] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_TILDE] = ACTIONS(613), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_new] = ACTIONS(615), - [anon_sym_class] = ACTIONS(615), - [anon_sym_switch] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_RBRACE] = ACTIONS(613), - [anon_sym_case] = ACTIONS(615), - [anon_sym_default] = ACTIONS(615), - [anon_sym_SEMI] = ACTIONS(613), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_do] = ACTIONS(615), - [anon_sym_while] = ACTIONS(615), - [anon_sym_break] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(615), - [anon_sym_return] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(615), - [anon_sym_synchronized] = ACTIONS(615), - [anon_sym_throw] = ACTIONS(615), - [anon_sym_try] = ACTIONS(615), - [anon_sym_if] = ACTIONS(615), - [anon_sym_else] = ACTIONS(615), - [anon_sym_for] = ACTIONS(615), - [anon_sym_AT] = ACTIONS(615), - [anon_sym_open] = ACTIONS(615), - [anon_sym_module] = ACTIONS(615), - [anon_sym_static] = ACTIONS(615), - [anon_sym_package] = ACTIONS(615), - [anon_sym_import] = ACTIONS(615), - [anon_sym_enum] = ACTIONS(615), - [anon_sym_public] = ACTIONS(615), - [anon_sym_protected] = ACTIONS(615), - [anon_sym_private] = ACTIONS(615), - [anon_sym_abstract] = ACTIONS(615), - [anon_sym_final] = ACTIONS(615), - [anon_sym_strictfp] = ACTIONS(615), - [anon_sym_native] = ACTIONS(615), - [anon_sym_transient] = ACTIONS(615), - [anon_sym_volatile] = ACTIONS(615), - [anon_sym_sealed] = ACTIONS(615), - [anon_sym_non_DASHsealed] = ACTIONS(613), - [anon_sym_ATinterface] = ACTIONS(613), - [anon_sym_interface] = ACTIONS(615), - [anon_sym_byte] = ACTIONS(615), - [anon_sym_short] = ACTIONS(615), - [anon_sym_int] = ACTIONS(615), - [anon_sym_long] = ACTIONS(615), - [anon_sym_char] = ACTIONS(615), - [anon_sym_float] = ACTIONS(615), - [anon_sym_double] = ACTIONS(615), - [sym_boolean_type] = ACTIONS(615), - [sym_void_type] = ACTIONS(615), - [sym_this] = ACTIONS(615), - [sym_super] = ACTIONS(615), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [145] = { - [ts_builtin_sym_end] = ACTIONS(617), - [sym_identifier] = ACTIONS(619), - [sym_decimal_integer_literal] = ACTIONS(619), - [sym_hex_integer_literal] = ACTIONS(619), - [sym_octal_integer_literal] = ACTIONS(617), - [sym_binary_integer_literal] = ACTIONS(617), - [sym_decimal_floating_point_literal] = ACTIONS(617), - [sym_hex_floating_point_literal] = ACTIONS(619), - [sym_true] = ACTIONS(619), - [sym_false] = ACTIONS(619), - [sym_character_literal] = ACTIONS(617), - [sym_string_literal] = ACTIONS(619), - [sym_text_block] = ACTIONS(617), - [sym_null_literal] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_new] = ACTIONS(619), - [anon_sym_class] = ACTIONS(619), - [anon_sym_switch] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(617), - [anon_sym_case] = ACTIONS(619), - [anon_sym_default] = ACTIONS(619), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_assert] = ACTIONS(619), - [anon_sym_do] = ACTIONS(619), - [anon_sym_while] = ACTIONS(619), - [anon_sym_break] = ACTIONS(619), - [anon_sym_continue] = ACTIONS(619), - [anon_sym_return] = ACTIONS(619), - [anon_sym_yield] = ACTIONS(619), - [anon_sym_synchronized] = ACTIONS(619), - [anon_sym_throw] = ACTIONS(619), - [anon_sym_try] = ACTIONS(619), - [anon_sym_if] = ACTIONS(619), - [anon_sym_else] = ACTIONS(619), - [anon_sym_for] = ACTIONS(619), - [anon_sym_AT] = ACTIONS(619), - [anon_sym_open] = ACTIONS(619), - [anon_sym_module] = ACTIONS(619), - [anon_sym_static] = ACTIONS(619), - [anon_sym_package] = ACTIONS(619), - [anon_sym_import] = ACTIONS(619), - [anon_sym_enum] = ACTIONS(619), - [anon_sym_public] = ACTIONS(619), - [anon_sym_protected] = ACTIONS(619), - [anon_sym_private] = ACTIONS(619), - [anon_sym_abstract] = ACTIONS(619), - [anon_sym_final] = ACTIONS(619), - [anon_sym_strictfp] = ACTIONS(619), - [anon_sym_native] = ACTIONS(619), - [anon_sym_transient] = ACTIONS(619), - [anon_sym_volatile] = ACTIONS(619), - [anon_sym_sealed] = ACTIONS(619), - [anon_sym_non_DASHsealed] = ACTIONS(617), - [anon_sym_ATinterface] = ACTIONS(617), - [anon_sym_interface] = ACTIONS(619), - [anon_sym_byte] = ACTIONS(619), - [anon_sym_short] = ACTIONS(619), - [anon_sym_int] = ACTIONS(619), - [anon_sym_long] = ACTIONS(619), - [anon_sym_char] = ACTIONS(619), - [anon_sym_float] = ACTIONS(619), - [anon_sym_double] = ACTIONS(619), - [sym_boolean_type] = ACTIONS(619), - [sym_void_type] = ACTIONS(619), - [sym_this] = ACTIONS(619), - [sym_super] = ACTIONS(619), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [146] = { - [ts_builtin_sym_end] = ACTIONS(621), - [sym_identifier] = ACTIONS(623), - [sym_decimal_integer_literal] = ACTIONS(623), - [sym_hex_integer_literal] = ACTIONS(623), - [sym_octal_integer_literal] = ACTIONS(621), - [sym_binary_integer_literal] = ACTIONS(621), - [sym_decimal_floating_point_literal] = ACTIONS(621), - [sym_hex_floating_point_literal] = ACTIONS(623), - [sym_true] = ACTIONS(623), - [sym_false] = ACTIONS(623), - [sym_character_literal] = ACTIONS(621), - [sym_string_literal] = ACTIONS(623), - [sym_text_block] = ACTIONS(621), - [sym_null_literal] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(621), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_new] = ACTIONS(623), - [anon_sym_class] = ACTIONS(623), - [anon_sym_switch] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(621), - [anon_sym_case] = ACTIONS(623), - [anon_sym_default] = ACTIONS(623), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_assert] = ACTIONS(623), - [anon_sym_do] = ACTIONS(623), - [anon_sym_while] = ACTIONS(623), - [anon_sym_break] = ACTIONS(623), - [anon_sym_continue] = ACTIONS(623), - [anon_sym_return] = ACTIONS(623), - [anon_sym_yield] = ACTIONS(623), - [anon_sym_synchronized] = ACTIONS(623), - [anon_sym_throw] = ACTIONS(623), - [anon_sym_try] = ACTIONS(623), - [anon_sym_if] = ACTIONS(623), - [anon_sym_else] = ACTIONS(623), - [anon_sym_for] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(623), - [anon_sym_open] = ACTIONS(623), - [anon_sym_module] = ACTIONS(623), - [anon_sym_static] = ACTIONS(623), - [anon_sym_package] = ACTIONS(623), - [anon_sym_import] = ACTIONS(623), - [anon_sym_enum] = ACTIONS(623), - [anon_sym_public] = ACTIONS(623), - [anon_sym_protected] = ACTIONS(623), - [anon_sym_private] = ACTIONS(623), - [anon_sym_abstract] = ACTIONS(623), - [anon_sym_final] = ACTIONS(623), - [anon_sym_strictfp] = ACTIONS(623), - [anon_sym_native] = ACTIONS(623), - [anon_sym_transient] = ACTIONS(623), - [anon_sym_volatile] = ACTIONS(623), - [anon_sym_sealed] = ACTIONS(623), - [anon_sym_non_DASHsealed] = ACTIONS(621), - [anon_sym_ATinterface] = ACTIONS(621), - [anon_sym_interface] = ACTIONS(623), - [anon_sym_byte] = ACTIONS(623), - [anon_sym_short] = ACTIONS(623), - [anon_sym_int] = ACTIONS(623), - [anon_sym_long] = ACTIONS(623), - [anon_sym_char] = ACTIONS(623), - [anon_sym_float] = ACTIONS(623), - [anon_sym_double] = ACTIONS(623), - [sym_boolean_type] = ACTIONS(623), - [sym_void_type] = ACTIONS(623), - [sym_this] = ACTIONS(623), - [sym_super] = ACTIONS(623), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [147] = { - [ts_builtin_sym_end] = ACTIONS(292), - [sym_identifier] = ACTIONS(294), - [sym_decimal_integer_literal] = ACTIONS(294), - [sym_hex_integer_literal] = ACTIONS(294), - [sym_octal_integer_literal] = ACTIONS(292), - [sym_binary_integer_literal] = ACTIONS(292), - [sym_decimal_floating_point_literal] = ACTIONS(292), - [sym_hex_floating_point_literal] = ACTIONS(294), - [sym_true] = ACTIONS(294), - [sym_false] = ACTIONS(294), - [sym_character_literal] = ACTIONS(292), - [sym_string_literal] = ACTIONS(294), - [sym_text_block] = ACTIONS(292), - [sym_null_literal] = ACTIONS(294), - [anon_sym_LPAREN] = ACTIONS(292), - [anon_sym_PLUS] = ACTIONS(294), - [anon_sym_DASH] = ACTIONS(294), - [anon_sym_BANG] = ACTIONS(292), - [anon_sym_TILDE] = ACTIONS(292), - [anon_sym_PLUS_PLUS] = ACTIONS(292), - [anon_sym_DASH_DASH] = ACTIONS(292), - [anon_sym_new] = ACTIONS(294), - [anon_sym_class] = ACTIONS(294), - [anon_sym_switch] = ACTIONS(294), - [anon_sym_LBRACE] = ACTIONS(292), - [anon_sym_RBRACE] = ACTIONS(292), - [anon_sym_case] = ACTIONS(294), - [anon_sym_default] = ACTIONS(294), - [anon_sym_SEMI] = ACTIONS(292), - [anon_sym_assert] = ACTIONS(294), - [anon_sym_do] = ACTIONS(294), - [anon_sym_while] = ACTIONS(294), - [anon_sym_break] = ACTIONS(294), - [anon_sym_continue] = ACTIONS(294), - [anon_sym_return] = ACTIONS(294), - [anon_sym_yield] = ACTIONS(294), - [anon_sym_synchronized] = ACTIONS(294), - [anon_sym_throw] = ACTIONS(294), - [anon_sym_try] = ACTIONS(294), - [anon_sym_if] = ACTIONS(294), - [anon_sym_else] = ACTIONS(294), - [anon_sym_for] = ACTIONS(294), - [anon_sym_AT] = ACTIONS(294), - [anon_sym_open] = ACTIONS(294), - [anon_sym_module] = ACTIONS(294), - [anon_sym_static] = ACTIONS(294), - [anon_sym_package] = ACTIONS(294), - [anon_sym_import] = ACTIONS(294), - [anon_sym_enum] = ACTIONS(294), - [anon_sym_public] = ACTIONS(294), - [anon_sym_protected] = ACTIONS(294), - [anon_sym_private] = ACTIONS(294), - [anon_sym_abstract] = ACTIONS(294), - [anon_sym_final] = ACTIONS(294), - [anon_sym_strictfp] = ACTIONS(294), - [anon_sym_native] = ACTIONS(294), - [anon_sym_transient] = ACTIONS(294), - [anon_sym_volatile] = ACTIONS(294), - [anon_sym_sealed] = ACTIONS(294), - [anon_sym_non_DASHsealed] = ACTIONS(292), - [anon_sym_ATinterface] = ACTIONS(292), - [anon_sym_interface] = ACTIONS(294), - [anon_sym_byte] = ACTIONS(294), - [anon_sym_short] = ACTIONS(294), - [anon_sym_int] = ACTIONS(294), - [anon_sym_long] = ACTIONS(294), - [anon_sym_char] = ACTIONS(294), - [anon_sym_float] = ACTIONS(294), - [anon_sym_double] = ACTIONS(294), - [sym_boolean_type] = ACTIONS(294), - [sym_void_type] = ACTIONS(294), - [sym_this] = ACTIONS(294), - [sym_super] = ACTIONS(294), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [148] = { - [ts_builtin_sym_end] = ACTIONS(625), - [sym_identifier] = ACTIONS(627), - [sym_decimal_integer_literal] = ACTIONS(627), - [sym_hex_integer_literal] = ACTIONS(627), - [sym_octal_integer_literal] = ACTIONS(625), - [sym_binary_integer_literal] = ACTIONS(625), - [sym_decimal_floating_point_literal] = ACTIONS(625), - [sym_hex_floating_point_literal] = ACTIONS(627), - [sym_true] = ACTIONS(627), - [sym_false] = ACTIONS(627), - [sym_character_literal] = ACTIONS(625), - [sym_string_literal] = ACTIONS(627), - [sym_text_block] = ACTIONS(625), - [sym_null_literal] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(625), - [anon_sym_new] = ACTIONS(627), - [anon_sym_class] = ACTIONS(627), - [anon_sym_switch] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_RBRACE] = ACTIONS(625), - [anon_sym_case] = ACTIONS(627), - [anon_sym_default] = ACTIONS(627), - [anon_sym_SEMI] = ACTIONS(625), - [anon_sym_assert] = ACTIONS(627), - [anon_sym_do] = ACTIONS(627), - [anon_sym_while] = ACTIONS(627), - [anon_sym_break] = ACTIONS(627), - [anon_sym_continue] = ACTIONS(627), - [anon_sym_return] = ACTIONS(627), - [anon_sym_yield] = ACTIONS(627), - [anon_sym_synchronized] = ACTIONS(627), - [anon_sym_throw] = ACTIONS(627), - [anon_sym_try] = ACTIONS(627), - [anon_sym_if] = ACTIONS(627), - [anon_sym_else] = ACTIONS(627), - [anon_sym_for] = ACTIONS(627), - [anon_sym_AT] = ACTIONS(627), - [anon_sym_open] = ACTIONS(627), - [anon_sym_module] = ACTIONS(627), - [anon_sym_static] = ACTIONS(627), - [anon_sym_package] = ACTIONS(627), - [anon_sym_import] = ACTIONS(627), - [anon_sym_enum] = ACTIONS(627), - [anon_sym_public] = ACTIONS(627), - [anon_sym_protected] = ACTIONS(627), - [anon_sym_private] = ACTIONS(627), - [anon_sym_abstract] = ACTIONS(627), - [anon_sym_final] = ACTIONS(627), - [anon_sym_strictfp] = ACTIONS(627), - [anon_sym_native] = ACTIONS(627), - [anon_sym_transient] = ACTIONS(627), - [anon_sym_volatile] = ACTIONS(627), - [anon_sym_sealed] = ACTIONS(627), - [anon_sym_non_DASHsealed] = ACTIONS(625), - [anon_sym_ATinterface] = ACTIONS(625), - [anon_sym_interface] = ACTIONS(627), - [anon_sym_byte] = ACTIONS(627), - [anon_sym_short] = ACTIONS(627), - [anon_sym_int] = ACTIONS(627), - [anon_sym_long] = ACTIONS(627), - [anon_sym_char] = ACTIONS(627), - [anon_sym_float] = ACTIONS(627), - [anon_sym_double] = ACTIONS(627), - [sym_boolean_type] = ACTIONS(627), - [sym_void_type] = ACTIONS(627), - [sym_this] = ACTIONS(627), - [sym_super] = ACTIONS(627), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [149] = { - [ts_builtin_sym_end] = ACTIONS(629), - [sym_identifier] = ACTIONS(631), - [sym_decimal_integer_literal] = ACTIONS(631), - [sym_hex_integer_literal] = ACTIONS(631), - [sym_octal_integer_literal] = ACTIONS(629), - [sym_binary_integer_literal] = ACTIONS(629), - [sym_decimal_floating_point_literal] = ACTIONS(629), - [sym_hex_floating_point_literal] = ACTIONS(631), - [sym_true] = ACTIONS(631), - [sym_false] = ACTIONS(631), - [sym_character_literal] = ACTIONS(629), - [sym_string_literal] = ACTIONS(631), - [sym_text_block] = ACTIONS(629), - [sym_null_literal] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_BANG] = ACTIONS(629), - [anon_sym_TILDE] = ACTIONS(629), - [anon_sym_PLUS_PLUS] = ACTIONS(629), - [anon_sym_DASH_DASH] = ACTIONS(629), - [anon_sym_new] = ACTIONS(631), - [anon_sym_class] = ACTIONS(631), - [anon_sym_switch] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(629), - [anon_sym_case] = ACTIONS(631), - [anon_sym_default] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(629), - [anon_sym_assert] = ACTIONS(631), - [anon_sym_do] = ACTIONS(631), - [anon_sym_while] = ACTIONS(631), - [anon_sym_break] = ACTIONS(631), - [anon_sym_continue] = ACTIONS(631), - [anon_sym_return] = ACTIONS(631), - [anon_sym_yield] = ACTIONS(631), - [anon_sym_synchronized] = ACTIONS(631), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_try] = ACTIONS(631), - [anon_sym_if] = ACTIONS(631), - [anon_sym_else] = ACTIONS(631), - [anon_sym_for] = ACTIONS(631), - [anon_sym_AT] = ACTIONS(631), - [anon_sym_open] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_static] = ACTIONS(631), - [anon_sym_package] = ACTIONS(631), - [anon_sym_import] = ACTIONS(631), - [anon_sym_enum] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_abstract] = ACTIONS(631), - [anon_sym_final] = ACTIONS(631), - [anon_sym_strictfp] = ACTIONS(631), - [anon_sym_native] = ACTIONS(631), - [anon_sym_transient] = ACTIONS(631), - [anon_sym_volatile] = ACTIONS(631), - [anon_sym_sealed] = ACTIONS(631), - [anon_sym_non_DASHsealed] = ACTIONS(629), - [anon_sym_ATinterface] = ACTIONS(629), - [anon_sym_interface] = ACTIONS(631), - [anon_sym_byte] = ACTIONS(631), - [anon_sym_short] = ACTIONS(631), - [anon_sym_int] = ACTIONS(631), - [anon_sym_long] = ACTIONS(631), - [anon_sym_char] = ACTIONS(631), - [anon_sym_float] = ACTIONS(631), - [anon_sym_double] = ACTIONS(631), - [sym_boolean_type] = ACTIONS(631), - [sym_void_type] = ACTIONS(631), - [sym_this] = ACTIONS(631), - [sym_super] = ACTIONS(631), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [150] = { - [ts_builtin_sym_end] = ACTIONS(633), - [sym_identifier] = ACTIONS(635), - [sym_decimal_integer_literal] = ACTIONS(635), - [sym_hex_integer_literal] = ACTIONS(635), - [sym_octal_integer_literal] = ACTIONS(633), - [sym_binary_integer_literal] = ACTIONS(633), - [sym_decimal_floating_point_literal] = ACTIONS(633), - [sym_hex_floating_point_literal] = ACTIONS(635), - [sym_true] = ACTIONS(635), - [sym_false] = ACTIONS(635), - [sym_character_literal] = ACTIONS(633), - [sym_string_literal] = ACTIONS(635), - [sym_text_block] = ACTIONS(633), - [sym_null_literal] = ACTIONS(635), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_PLUS] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(635), - [anon_sym_BANG] = ACTIONS(633), - [anon_sym_TILDE] = ACTIONS(633), - [anon_sym_PLUS_PLUS] = ACTIONS(633), - [anon_sym_DASH_DASH] = ACTIONS(633), - [anon_sym_new] = ACTIONS(635), - [anon_sym_class] = ACTIONS(635), - [anon_sym_switch] = ACTIONS(635), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(633), - [anon_sym_case] = ACTIONS(635), - [anon_sym_default] = ACTIONS(635), - [anon_sym_SEMI] = ACTIONS(633), - [anon_sym_assert] = ACTIONS(635), - [anon_sym_do] = ACTIONS(635), - [anon_sym_while] = ACTIONS(635), - [anon_sym_break] = ACTIONS(635), - [anon_sym_continue] = ACTIONS(635), - [anon_sym_return] = ACTIONS(635), - [anon_sym_yield] = ACTIONS(635), - [anon_sym_synchronized] = ACTIONS(635), - [anon_sym_throw] = ACTIONS(635), - [anon_sym_try] = ACTIONS(635), - [anon_sym_if] = ACTIONS(635), - [anon_sym_else] = ACTIONS(635), - [anon_sym_for] = ACTIONS(635), - [anon_sym_AT] = ACTIONS(635), - [anon_sym_open] = ACTIONS(635), - [anon_sym_module] = ACTIONS(635), - [anon_sym_static] = ACTIONS(635), - [anon_sym_package] = ACTIONS(635), - [anon_sym_import] = ACTIONS(635), - [anon_sym_enum] = ACTIONS(635), - [anon_sym_public] = ACTIONS(635), - [anon_sym_protected] = ACTIONS(635), - [anon_sym_private] = ACTIONS(635), - [anon_sym_abstract] = ACTIONS(635), - [anon_sym_final] = ACTIONS(635), - [anon_sym_strictfp] = ACTIONS(635), - [anon_sym_native] = ACTIONS(635), - [anon_sym_transient] = ACTIONS(635), - [anon_sym_volatile] = ACTIONS(635), - [anon_sym_sealed] = ACTIONS(635), - [anon_sym_non_DASHsealed] = ACTIONS(633), - [anon_sym_ATinterface] = ACTIONS(633), - [anon_sym_interface] = ACTIONS(635), - [anon_sym_byte] = ACTIONS(635), - [anon_sym_short] = ACTIONS(635), - [anon_sym_int] = ACTIONS(635), - [anon_sym_long] = ACTIONS(635), - [anon_sym_char] = ACTIONS(635), - [anon_sym_float] = ACTIONS(635), - [anon_sym_double] = ACTIONS(635), - [sym_boolean_type] = ACTIONS(635), - [sym_void_type] = ACTIONS(635), - [sym_this] = ACTIONS(635), - [sym_super] = ACTIONS(635), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [151] = { - [ts_builtin_sym_end] = ACTIONS(637), - [sym_identifier] = ACTIONS(639), - [sym_decimal_integer_literal] = ACTIONS(639), - [sym_hex_integer_literal] = ACTIONS(639), - [sym_octal_integer_literal] = ACTIONS(637), - [sym_binary_integer_literal] = ACTIONS(637), - [sym_decimal_floating_point_literal] = ACTIONS(637), - [sym_hex_floating_point_literal] = ACTIONS(639), - [sym_true] = ACTIONS(639), - [sym_false] = ACTIONS(639), - [sym_character_literal] = ACTIONS(637), - [sym_string_literal] = ACTIONS(639), - [sym_text_block] = ACTIONS(637), - [sym_null_literal] = ACTIONS(639), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_BANG] = ACTIONS(637), - [anon_sym_TILDE] = ACTIONS(637), - [anon_sym_PLUS_PLUS] = ACTIONS(637), - [anon_sym_DASH_DASH] = ACTIONS(637), - [anon_sym_new] = ACTIONS(639), - [anon_sym_class] = ACTIONS(639), - [anon_sym_switch] = ACTIONS(639), - [anon_sym_LBRACE] = ACTIONS(637), - [anon_sym_RBRACE] = ACTIONS(637), - [anon_sym_case] = ACTIONS(639), - [anon_sym_default] = ACTIONS(639), - [anon_sym_SEMI] = ACTIONS(637), - [anon_sym_assert] = ACTIONS(639), - [anon_sym_do] = ACTIONS(639), - [anon_sym_while] = ACTIONS(639), - [anon_sym_break] = ACTIONS(639), - [anon_sym_continue] = ACTIONS(639), - [anon_sym_return] = ACTIONS(639), - [anon_sym_yield] = ACTIONS(639), - [anon_sym_synchronized] = ACTIONS(639), - [anon_sym_throw] = ACTIONS(639), - [anon_sym_try] = ACTIONS(639), - [anon_sym_if] = ACTIONS(639), - [anon_sym_else] = ACTIONS(639), - [anon_sym_for] = ACTIONS(639), - [anon_sym_AT] = ACTIONS(639), - [anon_sym_open] = ACTIONS(639), - [anon_sym_module] = ACTIONS(639), - [anon_sym_static] = ACTIONS(639), - [anon_sym_package] = ACTIONS(639), - [anon_sym_import] = ACTIONS(639), - [anon_sym_enum] = ACTIONS(639), - [anon_sym_public] = ACTIONS(639), - [anon_sym_protected] = ACTIONS(639), - [anon_sym_private] = ACTIONS(639), - [anon_sym_abstract] = ACTIONS(639), - [anon_sym_final] = ACTIONS(639), - [anon_sym_strictfp] = ACTIONS(639), - [anon_sym_native] = ACTIONS(639), - [anon_sym_transient] = ACTIONS(639), - [anon_sym_volatile] = ACTIONS(639), - [anon_sym_sealed] = ACTIONS(639), - [anon_sym_non_DASHsealed] = ACTIONS(637), - [anon_sym_ATinterface] = ACTIONS(637), - [anon_sym_interface] = ACTIONS(639), - [anon_sym_byte] = ACTIONS(639), - [anon_sym_short] = ACTIONS(639), - [anon_sym_int] = ACTIONS(639), - [anon_sym_long] = ACTIONS(639), - [anon_sym_char] = ACTIONS(639), - [anon_sym_float] = ACTIONS(639), - [anon_sym_double] = ACTIONS(639), - [sym_boolean_type] = ACTIONS(639), - [sym_void_type] = ACTIONS(639), - [sym_this] = ACTIONS(639), - [sym_super] = ACTIONS(639), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [152] = { - [ts_builtin_sym_end] = ACTIONS(641), - [sym_identifier] = ACTIONS(643), - [sym_decimal_integer_literal] = ACTIONS(643), - [sym_hex_integer_literal] = ACTIONS(643), - [sym_octal_integer_literal] = ACTIONS(641), - [sym_binary_integer_literal] = ACTIONS(641), - [sym_decimal_floating_point_literal] = ACTIONS(641), - [sym_hex_floating_point_literal] = ACTIONS(643), - [sym_true] = ACTIONS(643), - [sym_false] = ACTIONS(643), - [sym_character_literal] = ACTIONS(641), - [sym_string_literal] = ACTIONS(643), - [sym_text_block] = ACTIONS(641), - [sym_null_literal] = ACTIONS(643), - [anon_sym_LPAREN] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_BANG] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(641), - [anon_sym_PLUS_PLUS] = ACTIONS(641), - [anon_sym_DASH_DASH] = ACTIONS(641), - [anon_sym_new] = ACTIONS(643), - [anon_sym_class] = ACTIONS(643), - [anon_sym_switch] = ACTIONS(643), - [anon_sym_LBRACE] = ACTIONS(641), - [anon_sym_RBRACE] = ACTIONS(641), - [anon_sym_case] = ACTIONS(643), - [anon_sym_default] = ACTIONS(643), - [anon_sym_SEMI] = ACTIONS(641), - [anon_sym_assert] = ACTIONS(643), - [anon_sym_do] = ACTIONS(643), - [anon_sym_while] = ACTIONS(643), - [anon_sym_break] = ACTIONS(643), - [anon_sym_continue] = ACTIONS(643), - [anon_sym_return] = ACTIONS(643), - [anon_sym_yield] = ACTIONS(643), - [anon_sym_synchronized] = ACTIONS(643), - [anon_sym_throw] = ACTIONS(643), - [anon_sym_try] = ACTIONS(643), - [anon_sym_if] = ACTIONS(643), - [anon_sym_else] = ACTIONS(643), - [anon_sym_for] = ACTIONS(643), - [anon_sym_AT] = ACTIONS(643), - [anon_sym_open] = ACTIONS(643), - [anon_sym_module] = ACTIONS(643), - [anon_sym_static] = ACTIONS(643), - [anon_sym_package] = ACTIONS(643), - [anon_sym_import] = ACTIONS(643), - [anon_sym_enum] = ACTIONS(643), - [anon_sym_public] = ACTIONS(643), - [anon_sym_protected] = ACTIONS(643), - [anon_sym_private] = ACTIONS(643), - [anon_sym_abstract] = ACTIONS(643), - [anon_sym_final] = ACTIONS(643), - [anon_sym_strictfp] = ACTIONS(643), - [anon_sym_native] = ACTIONS(643), - [anon_sym_transient] = ACTIONS(643), - [anon_sym_volatile] = ACTIONS(643), - [anon_sym_sealed] = ACTIONS(643), - [anon_sym_non_DASHsealed] = ACTIONS(641), - [anon_sym_ATinterface] = ACTIONS(641), - [anon_sym_interface] = ACTIONS(643), - [anon_sym_byte] = ACTIONS(643), - [anon_sym_short] = ACTIONS(643), - [anon_sym_int] = ACTIONS(643), - [anon_sym_long] = ACTIONS(643), - [anon_sym_char] = ACTIONS(643), - [anon_sym_float] = ACTIONS(643), - [anon_sym_double] = ACTIONS(643), - [sym_boolean_type] = ACTIONS(643), - [sym_void_type] = ACTIONS(643), - [sym_this] = ACTIONS(643), - [sym_super] = ACTIONS(643), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [153] = { - [ts_builtin_sym_end] = ACTIONS(645), - [sym_identifier] = ACTIONS(647), - [sym_decimal_integer_literal] = ACTIONS(647), - [sym_hex_integer_literal] = ACTIONS(647), - [sym_octal_integer_literal] = ACTIONS(645), - [sym_binary_integer_literal] = ACTIONS(645), - [sym_decimal_floating_point_literal] = ACTIONS(645), - [sym_hex_floating_point_literal] = ACTIONS(647), - [sym_true] = ACTIONS(647), - [sym_false] = ACTIONS(647), - [sym_character_literal] = ACTIONS(645), - [sym_string_literal] = ACTIONS(647), - [sym_text_block] = ACTIONS(645), - [sym_null_literal] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(647), - [anon_sym_DASH] = ACTIONS(647), - [anon_sym_BANG] = ACTIONS(645), - [anon_sym_TILDE] = ACTIONS(645), - [anon_sym_PLUS_PLUS] = ACTIONS(645), - [anon_sym_DASH_DASH] = ACTIONS(645), - [anon_sym_new] = ACTIONS(647), - [anon_sym_class] = ACTIONS(647), - [anon_sym_switch] = ACTIONS(647), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_RBRACE] = ACTIONS(645), - [anon_sym_case] = ACTIONS(647), - [anon_sym_default] = ACTIONS(647), - [anon_sym_SEMI] = ACTIONS(645), - [anon_sym_assert] = ACTIONS(647), - [anon_sym_do] = ACTIONS(647), - [anon_sym_while] = ACTIONS(647), - [anon_sym_break] = ACTIONS(647), - [anon_sym_continue] = ACTIONS(647), - [anon_sym_return] = ACTIONS(647), - [anon_sym_yield] = ACTIONS(647), - [anon_sym_synchronized] = ACTIONS(647), - [anon_sym_throw] = ACTIONS(647), - [anon_sym_try] = ACTIONS(647), - [anon_sym_if] = ACTIONS(647), - [anon_sym_else] = ACTIONS(647), - [anon_sym_for] = ACTIONS(647), - [anon_sym_AT] = ACTIONS(647), - [anon_sym_open] = ACTIONS(647), - [anon_sym_module] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_package] = ACTIONS(647), - [anon_sym_import] = ACTIONS(647), - [anon_sym_enum] = ACTIONS(647), - [anon_sym_public] = ACTIONS(647), - [anon_sym_protected] = ACTIONS(647), - [anon_sym_private] = ACTIONS(647), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_final] = ACTIONS(647), - [anon_sym_strictfp] = ACTIONS(647), - [anon_sym_native] = ACTIONS(647), - [anon_sym_transient] = ACTIONS(647), - [anon_sym_volatile] = ACTIONS(647), - [anon_sym_sealed] = ACTIONS(647), - [anon_sym_non_DASHsealed] = ACTIONS(645), - [anon_sym_ATinterface] = ACTIONS(645), - [anon_sym_interface] = ACTIONS(647), - [anon_sym_byte] = ACTIONS(647), - [anon_sym_short] = ACTIONS(647), - [anon_sym_int] = ACTIONS(647), - [anon_sym_long] = ACTIONS(647), - [anon_sym_char] = ACTIONS(647), - [anon_sym_float] = ACTIONS(647), - [anon_sym_double] = ACTIONS(647), - [sym_boolean_type] = ACTIONS(647), - [sym_void_type] = ACTIONS(647), - [sym_this] = ACTIONS(647), - [sym_super] = ACTIONS(647), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [154] = { - [ts_builtin_sym_end] = ACTIONS(649), - [sym_identifier] = ACTIONS(651), - [sym_decimal_integer_literal] = ACTIONS(651), - [sym_hex_integer_literal] = ACTIONS(651), - [sym_octal_integer_literal] = ACTIONS(649), - [sym_binary_integer_literal] = ACTIONS(649), - [sym_decimal_floating_point_literal] = ACTIONS(649), - [sym_hex_floating_point_literal] = ACTIONS(651), - [sym_true] = ACTIONS(651), - [sym_false] = ACTIONS(651), - [sym_character_literal] = ACTIONS(649), - [sym_string_literal] = ACTIONS(651), - [sym_text_block] = ACTIONS(649), - [sym_null_literal] = ACTIONS(651), - [anon_sym_LPAREN] = ACTIONS(649), - [anon_sym_PLUS] = ACTIONS(651), - [anon_sym_DASH] = ACTIONS(651), - [anon_sym_BANG] = ACTIONS(649), - [anon_sym_TILDE] = ACTIONS(649), - [anon_sym_PLUS_PLUS] = ACTIONS(649), - [anon_sym_DASH_DASH] = ACTIONS(649), - [anon_sym_new] = ACTIONS(651), - [anon_sym_class] = ACTIONS(651), - [anon_sym_switch] = ACTIONS(651), - [anon_sym_LBRACE] = ACTIONS(649), - [anon_sym_RBRACE] = ACTIONS(649), - [anon_sym_case] = ACTIONS(651), - [anon_sym_default] = ACTIONS(651), - [anon_sym_SEMI] = ACTIONS(649), - [anon_sym_assert] = ACTIONS(651), - [anon_sym_do] = ACTIONS(651), - [anon_sym_while] = ACTIONS(651), - [anon_sym_break] = ACTIONS(651), - [anon_sym_continue] = ACTIONS(651), - [anon_sym_return] = ACTIONS(651), - [anon_sym_yield] = ACTIONS(651), - [anon_sym_synchronized] = ACTIONS(651), - [anon_sym_throw] = ACTIONS(651), - [anon_sym_try] = ACTIONS(651), - [anon_sym_if] = ACTIONS(651), - [anon_sym_else] = ACTIONS(651), - [anon_sym_for] = ACTIONS(651), - [anon_sym_AT] = ACTIONS(651), - [anon_sym_open] = ACTIONS(651), - [anon_sym_module] = ACTIONS(651), - [anon_sym_static] = ACTIONS(651), - [anon_sym_package] = ACTIONS(651), - [anon_sym_import] = ACTIONS(651), - [anon_sym_enum] = ACTIONS(651), - [anon_sym_public] = ACTIONS(651), - [anon_sym_protected] = ACTIONS(651), - [anon_sym_private] = ACTIONS(651), - [anon_sym_abstract] = ACTIONS(651), - [anon_sym_final] = ACTIONS(651), - [anon_sym_strictfp] = ACTIONS(651), - [anon_sym_native] = ACTIONS(651), - [anon_sym_transient] = ACTIONS(651), - [anon_sym_volatile] = ACTIONS(651), - [anon_sym_sealed] = ACTIONS(651), - [anon_sym_non_DASHsealed] = ACTIONS(649), - [anon_sym_ATinterface] = ACTIONS(649), - [anon_sym_interface] = ACTIONS(651), - [anon_sym_byte] = ACTIONS(651), - [anon_sym_short] = ACTIONS(651), - [anon_sym_int] = ACTIONS(651), - [anon_sym_long] = ACTIONS(651), - [anon_sym_char] = ACTIONS(651), - [anon_sym_float] = ACTIONS(651), - [anon_sym_double] = ACTIONS(651), - [sym_boolean_type] = ACTIONS(651), - [sym_void_type] = ACTIONS(651), - [sym_this] = ACTIONS(651), - [sym_super] = ACTIONS(651), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [155] = { - [ts_builtin_sym_end] = ACTIONS(653), - [sym_identifier] = ACTIONS(655), - [sym_decimal_integer_literal] = ACTIONS(655), - [sym_hex_integer_literal] = ACTIONS(655), - [sym_octal_integer_literal] = ACTIONS(653), - [sym_binary_integer_literal] = ACTIONS(653), - [sym_decimal_floating_point_literal] = ACTIONS(653), - [sym_hex_floating_point_literal] = ACTIONS(655), - [sym_true] = ACTIONS(655), - [sym_false] = ACTIONS(655), - [sym_character_literal] = ACTIONS(653), - [sym_string_literal] = ACTIONS(655), - [sym_text_block] = ACTIONS(653), - [sym_null_literal] = ACTIONS(655), - [anon_sym_LPAREN] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(655), - [anon_sym_DASH] = ACTIONS(655), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_TILDE] = ACTIONS(653), - [anon_sym_PLUS_PLUS] = ACTIONS(653), - [anon_sym_DASH_DASH] = ACTIONS(653), - [anon_sym_new] = ACTIONS(655), - [anon_sym_class] = ACTIONS(655), - [anon_sym_switch] = ACTIONS(655), - [anon_sym_LBRACE] = ACTIONS(653), - [anon_sym_RBRACE] = ACTIONS(653), - [anon_sym_case] = ACTIONS(655), - [anon_sym_default] = ACTIONS(655), - [anon_sym_SEMI] = ACTIONS(653), - [anon_sym_assert] = ACTIONS(655), - [anon_sym_do] = ACTIONS(655), - [anon_sym_while] = ACTIONS(655), - [anon_sym_break] = ACTIONS(655), - [anon_sym_continue] = ACTIONS(655), - [anon_sym_return] = ACTIONS(655), - [anon_sym_yield] = ACTIONS(655), - [anon_sym_synchronized] = ACTIONS(655), - [anon_sym_throw] = ACTIONS(655), - [anon_sym_try] = ACTIONS(655), - [anon_sym_if] = ACTIONS(655), - [anon_sym_else] = ACTIONS(655), - [anon_sym_for] = ACTIONS(655), - [anon_sym_AT] = ACTIONS(655), - [anon_sym_open] = ACTIONS(655), - [anon_sym_module] = ACTIONS(655), - [anon_sym_static] = ACTIONS(655), - [anon_sym_package] = ACTIONS(655), - [anon_sym_import] = ACTIONS(655), - [anon_sym_enum] = ACTIONS(655), - [anon_sym_public] = ACTIONS(655), - [anon_sym_protected] = ACTIONS(655), - [anon_sym_private] = ACTIONS(655), - [anon_sym_abstract] = ACTIONS(655), - [anon_sym_final] = ACTIONS(655), - [anon_sym_strictfp] = ACTIONS(655), - [anon_sym_native] = ACTIONS(655), - [anon_sym_transient] = ACTIONS(655), - [anon_sym_volatile] = ACTIONS(655), - [anon_sym_sealed] = ACTIONS(655), - [anon_sym_non_DASHsealed] = ACTIONS(653), - [anon_sym_ATinterface] = ACTIONS(653), - [anon_sym_interface] = ACTIONS(655), - [anon_sym_byte] = ACTIONS(655), - [anon_sym_short] = ACTIONS(655), - [anon_sym_int] = ACTIONS(655), - [anon_sym_long] = ACTIONS(655), - [anon_sym_char] = ACTIONS(655), - [anon_sym_float] = ACTIONS(655), - [anon_sym_double] = ACTIONS(655), - [sym_boolean_type] = ACTIONS(655), - [sym_void_type] = ACTIONS(655), - [sym_this] = ACTIONS(655), - [sym_super] = ACTIONS(655), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [156] = { - [ts_builtin_sym_end] = ACTIONS(657), - [sym_identifier] = ACTIONS(659), - [sym_decimal_integer_literal] = ACTIONS(659), - [sym_hex_integer_literal] = ACTIONS(659), - [sym_octal_integer_literal] = ACTIONS(657), - [sym_binary_integer_literal] = ACTIONS(657), - [sym_decimal_floating_point_literal] = ACTIONS(657), - [sym_hex_floating_point_literal] = ACTIONS(659), - [sym_true] = ACTIONS(659), - [sym_false] = ACTIONS(659), - [sym_character_literal] = ACTIONS(657), - [sym_string_literal] = ACTIONS(659), - [sym_text_block] = ACTIONS(657), - [sym_null_literal] = ACTIONS(659), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(659), - [anon_sym_BANG] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_PLUS_PLUS] = ACTIONS(657), - [anon_sym_DASH_DASH] = ACTIONS(657), - [anon_sym_new] = ACTIONS(659), - [anon_sym_class] = ACTIONS(659), - [anon_sym_switch] = ACTIONS(659), - [anon_sym_LBRACE] = ACTIONS(657), - [anon_sym_RBRACE] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_default] = ACTIONS(659), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_assert] = ACTIONS(659), - [anon_sym_do] = ACTIONS(659), - [anon_sym_while] = ACTIONS(659), - [anon_sym_break] = ACTIONS(659), - [anon_sym_continue] = ACTIONS(659), - [anon_sym_return] = ACTIONS(659), - [anon_sym_yield] = ACTIONS(659), - [anon_sym_synchronized] = ACTIONS(659), - [anon_sym_throw] = ACTIONS(659), - [anon_sym_try] = ACTIONS(659), - [anon_sym_if] = ACTIONS(659), - [anon_sym_else] = ACTIONS(659), - [anon_sym_for] = ACTIONS(659), - [anon_sym_AT] = ACTIONS(659), - [anon_sym_open] = ACTIONS(659), - [anon_sym_module] = ACTIONS(659), - [anon_sym_static] = ACTIONS(659), - [anon_sym_package] = ACTIONS(659), - [anon_sym_import] = ACTIONS(659), - [anon_sym_enum] = ACTIONS(659), - [anon_sym_public] = ACTIONS(659), - [anon_sym_protected] = ACTIONS(659), - [anon_sym_private] = ACTIONS(659), - [anon_sym_abstract] = ACTIONS(659), - [anon_sym_final] = ACTIONS(659), - [anon_sym_strictfp] = ACTIONS(659), - [anon_sym_native] = ACTIONS(659), - [anon_sym_transient] = ACTIONS(659), - [anon_sym_volatile] = ACTIONS(659), - [anon_sym_sealed] = ACTIONS(659), - [anon_sym_non_DASHsealed] = ACTIONS(657), - [anon_sym_ATinterface] = ACTIONS(657), - [anon_sym_interface] = ACTIONS(659), - [anon_sym_byte] = ACTIONS(659), - [anon_sym_short] = ACTIONS(659), - [anon_sym_int] = ACTIONS(659), - [anon_sym_long] = ACTIONS(659), - [anon_sym_char] = ACTIONS(659), - [anon_sym_float] = ACTIONS(659), - [anon_sym_double] = ACTIONS(659), - [sym_boolean_type] = ACTIONS(659), - [sym_void_type] = ACTIONS(659), - [sym_this] = ACTIONS(659), - [sym_super] = ACTIONS(659), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [157] = { - [ts_builtin_sym_end] = ACTIONS(661), - [sym_identifier] = ACTIONS(663), - [sym_decimal_integer_literal] = ACTIONS(663), - [sym_hex_integer_literal] = ACTIONS(663), - [sym_octal_integer_literal] = ACTIONS(661), - [sym_binary_integer_literal] = ACTIONS(661), - [sym_decimal_floating_point_literal] = ACTIONS(661), - [sym_hex_floating_point_literal] = ACTIONS(663), - [sym_true] = ACTIONS(663), - [sym_false] = ACTIONS(663), - [sym_character_literal] = ACTIONS(661), - [sym_string_literal] = ACTIONS(663), - [sym_text_block] = ACTIONS(661), - [sym_null_literal] = ACTIONS(663), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_BANG] = ACTIONS(661), - [anon_sym_TILDE] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(661), - [anon_sym_DASH_DASH] = ACTIONS(661), - [anon_sym_new] = ACTIONS(663), - [anon_sym_class] = ACTIONS(663), - [anon_sym_switch] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(661), - [anon_sym_RBRACE] = ACTIONS(661), - [anon_sym_case] = ACTIONS(663), - [anon_sym_default] = ACTIONS(663), - [anon_sym_SEMI] = ACTIONS(661), - [anon_sym_assert] = ACTIONS(663), - [anon_sym_do] = ACTIONS(663), - [anon_sym_while] = ACTIONS(663), - [anon_sym_break] = ACTIONS(663), - [anon_sym_continue] = ACTIONS(663), - [anon_sym_return] = ACTIONS(663), - [anon_sym_yield] = ACTIONS(663), - [anon_sym_synchronized] = ACTIONS(663), - [anon_sym_throw] = ACTIONS(663), - [anon_sym_try] = ACTIONS(663), - [anon_sym_if] = ACTIONS(663), - [anon_sym_else] = ACTIONS(663), - [anon_sym_for] = ACTIONS(663), - [anon_sym_AT] = ACTIONS(663), - [anon_sym_open] = ACTIONS(663), - [anon_sym_module] = ACTIONS(663), - [anon_sym_static] = ACTIONS(663), - [anon_sym_package] = ACTIONS(663), - [anon_sym_import] = ACTIONS(663), - [anon_sym_enum] = ACTIONS(663), - [anon_sym_public] = ACTIONS(663), - [anon_sym_protected] = ACTIONS(663), - [anon_sym_private] = ACTIONS(663), - [anon_sym_abstract] = ACTIONS(663), - [anon_sym_final] = ACTIONS(663), - [anon_sym_strictfp] = ACTIONS(663), - [anon_sym_native] = ACTIONS(663), - [anon_sym_transient] = ACTIONS(663), - [anon_sym_volatile] = ACTIONS(663), - [anon_sym_sealed] = ACTIONS(663), - [anon_sym_non_DASHsealed] = ACTIONS(661), - [anon_sym_ATinterface] = ACTIONS(661), - [anon_sym_interface] = ACTIONS(663), - [anon_sym_byte] = ACTIONS(663), - [anon_sym_short] = ACTIONS(663), - [anon_sym_int] = ACTIONS(663), - [anon_sym_long] = ACTIONS(663), - [anon_sym_char] = ACTIONS(663), - [anon_sym_float] = ACTIONS(663), - [anon_sym_double] = ACTIONS(663), - [sym_boolean_type] = ACTIONS(663), - [sym_void_type] = ACTIONS(663), - [sym_this] = ACTIONS(663), - [sym_super] = ACTIONS(663), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [158] = { - [ts_builtin_sym_end] = ACTIONS(665), - [sym_identifier] = ACTIONS(667), - [sym_decimal_integer_literal] = ACTIONS(667), - [sym_hex_integer_literal] = ACTIONS(667), - [sym_octal_integer_literal] = ACTIONS(665), - [sym_binary_integer_literal] = ACTIONS(665), - [sym_decimal_floating_point_literal] = ACTIONS(665), - [sym_hex_floating_point_literal] = ACTIONS(667), - [sym_true] = ACTIONS(667), - [sym_false] = ACTIONS(667), - [sym_character_literal] = ACTIONS(665), - [sym_string_literal] = ACTIONS(667), - [sym_text_block] = ACTIONS(665), - [sym_null_literal] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(665), - [anon_sym_PLUS] = ACTIONS(667), - [anon_sym_DASH] = ACTIONS(667), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_TILDE] = ACTIONS(665), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_new] = ACTIONS(667), - [anon_sym_class] = ACTIONS(667), - [anon_sym_switch] = ACTIONS(667), - [anon_sym_LBRACE] = ACTIONS(665), - [anon_sym_RBRACE] = ACTIONS(665), - [anon_sym_case] = ACTIONS(667), - [anon_sym_default] = ACTIONS(667), - [anon_sym_SEMI] = ACTIONS(665), - [anon_sym_assert] = ACTIONS(667), - [anon_sym_do] = ACTIONS(667), - [anon_sym_while] = ACTIONS(667), - [anon_sym_break] = ACTIONS(667), - [anon_sym_continue] = ACTIONS(667), - [anon_sym_return] = ACTIONS(667), - [anon_sym_yield] = ACTIONS(667), - [anon_sym_synchronized] = ACTIONS(667), - [anon_sym_throw] = ACTIONS(667), - [anon_sym_try] = ACTIONS(667), - [anon_sym_if] = ACTIONS(667), - [anon_sym_else] = ACTIONS(667), - [anon_sym_for] = ACTIONS(667), - [anon_sym_AT] = ACTIONS(667), - [anon_sym_open] = ACTIONS(667), - [anon_sym_module] = ACTIONS(667), - [anon_sym_static] = ACTIONS(667), - [anon_sym_package] = ACTIONS(667), - [anon_sym_import] = ACTIONS(667), - [anon_sym_enum] = ACTIONS(667), - [anon_sym_public] = ACTIONS(667), - [anon_sym_protected] = ACTIONS(667), - [anon_sym_private] = ACTIONS(667), - [anon_sym_abstract] = ACTIONS(667), - [anon_sym_final] = ACTIONS(667), - [anon_sym_strictfp] = ACTIONS(667), - [anon_sym_native] = ACTIONS(667), - [anon_sym_transient] = ACTIONS(667), - [anon_sym_volatile] = ACTIONS(667), - [anon_sym_sealed] = ACTIONS(667), - [anon_sym_non_DASHsealed] = ACTIONS(665), - [anon_sym_ATinterface] = ACTIONS(665), - [anon_sym_interface] = ACTIONS(667), - [anon_sym_byte] = ACTIONS(667), - [anon_sym_short] = ACTIONS(667), - [anon_sym_int] = ACTIONS(667), - [anon_sym_long] = ACTIONS(667), - [anon_sym_char] = ACTIONS(667), - [anon_sym_float] = ACTIONS(667), - [anon_sym_double] = ACTIONS(667), - [sym_boolean_type] = ACTIONS(667), - [sym_void_type] = ACTIONS(667), - [sym_this] = ACTIONS(667), - [sym_super] = ACTIONS(667), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [159] = { - [ts_builtin_sym_end] = ACTIONS(669), - [sym_identifier] = ACTIONS(671), - [sym_decimal_integer_literal] = ACTIONS(671), - [sym_hex_integer_literal] = ACTIONS(671), - [sym_octal_integer_literal] = ACTIONS(669), - [sym_binary_integer_literal] = ACTIONS(669), - [sym_decimal_floating_point_literal] = ACTIONS(669), - [sym_hex_floating_point_literal] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [sym_character_literal] = ACTIONS(669), - [sym_string_literal] = ACTIONS(671), - [sym_text_block] = ACTIONS(669), - [sym_null_literal] = ACTIONS(671), - [anon_sym_LPAREN] = ACTIONS(669), - [anon_sym_PLUS] = ACTIONS(671), - [anon_sym_DASH] = ACTIONS(671), - [anon_sym_BANG] = ACTIONS(669), - [anon_sym_TILDE] = ACTIONS(669), - [anon_sym_PLUS_PLUS] = ACTIONS(669), - [anon_sym_DASH_DASH] = ACTIONS(669), - [anon_sym_new] = ACTIONS(671), - [anon_sym_class] = ACTIONS(671), - [anon_sym_switch] = ACTIONS(671), - [anon_sym_LBRACE] = ACTIONS(669), - [anon_sym_RBRACE] = ACTIONS(669), - [anon_sym_case] = ACTIONS(671), - [anon_sym_default] = ACTIONS(671), - [anon_sym_SEMI] = ACTIONS(669), - [anon_sym_assert] = ACTIONS(671), - [anon_sym_do] = ACTIONS(671), - [anon_sym_while] = ACTIONS(671), - [anon_sym_break] = ACTIONS(671), - [anon_sym_continue] = ACTIONS(671), - [anon_sym_return] = ACTIONS(671), - [anon_sym_yield] = ACTIONS(671), - [anon_sym_synchronized] = ACTIONS(671), - [anon_sym_throw] = ACTIONS(671), - [anon_sym_try] = ACTIONS(671), - [anon_sym_if] = ACTIONS(671), - [anon_sym_else] = ACTIONS(671), - [anon_sym_for] = ACTIONS(671), - [anon_sym_AT] = ACTIONS(671), - [anon_sym_open] = ACTIONS(671), - [anon_sym_module] = ACTIONS(671), - [anon_sym_static] = ACTIONS(671), - [anon_sym_package] = ACTIONS(671), - [anon_sym_import] = ACTIONS(671), - [anon_sym_enum] = ACTIONS(671), - [anon_sym_public] = ACTIONS(671), - [anon_sym_protected] = ACTIONS(671), - [anon_sym_private] = ACTIONS(671), - [anon_sym_abstract] = ACTIONS(671), - [anon_sym_final] = ACTIONS(671), - [anon_sym_strictfp] = ACTIONS(671), - [anon_sym_native] = ACTIONS(671), - [anon_sym_transient] = ACTIONS(671), - [anon_sym_volatile] = ACTIONS(671), - [anon_sym_sealed] = ACTIONS(671), - [anon_sym_non_DASHsealed] = ACTIONS(669), - [anon_sym_ATinterface] = ACTIONS(669), - [anon_sym_interface] = ACTIONS(671), - [anon_sym_byte] = ACTIONS(671), - [anon_sym_short] = ACTIONS(671), - [anon_sym_int] = ACTIONS(671), - [anon_sym_long] = ACTIONS(671), - [anon_sym_char] = ACTIONS(671), - [anon_sym_float] = ACTIONS(671), - [anon_sym_double] = ACTIONS(671), - [sym_boolean_type] = ACTIONS(671), - [sym_void_type] = ACTIONS(671), - [sym_this] = ACTIONS(671), - [sym_super] = ACTIONS(671), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [160] = { - [ts_builtin_sym_end] = ACTIONS(673), - [sym_identifier] = ACTIONS(675), - [sym_decimal_integer_literal] = ACTIONS(675), - [sym_hex_integer_literal] = ACTIONS(675), - [sym_octal_integer_literal] = ACTIONS(673), - [sym_binary_integer_literal] = ACTIONS(673), - [sym_decimal_floating_point_literal] = ACTIONS(673), - [sym_hex_floating_point_literal] = ACTIONS(675), - [sym_true] = ACTIONS(675), - [sym_false] = ACTIONS(675), - [sym_character_literal] = ACTIONS(673), - [sym_string_literal] = ACTIONS(675), - [sym_text_block] = ACTIONS(673), - [sym_null_literal] = ACTIONS(675), - [anon_sym_LPAREN] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(673), - [anon_sym_PLUS_PLUS] = ACTIONS(673), - [anon_sym_DASH_DASH] = ACTIONS(673), - [anon_sym_new] = ACTIONS(675), - [anon_sym_class] = ACTIONS(675), - [anon_sym_switch] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(673), - [anon_sym_RBRACE] = ACTIONS(673), - [anon_sym_case] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(673), - [anon_sym_assert] = ACTIONS(675), - [anon_sym_do] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_yield] = ACTIONS(675), - [anon_sym_synchronized] = ACTIONS(675), - [anon_sym_throw] = ACTIONS(675), - [anon_sym_try] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_else] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_open] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_package] = ACTIONS(675), - [anon_sym_import] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_abstract] = ACTIONS(675), - [anon_sym_final] = ACTIONS(675), - [anon_sym_strictfp] = ACTIONS(675), - [anon_sym_native] = ACTIONS(675), - [anon_sym_transient] = ACTIONS(675), - [anon_sym_volatile] = ACTIONS(675), - [anon_sym_sealed] = ACTIONS(675), - [anon_sym_non_DASHsealed] = ACTIONS(673), - [anon_sym_ATinterface] = ACTIONS(673), - [anon_sym_interface] = ACTIONS(675), - [anon_sym_byte] = ACTIONS(675), - [anon_sym_short] = ACTIONS(675), - [anon_sym_int] = ACTIONS(675), - [anon_sym_long] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_float] = ACTIONS(675), - [anon_sym_double] = ACTIONS(675), - [sym_boolean_type] = ACTIONS(675), - [sym_void_type] = ACTIONS(675), - [sym_this] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [161] = { - [ts_builtin_sym_end] = ACTIONS(677), - [sym_identifier] = ACTIONS(679), - [sym_decimal_integer_literal] = ACTIONS(679), - [sym_hex_integer_literal] = ACTIONS(679), - [sym_octal_integer_literal] = ACTIONS(677), - [sym_binary_integer_literal] = ACTIONS(677), - [sym_decimal_floating_point_literal] = ACTIONS(677), - [sym_hex_floating_point_literal] = ACTIONS(679), - [sym_true] = ACTIONS(679), - [sym_false] = ACTIONS(679), - [sym_character_literal] = ACTIONS(677), - [sym_string_literal] = ACTIONS(679), - [sym_text_block] = ACTIONS(677), - [sym_null_literal] = ACTIONS(679), - [anon_sym_LPAREN] = ACTIONS(677), - [anon_sym_PLUS] = ACTIONS(679), - [anon_sym_DASH] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(677), - [anon_sym_TILDE] = ACTIONS(677), - [anon_sym_PLUS_PLUS] = ACTIONS(677), - [anon_sym_DASH_DASH] = ACTIONS(677), - [anon_sym_new] = ACTIONS(679), - [anon_sym_class] = ACTIONS(679), - [anon_sym_switch] = ACTIONS(679), - [anon_sym_LBRACE] = ACTIONS(677), - [anon_sym_RBRACE] = ACTIONS(677), - [anon_sym_case] = ACTIONS(679), - [anon_sym_default] = ACTIONS(679), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_assert] = ACTIONS(679), - [anon_sym_do] = ACTIONS(679), - [anon_sym_while] = ACTIONS(679), - [anon_sym_break] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(679), - [anon_sym_return] = ACTIONS(679), - [anon_sym_yield] = ACTIONS(679), - [anon_sym_synchronized] = ACTIONS(679), - [anon_sym_throw] = ACTIONS(679), - [anon_sym_try] = ACTIONS(679), - [anon_sym_if] = ACTIONS(679), - [anon_sym_else] = ACTIONS(679), - [anon_sym_for] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(679), - [anon_sym_open] = ACTIONS(679), - [anon_sym_module] = ACTIONS(679), - [anon_sym_static] = ACTIONS(679), - [anon_sym_package] = ACTIONS(679), - [anon_sym_import] = ACTIONS(679), - [anon_sym_enum] = ACTIONS(679), - [anon_sym_public] = ACTIONS(679), - [anon_sym_protected] = ACTIONS(679), - [anon_sym_private] = ACTIONS(679), - [anon_sym_abstract] = ACTIONS(679), - [anon_sym_final] = ACTIONS(679), - [anon_sym_strictfp] = ACTIONS(679), - [anon_sym_native] = ACTIONS(679), - [anon_sym_transient] = ACTIONS(679), - [anon_sym_volatile] = ACTIONS(679), - [anon_sym_sealed] = ACTIONS(679), - [anon_sym_non_DASHsealed] = ACTIONS(677), - [anon_sym_ATinterface] = ACTIONS(677), - [anon_sym_interface] = ACTIONS(679), - [anon_sym_byte] = ACTIONS(679), - [anon_sym_short] = ACTIONS(679), - [anon_sym_int] = ACTIONS(679), - [anon_sym_long] = ACTIONS(679), - [anon_sym_char] = ACTIONS(679), - [anon_sym_float] = ACTIONS(679), - [anon_sym_double] = ACTIONS(679), - [sym_boolean_type] = ACTIONS(679), - [sym_void_type] = ACTIONS(679), - [sym_this] = ACTIONS(679), - [sym_super] = ACTIONS(679), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [162] = { - [ts_builtin_sym_end] = ACTIONS(681), - [sym_identifier] = ACTIONS(683), - [sym_decimal_integer_literal] = ACTIONS(683), - [sym_hex_integer_literal] = ACTIONS(683), - [sym_octal_integer_literal] = ACTIONS(681), - [sym_binary_integer_literal] = ACTIONS(681), - [sym_decimal_floating_point_literal] = ACTIONS(681), - [sym_hex_floating_point_literal] = ACTIONS(683), - [sym_true] = ACTIONS(683), - [sym_false] = ACTIONS(683), - [sym_character_literal] = ACTIONS(681), - [sym_string_literal] = ACTIONS(683), - [sym_text_block] = ACTIONS(681), - [sym_null_literal] = ACTIONS(683), - [anon_sym_LPAREN] = ACTIONS(681), - [anon_sym_PLUS] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), - [anon_sym_new] = ACTIONS(683), - [anon_sym_class] = ACTIONS(683), - [anon_sym_switch] = ACTIONS(683), - [anon_sym_LBRACE] = ACTIONS(681), - [anon_sym_RBRACE] = ACTIONS(681), - [anon_sym_case] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(681), - [anon_sym_assert] = ACTIONS(683), - [anon_sym_do] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_yield] = ACTIONS(683), - [anon_sym_synchronized] = ACTIONS(683), - [anon_sym_throw] = ACTIONS(683), - [anon_sym_try] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_else] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_AT] = ACTIONS(683), - [anon_sym_open] = ACTIONS(683), - [anon_sym_module] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_package] = ACTIONS(683), - [anon_sym_import] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_public] = ACTIONS(683), - [anon_sym_protected] = ACTIONS(683), - [anon_sym_private] = ACTIONS(683), - [anon_sym_abstract] = ACTIONS(683), - [anon_sym_final] = ACTIONS(683), - [anon_sym_strictfp] = ACTIONS(683), - [anon_sym_native] = ACTIONS(683), - [anon_sym_transient] = ACTIONS(683), - [anon_sym_volatile] = ACTIONS(683), - [anon_sym_sealed] = ACTIONS(683), - [anon_sym_non_DASHsealed] = ACTIONS(681), - [anon_sym_ATinterface] = ACTIONS(681), - [anon_sym_interface] = ACTIONS(683), - [anon_sym_byte] = ACTIONS(683), - [anon_sym_short] = ACTIONS(683), - [anon_sym_int] = ACTIONS(683), - [anon_sym_long] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_float] = ACTIONS(683), - [anon_sym_double] = ACTIONS(683), - [sym_boolean_type] = ACTIONS(683), - [sym_void_type] = ACTIONS(683), - [sym_this] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [163] = { - [ts_builtin_sym_end] = ACTIONS(685), - [sym_identifier] = ACTIONS(687), - [sym_decimal_integer_literal] = ACTIONS(687), - [sym_hex_integer_literal] = ACTIONS(687), - [sym_octal_integer_literal] = ACTIONS(685), - [sym_binary_integer_literal] = ACTIONS(685), - [sym_decimal_floating_point_literal] = ACTIONS(685), - [sym_hex_floating_point_literal] = ACTIONS(687), - [sym_true] = ACTIONS(687), - [sym_false] = ACTIONS(687), - [sym_character_literal] = ACTIONS(685), - [sym_string_literal] = ACTIONS(687), - [sym_text_block] = ACTIONS(685), - [sym_null_literal] = ACTIONS(687), - [anon_sym_LPAREN] = ACTIONS(685), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_PLUS_PLUS] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(685), - [anon_sym_new] = ACTIONS(687), - [anon_sym_class] = ACTIONS(687), - [anon_sym_switch] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_RBRACE] = ACTIONS(685), - [anon_sym_case] = ACTIONS(687), - [anon_sym_default] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_assert] = ACTIONS(687), - [anon_sym_do] = ACTIONS(687), - [anon_sym_while] = ACTIONS(687), - [anon_sym_break] = ACTIONS(687), - [anon_sym_continue] = ACTIONS(687), - [anon_sym_return] = ACTIONS(687), - [anon_sym_yield] = ACTIONS(687), - [anon_sym_synchronized] = ACTIONS(687), - [anon_sym_throw] = ACTIONS(687), - [anon_sym_try] = ACTIONS(687), - [anon_sym_if] = ACTIONS(687), - [anon_sym_else] = ACTIONS(687), - [anon_sym_for] = ACTIONS(687), - [anon_sym_AT] = ACTIONS(687), - [anon_sym_open] = ACTIONS(687), - [anon_sym_module] = ACTIONS(687), - [anon_sym_static] = ACTIONS(687), - [anon_sym_package] = ACTIONS(687), - [anon_sym_import] = ACTIONS(687), - [anon_sym_enum] = ACTIONS(687), - [anon_sym_public] = ACTIONS(687), - [anon_sym_protected] = ACTIONS(687), - [anon_sym_private] = ACTIONS(687), - [anon_sym_abstract] = ACTIONS(687), - [anon_sym_final] = ACTIONS(687), - [anon_sym_strictfp] = ACTIONS(687), - [anon_sym_native] = ACTIONS(687), - [anon_sym_transient] = ACTIONS(687), - [anon_sym_volatile] = ACTIONS(687), - [anon_sym_sealed] = ACTIONS(687), - [anon_sym_non_DASHsealed] = ACTIONS(685), - [anon_sym_ATinterface] = ACTIONS(685), - [anon_sym_interface] = ACTIONS(687), - [anon_sym_byte] = ACTIONS(687), - [anon_sym_short] = ACTIONS(687), - [anon_sym_int] = ACTIONS(687), - [anon_sym_long] = ACTIONS(687), - [anon_sym_char] = ACTIONS(687), - [anon_sym_float] = ACTIONS(687), - [anon_sym_double] = ACTIONS(687), - [sym_boolean_type] = ACTIONS(687), - [sym_void_type] = ACTIONS(687), - [sym_this] = ACTIONS(687), - [sym_super] = ACTIONS(687), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [164] = { - [ts_builtin_sym_end] = ACTIONS(689), - [sym_identifier] = ACTIONS(691), - [sym_decimal_integer_literal] = ACTIONS(691), - [sym_hex_integer_literal] = ACTIONS(691), - [sym_octal_integer_literal] = ACTIONS(689), - [sym_binary_integer_literal] = ACTIONS(689), - [sym_decimal_floating_point_literal] = ACTIONS(689), - [sym_hex_floating_point_literal] = ACTIONS(691), - [sym_true] = ACTIONS(691), - [sym_false] = ACTIONS(691), - [sym_character_literal] = ACTIONS(689), - [sym_string_literal] = ACTIONS(691), - [sym_text_block] = ACTIONS(689), - [sym_null_literal] = ACTIONS(691), - [anon_sym_LPAREN] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_DASH] = ACTIONS(691), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(689), - [anon_sym_PLUS_PLUS] = ACTIONS(689), - [anon_sym_DASH_DASH] = ACTIONS(689), - [anon_sym_new] = ACTIONS(691), - [anon_sym_class] = ACTIONS(691), - [anon_sym_switch] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_RBRACE] = ACTIONS(689), - [anon_sym_case] = ACTIONS(691), - [anon_sym_default] = ACTIONS(691), - [anon_sym_SEMI] = ACTIONS(689), - [anon_sym_assert] = ACTIONS(691), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(691), - [anon_sym_break] = ACTIONS(691), - [anon_sym_continue] = ACTIONS(691), - [anon_sym_return] = ACTIONS(691), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_synchronized] = ACTIONS(691), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_try] = ACTIONS(691), - [anon_sym_if] = ACTIONS(691), - [anon_sym_else] = ACTIONS(691), - [anon_sym_for] = ACTIONS(691), - [anon_sym_AT] = ACTIONS(691), - [anon_sym_open] = ACTIONS(691), - [anon_sym_module] = ACTIONS(691), - [anon_sym_static] = ACTIONS(691), - [anon_sym_package] = ACTIONS(691), - [anon_sym_import] = ACTIONS(691), - [anon_sym_enum] = ACTIONS(691), - [anon_sym_public] = ACTIONS(691), - [anon_sym_protected] = ACTIONS(691), - [anon_sym_private] = ACTIONS(691), - [anon_sym_abstract] = ACTIONS(691), - [anon_sym_final] = ACTIONS(691), - [anon_sym_strictfp] = ACTIONS(691), - [anon_sym_native] = ACTIONS(691), - [anon_sym_transient] = ACTIONS(691), - [anon_sym_volatile] = ACTIONS(691), - [anon_sym_sealed] = ACTIONS(691), - [anon_sym_non_DASHsealed] = ACTIONS(689), - [anon_sym_ATinterface] = ACTIONS(689), - [anon_sym_interface] = ACTIONS(691), - [anon_sym_byte] = ACTIONS(691), - [anon_sym_short] = ACTIONS(691), - [anon_sym_int] = ACTIONS(691), - [anon_sym_long] = ACTIONS(691), - [anon_sym_char] = ACTIONS(691), - [anon_sym_float] = ACTIONS(691), - [anon_sym_double] = ACTIONS(691), - [sym_boolean_type] = ACTIONS(691), - [sym_void_type] = ACTIONS(691), - [sym_this] = ACTIONS(691), - [sym_super] = ACTIONS(691), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [165] = { - [sym_switch_label] = STATE(1084), - [aux_sym_switch_block_statement_group_repeat1] = STATE(165), - [sym_identifier] = ACTIONS(693), - [sym_decimal_integer_literal] = ACTIONS(693), - [sym_hex_integer_literal] = ACTIONS(693), - [sym_octal_integer_literal] = ACTIONS(695), - [sym_binary_integer_literal] = ACTIONS(695), - [sym_decimal_floating_point_literal] = ACTIONS(695), - [sym_hex_floating_point_literal] = ACTIONS(693), - [sym_true] = ACTIONS(693), - [sym_false] = ACTIONS(693), - [sym_character_literal] = ACTIONS(695), - [sym_string_literal] = ACTIONS(693), - [sym_text_block] = ACTIONS(695), - [sym_null_literal] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(695), - [anon_sym_DASH_DASH] = ACTIONS(695), - [anon_sym_new] = ACTIONS(693), - [anon_sym_class] = ACTIONS(693), - [anon_sym_switch] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_RBRACE] = ACTIONS(695), - [anon_sym_case] = ACTIONS(697), - [anon_sym_default] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_assert] = ACTIONS(693), - [anon_sym_do] = ACTIONS(693), - [anon_sym_while] = ACTIONS(693), - [anon_sym_break] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(693), - [anon_sym_return] = ACTIONS(693), - [anon_sym_yield] = ACTIONS(693), - [anon_sym_synchronized] = ACTIONS(693), - [anon_sym_throw] = ACTIONS(693), - [anon_sym_try] = ACTIONS(693), - [anon_sym_if] = ACTIONS(693), - [anon_sym_for] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(693), - [anon_sym_open] = ACTIONS(693), - [anon_sym_module] = ACTIONS(693), - [anon_sym_static] = ACTIONS(693), - [anon_sym_package] = ACTIONS(693), - [anon_sym_import] = ACTIONS(693), - [anon_sym_enum] = ACTIONS(693), - [anon_sym_public] = ACTIONS(693), - [anon_sym_protected] = ACTIONS(693), - [anon_sym_private] = ACTIONS(693), - [anon_sym_abstract] = ACTIONS(693), - [anon_sym_final] = ACTIONS(693), - [anon_sym_strictfp] = ACTIONS(693), - [anon_sym_native] = ACTIONS(693), - [anon_sym_transient] = ACTIONS(693), - [anon_sym_volatile] = ACTIONS(693), - [anon_sym_sealed] = ACTIONS(693), - [anon_sym_non_DASHsealed] = ACTIONS(695), - [anon_sym_ATinterface] = ACTIONS(695), - [anon_sym_interface] = ACTIONS(693), - [anon_sym_byte] = ACTIONS(693), - [anon_sym_short] = ACTIONS(693), - [anon_sym_int] = ACTIONS(693), - [anon_sym_long] = ACTIONS(693), - [anon_sym_char] = ACTIONS(693), - [anon_sym_float] = ACTIONS(693), - [anon_sym_double] = ACTIONS(693), - [sym_boolean_type] = ACTIONS(693), - [sym_void_type] = ACTIONS(693), - [sym_this] = ACTIONS(693), - [sym_super] = ACTIONS(693), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [166] = { - [ts_builtin_sym_end] = ACTIONS(703), - [sym_identifier] = ACTIONS(705), - [sym_decimal_integer_literal] = ACTIONS(705), - [sym_hex_integer_literal] = ACTIONS(705), - [sym_octal_integer_literal] = ACTIONS(703), - [sym_binary_integer_literal] = ACTIONS(703), - [sym_decimal_floating_point_literal] = ACTIONS(703), - [sym_hex_floating_point_literal] = ACTIONS(705), - [sym_true] = ACTIONS(705), - [sym_false] = ACTIONS(705), - [sym_character_literal] = ACTIONS(703), - [sym_string_literal] = ACTIONS(705), - [sym_text_block] = ACTIONS(703), - [sym_null_literal] = ACTIONS(705), - [anon_sym_LPAREN] = ACTIONS(703), - [anon_sym_PLUS] = ACTIONS(705), - [anon_sym_DASH] = ACTIONS(705), - [anon_sym_BANG] = ACTIONS(703), - [anon_sym_TILDE] = ACTIONS(703), - [anon_sym_PLUS_PLUS] = ACTIONS(703), - [anon_sym_DASH_DASH] = ACTIONS(703), - [anon_sym_new] = ACTIONS(705), - [anon_sym_class] = ACTIONS(705), - [anon_sym_switch] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_RBRACE] = ACTIONS(703), - [anon_sym_case] = ACTIONS(705), - [anon_sym_default] = ACTIONS(705), - [anon_sym_SEMI] = ACTIONS(703), - [anon_sym_assert] = ACTIONS(705), - [anon_sym_do] = ACTIONS(705), - [anon_sym_while] = ACTIONS(705), - [anon_sym_break] = ACTIONS(705), - [anon_sym_continue] = ACTIONS(705), - [anon_sym_return] = ACTIONS(705), - [anon_sym_yield] = ACTIONS(705), - [anon_sym_synchronized] = ACTIONS(705), - [anon_sym_throw] = ACTIONS(705), - [anon_sym_try] = ACTIONS(705), - [anon_sym_if] = ACTIONS(705), - [anon_sym_else] = ACTIONS(705), - [anon_sym_for] = ACTIONS(705), - [anon_sym_AT] = ACTIONS(705), - [anon_sym_open] = ACTIONS(705), - [anon_sym_module] = ACTIONS(705), - [anon_sym_static] = ACTIONS(705), - [anon_sym_package] = ACTIONS(705), - [anon_sym_import] = ACTIONS(705), - [anon_sym_enum] = ACTIONS(705), - [anon_sym_public] = ACTIONS(705), - [anon_sym_protected] = ACTIONS(705), - [anon_sym_private] = ACTIONS(705), - [anon_sym_abstract] = ACTIONS(705), - [anon_sym_final] = ACTIONS(705), - [anon_sym_strictfp] = ACTIONS(705), - [anon_sym_native] = ACTIONS(705), - [anon_sym_transient] = ACTIONS(705), - [anon_sym_volatile] = ACTIONS(705), - [anon_sym_sealed] = ACTIONS(705), - [anon_sym_non_DASHsealed] = ACTIONS(703), - [anon_sym_ATinterface] = ACTIONS(703), - [anon_sym_interface] = ACTIONS(705), - [anon_sym_byte] = ACTIONS(705), - [anon_sym_short] = ACTIONS(705), - [anon_sym_int] = ACTIONS(705), - [anon_sym_long] = ACTIONS(705), - [anon_sym_char] = ACTIONS(705), - [anon_sym_float] = ACTIONS(705), - [anon_sym_double] = ACTIONS(705), - [sym_boolean_type] = ACTIONS(705), - [sym_void_type] = ACTIONS(705), - [sym_this] = ACTIONS(705), - [sym_super] = ACTIONS(705), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [167] = { - [ts_builtin_sym_end] = ACTIONS(707), - [sym_identifier] = ACTIONS(709), - [sym_decimal_integer_literal] = ACTIONS(709), - [sym_hex_integer_literal] = ACTIONS(709), - [sym_octal_integer_literal] = ACTIONS(707), - [sym_binary_integer_literal] = ACTIONS(707), - [sym_decimal_floating_point_literal] = ACTIONS(707), - [sym_hex_floating_point_literal] = ACTIONS(709), - [sym_true] = ACTIONS(709), - [sym_false] = ACTIONS(709), - [sym_character_literal] = ACTIONS(707), - [sym_string_literal] = ACTIONS(709), - [sym_text_block] = ACTIONS(707), - [sym_null_literal] = ACTIONS(709), - [anon_sym_LPAREN] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_TILDE] = ACTIONS(707), - [anon_sym_PLUS_PLUS] = ACTIONS(707), - [anon_sym_DASH_DASH] = ACTIONS(707), - [anon_sym_new] = ACTIONS(709), - [anon_sym_class] = ACTIONS(709), - [anon_sym_switch] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(707), - [anon_sym_RBRACE] = ACTIONS(707), - [anon_sym_case] = ACTIONS(709), - [anon_sym_default] = ACTIONS(709), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_assert] = ACTIONS(709), - [anon_sym_do] = ACTIONS(709), - [anon_sym_while] = ACTIONS(709), - [anon_sym_break] = ACTIONS(709), - [anon_sym_continue] = ACTIONS(709), - [anon_sym_return] = ACTIONS(709), - [anon_sym_yield] = ACTIONS(709), - [anon_sym_synchronized] = ACTIONS(709), - [anon_sym_throw] = ACTIONS(709), - [anon_sym_try] = ACTIONS(709), - [anon_sym_if] = ACTIONS(709), - [anon_sym_else] = ACTIONS(709), - [anon_sym_for] = ACTIONS(709), - [anon_sym_AT] = ACTIONS(709), - [anon_sym_open] = ACTIONS(709), - [anon_sym_module] = ACTIONS(709), - [anon_sym_static] = ACTIONS(709), - [anon_sym_package] = ACTIONS(709), - [anon_sym_import] = ACTIONS(709), - [anon_sym_enum] = ACTIONS(709), - [anon_sym_public] = ACTIONS(709), - [anon_sym_protected] = ACTIONS(709), - [anon_sym_private] = ACTIONS(709), - [anon_sym_abstract] = ACTIONS(709), - [anon_sym_final] = ACTIONS(709), - [anon_sym_strictfp] = ACTIONS(709), - [anon_sym_native] = ACTIONS(709), - [anon_sym_transient] = ACTIONS(709), - [anon_sym_volatile] = ACTIONS(709), - [anon_sym_sealed] = ACTIONS(709), - [anon_sym_non_DASHsealed] = ACTIONS(707), - [anon_sym_ATinterface] = ACTIONS(707), - [anon_sym_interface] = ACTIONS(709), - [anon_sym_byte] = ACTIONS(709), - [anon_sym_short] = ACTIONS(709), - [anon_sym_int] = ACTIONS(709), - [anon_sym_long] = ACTIONS(709), - [anon_sym_char] = ACTIONS(709), - [anon_sym_float] = ACTIONS(709), - [anon_sym_double] = ACTIONS(709), - [sym_boolean_type] = ACTIONS(709), - [sym_void_type] = ACTIONS(709), - [sym_this] = ACTIONS(709), - [sym_super] = ACTIONS(709), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [168] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(522), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym_array_initializer] = STATE(986), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [109] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(591), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym_block] = STATE(509), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -24063,1152 +24105,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [169] = { - [ts_builtin_sym_end] = ACTIONS(711), - [sym_identifier] = ACTIONS(713), - [sym_decimal_integer_literal] = ACTIONS(713), - [sym_hex_integer_literal] = ACTIONS(713), - [sym_octal_integer_literal] = ACTIONS(711), - [sym_binary_integer_literal] = ACTIONS(711), - [sym_decimal_floating_point_literal] = ACTIONS(711), - [sym_hex_floating_point_literal] = ACTIONS(713), - [sym_true] = ACTIONS(713), - [sym_false] = ACTIONS(713), - [sym_character_literal] = ACTIONS(711), - [sym_string_literal] = ACTIONS(713), - [sym_text_block] = ACTIONS(711), - [sym_null_literal] = ACTIONS(713), - [anon_sym_LPAREN] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_BANG] = ACTIONS(711), - [anon_sym_TILDE] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(711), - [anon_sym_DASH_DASH] = ACTIONS(711), - [anon_sym_new] = ACTIONS(713), - [anon_sym_class] = ACTIONS(713), - [anon_sym_switch] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(711), - [anon_sym_RBRACE] = ACTIONS(711), - [anon_sym_case] = ACTIONS(713), - [anon_sym_default] = ACTIONS(713), - [anon_sym_SEMI] = ACTIONS(711), - [anon_sym_assert] = ACTIONS(713), - [anon_sym_do] = ACTIONS(713), - [anon_sym_while] = ACTIONS(713), - [anon_sym_break] = ACTIONS(713), - [anon_sym_continue] = ACTIONS(713), - [anon_sym_return] = ACTIONS(713), - [anon_sym_yield] = ACTIONS(713), - [anon_sym_synchronized] = ACTIONS(713), - [anon_sym_throw] = ACTIONS(713), - [anon_sym_try] = ACTIONS(713), - [anon_sym_if] = ACTIONS(713), - [anon_sym_else] = ACTIONS(713), - [anon_sym_for] = ACTIONS(713), - [anon_sym_AT] = ACTIONS(713), - [anon_sym_open] = ACTIONS(713), - [anon_sym_module] = ACTIONS(713), - [anon_sym_static] = ACTIONS(713), - [anon_sym_package] = ACTIONS(713), - [anon_sym_import] = ACTIONS(713), - [anon_sym_enum] = ACTIONS(713), - [anon_sym_public] = ACTIONS(713), - [anon_sym_protected] = ACTIONS(713), - [anon_sym_private] = ACTIONS(713), - [anon_sym_abstract] = ACTIONS(713), - [anon_sym_final] = ACTIONS(713), - [anon_sym_strictfp] = ACTIONS(713), - [anon_sym_native] = ACTIONS(713), - [anon_sym_transient] = ACTIONS(713), - [anon_sym_volatile] = ACTIONS(713), - [anon_sym_sealed] = ACTIONS(713), - [anon_sym_non_DASHsealed] = ACTIONS(711), - [anon_sym_ATinterface] = ACTIONS(711), - [anon_sym_interface] = ACTIONS(713), - [anon_sym_byte] = ACTIONS(713), - [anon_sym_short] = ACTIONS(713), - [anon_sym_int] = ACTIONS(713), - [anon_sym_long] = ACTIONS(713), - [anon_sym_char] = ACTIONS(713), - [anon_sym_float] = ACTIONS(713), - [anon_sym_double] = ACTIONS(713), - [sym_boolean_type] = ACTIONS(713), - [sym_void_type] = ACTIONS(713), - [sym_this] = ACTIONS(713), - [sym_super] = ACTIONS(713), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [170] = { - [ts_builtin_sym_end] = ACTIONS(715), - [sym_identifier] = ACTIONS(717), - [sym_decimal_integer_literal] = ACTIONS(717), - [sym_hex_integer_literal] = ACTIONS(717), - [sym_octal_integer_literal] = ACTIONS(715), - [sym_binary_integer_literal] = ACTIONS(715), - [sym_decimal_floating_point_literal] = ACTIONS(715), - [sym_hex_floating_point_literal] = ACTIONS(717), - [sym_true] = ACTIONS(717), - [sym_false] = ACTIONS(717), - [sym_character_literal] = ACTIONS(715), - [sym_string_literal] = ACTIONS(717), - [sym_text_block] = ACTIONS(715), - [sym_null_literal] = ACTIONS(717), - [anon_sym_LPAREN] = ACTIONS(715), - [anon_sym_PLUS] = ACTIONS(717), - [anon_sym_DASH] = ACTIONS(717), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(715), - [anon_sym_PLUS_PLUS] = ACTIONS(715), - [anon_sym_DASH_DASH] = ACTIONS(715), - [anon_sym_new] = ACTIONS(717), - [anon_sym_class] = ACTIONS(717), - [anon_sym_switch] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(715), - [anon_sym_RBRACE] = ACTIONS(715), - [anon_sym_case] = ACTIONS(717), - [anon_sym_default] = ACTIONS(717), - [anon_sym_SEMI] = ACTIONS(715), - [anon_sym_assert] = ACTIONS(717), - [anon_sym_do] = ACTIONS(717), - [anon_sym_while] = ACTIONS(717), - [anon_sym_break] = ACTIONS(717), - [anon_sym_continue] = ACTIONS(717), - [anon_sym_return] = ACTIONS(717), - [anon_sym_yield] = ACTIONS(717), - [anon_sym_synchronized] = ACTIONS(717), - [anon_sym_throw] = ACTIONS(717), - [anon_sym_try] = ACTIONS(717), - [anon_sym_if] = ACTIONS(717), - [anon_sym_else] = ACTIONS(717), - [anon_sym_for] = ACTIONS(717), - [anon_sym_AT] = ACTIONS(717), - [anon_sym_open] = ACTIONS(717), - [anon_sym_module] = ACTIONS(717), - [anon_sym_static] = ACTIONS(717), - [anon_sym_package] = ACTIONS(717), - [anon_sym_import] = ACTIONS(717), - [anon_sym_enum] = ACTIONS(717), - [anon_sym_public] = ACTIONS(717), - [anon_sym_protected] = ACTIONS(717), - [anon_sym_private] = ACTIONS(717), - [anon_sym_abstract] = ACTIONS(717), - [anon_sym_final] = ACTIONS(717), - [anon_sym_strictfp] = ACTIONS(717), - [anon_sym_native] = ACTIONS(717), - [anon_sym_transient] = ACTIONS(717), - [anon_sym_volatile] = ACTIONS(717), - [anon_sym_sealed] = ACTIONS(717), - [anon_sym_non_DASHsealed] = ACTIONS(715), - [anon_sym_ATinterface] = ACTIONS(715), - [anon_sym_interface] = ACTIONS(717), - [anon_sym_byte] = ACTIONS(717), - [anon_sym_short] = ACTIONS(717), - [anon_sym_int] = ACTIONS(717), - [anon_sym_long] = ACTIONS(717), - [anon_sym_char] = ACTIONS(717), - [anon_sym_float] = ACTIONS(717), - [anon_sym_double] = ACTIONS(717), - [sym_boolean_type] = ACTIONS(717), - [sym_void_type] = ACTIONS(717), - [sym_this] = ACTIONS(717), - [sym_super] = ACTIONS(717), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [171] = { - [ts_builtin_sym_end] = ACTIONS(719), - [sym_identifier] = ACTIONS(721), - [sym_decimal_integer_literal] = ACTIONS(721), - [sym_hex_integer_literal] = ACTIONS(721), - [sym_octal_integer_literal] = ACTIONS(719), - [sym_binary_integer_literal] = ACTIONS(719), - [sym_decimal_floating_point_literal] = ACTIONS(719), - [sym_hex_floating_point_literal] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_character_literal] = ACTIONS(719), - [sym_string_literal] = ACTIONS(721), - [sym_text_block] = ACTIONS(719), - [sym_null_literal] = ACTIONS(721), - [anon_sym_LPAREN] = ACTIONS(719), - [anon_sym_PLUS] = ACTIONS(721), - [anon_sym_DASH] = ACTIONS(721), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_TILDE] = ACTIONS(719), - [anon_sym_PLUS_PLUS] = ACTIONS(719), - [anon_sym_DASH_DASH] = ACTIONS(719), - [anon_sym_new] = ACTIONS(721), - [anon_sym_class] = ACTIONS(721), - [anon_sym_switch] = ACTIONS(721), - [anon_sym_LBRACE] = ACTIONS(719), - [anon_sym_RBRACE] = ACTIONS(719), - [anon_sym_case] = ACTIONS(721), - [anon_sym_default] = ACTIONS(721), - [anon_sym_SEMI] = ACTIONS(719), - [anon_sym_assert] = ACTIONS(721), - [anon_sym_do] = ACTIONS(721), - [anon_sym_while] = ACTIONS(721), - [anon_sym_break] = ACTIONS(721), - [anon_sym_continue] = ACTIONS(721), - [anon_sym_return] = ACTIONS(721), - [anon_sym_yield] = ACTIONS(721), - [anon_sym_synchronized] = ACTIONS(721), - [anon_sym_throw] = ACTIONS(721), - [anon_sym_try] = ACTIONS(721), - [anon_sym_if] = ACTIONS(721), - [anon_sym_else] = ACTIONS(721), - [anon_sym_for] = ACTIONS(721), - [anon_sym_AT] = ACTIONS(721), - [anon_sym_open] = ACTIONS(721), - [anon_sym_module] = ACTIONS(721), - [anon_sym_static] = ACTIONS(721), - [anon_sym_package] = ACTIONS(721), - [anon_sym_import] = ACTIONS(721), - [anon_sym_enum] = ACTIONS(721), - [anon_sym_public] = ACTIONS(721), - [anon_sym_protected] = ACTIONS(721), - [anon_sym_private] = ACTIONS(721), - [anon_sym_abstract] = ACTIONS(721), - [anon_sym_final] = ACTIONS(721), - [anon_sym_strictfp] = ACTIONS(721), - [anon_sym_native] = ACTIONS(721), - [anon_sym_transient] = ACTIONS(721), - [anon_sym_volatile] = ACTIONS(721), - [anon_sym_sealed] = ACTIONS(721), - [anon_sym_non_DASHsealed] = ACTIONS(719), - [anon_sym_ATinterface] = ACTIONS(719), - [anon_sym_interface] = ACTIONS(721), - [anon_sym_byte] = ACTIONS(721), - [anon_sym_short] = ACTIONS(721), - [anon_sym_int] = ACTIONS(721), - [anon_sym_long] = ACTIONS(721), - [anon_sym_char] = ACTIONS(721), - [anon_sym_float] = ACTIONS(721), - [anon_sym_double] = ACTIONS(721), - [sym_boolean_type] = ACTIONS(721), - [sym_void_type] = ACTIONS(721), - [sym_this] = ACTIONS(721), - [sym_super] = ACTIONS(721), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [172] = { - [ts_builtin_sym_end] = ACTIONS(723), - [sym_identifier] = ACTIONS(725), - [sym_decimal_integer_literal] = ACTIONS(725), - [sym_hex_integer_literal] = ACTIONS(725), - [sym_octal_integer_literal] = ACTIONS(723), - [sym_binary_integer_literal] = ACTIONS(723), - [sym_decimal_floating_point_literal] = ACTIONS(723), - [sym_hex_floating_point_literal] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_character_literal] = ACTIONS(723), - [sym_string_literal] = ACTIONS(725), - [sym_text_block] = ACTIONS(723), - [sym_null_literal] = ACTIONS(725), - [anon_sym_LPAREN] = ACTIONS(723), - [anon_sym_PLUS] = ACTIONS(725), - [anon_sym_DASH] = ACTIONS(725), - [anon_sym_BANG] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(723), - [anon_sym_PLUS_PLUS] = ACTIONS(723), - [anon_sym_DASH_DASH] = ACTIONS(723), - [anon_sym_new] = ACTIONS(725), - [anon_sym_class] = ACTIONS(725), - [anon_sym_switch] = ACTIONS(725), - [anon_sym_LBRACE] = ACTIONS(723), - [anon_sym_RBRACE] = ACTIONS(723), - [anon_sym_case] = ACTIONS(725), - [anon_sym_default] = ACTIONS(725), - [anon_sym_SEMI] = ACTIONS(723), - [anon_sym_assert] = ACTIONS(725), - [anon_sym_do] = ACTIONS(725), - [anon_sym_while] = ACTIONS(725), - [anon_sym_break] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(725), - [anon_sym_return] = ACTIONS(725), - [anon_sym_yield] = ACTIONS(725), - [anon_sym_synchronized] = ACTIONS(725), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(725), - [anon_sym_if] = ACTIONS(725), - [anon_sym_else] = ACTIONS(725), - [anon_sym_for] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(725), - [anon_sym_open] = ACTIONS(725), - [anon_sym_module] = ACTIONS(725), - [anon_sym_static] = ACTIONS(725), - [anon_sym_package] = ACTIONS(725), - [anon_sym_import] = ACTIONS(725), - [anon_sym_enum] = ACTIONS(725), - [anon_sym_public] = ACTIONS(725), - [anon_sym_protected] = ACTIONS(725), - [anon_sym_private] = ACTIONS(725), - [anon_sym_abstract] = ACTIONS(725), - [anon_sym_final] = ACTIONS(725), - [anon_sym_strictfp] = ACTIONS(725), - [anon_sym_native] = ACTIONS(725), - [anon_sym_transient] = ACTIONS(725), - [anon_sym_volatile] = ACTIONS(725), - [anon_sym_sealed] = ACTIONS(725), - [anon_sym_non_DASHsealed] = ACTIONS(723), - [anon_sym_ATinterface] = ACTIONS(723), - [anon_sym_interface] = ACTIONS(725), - [anon_sym_byte] = ACTIONS(725), - [anon_sym_short] = ACTIONS(725), - [anon_sym_int] = ACTIONS(725), - [anon_sym_long] = ACTIONS(725), - [anon_sym_char] = ACTIONS(725), - [anon_sym_float] = ACTIONS(725), - [anon_sym_double] = ACTIONS(725), - [sym_boolean_type] = ACTIONS(725), - [sym_void_type] = ACTIONS(725), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [173] = { - [ts_builtin_sym_end] = ACTIONS(727), - [sym_identifier] = ACTIONS(729), - [sym_decimal_integer_literal] = ACTIONS(729), - [sym_hex_integer_literal] = ACTIONS(729), - [sym_octal_integer_literal] = ACTIONS(727), - [sym_binary_integer_literal] = ACTIONS(727), - [sym_decimal_floating_point_literal] = ACTIONS(727), - [sym_hex_floating_point_literal] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_character_literal] = ACTIONS(727), - [sym_string_literal] = ACTIONS(729), - [sym_text_block] = ACTIONS(727), - [sym_null_literal] = ACTIONS(729), - [anon_sym_LPAREN] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(729), - [anon_sym_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(727), - [anon_sym_DASH_DASH] = ACTIONS(727), - [anon_sym_new] = ACTIONS(729), - [anon_sym_class] = ACTIONS(729), - [anon_sym_switch] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(727), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_case] = ACTIONS(729), - [anon_sym_default] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(727), - [anon_sym_assert] = ACTIONS(729), - [anon_sym_do] = ACTIONS(729), - [anon_sym_while] = ACTIONS(729), - [anon_sym_break] = ACTIONS(729), - [anon_sym_continue] = ACTIONS(729), - [anon_sym_return] = ACTIONS(729), - [anon_sym_yield] = ACTIONS(729), - [anon_sym_synchronized] = ACTIONS(729), - [anon_sym_throw] = ACTIONS(729), - [anon_sym_try] = ACTIONS(729), - [anon_sym_if] = ACTIONS(729), - [anon_sym_else] = ACTIONS(729), - [anon_sym_for] = ACTIONS(729), - [anon_sym_AT] = ACTIONS(729), - [anon_sym_open] = ACTIONS(729), - [anon_sym_module] = ACTIONS(729), - [anon_sym_static] = ACTIONS(729), - [anon_sym_package] = ACTIONS(729), - [anon_sym_import] = ACTIONS(729), - [anon_sym_enum] = ACTIONS(729), - [anon_sym_public] = ACTIONS(729), - [anon_sym_protected] = ACTIONS(729), - [anon_sym_private] = ACTIONS(729), - [anon_sym_abstract] = ACTIONS(729), - [anon_sym_final] = ACTIONS(729), - [anon_sym_strictfp] = ACTIONS(729), - [anon_sym_native] = ACTIONS(729), - [anon_sym_transient] = ACTIONS(729), - [anon_sym_volatile] = ACTIONS(729), - [anon_sym_sealed] = ACTIONS(729), - [anon_sym_non_DASHsealed] = ACTIONS(727), - [anon_sym_ATinterface] = ACTIONS(727), - [anon_sym_interface] = ACTIONS(729), - [anon_sym_byte] = ACTIONS(729), - [anon_sym_short] = ACTIONS(729), - [anon_sym_int] = ACTIONS(729), - [anon_sym_long] = ACTIONS(729), - [anon_sym_char] = ACTIONS(729), - [anon_sym_float] = ACTIONS(729), - [anon_sym_double] = ACTIONS(729), - [sym_boolean_type] = ACTIONS(729), - [sym_void_type] = ACTIONS(729), - [sym_this] = ACTIONS(729), - [sym_super] = ACTIONS(729), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [174] = { - [ts_builtin_sym_end] = ACTIONS(731), - [sym_identifier] = ACTIONS(733), - [sym_decimal_integer_literal] = ACTIONS(733), - [sym_hex_integer_literal] = ACTIONS(733), - [sym_octal_integer_literal] = ACTIONS(731), - [sym_binary_integer_literal] = ACTIONS(731), - [sym_decimal_floating_point_literal] = ACTIONS(731), - [sym_hex_floating_point_literal] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_character_literal] = ACTIONS(731), - [sym_string_literal] = ACTIONS(733), - [sym_text_block] = ACTIONS(731), - [sym_null_literal] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(733), - [anon_sym_DASH] = ACTIONS(733), - [anon_sym_BANG] = ACTIONS(731), - [anon_sym_TILDE] = ACTIONS(731), - [anon_sym_PLUS_PLUS] = ACTIONS(731), - [anon_sym_DASH_DASH] = ACTIONS(731), - [anon_sym_new] = ACTIONS(733), - [anon_sym_class] = ACTIONS(733), - [anon_sym_switch] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(731), - [anon_sym_RBRACE] = ACTIONS(731), - [anon_sym_case] = ACTIONS(733), - [anon_sym_default] = ACTIONS(733), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_assert] = ACTIONS(733), - [anon_sym_do] = ACTIONS(733), - [anon_sym_while] = ACTIONS(733), - [anon_sym_break] = ACTIONS(733), - [anon_sym_continue] = ACTIONS(733), - [anon_sym_return] = ACTIONS(733), - [anon_sym_yield] = ACTIONS(733), - [anon_sym_synchronized] = ACTIONS(733), - [anon_sym_throw] = ACTIONS(733), - [anon_sym_try] = ACTIONS(733), - [anon_sym_if] = ACTIONS(733), - [anon_sym_else] = ACTIONS(733), - [anon_sym_for] = ACTIONS(733), - [anon_sym_AT] = ACTIONS(733), - [anon_sym_open] = ACTIONS(733), - [anon_sym_module] = ACTIONS(733), - [anon_sym_static] = ACTIONS(733), - [anon_sym_package] = ACTIONS(733), - [anon_sym_import] = ACTIONS(733), - [anon_sym_enum] = ACTIONS(733), - [anon_sym_public] = ACTIONS(733), - [anon_sym_protected] = ACTIONS(733), - [anon_sym_private] = ACTIONS(733), - [anon_sym_abstract] = ACTIONS(733), - [anon_sym_final] = ACTIONS(733), - [anon_sym_strictfp] = ACTIONS(733), - [anon_sym_native] = ACTIONS(733), - [anon_sym_transient] = ACTIONS(733), - [anon_sym_volatile] = ACTIONS(733), - [anon_sym_sealed] = ACTIONS(733), - [anon_sym_non_DASHsealed] = ACTIONS(731), - [anon_sym_ATinterface] = ACTIONS(731), - [anon_sym_interface] = ACTIONS(733), - [anon_sym_byte] = ACTIONS(733), - [anon_sym_short] = ACTIONS(733), - [anon_sym_int] = ACTIONS(733), - [anon_sym_long] = ACTIONS(733), - [anon_sym_char] = ACTIONS(733), - [anon_sym_float] = ACTIONS(733), - [anon_sym_double] = ACTIONS(733), - [sym_boolean_type] = ACTIONS(733), - [sym_void_type] = ACTIONS(733), - [sym_this] = ACTIONS(733), - [sym_super] = ACTIONS(733), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [175] = { - [ts_builtin_sym_end] = ACTIONS(735), - [sym_identifier] = ACTIONS(737), - [sym_decimal_integer_literal] = ACTIONS(737), - [sym_hex_integer_literal] = ACTIONS(737), - [sym_octal_integer_literal] = ACTIONS(735), - [sym_binary_integer_literal] = ACTIONS(735), - [sym_decimal_floating_point_literal] = ACTIONS(735), - [sym_hex_floating_point_literal] = ACTIONS(737), - [sym_true] = ACTIONS(737), - [sym_false] = ACTIONS(737), - [sym_character_literal] = ACTIONS(735), - [sym_string_literal] = ACTIONS(737), - [sym_text_block] = ACTIONS(735), - [sym_null_literal] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_PLUS] = ACTIONS(737), - [anon_sym_DASH] = ACTIONS(737), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_TILDE] = ACTIONS(735), - [anon_sym_PLUS_PLUS] = ACTIONS(735), - [anon_sym_DASH_DASH] = ACTIONS(735), - [anon_sym_new] = ACTIONS(737), - [anon_sym_class] = ACTIONS(737), - [anon_sym_switch] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(735), - [anon_sym_RBRACE] = ACTIONS(735), - [anon_sym_case] = ACTIONS(737), - [anon_sym_default] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(735), - [anon_sym_assert] = ACTIONS(737), - [anon_sym_do] = ACTIONS(737), - [anon_sym_while] = ACTIONS(737), - [anon_sym_break] = ACTIONS(737), - [anon_sym_continue] = ACTIONS(737), - [anon_sym_return] = ACTIONS(737), - [anon_sym_yield] = ACTIONS(737), - [anon_sym_synchronized] = ACTIONS(737), - [anon_sym_throw] = ACTIONS(737), - [anon_sym_try] = ACTIONS(737), - [anon_sym_if] = ACTIONS(737), - [anon_sym_else] = ACTIONS(737), - [anon_sym_for] = ACTIONS(737), - [anon_sym_AT] = ACTIONS(737), - [anon_sym_open] = ACTIONS(737), - [anon_sym_module] = ACTIONS(737), - [anon_sym_static] = ACTIONS(737), - [anon_sym_package] = ACTIONS(737), - [anon_sym_import] = ACTIONS(737), - [anon_sym_enum] = ACTIONS(737), - [anon_sym_public] = ACTIONS(737), - [anon_sym_protected] = ACTIONS(737), - [anon_sym_private] = ACTIONS(737), - [anon_sym_abstract] = ACTIONS(737), - [anon_sym_final] = ACTIONS(737), - [anon_sym_strictfp] = ACTIONS(737), - [anon_sym_native] = ACTIONS(737), - [anon_sym_transient] = ACTIONS(737), - [anon_sym_volatile] = ACTIONS(737), - [anon_sym_sealed] = ACTIONS(737), - [anon_sym_non_DASHsealed] = ACTIONS(735), - [anon_sym_ATinterface] = ACTIONS(735), - [anon_sym_interface] = ACTIONS(737), - [anon_sym_byte] = ACTIONS(737), - [anon_sym_short] = ACTIONS(737), - [anon_sym_int] = ACTIONS(737), - [anon_sym_long] = ACTIONS(737), - [anon_sym_char] = ACTIONS(737), - [anon_sym_float] = ACTIONS(737), - [anon_sym_double] = ACTIONS(737), - [sym_boolean_type] = ACTIONS(737), - [sym_void_type] = ACTIONS(737), - [sym_this] = ACTIONS(737), - [sym_super] = ACTIONS(737), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [176] = { - [ts_builtin_sym_end] = ACTIONS(739), - [sym_identifier] = ACTIONS(741), - [sym_decimal_integer_literal] = ACTIONS(741), - [sym_hex_integer_literal] = ACTIONS(741), - [sym_octal_integer_literal] = ACTIONS(739), - [sym_binary_integer_literal] = ACTIONS(739), - [sym_decimal_floating_point_literal] = ACTIONS(739), - [sym_hex_floating_point_literal] = ACTIONS(741), - [sym_true] = ACTIONS(741), - [sym_false] = ACTIONS(741), - [sym_character_literal] = ACTIONS(739), - [sym_string_literal] = ACTIONS(741), - [sym_text_block] = ACTIONS(739), - [sym_null_literal] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(741), - [anon_sym_DASH] = ACTIONS(741), - [anon_sym_BANG] = ACTIONS(739), - [anon_sym_TILDE] = ACTIONS(739), - [anon_sym_PLUS_PLUS] = ACTIONS(739), - [anon_sym_DASH_DASH] = ACTIONS(739), - [anon_sym_new] = ACTIONS(741), - [anon_sym_class] = ACTIONS(741), - [anon_sym_switch] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(739), - [anon_sym_RBRACE] = ACTIONS(739), - [anon_sym_case] = ACTIONS(741), - [anon_sym_default] = ACTIONS(741), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_assert] = ACTIONS(741), - [anon_sym_do] = ACTIONS(741), - [anon_sym_while] = ACTIONS(741), - [anon_sym_break] = ACTIONS(741), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_return] = ACTIONS(741), - [anon_sym_yield] = ACTIONS(741), - [anon_sym_synchronized] = ACTIONS(741), - [anon_sym_throw] = ACTIONS(741), - [anon_sym_try] = ACTIONS(741), - [anon_sym_if] = ACTIONS(741), - [anon_sym_else] = ACTIONS(741), - [anon_sym_for] = ACTIONS(741), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_open] = ACTIONS(741), - [anon_sym_module] = ACTIONS(741), - [anon_sym_static] = ACTIONS(741), - [anon_sym_package] = ACTIONS(741), - [anon_sym_import] = ACTIONS(741), - [anon_sym_enum] = ACTIONS(741), - [anon_sym_public] = ACTIONS(741), - [anon_sym_protected] = ACTIONS(741), - [anon_sym_private] = ACTIONS(741), - [anon_sym_abstract] = ACTIONS(741), - [anon_sym_final] = ACTIONS(741), - [anon_sym_strictfp] = ACTIONS(741), - [anon_sym_native] = ACTIONS(741), - [anon_sym_transient] = ACTIONS(741), - [anon_sym_volatile] = ACTIONS(741), - [anon_sym_sealed] = ACTIONS(741), - [anon_sym_non_DASHsealed] = ACTIONS(739), - [anon_sym_ATinterface] = ACTIONS(739), - [anon_sym_interface] = ACTIONS(741), - [anon_sym_byte] = ACTIONS(741), - [anon_sym_short] = ACTIONS(741), - [anon_sym_int] = ACTIONS(741), - [anon_sym_long] = ACTIONS(741), - [anon_sym_char] = ACTIONS(741), - [anon_sym_float] = ACTIONS(741), - [anon_sym_double] = ACTIONS(741), - [sym_boolean_type] = ACTIONS(741), - [sym_void_type] = ACTIONS(741), - [sym_this] = ACTIONS(741), - [sym_super] = ACTIONS(741), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [177] = { - [ts_builtin_sym_end] = ACTIONS(743), - [sym_identifier] = ACTIONS(745), - [sym_decimal_integer_literal] = ACTIONS(745), - [sym_hex_integer_literal] = ACTIONS(745), - [sym_octal_integer_literal] = ACTIONS(743), - [sym_binary_integer_literal] = ACTIONS(743), - [sym_decimal_floating_point_literal] = ACTIONS(743), - [sym_hex_floating_point_literal] = ACTIONS(745), - [sym_true] = ACTIONS(745), - [sym_false] = ACTIONS(745), - [sym_character_literal] = ACTIONS(743), - [sym_string_literal] = ACTIONS(745), - [sym_text_block] = ACTIONS(743), - [sym_null_literal] = ACTIONS(745), - [anon_sym_LPAREN] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_BANG] = ACTIONS(743), - [anon_sym_TILDE] = ACTIONS(743), - [anon_sym_PLUS_PLUS] = ACTIONS(743), - [anon_sym_DASH_DASH] = ACTIONS(743), - [anon_sym_new] = ACTIONS(745), - [anon_sym_class] = ACTIONS(745), - [anon_sym_switch] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(743), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_case] = ACTIONS(745), - [anon_sym_default] = ACTIONS(745), - [anon_sym_SEMI] = ACTIONS(743), - [anon_sym_assert] = ACTIONS(745), - [anon_sym_do] = ACTIONS(745), - [anon_sym_while] = ACTIONS(745), - [anon_sym_break] = ACTIONS(745), - [anon_sym_continue] = ACTIONS(745), - [anon_sym_return] = ACTIONS(745), - [anon_sym_yield] = ACTIONS(745), - [anon_sym_synchronized] = ACTIONS(745), - [anon_sym_throw] = ACTIONS(745), - [anon_sym_try] = ACTIONS(745), - [anon_sym_if] = ACTIONS(745), - [anon_sym_else] = ACTIONS(745), - [anon_sym_for] = ACTIONS(745), - [anon_sym_AT] = ACTIONS(745), - [anon_sym_open] = ACTIONS(745), - [anon_sym_module] = ACTIONS(745), - [anon_sym_static] = ACTIONS(745), - [anon_sym_package] = ACTIONS(745), - [anon_sym_import] = ACTIONS(745), - [anon_sym_enum] = ACTIONS(745), - [anon_sym_public] = ACTIONS(745), - [anon_sym_protected] = ACTIONS(745), - [anon_sym_private] = ACTIONS(745), - [anon_sym_abstract] = ACTIONS(745), - [anon_sym_final] = ACTIONS(745), - [anon_sym_strictfp] = ACTIONS(745), - [anon_sym_native] = ACTIONS(745), - [anon_sym_transient] = ACTIONS(745), - [anon_sym_volatile] = ACTIONS(745), - [anon_sym_sealed] = ACTIONS(745), - [anon_sym_non_DASHsealed] = ACTIONS(743), - [anon_sym_ATinterface] = ACTIONS(743), - [anon_sym_interface] = ACTIONS(745), - [anon_sym_byte] = ACTIONS(745), - [anon_sym_short] = ACTIONS(745), - [anon_sym_int] = ACTIONS(745), - [anon_sym_long] = ACTIONS(745), - [anon_sym_char] = ACTIONS(745), - [anon_sym_float] = ACTIONS(745), - [anon_sym_double] = ACTIONS(745), - [sym_boolean_type] = ACTIONS(745), - [sym_void_type] = ACTIONS(745), - [sym_this] = ACTIONS(745), - [sym_super] = ACTIONS(745), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [178] = { - [ts_builtin_sym_end] = ACTIONS(268), - [sym_identifier] = ACTIONS(270), - [sym_decimal_integer_literal] = ACTIONS(270), - [sym_hex_integer_literal] = ACTIONS(270), - [sym_octal_integer_literal] = ACTIONS(268), - [sym_binary_integer_literal] = ACTIONS(268), - [sym_decimal_floating_point_literal] = ACTIONS(268), - [sym_hex_floating_point_literal] = ACTIONS(270), - [sym_true] = ACTIONS(270), - [sym_false] = ACTIONS(270), - [sym_character_literal] = ACTIONS(268), - [sym_string_literal] = ACTIONS(270), - [sym_text_block] = ACTIONS(268), - [sym_null_literal] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(268), - [anon_sym_PLUS] = ACTIONS(270), - [anon_sym_DASH] = ACTIONS(270), - [anon_sym_BANG] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(268), - [anon_sym_PLUS_PLUS] = ACTIONS(268), - [anon_sym_DASH_DASH] = ACTIONS(268), - [anon_sym_new] = ACTIONS(270), - [anon_sym_class] = ACTIONS(270), - [anon_sym_switch] = ACTIONS(270), - [anon_sym_LBRACE] = ACTIONS(268), - [anon_sym_RBRACE] = ACTIONS(268), - [anon_sym_case] = ACTIONS(270), - [anon_sym_default] = ACTIONS(270), - [anon_sym_SEMI] = ACTIONS(268), - [anon_sym_assert] = ACTIONS(270), - [anon_sym_do] = ACTIONS(270), - [anon_sym_while] = ACTIONS(270), - [anon_sym_break] = ACTIONS(270), - [anon_sym_continue] = ACTIONS(270), - [anon_sym_return] = ACTIONS(270), - [anon_sym_yield] = ACTIONS(270), - [anon_sym_synchronized] = ACTIONS(270), - [anon_sym_throw] = ACTIONS(270), - [anon_sym_try] = ACTIONS(270), - [anon_sym_if] = ACTIONS(270), - [anon_sym_else] = ACTIONS(270), - [anon_sym_for] = ACTIONS(270), - [anon_sym_AT] = ACTIONS(270), - [anon_sym_open] = ACTIONS(270), - [anon_sym_module] = ACTIONS(270), - [anon_sym_static] = ACTIONS(270), - [anon_sym_package] = ACTIONS(270), - [anon_sym_import] = ACTIONS(270), - [anon_sym_enum] = ACTIONS(270), - [anon_sym_public] = ACTIONS(270), - [anon_sym_protected] = ACTIONS(270), - [anon_sym_private] = ACTIONS(270), - [anon_sym_abstract] = ACTIONS(270), - [anon_sym_final] = ACTIONS(270), - [anon_sym_strictfp] = ACTIONS(270), - [anon_sym_native] = ACTIONS(270), - [anon_sym_transient] = ACTIONS(270), - [anon_sym_volatile] = ACTIONS(270), - [anon_sym_sealed] = ACTIONS(270), - [anon_sym_non_DASHsealed] = ACTIONS(268), - [anon_sym_ATinterface] = ACTIONS(268), - [anon_sym_interface] = ACTIONS(270), - [anon_sym_byte] = ACTIONS(270), - [anon_sym_short] = ACTIONS(270), - [anon_sym_int] = ACTIONS(270), - [anon_sym_long] = ACTIONS(270), - [anon_sym_char] = ACTIONS(270), - [anon_sym_float] = ACTIONS(270), - [anon_sym_double] = ACTIONS(270), - [sym_boolean_type] = ACTIONS(270), - [sym_void_type] = ACTIONS(270), - [sym_this] = ACTIONS(270), - [sym_super] = ACTIONS(270), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [179] = { - [ts_builtin_sym_end] = ACTIONS(747), - [sym_identifier] = ACTIONS(749), - [sym_decimal_integer_literal] = ACTIONS(749), - [sym_hex_integer_literal] = ACTIONS(749), - [sym_octal_integer_literal] = ACTIONS(747), - [sym_binary_integer_literal] = ACTIONS(747), - [sym_decimal_floating_point_literal] = ACTIONS(747), - [sym_hex_floating_point_literal] = ACTIONS(749), - [sym_true] = ACTIONS(749), - [sym_false] = ACTIONS(749), - [sym_character_literal] = ACTIONS(747), - [sym_string_literal] = ACTIONS(749), - [sym_text_block] = ACTIONS(747), - [sym_null_literal] = ACTIONS(749), - [anon_sym_LPAREN] = ACTIONS(747), - [anon_sym_PLUS] = ACTIONS(749), - [anon_sym_DASH] = ACTIONS(749), - [anon_sym_BANG] = ACTIONS(747), - [anon_sym_TILDE] = ACTIONS(747), - [anon_sym_PLUS_PLUS] = ACTIONS(747), - [anon_sym_DASH_DASH] = ACTIONS(747), - [anon_sym_new] = ACTIONS(749), - [anon_sym_class] = ACTIONS(749), - [anon_sym_switch] = ACTIONS(749), - [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(747), - [anon_sym_case] = ACTIONS(749), - [anon_sym_default] = ACTIONS(749), - [anon_sym_SEMI] = ACTIONS(747), - [anon_sym_assert] = ACTIONS(749), - [anon_sym_do] = ACTIONS(749), - [anon_sym_while] = ACTIONS(749), - [anon_sym_break] = ACTIONS(749), - [anon_sym_continue] = ACTIONS(749), - [anon_sym_return] = ACTIONS(749), - [anon_sym_yield] = ACTIONS(749), - [anon_sym_synchronized] = ACTIONS(749), - [anon_sym_throw] = ACTIONS(749), - [anon_sym_try] = ACTIONS(749), - [anon_sym_if] = ACTIONS(749), - [anon_sym_else] = ACTIONS(749), - [anon_sym_for] = ACTIONS(749), - [anon_sym_AT] = ACTIONS(749), - [anon_sym_open] = ACTIONS(749), - [anon_sym_module] = ACTIONS(749), - [anon_sym_static] = ACTIONS(749), - [anon_sym_package] = ACTIONS(749), - [anon_sym_import] = ACTIONS(749), - [anon_sym_enum] = ACTIONS(749), - [anon_sym_public] = ACTIONS(749), - [anon_sym_protected] = ACTIONS(749), - [anon_sym_private] = ACTIONS(749), - [anon_sym_abstract] = ACTIONS(749), - [anon_sym_final] = ACTIONS(749), - [anon_sym_strictfp] = ACTIONS(749), - [anon_sym_native] = ACTIONS(749), - [anon_sym_transient] = ACTIONS(749), - [anon_sym_volatile] = ACTIONS(749), - [anon_sym_sealed] = ACTIONS(749), - [anon_sym_non_DASHsealed] = ACTIONS(747), - [anon_sym_ATinterface] = ACTIONS(747), - [anon_sym_interface] = ACTIONS(749), - [anon_sym_byte] = ACTIONS(749), - [anon_sym_short] = ACTIONS(749), - [anon_sym_int] = ACTIONS(749), - [anon_sym_long] = ACTIONS(749), - [anon_sym_char] = ACTIONS(749), - [anon_sym_float] = ACTIONS(749), - [anon_sym_double] = ACTIONS(749), - [sym_boolean_type] = ACTIONS(749), - [sym_void_type] = ACTIONS(749), - [sym_this] = ACTIONS(749), - [sym_super] = ACTIONS(749), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [180] = { - [ts_builtin_sym_end] = ACTIONS(751), - [sym_identifier] = ACTIONS(753), - [sym_decimal_integer_literal] = ACTIONS(753), - [sym_hex_integer_literal] = ACTIONS(753), - [sym_octal_integer_literal] = ACTIONS(751), - [sym_binary_integer_literal] = ACTIONS(751), - [sym_decimal_floating_point_literal] = ACTIONS(751), - [sym_hex_floating_point_literal] = ACTIONS(753), - [sym_true] = ACTIONS(753), - [sym_false] = ACTIONS(753), - [sym_character_literal] = ACTIONS(751), - [sym_string_literal] = ACTIONS(753), - [sym_text_block] = ACTIONS(751), - [sym_null_literal] = ACTIONS(753), - [anon_sym_LPAREN] = ACTIONS(751), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_BANG] = ACTIONS(751), - [anon_sym_TILDE] = ACTIONS(751), - [anon_sym_PLUS_PLUS] = ACTIONS(751), - [anon_sym_DASH_DASH] = ACTIONS(751), - [anon_sym_new] = ACTIONS(753), - [anon_sym_class] = ACTIONS(753), - [anon_sym_switch] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(751), - [anon_sym_RBRACE] = ACTIONS(751), - [anon_sym_case] = ACTIONS(753), - [anon_sym_default] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_assert] = ACTIONS(753), - [anon_sym_do] = ACTIONS(753), - [anon_sym_while] = ACTIONS(753), - [anon_sym_break] = ACTIONS(753), - [anon_sym_continue] = ACTIONS(753), - [anon_sym_return] = ACTIONS(753), - [anon_sym_yield] = ACTIONS(753), - [anon_sym_synchronized] = ACTIONS(753), - [anon_sym_throw] = ACTIONS(753), - [anon_sym_try] = ACTIONS(753), - [anon_sym_if] = ACTIONS(753), - [anon_sym_else] = ACTIONS(753), - [anon_sym_for] = ACTIONS(753), - [anon_sym_AT] = ACTIONS(753), - [anon_sym_open] = ACTIONS(753), - [anon_sym_module] = ACTIONS(753), - [anon_sym_static] = ACTIONS(753), - [anon_sym_package] = ACTIONS(753), - [anon_sym_import] = ACTIONS(753), - [anon_sym_enum] = ACTIONS(753), - [anon_sym_public] = ACTIONS(753), - [anon_sym_protected] = ACTIONS(753), - [anon_sym_private] = ACTIONS(753), - [anon_sym_abstract] = ACTIONS(753), - [anon_sym_final] = ACTIONS(753), - [anon_sym_strictfp] = ACTIONS(753), - [anon_sym_native] = ACTIONS(753), - [anon_sym_transient] = ACTIONS(753), - [anon_sym_volatile] = ACTIONS(753), - [anon_sym_sealed] = ACTIONS(753), - [anon_sym_non_DASHsealed] = ACTIONS(751), - [anon_sym_ATinterface] = ACTIONS(751), - [anon_sym_interface] = ACTIONS(753), - [anon_sym_byte] = ACTIONS(753), - [anon_sym_short] = ACTIONS(753), - [anon_sym_int] = ACTIONS(753), - [anon_sym_long] = ACTIONS(753), - [anon_sym_char] = ACTIONS(753), - [anon_sym_float] = ACTIONS(753), - [anon_sym_double] = ACTIONS(753), - [sym_boolean_type] = ACTIONS(753), - [sym_void_type] = ACTIONS(753), - [sym_this] = ACTIONS(753), - [sym_super] = ACTIONS(753), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [181] = { - [ts_builtin_sym_end] = ACTIONS(755), - [sym_identifier] = ACTIONS(757), - [sym_decimal_integer_literal] = ACTIONS(757), - [sym_hex_integer_literal] = ACTIONS(757), - [sym_octal_integer_literal] = ACTIONS(755), - [sym_binary_integer_literal] = ACTIONS(755), - [sym_decimal_floating_point_literal] = ACTIONS(755), - [sym_hex_floating_point_literal] = ACTIONS(757), - [sym_true] = ACTIONS(757), - [sym_false] = ACTIONS(757), - [sym_character_literal] = ACTIONS(755), - [sym_string_literal] = ACTIONS(757), - [sym_text_block] = ACTIONS(755), - [sym_null_literal] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_PLUS] = ACTIONS(757), - [anon_sym_DASH] = ACTIONS(757), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_TILDE] = ACTIONS(755), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_new] = ACTIONS(757), - [anon_sym_class] = ACTIONS(757), - [anon_sym_switch] = ACTIONS(757), - [anon_sym_LBRACE] = ACTIONS(755), - [anon_sym_RBRACE] = ACTIONS(755), - [anon_sym_case] = ACTIONS(757), - [anon_sym_default] = ACTIONS(757), - [anon_sym_SEMI] = ACTIONS(755), - [anon_sym_assert] = ACTIONS(757), - [anon_sym_do] = ACTIONS(757), - [anon_sym_while] = ACTIONS(757), - [anon_sym_break] = ACTIONS(757), - [anon_sym_continue] = ACTIONS(757), - [anon_sym_return] = ACTIONS(757), - [anon_sym_yield] = ACTIONS(757), - [anon_sym_synchronized] = ACTIONS(757), - [anon_sym_throw] = ACTIONS(757), - [anon_sym_try] = ACTIONS(757), - [anon_sym_if] = ACTIONS(757), - [anon_sym_else] = ACTIONS(757), - [anon_sym_for] = ACTIONS(757), - [anon_sym_AT] = ACTIONS(757), - [anon_sym_open] = ACTIONS(757), - [anon_sym_module] = ACTIONS(757), - [anon_sym_static] = ACTIONS(757), - [anon_sym_package] = ACTIONS(757), - [anon_sym_import] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(757), - [anon_sym_public] = ACTIONS(757), - [anon_sym_protected] = ACTIONS(757), - [anon_sym_private] = ACTIONS(757), - [anon_sym_abstract] = ACTIONS(757), - [anon_sym_final] = ACTIONS(757), - [anon_sym_strictfp] = ACTIONS(757), - [anon_sym_native] = ACTIONS(757), - [anon_sym_transient] = ACTIONS(757), - [anon_sym_volatile] = ACTIONS(757), - [anon_sym_sealed] = ACTIONS(757), - [anon_sym_non_DASHsealed] = ACTIONS(755), - [anon_sym_ATinterface] = ACTIONS(755), - [anon_sym_interface] = ACTIONS(757), - [anon_sym_byte] = ACTIONS(757), - [anon_sym_short] = ACTIONS(757), - [anon_sym_int] = ACTIONS(757), - [anon_sym_long] = ACTIONS(757), - [anon_sym_char] = ACTIONS(757), - [anon_sym_float] = ACTIONS(757), - [anon_sym_double] = ACTIONS(757), - [sym_boolean_type] = ACTIONS(757), - [sym_void_type] = ACTIONS(757), - [sym_this] = ACTIONS(757), - [sym_super] = ACTIONS(757), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [182] = { - [ts_builtin_sym_end] = ACTIONS(759), - [sym_identifier] = ACTIONS(761), - [sym_decimal_integer_literal] = ACTIONS(761), - [sym_hex_integer_literal] = ACTIONS(761), - [sym_octal_integer_literal] = ACTIONS(759), - [sym_binary_integer_literal] = ACTIONS(759), - [sym_decimal_floating_point_literal] = ACTIONS(759), - [sym_hex_floating_point_literal] = ACTIONS(761), - [sym_true] = ACTIONS(761), - [sym_false] = ACTIONS(761), - [sym_character_literal] = ACTIONS(759), - [sym_string_literal] = ACTIONS(761), - [sym_text_block] = ACTIONS(759), - [sym_null_literal] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(759), - [anon_sym_PLUS] = ACTIONS(761), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_BANG] = ACTIONS(759), - [anon_sym_TILDE] = ACTIONS(759), - [anon_sym_PLUS_PLUS] = ACTIONS(759), - [anon_sym_DASH_DASH] = ACTIONS(759), - [anon_sym_new] = ACTIONS(761), - [anon_sym_class] = ACTIONS(761), - [anon_sym_switch] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(759), - [anon_sym_RBRACE] = ACTIONS(759), - [anon_sym_case] = ACTIONS(761), - [anon_sym_default] = ACTIONS(761), - [anon_sym_SEMI] = ACTIONS(759), - [anon_sym_assert] = ACTIONS(761), - [anon_sym_do] = ACTIONS(761), - [anon_sym_while] = ACTIONS(761), - [anon_sym_break] = ACTIONS(761), - [anon_sym_continue] = ACTIONS(761), - [anon_sym_return] = ACTIONS(761), - [anon_sym_yield] = ACTIONS(761), - [anon_sym_synchronized] = ACTIONS(761), - [anon_sym_throw] = ACTIONS(761), - [anon_sym_try] = ACTIONS(761), - [anon_sym_if] = ACTIONS(761), - [anon_sym_else] = ACTIONS(761), - [anon_sym_for] = ACTIONS(761), - [anon_sym_AT] = ACTIONS(761), - [anon_sym_open] = ACTIONS(761), - [anon_sym_module] = ACTIONS(761), - [anon_sym_static] = ACTIONS(761), - [anon_sym_package] = ACTIONS(761), - [anon_sym_import] = ACTIONS(761), - [anon_sym_enum] = ACTIONS(761), - [anon_sym_public] = ACTIONS(761), - [anon_sym_protected] = ACTIONS(761), - [anon_sym_private] = ACTIONS(761), - [anon_sym_abstract] = ACTIONS(761), - [anon_sym_final] = ACTIONS(761), - [anon_sym_strictfp] = ACTIONS(761), - [anon_sym_native] = ACTIONS(761), - [anon_sym_transient] = ACTIONS(761), - [anon_sym_volatile] = ACTIONS(761), - [anon_sym_sealed] = ACTIONS(761), - [anon_sym_non_DASHsealed] = ACTIONS(759), - [anon_sym_ATinterface] = ACTIONS(759), - [anon_sym_interface] = ACTIONS(761), - [anon_sym_byte] = ACTIONS(761), - [anon_sym_short] = ACTIONS(761), - [anon_sym_int] = ACTIONS(761), - [anon_sym_long] = ACTIONS(761), - [anon_sym_char] = ACTIONS(761), - [anon_sym_float] = ACTIONS(761), - [anon_sym_double] = ACTIONS(761), - [sym_boolean_type] = ACTIONS(761), - [sym_void_type] = ACTIONS(761), - [sym_this] = ACTIONS(761), - [sym_super] = ACTIONS(761), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [183] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(457), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym_block] = STATE(443), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [110] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(555), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym_array_initializer] = STATE(1090), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -25218,305 +24186,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [184] = { - [ts_builtin_sym_end] = ACTIONS(763), - [sym_identifier] = ACTIONS(765), - [sym_decimal_integer_literal] = ACTIONS(765), - [sym_hex_integer_literal] = ACTIONS(765), - [sym_octal_integer_literal] = ACTIONS(763), - [sym_binary_integer_literal] = ACTIONS(763), - [sym_decimal_floating_point_literal] = ACTIONS(763), - [sym_hex_floating_point_literal] = ACTIONS(765), - [sym_true] = ACTIONS(765), - [sym_false] = ACTIONS(765), - [sym_character_literal] = ACTIONS(763), - [sym_string_literal] = ACTIONS(765), - [sym_text_block] = ACTIONS(763), - [sym_null_literal] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(763), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(763), - [anon_sym_TILDE] = ACTIONS(763), - [anon_sym_PLUS_PLUS] = ACTIONS(763), - [anon_sym_DASH_DASH] = ACTIONS(763), - [anon_sym_new] = ACTIONS(765), - [anon_sym_class] = ACTIONS(765), - [anon_sym_switch] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(763), - [anon_sym_case] = ACTIONS(765), - [anon_sym_default] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(763), - [anon_sym_assert] = ACTIONS(765), - [anon_sym_do] = ACTIONS(765), - [anon_sym_while] = ACTIONS(765), - [anon_sym_break] = ACTIONS(765), - [anon_sym_continue] = ACTIONS(765), - [anon_sym_return] = ACTIONS(765), - [anon_sym_yield] = ACTIONS(765), - [anon_sym_synchronized] = ACTIONS(765), - [anon_sym_throw] = ACTIONS(765), - [anon_sym_try] = ACTIONS(765), - [anon_sym_if] = ACTIONS(765), - [anon_sym_else] = ACTIONS(765), - [anon_sym_for] = ACTIONS(765), - [anon_sym_AT] = ACTIONS(765), - [anon_sym_open] = ACTIONS(765), - [anon_sym_module] = ACTIONS(765), - [anon_sym_static] = ACTIONS(765), - [anon_sym_package] = ACTIONS(765), - [anon_sym_import] = ACTIONS(765), - [anon_sym_enum] = ACTIONS(765), - [anon_sym_public] = ACTIONS(765), - [anon_sym_protected] = ACTIONS(765), - [anon_sym_private] = ACTIONS(765), - [anon_sym_abstract] = ACTIONS(765), - [anon_sym_final] = ACTIONS(765), - [anon_sym_strictfp] = ACTIONS(765), - [anon_sym_native] = ACTIONS(765), - [anon_sym_transient] = ACTIONS(765), - [anon_sym_volatile] = ACTIONS(765), - [anon_sym_sealed] = ACTIONS(765), - [anon_sym_non_DASHsealed] = ACTIONS(763), - [anon_sym_ATinterface] = ACTIONS(763), - [anon_sym_interface] = ACTIONS(765), - [anon_sym_byte] = ACTIONS(765), - [anon_sym_short] = ACTIONS(765), - [anon_sym_int] = ACTIONS(765), - [anon_sym_long] = ACTIONS(765), - [anon_sym_char] = ACTIONS(765), - [anon_sym_float] = ACTIONS(765), - [anon_sym_double] = ACTIONS(765), - [sym_boolean_type] = ACTIONS(765), - [sym_void_type] = ACTIONS(765), - [sym_this] = ACTIONS(765), - [sym_super] = ACTIONS(765), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [185] = { - [ts_builtin_sym_end] = ACTIONS(767), - [sym_identifier] = ACTIONS(769), - [sym_decimal_integer_literal] = ACTIONS(769), - [sym_hex_integer_literal] = ACTIONS(769), - [sym_octal_integer_literal] = ACTIONS(767), - [sym_binary_integer_literal] = ACTIONS(767), - [sym_decimal_floating_point_literal] = ACTIONS(767), - [sym_hex_floating_point_literal] = ACTIONS(769), - [sym_true] = ACTIONS(769), - [sym_false] = ACTIONS(769), - [sym_character_literal] = ACTIONS(767), - [sym_string_literal] = ACTIONS(769), - [sym_text_block] = ACTIONS(767), - [sym_null_literal] = ACTIONS(769), - [anon_sym_LPAREN] = ACTIONS(767), - [anon_sym_PLUS] = ACTIONS(769), - [anon_sym_DASH] = ACTIONS(769), - [anon_sym_BANG] = ACTIONS(767), - [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_PLUS_PLUS] = ACTIONS(767), - [anon_sym_DASH_DASH] = ACTIONS(767), - [anon_sym_new] = ACTIONS(769), - [anon_sym_class] = ACTIONS(769), - [anon_sym_switch] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_RBRACE] = ACTIONS(767), - [anon_sym_case] = ACTIONS(769), - [anon_sym_default] = ACTIONS(769), - [anon_sym_SEMI] = ACTIONS(767), - [anon_sym_assert] = ACTIONS(769), - [anon_sym_do] = ACTIONS(769), - [anon_sym_while] = ACTIONS(769), - [anon_sym_break] = ACTIONS(769), - [anon_sym_continue] = ACTIONS(769), - [anon_sym_return] = ACTIONS(769), - [anon_sym_yield] = ACTIONS(769), - [anon_sym_synchronized] = ACTIONS(769), - [anon_sym_throw] = ACTIONS(769), - [anon_sym_try] = ACTIONS(769), - [anon_sym_if] = ACTIONS(769), - [anon_sym_else] = ACTIONS(769), - [anon_sym_for] = ACTIONS(769), - [anon_sym_AT] = ACTIONS(769), - [anon_sym_open] = ACTIONS(769), - [anon_sym_module] = ACTIONS(769), - [anon_sym_static] = ACTIONS(769), - [anon_sym_package] = ACTIONS(769), - [anon_sym_import] = ACTIONS(769), - [anon_sym_enum] = ACTIONS(769), - [anon_sym_public] = ACTIONS(769), - [anon_sym_protected] = ACTIONS(769), - [anon_sym_private] = ACTIONS(769), - [anon_sym_abstract] = ACTIONS(769), - [anon_sym_final] = ACTIONS(769), - [anon_sym_strictfp] = ACTIONS(769), - [anon_sym_native] = ACTIONS(769), - [anon_sym_transient] = ACTIONS(769), - [anon_sym_volatile] = ACTIONS(769), - [anon_sym_sealed] = ACTIONS(769), - [anon_sym_non_DASHsealed] = ACTIONS(767), - [anon_sym_ATinterface] = ACTIONS(767), - [anon_sym_interface] = ACTIONS(769), - [anon_sym_byte] = ACTIONS(769), - [anon_sym_short] = ACTIONS(769), - [anon_sym_int] = ACTIONS(769), - [anon_sym_long] = ACTIONS(769), - [anon_sym_char] = ACTIONS(769), - [anon_sym_float] = ACTIONS(769), - [anon_sym_double] = ACTIONS(769), - [sym_boolean_type] = ACTIONS(769), - [sym_void_type] = ACTIONS(769), - [sym_this] = ACTIONS(769), - [sym_super] = ACTIONS(769), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [186] = { - [ts_builtin_sym_end] = ACTIONS(771), - [sym_identifier] = ACTIONS(773), - [sym_decimal_integer_literal] = ACTIONS(773), - [sym_hex_integer_literal] = ACTIONS(773), - [sym_octal_integer_literal] = ACTIONS(771), - [sym_binary_integer_literal] = ACTIONS(771), - [sym_decimal_floating_point_literal] = ACTIONS(771), - [sym_hex_floating_point_literal] = ACTIONS(773), - [sym_true] = ACTIONS(773), - [sym_false] = ACTIONS(773), - [sym_character_literal] = ACTIONS(771), - [sym_string_literal] = ACTIONS(773), - [sym_text_block] = ACTIONS(771), - [sym_null_literal] = ACTIONS(773), - [anon_sym_LPAREN] = ACTIONS(771), - [anon_sym_PLUS] = ACTIONS(773), - [anon_sym_DASH] = ACTIONS(773), - [anon_sym_BANG] = ACTIONS(771), - [anon_sym_TILDE] = ACTIONS(771), - [anon_sym_PLUS_PLUS] = ACTIONS(771), - [anon_sym_DASH_DASH] = ACTIONS(771), - [anon_sym_new] = ACTIONS(773), - [anon_sym_class] = ACTIONS(773), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_case] = ACTIONS(773), - [anon_sym_default] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(771), - [anon_sym_assert] = ACTIONS(773), - [anon_sym_do] = ACTIONS(773), - [anon_sym_while] = ACTIONS(773), - [anon_sym_break] = ACTIONS(773), - [anon_sym_continue] = ACTIONS(773), - [anon_sym_return] = ACTIONS(773), - [anon_sym_yield] = ACTIONS(773), - [anon_sym_synchronized] = ACTIONS(773), - [anon_sym_throw] = ACTIONS(773), - [anon_sym_try] = ACTIONS(773), - [anon_sym_if] = ACTIONS(773), - [anon_sym_else] = ACTIONS(773), - [anon_sym_for] = ACTIONS(773), - [anon_sym_AT] = ACTIONS(773), - [anon_sym_open] = ACTIONS(773), - [anon_sym_module] = ACTIONS(773), - [anon_sym_static] = ACTIONS(773), - [anon_sym_package] = ACTIONS(773), - [anon_sym_import] = ACTIONS(773), - [anon_sym_enum] = ACTIONS(773), - [anon_sym_public] = ACTIONS(773), - [anon_sym_protected] = ACTIONS(773), - [anon_sym_private] = ACTIONS(773), - [anon_sym_abstract] = ACTIONS(773), - [anon_sym_final] = ACTIONS(773), - [anon_sym_strictfp] = ACTIONS(773), - [anon_sym_native] = ACTIONS(773), - [anon_sym_transient] = ACTIONS(773), - [anon_sym_volatile] = ACTIONS(773), - [anon_sym_sealed] = ACTIONS(773), - [anon_sym_non_DASHsealed] = ACTIONS(771), - [anon_sym_ATinterface] = ACTIONS(771), - [anon_sym_interface] = ACTIONS(773), - [anon_sym_byte] = ACTIONS(773), - [anon_sym_short] = ACTIONS(773), - [anon_sym_int] = ACTIONS(773), - [anon_sym_long] = ACTIONS(773), - [anon_sym_char] = ACTIONS(773), - [anon_sym_float] = ACTIONS(773), - [anon_sym_double] = ACTIONS(773), - [sym_boolean_type] = ACTIONS(773), - [sym_void_type] = ACTIONS(773), - [sym_this] = ACTIONS(773), - [sym_super] = ACTIONS(773), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [187] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(496), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym_array_initializer] = STATE(909), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [111] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(542), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym_block] = STATE(509), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -25526,459 +24267,397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [188] = { - [ts_builtin_sym_end] = ACTIONS(775), - [sym_identifier] = ACTIONS(777), - [sym_decimal_integer_literal] = ACTIONS(777), - [sym_hex_integer_literal] = ACTIONS(777), - [sym_octal_integer_literal] = ACTIONS(775), - [sym_binary_integer_literal] = ACTIONS(775), - [sym_decimal_floating_point_literal] = ACTIONS(775), - [sym_hex_floating_point_literal] = ACTIONS(777), - [sym_true] = ACTIONS(777), - [sym_false] = ACTIONS(777), - [sym_character_literal] = ACTIONS(775), - [sym_string_literal] = ACTIONS(777), - [sym_text_block] = ACTIONS(775), - [sym_null_literal] = ACTIONS(777), - [anon_sym_LPAREN] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_BANG] = ACTIONS(775), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(775), - [anon_sym_DASH_DASH] = ACTIONS(775), - [anon_sym_new] = ACTIONS(777), - [anon_sym_class] = ACTIONS(777), - [anon_sym_switch] = ACTIONS(777), - [anon_sym_LBRACE] = ACTIONS(775), - [anon_sym_RBRACE] = ACTIONS(775), - [anon_sym_case] = ACTIONS(777), - [anon_sym_default] = ACTIONS(777), - [anon_sym_SEMI] = ACTIONS(775), - [anon_sym_assert] = ACTIONS(777), - [anon_sym_do] = ACTIONS(777), - [anon_sym_while] = ACTIONS(777), - [anon_sym_break] = ACTIONS(777), - [anon_sym_continue] = ACTIONS(777), - [anon_sym_return] = ACTIONS(777), - [anon_sym_yield] = ACTIONS(777), - [anon_sym_synchronized] = ACTIONS(777), - [anon_sym_throw] = ACTIONS(777), - [anon_sym_try] = ACTIONS(777), - [anon_sym_if] = ACTIONS(777), - [anon_sym_else] = ACTIONS(777), - [anon_sym_for] = ACTIONS(777), - [anon_sym_AT] = ACTIONS(777), - [anon_sym_open] = ACTIONS(777), - [anon_sym_module] = ACTIONS(777), - [anon_sym_static] = ACTIONS(777), - [anon_sym_package] = ACTIONS(777), - [anon_sym_import] = ACTIONS(777), - [anon_sym_enum] = ACTIONS(777), - [anon_sym_public] = ACTIONS(777), - [anon_sym_protected] = ACTIONS(777), - [anon_sym_private] = ACTIONS(777), - [anon_sym_abstract] = ACTIONS(777), - [anon_sym_final] = ACTIONS(777), - [anon_sym_strictfp] = ACTIONS(777), - [anon_sym_native] = ACTIONS(777), - [anon_sym_transient] = ACTIONS(777), - [anon_sym_volatile] = ACTIONS(777), - [anon_sym_sealed] = ACTIONS(777), - [anon_sym_non_DASHsealed] = ACTIONS(775), - [anon_sym_ATinterface] = ACTIONS(775), - [anon_sym_interface] = ACTIONS(777), - [anon_sym_byte] = ACTIONS(777), - [anon_sym_short] = ACTIONS(777), - [anon_sym_int] = ACTIONS(777), - [anon_sym_long] = ACTIONS(777), - [anon_sym_char] = ACTIONS(777), - [anon_sym_float] = ACTIONS(777), - [anon_sym_double] = ACTIONS(777), - [sym_boolean_type] = ACTIONS(777), - [sym_void_type] = ACTIONS(777), - [sym_this] = ACTIONS(777), - [sym_super] = ACTIONS(777), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_LBRACE] = ACTIONS(33), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [189] = { - [ts_builtin_sym_end] = ACTIONS(779), - [sym_identifier] = ACTIONS(781), - [sym_decimal_integer_literal] = ACTIONS(781), - [sym_hex_integer_literal] = ACTIONS(781), - [sym_octal_integer_literal] = ACTIONS(779), - [sym_binary_integer_literal] = ACTIONS(779), - [sym_decimal_floating_point_literal] = ACTIONS(779), - [sym_hex_floating_point_literal] = ACTIONS(781), - [sym_true] = ACTIONS(781), - [sym_false] = ACTIONS(781), - [sym_character_literal] = ACTIONS(779), - [sym_string_literal] = ACTIONS(781), - [sym_text_block] = ACTIONS(779), - [sym_null_literal] = ACTIONS(781), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_BANG] = ACTIONS(779), - [anon_sym_TILDE] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_new] = ACTIONS(781), - [anon_sym_class] = ACTIONS(781), - [anon_sym_switch] = ACTIONS(781), - [anon_sym_LBRACE] = ACTIONS(779), - [anon_sym_RBRACE] = ACTIONS(779), - [anon_sym_case] = ACTIONS(781), - [anon_sym_default] = ACTIONS(781), - [anon_sym_SEMI] = ACTIONS(779), - [anon_sym_assert] = ACTIONS(781), - [anon_sym_do] = ACTIONS(781), - [anon_sym_while] = ACTIONS(781), - [anon_sym_break] = ACTIONS(781), - [anon_sym_continue] = ACTIONS(781), - [anon_sym_return] = ACTIONS(781), - [anon_sym_yield] = ACTIONS(781), - [anon_sym_synchronized] = ACTIONS(781), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_try] = ACTIONS(781), - [anon_sym_if] = ACTIONS(781), - [anon_sym_else] = ACTIONS(781), - [anon_sym_for] = ACTIONS(781), - [anon_sym_AT] = ACTIONS(781), - [anon_sym_open] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_static] = ACTIONS(781), - [anon_sym_package] = ACTIONS(781), - [anon_sym_import] = ACTIONS(781), - [anon_sym_enum] = ACTIONS(781), - [anon_sym_public] = ACTIONS(781), - [anon_sym_protected] = ACTIONS(781), - [anon_sym_private] = ACTIONS(781), - [anon_sym_abstract] = ACTIONS(781), - [anon_sym_final] = ACTIONS(781), - [anon_sym_strictfp] = ACTIONS(781), - [anon_sym_native] = ACTIONS(781), - [anon_sym_transient] = ACTIONS(781), - [anon_sym_volatile] = ACTIONS(781), - [anon_sym_sealed] = ACTIONS(781), - [anon_sym_non_DASHsealed] = ACTIONS(779), - [anon_sym_ATinterface] = ACTIONS(779), - [anon_sym_interface] = ACTIONS(781), - [anon_sym_byte] = ACTIONS(781), - [anon_sym_short] = ACTIONS(781), - [anon_sym_int] = ACTIONS(781), - [anon_sym_long] = ACTIONS(781), - [anon_sym_char] = ACTIONS(781), - [anon_sym_float] = ACTIONS(781), - [anon_sym_double] = ACTIONS(781), - [sym_boolean_type] = ACTIONS(781), - [sym_void_type] = ACTIONS(781), - [sym_this] = ACTIONS(781), - [sym_super] = ACTIONS(781), + [112] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(587), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(390), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [190] = { - [ts_builtin_sym_end] = ACTIONS(783), - [sym_identifier] = ACTIONS(785), - [sym_decimal_integer_literal] = ACTIONS(785), - [sym_hex_integer_literal] = ACTIONS(785), - [sym_octal_integer_literal] = ACTIONS(783), - [sym_binary_integer_literal] = ACTIONS(783), - [sym_decimal_floating_point_literal] = ACTIONS(783), - [sym_hex_floating_point_literal] = ACTIONS(785), - [sym_true] = ACTIONS(785), - [sym_false] = ACTIONS(785), - [sym_character_literal] = ACTIONS(783), - [sym_string_literal] = ACTIONS(785), - [sym_text_block] = ACTIONS(783), - [sym_null_literal] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_BANG] = ACTIONS(783), - [anon_sym_TILDE] = ACTIONS(783), - [anon_sym_PLUS_PLUS] = ACTIONS(783), - [anon_sym_DASH_DASH] = ACTIONS(783), - [anon_sym_new] = ACTIONS(785), - [anon_sym_class] = ACTIONS(785), - [anon_sym_switch] = ACTIONS(785), - [anon_sym_LBRACE] = ACTIONS(783), - [anon_sym_RBRACE] = ACTIONS(783), - [anon_sym_case] = ACTIONS(785), - [anon_sym_default] = ACTIONS(785), - [anon_sym_SEMI] = ACTIONS(783), - [anon_sym_assert] = ACTIONS(785), - [anon_sym_do] = ACTIONS(785), - [anon_sym_while] = ACTIONS(785), - [anon_sym_break] = ACTIONS(785), - [anon_sym_continue] = ACTIONS(785), - [anon_sym_return] = ACTIONS(785), - [anon_sym_yield] = ACTIONS(785), - [anon_sym_synchronized] = ACTIONS(785), - [anon_sym_throw] = ACTIONS(785), - [anon_sym_try] = ACTIONS(785), - [anon_sym_if] = ACTIONS(785), - [anon_sym_else] = ACTIONS(785), - [anon_sym_for] = ACTIONS(785), - [anon_sym_AT] = ACTIONS(785), - [anon_sym_open] = ACTIONS(785), - [anon_sym_module] = ACTIONS(785), - [anon_sym_static] = ACTIONS(785), - [anon_sym_package] = ACTIONS(785), - [anon_sym_import] = ACTIONS(785), - [anon_sym_enum] = ACTIONS(785), - [anon_sym_public] = ACTIONS(785), - [anon_sym_protected] = ACTIONS(785), - [anon_sym_private] = ACTIONS(785), - [anon_sym_abstract] = ACTIONS(785), - [anon_sym_final] = ACTIONS(785), - [anon_sym_strictfp] = ACTIONS(785), - [anon_sym_native] = ACTIONS(785), - [anon_sym_transient] = ACTIONS(785), - [anon_sym_volatile] = ACTIONS(785), - [anon_sym_sealed] = ACTIONS(785), - [anon_sym_non_DASHsealed] = ACTIONS(783), - [anon_sym_ATinterface] = ACTIONS(783), - [anon_sym_interface] = ACTIONS(785), - [anon_sym_byte] = ACTIONS(785), - [anon_sym_short] = ACTIONS(785), - [anon_sym_int] = ACTIONS(785), - [anon_sym_long] = ACTIONS(785), - [anon_sym_char] = ACTIONS(785), - [anon_sym_float] = ACTIONS(785), - [anon_sym_double] = ACTIONS(785), - [sym_boolean_type] = ACTIONS(785), - [sym_void_type] = ACTIONS(785), - [sym_this] = ACTIONS(785), - [sym_super] = ACTIONS(785), + [113] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(631), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_RBRACK] = ACTIONS(392), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [191] = { - [ts_builtin_sym_end] = ACTIONS(787), - [sym_identifier] = ACTIONS(789), - [sym_decimal_integer_literal] = ACTIONS(789), - [sym_hex_integer_literal] = ACTIONS(789), - [sym_octal_integer_literal] = ACTIONS(787), - [sym_binary_integer_literal] = ACTIONS(787), - [sym_decimal_floating_point_literal] = ACTIONS(787), - [sym_hex_floating_point_literal] = ACTIONS(789), - [sym_true] = ACTIONS(789), - [sym_false] = ACTIONS(789), - [sym_character_literal] = ACTIONS(787), - [sym_string_literal] = ACTIONS(789), - [sym_text_block] = ACTIONS(787), - [sym_null_literal] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(787), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(789), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_TILDE] = ACTIONS(787), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_new] = ACTIONS(789), - [anon_sym_class] = ACTIONS(789), - [anon_sym_switch] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(787), - [anon_sym_RBRACE] = ACTIONS(787), - [anon_sym_case] = ACTIONS(789), - [anon_sym_default] = ACTIONS(789), - [anon_sym_SEMI] = ACTIONS(787), - [anon_sym_assert] = ACTIONS(789), - [anon_sym_do] = ACTIONS(789), - [anon_sym_while] = ACTIONS(789), - [anon_sym_break] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_return] = ACTIONS(789), - [anon_sym_yield] = ACTIONS(789), - [anon_sym_synchronized] = ACTIONS(789), - [anon_sym_throw] = ACTIONS(789), - [anon_sym_try] = ACTIONS(789), - [anon_sym_if] = ACTIONS(789), - [anon_sym_else] = ACTIONS(789), - [anon_sym_for] = ACTIONS(789), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_open] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_static] = ACTIONS(789), - [anon_sym_package] = ACTIONS(789), - [anon_sym_import] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(789), - [anon_sym_public] = ACTIONS(789), - [anon_sym_protected] = ACTIONS(789), - [anon_sym_private] = ACTIONS(789), - [anon_sym_abstract] = ACTIONS(789), - [anon_sym_final] = ACTIONS(789), - [anon_sym_strictfp] = ACTIONS(789), - [anon_sym_native] = ACTIONS(789), - [anon_sym_transient] = ACTIONS(789), - [anon_sym_volatile] = ACTIONS(789), - [anon_sym_sealed] = ACTIONS(789), - [anon_sym_non_DASHsealed] = ACTIONS(787), - [anon_sym_ATinterface] = ACTIONS(787), - [anon_sym_interface] = ACTIONS(789), - [anon_sym_byte] = ACTIONS(789), - [anon_sym_short] = ACTIONS(789), - [anon_sym_int] = ACTIONS(789), - [anon_sym_long] = ACTIONS(789), - [anon_sym_char] = ACTIONS(789), - [anon_sym_float] = ACTIONS(789), - [anon_sym_double] = ACTIONS(789), - [sym_boolean_type] = ACTIONS(789), - [sym_void_type] = ACTIONS(789), - [sym_this] = ACTIONS(789), - [sym_super] = ACTIONS(789), + [114] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(564), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [192] = { - [ts_builtin_sym_end] = ACTIONS(791), - [sym_identifier] = ACTIONS(793), - [sym_decimal_integer_literal] = ACTIONS(793), - [sym_hex_integer_literal] = ACTIONS(793), - [sym_octal_integer_literal] = ACTIONS(791), - [sym_binary_integer_literal] = ACTIONS(791), - [sym_decimal_floating_point_literal] = ACTIONS(791), - [sym_hex_floating_point_literal] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [sym_character_literal] = ACTIONS(791), - [sym_string_literal] = ACTIONS(793), - [sym_text_block] = ACTIONS(791), - [sym_null_literal] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(791), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_BANG] = ACTIONS(791), - [anon_sym_TILDE] = ACTIONS(791), - [anon_sym_PLUS_PLUS] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(791), - [anon_sym_new] = ACTIONS(793), - [anon_sym_class] = ACTIONS(793), - [anon_sym_switch] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_RBRACE] = ACTIONS(791), - [anon_sym_case] = ACTIONS(793), - [anon_sym_default] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_assert] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_break] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_yield] = ACTIONS(793), - [anon_sym_synchronized] = ACTIONS(793), - [anon_sym_throw] = ACTIONS(793), - [anon_sym_try] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [anon_sym_else] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_AT] = ACTIONS(793), - [anon_sym_open] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_static] = ACTIONS(793), - [anon_sym_package] = ACTIONS(793), - [anon_sym_import] = ACTIONS(793), - [anon_sym_enum] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_abstract] = ACTIONS(793), - [anon_sym_final] = ACTIONS(793), - [anon_sym_strictfp] = ACTIONS(793), - [anon_sym_native] = ACTIONS(793), - [anon_sym_transient] = ACTIONS(793), - [anon_sym_volatile] = ACTIONS(793), - [anon_sym_sealed] = ACTIONS(793), - [anon_sym_non_DASHsealed] = ACTIONS(791), - [anon_sym_ATinterface] = ACTIONS(791), - [anon_sym_interface] = ACTIONS(793), - [anon_sym_byte] = ACTIONS(793), - [anon_sym_short] = ACTIONS(793), - [anon_sym_int] = ACTIONS(793), - [anon_sym_long] = ACTIONS(793), - [anon_sym_char] = ACTIONS(793), - [anon_sym_float] = ACTIONS(793), - [anon_sym_double] = ACTIONS(793), - [sym_boolean_type] = ACTIONS(793), - [sym_void_type] = ACTIONS(793), - [sym_this] = ACTIONS(793), - [sym_super] = ACTIONS(793), + [115] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(561), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(396), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [193] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(484), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym_block] = STATE(443), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [116] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(622), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -25988,1921 +24667,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(398), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [194] = { - [ts_builtin_sym_end] = ACTIONS(807), - [sym_identifier] = ACTIONS(809), - [sym_decimal_integer_literal] = ACTIONS(809), - [sym_hex_integer_literal] = ACTIONS(809), - [sym_octal_integer_literal] = ACTIONS(807), - [sym_binary_integer_literal] = ACTIONS(807), - [sym_decimal_floating_point_literal] = ACTIONS(807), - [sym_hex_floating_point_literal] = ACTIONS(809), - [sym_true] = ACTIONS(809), - [sym_false] = ACTIONS(809), - [sym_character_literal] = ACTIONS(807), - [sym_string_literal] = ACTIONS(809), - [sym_text_block] = ACTIONS(807), - [sym_null_literal] = ACTIONS(809), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(807), - [anon_sym_TILDE] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), - [anon_sym_new] = ACTIONS(809), - [anon_sym_class] = ACTIONS(809), - [anon_sym_switch] = ACTIONS(809), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_case] = ACTIONS(809), - [anon_sym_default] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_assert] = ACTIONS(809), - [anon_sym_do] = ACTIONS(809), - [anon_sym_while] = ACTIONS(809), - [anon_sym_break] = ACTIONS(809), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_return] = ACTIONS(809), - [anon_sym_yield] = ACTIONS(809), - [anon_sym_synchronized] = ACTIONS(809), - [anon_sym_throw] = ACTIONS(809), - [anon_sym_try] = ACTIONS(809), - [anon_sym_if] = ACTIONS(809), - [anon_sym_else] = ACTIONS(809), - [anon_sym_for] = ACTIONS(809), - [anon_sym_AT] = ACTIONS(809), - [anon_sym_open] = ACTIONS(809), - [anon_sym_module] = ACTIONS(809), - [anon_sym_static] = ACTIONS(809), - [anon_sym_package] = ACTIONS(809), - [anon_sym_import] = ACTIONS(809), - [anon_sym_enum] = ACTIONS(809), - [anon_sym_public] = ACTIONS(809), - [anon_sym_protected] = ACTIONS(809), - [anon_sym_private] = ACTIONS(809), - [anon_sym_abstract] = ACTIONS(809), - [anon_sym_final] = ACTIONS(809), - [anon_sym_strictfp] = ACTIONS(809), - [anon_sym_native] = ACTIONS(809), - [anon_sym_transient] = ACTIONS(809), - [anon_sym_volatile] = ACTIONS(809), - [anon_sym_sealed] = ACTIONS(809), - [anon_sym_non_DASHsealed] = ACTIONS(807), - [anon_sym_ATinterface] = ACTIONS(807), - [anon_sym_interface] = ACTIONS(809), - [anon_sym_byte] = ACTIONS(809), - [anon_sym_short] = ACTIONS(809), - [anon_sym_int] = ACTIONS(809), - [anon_sym_long] = ACTIONS(809), - [anon_sym_char] = ACTIONS(809), - [anon_sym_float] = ACTIONS(809), - [anon_sym_double] = ACTIONS(809), - [sym_boolean_type] = ACTIONS(809), - [sym_void_type] = ACTIONS(809), - [sym_this] = ACTIONS(809), - [sym_super] = ACTIONS(809), + [117] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(639), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(400), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [195] = { - [ts_builtin_sym_end] = ACTIONS(811), - [sym_identifier] = ACTIONS(813), - [sym_decimal_integer_literal] = ACTIONS(813), - [sym_hex_integer_literal] = ACTIONS(813), - [sym_octal_integer_literal] = ACTIONS(811), - [sym_binary_integer_literal] = ACTIONS(811), - [sym_decimal_floating_point_literal] = ACTIONS(811), - [sym_hex_floating_point_literal] = ACTIONS(813), - [sym_true] = ACTIONS(813), - [sym_false] = ACTIONS(813), - [sym_character_literal] = ACTIONS(811), - [sym_string_literal] = ACTIONS(813), - [sym_text_block] = ACTIONS(811), - [sym_null_literal] = ACTIONS(813), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(811), - [anon_sym_PLUS_PLUS] = ACTIONS(811), - [anon_sym_DASH_DASH] = ACTIONS(811), - [anon_sym_new] = ACTIONS(813), - [anon_sym_class] = ACTIONS(813), - [anon_sym_switch] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(811), - [anon_sym_RBRACE] = ACTIONS(811), - [anon_sym_case] = ACTIONS(813), - [anon_sym_default] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_assert] = ACTIONS(813), - [anon_sym_do] = ACTIONS(813), - [anon_sym_while] = ACTIONS(813), - [anon_sym_break] = ACTIONS(813), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_return] = ACTIONS(813), - [anon_sym_yield] = ACTIONS(813), - [anon_sym_synchronized] = ACTIONS(813), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_try] = ACTIONS(813), - [anon_sym_if] = ACTIONS(813), - [anon_sym_else] = ACTIONS(813), - [anon_sym_for] = ACTIONS(813), - [anon_sym_AT] = ACTIONS(813), - [anon_sym_open] = ACTIONS(813), - [anon_sym_module] = ACTIONS(813), - [anon_sym_static] = ACTIONS(813), - [anon_sym_package] = ACTIONS(813), - [anon_sym_import] = ACTIONS(813), - [anon_sym_enum] = ACTIONS(813), - [anon_sym_public] = ACTIONS(813), - [anon_sym_protected] = ACTIONS(813), - [anon_sym_private] = ACTIONS(813), - [anon_sym_abstract] = ACTIONS(813), - [anon_sym_final] = ACTIONS(813), - [anon_sym_strictfp] = ACTIONS(813), - [anon_sym_native] = ACTIONS(813), - [anon_sym_transient] = ACTIONS(813), - [anon_sym_volatile] = ACTIONS(813), - [anon_sym_sealed] = ACTIONS(813), - [anon_sym_non_DASHsealed] = ACTIONS(811), - [anon_sym_ATinterface] = ACTIONS(811), - [anon_sym_interface] = ACTIONS(813), - [anon_sym_byte] = ACTIONS(813), - [anon_sym_short] = ACTIONS(813), - [anon_sym_int] = ACTIONS(813), - [anon_sym_long] = ACTIONS(813), - [anon_sym_char] = ACTIONS(813), - [anon_sym_float] = ACTIONS(813), - [anon_sym_double] = ACTIONS(813), - [sym_boolean_type] = ACTIONS(813), - [sym_void_type] = ACTIONS(813), - [sym_this] = ACTIONS(813), - [sym_super] = ACTIONS(813), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [196] = { - [ts_builtin_sym_end] = ACTIONS(815), - [sym_identifier] = ACTIONS(817), - [sym_decimal_integer_literal] = ACTIONS(817), - [sym_hex_integer_literal] = ACTIONS(817), - [sym_octal_integer_literal] = ACTIONS(815), - [sym_binary_integer_literal] = ACTIONS(815), - [sym_decimal_floating_point_literal] = ACTIONS(815), - [sym_hex_floating_point_literal] = ACTIONS(817), - [sym_true] = ACTIONS(817), - [sym_false] = ACTIONS(817), - [sym_character_literal] = ACTIONS(815), - [sym_string_literal] = ACTIONS(817), - [sym_text_block] = ACTIONS(815), - [sym_null_literal] = ACTIONS(817), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_BANG] = ACTIONS(815), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_new] = ACTIONS(817), - [anon_sym_class] = ACTIONS(817), - [anon_sym_switch] = ACTIONS(817), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_RBRACE] = ACTIONS(815), - [anon_sym_case] = ACTIONS(817), - [anon_sym_default] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_assert] = ACTIONS(817), - [anon_sym_do] = ACTIONS(817), - [anon_sym_while] = ACTIONS(817), - [anon_sym_break] = ACTIONS(817), - [anon_sym_continue] = ACTIONS(817), - [anon_sym_return] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(817), - [anon_sym_synchronized] = ACTIONS(817), - [anon_sym_throw] = ACTIONS(817), - [anon_sym_try] = ACTIONS(817), - [anon_sym_if] = ACTIONS(817), - [anon_sym_else] = ACTIONS(819), - [anon_sym_for] = ACTIONS(817), - [anon_sym_AT] = ACTIONS(817), - [anon_sym_open] = ACTIONS(817), - [anon_sym_module] = ACTIONS(817), - [anon_sym_static] = ACTIONS(817), - [anon_sym_package] = ACTIONS(817), - [anon_sym_import] = ACTIONS(817), - [anon_sym_enum] = ACTIONS(817), - [anon_sym_public] = ACTIONS(817), - [anon_sym_protected] = ACTIONS(817), - [anon_sym_private] = ACTIONS(817), - [anon_sym_abstract] = ACTIONS(817), - [anon_sym_final] = ACTIONS(817), - [anon_sym_strictfp] = ACTIONS(817), - [anon_sym_native] = ACTIONS(817), - [anon_sym_transient] = ACTIONS(817), - [anon_sym_volatile] = ACTIONS(817), - [anon_sym_sealed] = ACTIONS(817), - [anon_sym_non_DASHsealed] = ACTIONS(815), - [anon_sym_ATinterface] = ACTIONS(815), - [anon_sym_interface] = ACTIONS(817), - [anon_sym_byte] = ACTIONS(817), - [anon_sym_short] = ACTIONS(817), - [anon_sym_int] = ACTIONS(817), - [anon_sym_long] = ACTIONS(817), - [anon_sym_char] = ACTIONS(817), - [anon_sym_float] = ACTIONS(817), - [anon_sym_double] = ACTIONS(817), - [sym_boolean_type] = ACTIONS(817), - [sym_void_type] = ACTIONS(817), - [sym_this] = ACTIONS(817), - [sym_super] = ACTIONS(817), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [197] = { - [ts_builtin_sym_end] = ACTIONS(821), - [sym_identifier] = ACTIONS(823), - [sym_decimal_integer_literal] = ACTIONS(823), - [sym_hex_integer_literal] = ACTIONS(823), - [sym_octal_integer_literal] = ACTIONS(821), - [sym_binary_integer_literal] = ACTIONS(821), - [sym_decimal_floating_point_literal] = ACTIONS(821), - [sym_hex_floating_point_literal] = ACTIONS(823), - [sym_true] = ACTIONS(823), - [sym_false] = ACTIONS(823), - [sym_character_literal] = ACTIONS(821), - [sym_string_literal] = ACTIONS(823), - [sym_text_block] = ACTIONS(821), - [sym_null_literal] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(821), - [anon_sym_PLUS] = ACTIONS(823), - [anon_sym_DASH] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_new] = ACTIONS(823), - [anon_sym_class] = ACTIONS(823), - [anon_sym_switch] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(821), - [anon_sym_RBRACE] = ACTIONS(821), - [anon_sym_case] = ACTIONS(823), - [anon_sym_default] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(821), - [anon_sym_assert] = ACTIONS(823), - [anon_sym_do] = ACTIONS(823), - [anon_sym_while] = ACTIONS(823), - [anon_sym_break] = ACTIONS(823), - [anon_sym_continue] = ACTIONS(823), - [anon_sym_return] = ACTIONS(823), - [anon_sym_yield] = ACTIONS(823), - [anon_sym_synchronized] = ACTIONS(823), - [anon_sym_throw] = ACTIONS(823), - [anon_sym_try] = ACTIONS(823), - [anon_sym_if] = ACTIONS(823), - [anon_sym_else] = ACTIONS(823), - [anon_sym_for] = ACTIONS(823), - [anon_sym_AT] = ACTIONS(823), - [anon_sym_open] = ACTIONS(823), - [anon_sym_module] = ACTIONS(823), - [anon_sym_static] = ACTIONS(823), - [anon_sym_package] = ACTIONS(823), - [anon_sym_import] = ACTIONS(823), - [anon_sym_enum] = ACTIONS(823), - [anon_sym_public] = ACTIONS(823), - [anon_sym_protected] = ACTIONS(823), - [anon_sym_private] = ACTIONS(823), - [anon_sym_abstract] = ACTIONS(823), - [anon_sym_final] = ACTIONS(823), - [anon_sym_strictfp] = ACTIONS(823), - [anon_sym_native] = ACTIONS(823), - [anon_sym_transient] = ACTIONS(823), - [anon_sym_volatile] = ACTIONS(823), - [anon_sym_sealed] = ACTIONS(823), - [anon_sym_non_DASHsealed] = ACTIONS(821), - [anon_sym_ATinterface] = ACTIONS(821), - [anon_sym_interface] = ACTIONS(823), - [anon_sym_byte] = ACTIONS(823), - [anon_sym_short] = ACTIONS(823), - [anon_sym_int] = ACTIONS(823), - [anon_sym_long] = ACTIONS(823), - [anon_sym_char] = ACTIONS(823), - [anon_sym_float] = ACTIONS(823), - [anon_sym_double] = ACTIONS(823), - [sym_boolean_type] = ACTIONS(823), - [sym_void_type] = ACTIONS(823), - [sym_this] = ACTIONS(823), - [sym_super] = ACTIONS(823), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [198] = { - [ts_builtin_sym_end] = ACTIONS(825), - [sym_identifier] = ACTIONS(827), - [sym_decimal_integer_literal] = ACTIONS(827), - [sym_hex_integer_literal] = ACTIONS(827), - [sym_octal_integer_literal] = ACTIONS(825), - [sym_binary_integer_literal] = ACTIONS(825), - [sym_decimal_floating_point_literal] = ACTIONS(825), - [sym_hex_floating_point_literal] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_character_literal] = ACTIONS(825), - [sym_string_literal] = ACTIONS(827), - [sym_text_block] = ACTIONS(825), - [sym_null_literal] = ACTIONS(827), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(827), - [anon_sym_DASH] = ACTIONS(827), - [anon_sym_BANG] = ACTIONS(825), - [anon_sym_TILDE] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(825), - [anon_sym_DASH_DASH] = ACTIONS(825), - [anon_sym_new] = ACTIONS(827), - [anon_sym_class] = ACTIONS(827), - [anon_sym_switch] = ACTIONS(827), - [anon_sym_LBRACE] = ACTIONS(825), - [anon_sym_RBRACE] = ACTIONS(825), - [anon_sym_case] = ACTIONS(827), - [anon_sym_default] = ACTIONS(827), - [anon_sym_SEMI] = ACTIONS(825), - [anon_sym_assert] = ACTIONS(827), - [anon_sym_do] = ACTIONS(827), - [anon_sym_while] = ACTIONS(827), - [anon_sym_break] = ACTIONS(827), - [anon_sym_continue] = ACTIONS(827), - [anon_sym_return] = ACTIONS(827), - [anon_sym_yield] = ACTIONS(827), - [anon_sym_synchronized] = ACTIONS(827), - [anon_sym_throw] = ACTIONS(827), - [anon_sym_try] = ACTIONS(827), - [anon_sym_if] = ACTIONS(827), - [anon_sym_else] = ACTIONS(827), - [anon_sym_for] = ACTIONS(827), - [anon_sym_AT] = ACTIONS(827), - [anon_sym_open] = ACTIONS(827), - [anon_sym_module] = ACTIONS(827), - [anon_sym_static] = ACTIONS(827), - [anon_sym_package] = ACTIONS(827), - [anon_sym_import] = ACTIONS(827), - [anon_sym_enum] = ACTIONS(827), - [anon_sym_public] = ACTIONS(827), - [anon_sym_protected] = ACTIONS(827), - [anon_sym_private] = ACTIONS(827), - [anon_sym_abstract] = ACTIONS(827), - [anon_sym_final] = ACTIONS(827), - [anon_sym_strictfp] = ACTIONS(827), - [anon_sym_native] = ACTIONS(827), - [anon_sym_transient] = ACTIONS(827), - [anon_sym_volatile] = ACTIONS(827), - [anon_sym_sealed] = ACTIONS(827), - [anon_sym_non_DASHsealed] = ACTIONS(825), - [anon_sym_ATinterface] = ACTIONS(825), - [anon_sym_interface] = ACTIONS(827), - [anon_sym_byte] = ACTIONS(827), - [anon_sym_short] = ACTIONS(827), - [anon_sym_int] = ACTIONS(827), - [anon_sym_long] = ACTIONS(827), - [anon_sym_char] = ACTIONS(827), - [anon_sym_float] = ACTIONS(827), - [anon_sym_double] = ACTIONS(827), - [sym_boolean_type] = ACTIONS(827), - [sym_void_type] = ACTIONS(827), - [sym_this] = ACTIONS(827), - [sym_super] = ACTIONS(827), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [199] = { - [ts_builtin_sym_end] = ACTIONS(829), - [sym_identifier] = ACTIONS(831), - [sym_decimal_integer_literal] = ACTIONS(831), - [sym_hex_integer_literal] = ACTIONS(831), - [sym_octal_integer_literal] = ACTIONS(829), - [sym_binary_integer_literal] = ACTIONS(829), - [sym_decimal_floating_point_literal] = ACTIONS(829), - [sym_hex_floating_point_literal] = ACTIONS(831), - [sym_true] = ACTIONS(831), - [sym_false] = ACTIONS(831), - [sym_character_literal] = ACTIONS(829), - [sym_string_literal] = ACTIONS(831), - [sym_text_block] = ACTIONS(829), - [sym_null_literal] = ACTIONS(831), - [anon_sym_LPAREN] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_BANG] = ACTIONS(829), - [anon_sym_TILDE] = ACTIONS(829), - [anon_sym_PLUS_PLUS] = ACTIONS(829), - [anon_sym_DASH_DASH] = ACTIONS(829), - [anon_sym_new] = ACTIONS(831), - [anon_sym_class] = ACTIONS(831), - [anon_sym_switch] = ACTIONS(831), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_RBRACE] = ACTIONS(829), - [anon_sym_case] = ACTIONS(831), - [anon_sym_default] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(829), - [anon_sym_assert] = ACTIONS(831), - [anon_sym_do] = ACTIONS(831), - [anon_sym_while] = ACTIONS(831), - [anon_sym_break] = ACTIONS(831), - [anon_sym_continue] = ACTIONS(831), - [anon_sym_return] = ACTIONS(831), - [anon_sym_yield] = ACTIONS(831), - [anon_sym_synchronized] = ACTIONS(831), - [anon_sym_throw] = ACTIONS(831), - [anon_sym_try] = ACTIONS(831), - [anon_sym_if] = ACTIONS(831), - [anon_sym_else] = ACTIONS(831), - [anon_sym_for] = ACTIONS(831), - [anon_sym_AT] = ACTIONS(831), - [anon_sym_open] = ACTIONS(831), - [anon_sym_module] = ACTIONS(831), - [anon_sym_static] = ACTIONS(831), - [anon_sym_package] = ACTIONS(831), - [anon_sym_import] = ACTIONS(831), - [anon_sym_enum] = ACTIONS(831), - [anon_sym_public] = ACTIONS(831), - [anon_sym_protected] = ACTIONS(831), - [anon_sym_private] = ACTIONS(831), - [anon_sym_abstract] = ACTIONS(831), - [anon_sym_final] = ACTIONS(831), - [anon_sym_strictfp] = ACTIONS(831), - [anon_sym_native] = ACTIONS(831), - [anon_sym_transient] = ACTIONS(831), - [anon_sym_volatile] = ACTIONS(831), - [anon_sym_sealed] = ACTIONS(831), - [anon_sym_non_DASHsealed] = ACTIONS(829), - [anon_sym_ATinterface] = ACTIONS(829), - [anon_sym_interface] = ACTIONS(831), - [anon_sym_byte] = ACTIONS(831), - [anon_sym_short] = ACTIONS(831), - [anon_sym_int] = ACTIONS(831), - [anon_sym_long] = ACTIONS(831), - [anon_sym_char] = ACTIONS(831), - [anon_sym_float] = ACTIONS(831), - [anon_sym_double] = ACTIONS(831), - [sym_boolean_type] = ACTIONS(831), - [sym_void_type] = ACTIONS(831), - [sym_this] = ACTIONS(831), - [sym_super] = ACTIONS(831), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [200] = { - [ts_builtin_sym_end] = ACTIONS(833), - [sym_identifier] = ACTIONS(835), - [sym_decimal_integer_literal] = ACTIONS(835), - [sym_hex_integer_literal] = ACTIONS(835), - [sym_octal_integer_literal] = ACTIONS(833), - [sym_binary_integer_literal] = ACTIONS(833), - [sym_decimal_floating_point_literal] = ACTIONS(833), - [sym_hex_floating_point_literal] = ACTIONS(835), - [sym_true] = ACTIONS(835), - [sym_false] = ACTIONS(835), - [sym_character_literal] = ACTIONS(833), - [sym_string_literal] = ACTIONS(835), - [sym_text_block] = ACTIONS(833), - [sym_null_literal] = ACTIONS(835), - [anon_sym_LPAREN] = ACTIONS(833), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_BANG] = ACTIONS(833), - [anon_sym_TILDE] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_new] = ACTIONS(835), - [anon_sym_class] = ACTIONS(835), - [anon_sym_switch] = ACTIONS(835), - [anon_sym_LBRACE] = ACTIONS(833), - [anon_sym_RBRACE] = ACTIONS(833), - [anon_sym_case] = ACTIONS(835), - [anon_sym_default] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(833), - [anon_sym_assert] = ACTIONS(835), - [anon_sym_do] = ACTIONS(835), - [anon_sym_while] = ACTIONS(835), - [anon_sym_break] = ACTIONS(835), - [anon_sym_continue] = ACTIONS(835), - [anon_sym_return] = ACTIONS(835), - [anon_sym_yield] = ACTIONS(835), - [anon_sym_synchronized] = ACTIONS(835), - [anon_sym_throw] = ACTIONS(835), - [anon_sym_try] = ACTIONS(835), - [anon_sym_if] = ACTIONS(835), - [anon_sym_else] = ACTIONS(835), - [anon_sym_for] = ACTIONS(835), - [anon_sym_AT] = ACTIONS(835), - [anon_sym_open] = ACTIONS(835), - [anon_sym_module] = ACTIONS(835), - [anon_sym_static] = ACTIONS(835), - [anon_sym_package] = ACTIONS(835), - [anon_sym_import] = ACTIONS(835), - [anon_sym_enum] = ACTIONS(835), - [anon_sym_public] = ACTIONS(835), - [anon_sym_protected] = ACTIONS(835), - [anon_sym_private] = ACTIONS(835), - [anon_sym_abstract] = ACTIONS(835), - [anon_sym_final] = ACTIONS(835), - [anon_sym_strictfp] = ACTIONS(835), - [anon_sym_native] = ACTIONS(835), - [anon_sym_transient] = ACTIONS(835), - [anon_sym_volatile] = ACTIONS(835), - [anon_sym_sealed] = ACTIONS(835), - [anon_sym_non_DASHsealed] = ACTIONS(833), - [anon_sym_ATinterface] = ACTIONS(833), - [anon_sym_interface] = ACTIONS(835), - [anon_sym_byte] = ACTIONS(835), - [anon_sym_short] = ACTIONS(835), - [anon_sym_int] = ACTIONS(835), - [anon_sym_long] = ACTIONS(835), - [anon_sym_char] = ACTIONS(835), - [anon_sym_float] = ACTIONS(835), - [anon_sym_double] = ACTIONS(835), - [sym_boolean_type] = ACTIONS(835), - [sym_void_type] = ACTIONS(835), - [sym_this] = ACTIONS(835), - [sym_super] = ACTIONS(835), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [201] = { - [ts_builtin_sym_end] = ACTIONS(837), - [sym_identifier] = ACTIONS(839), - [sym_decimal_integer_literal] = ACTIONS(839), - [sym_hex_integer_literal] = ACTIONS(839), - [sym_octal_integer_literal] = ACTIONS(837), - [sym_binary_integer_literal] = ACTIONS(837), - [sym_decimal_floating_point_literal] = ACTIONS(837), - [sym_hex_floating_point_literal] = ACTIONS(839), - [sym_true] = ACTIONS(839), - [sym_false] = ACTIONS(839), - [sym_character_literal] = ACTIONS(837), - [sym_string_literal] = ACTIONS(839), - [sym_text_block] = ACTIONS(837), - [sym_null_literal] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(837), - [anon_sym_PLUS] = ACTIONS(839), - [anon_sym_DASH] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(837), - [anon_sym_TILDE] = ACTIONS(837), - [anon_sym_PLUS_PLUS] = ACTIONS(837), - [anon_sym_DASH_DASH] = ACTIONS(837), - [anon_sym_new] = ACTIONS(839), - [anon_sym_class] = ACTIONS(839), - [anon_sym_switch] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(837), - [anon_sym_RBRACE] = ACTIONS(837), - [anon_sym_case] = ACTIONS(839), - [anon_sym_default] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(837), - [anon_sym_assert] = ACTIONS(839), - [anon_sym_do] = ACTIONS(839), - [anon_sym_while] = ACTIONS(839), - [anon_sym_break] = ACTIONS(839), - [anon_sym_continue] = ACTIONS(839), - [anon_sym_return] = ACTIONS(839), - [anon_sym_yield] = ACTIONS(839), - [anon_sym_synchronized] = ACTIONS(839), - [anon_sym_throw] = ACTIONS(839), - [anon_sym_try] = ACTIONS(839), - [anon_sym_if] = ACTIONS(839), - [anon_sym_else] = ACTIONS(839), - [anon_sym_for] = ACTIONS(839), - [anon_sym_AT] = ACTIONS(839), - [anon_sym_open] = ACTIONS(839), - [anon_sym_module] = ACTIONS(839), - [anon_sym_static] = ACTIONS(839), - [anon_sym_package] = ACTIONS(839), - [anon_sym_import] = ACTIONS(839), - [anon_sym_enum] = ACTIONS(839), - [anon_sym_public] = ACTIONS(839), - [anon_sym_protected] = ACTIONS(839), - [anon_sym_private] = ACTIONS(839), - [anon_sym_abstract] = ACTIONS(839), - [anon_sym_final] = ACTIONS(839), - [anon_sym_strictfp] = ACTIONS(839), - [anon_sym_native] = ACTIONS(839), - [anon_sym_transient] = ACTIONS(839), - [anon_sym_volatile] = ACTIONS(839), - [anon_sym_sealed] = ACTIONS(839), - [anon_sym_non_DASHsealed] = ACTIONS(837), - [anon_sym_ATinterface] = ACTIONS(837), - [anon_sym_interface] = ACTIONS(839), - [anon_sym_byte] = ACTIONS(839), - [anon_sym_short] = ACTIONS(839), - [anon_sym_int] = ACTIONS(839), - [anon_sym_long] = ACTIONS(839), - [anon_sym_char] = ACTIONS(839), - [anon_sym_float] = ACTIONS(839), - [anon_sym_double] = ACTIONS(839), - [sym_boolean_type] = ACTIONS(839), - [sym_void_type] = ACTIONS(839), - [sym_this] = ACTIONS(839), - [sym_super] = ACTIONS(839), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [202] = { - [ts_builtin_sym_end] = ACTIONS(841), - [sym_identifier] = ACTIONS(843), - [sym_decimal_integer_literal] = ACTIONS(843), - [sym_hex_integer_literal] = ACTIONS(843), - [sym_octal_integer_literal] = ACTIONS(841), - [sym_binary_integer_literal] = ACTIONS(841), - [sym_decimal_floating_point_literal] = ACTIONS(841), - [sym_hex_floating_point_literal] = ACTIONS(843), - [sym_true] = ACTIONS(843), - [sym_false] = ACTIONS(843), - [sym_character_literal] = ACTIONS(841), - [sym_string_literal] = ACTIONS(843), - [sym_text_block] = ACTIONS(841), - [sym_null_literal] = ACTIONS(843), - [anon_sym_LPAREN] = ACTIONS(841), - [anon_sym_PLUS] = ACTIONS(843), - [anon_sym_DASH] = ACTIONS(843), - [anon_sym_BANG] = ACTIONS(841), - [anon_sym_TILDE] = ACTIONS(841), - [anon_sym_PLUS_PLUS] = ACTIONS(841), - [anon_sym_DASH_DASH] = ACTIONS(841), - [anon_sym_new] = ACTIONS(843), - [anon_sym_class] = ACTIONS(843), - [anon_sym_switch] = ACTIONS(843), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_RBRACE] = ACTIONS(841), - [anon_sym_case] = ACTIONS(843), - [anon_sym_default] = ACTIONS(843), - [anon_sym_SEMI] = ACTIONS(841), - [anon_sym_assert] = ACTIONS(843), - [anon_sym_do] = ACTIONS(843), - [anon_sym_while] = ACTIONS(843), - [anon_sym_break] = ACTIONS(843), - [anon_sym_continue] = ACTIONS(843), - [anon_sym_return] = ACTIONS(843), - [anon_sym_yield] = ACTIONS(843), - [anon_sym_synchronized] = ACTIONS(843), - [anon_sym_throw] = ACTIONS(843), - [anon_sym_try] = ACTIONS(843), - [anon_sym_if] = ACTIONS(843), - [anon_sym_else] = ACTIONS(843), - [anon_sym_for] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(843), - [anon_sym_open] = ACTIONS(843), - [anon_sym_module] = ACTIONS(843), - [anon_sym_static] = ACTIONS(843), - [anon_sym_package] = ACTIONS(843), - [anon_sym_import] = ACTIONS(843), - [anon_sym_enum] = ACTIONS(843), - [anon_sym_public] = ACTIONS(843), - [anon_sym_protected] = ACTIONS(843), - [anon_sym_private] = ACTIONS(843), - [anon_sym_abstract] = ACTIONS(843), - [anon_sym_final] = ACTIONS(843), - [anon_sym_strictfp] = ACTIONS(843), - [anon_sym_native] = ACTIONS(843), - [anon_sym_transient] = ACTIONS(843), - [anon_sym_volatile] = ACTIONS(843), - [anon_sym_sealed] = ACTIONS(843), - [anon_sym_non_DASHsealed] = ACTIONS(841), - [anon_sym_ATinterface] = ACTIONS(841), - [anon_sym_interface] = ACTIONS(843), - [anon_sym_byte] = ACTIONS(843), - [anon_sym_short] = ACTIONS(843), - [anon_sym_int] = ACTIONS(843), - [anon_sym_long] = ACTIONS(843), - [anon_sym_char] = ACTIONS(843), - [anon_sym_float] = ACTIONS(843), - [anon_sym_double] = ACTIONS(843), - [sym_boolean_type] = ACTIONS(843), - [sym_void_type] = ACTIONS(843), - [sym_this] = ACTIONS(843), - [sym_super] = ACTIONS(843), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [203] = { - [ts_builtin_sym_end] = ACTIONS(845), - [sym_identifier] = ACTIONS(847), - [sym_decimal_integer_literal] = ACTIONS(847), - [sym_hex_integer_literal] = ACTIONS(847), - [sym_octal_integer_literal] = ACTIONS(845), - [sym_binary_integer_literal] = ACTIONS(845), - [sym_decimal_floating_point_literal] = ACTIONS(845), - [sym_hex_floating_point_literal] = ACTIONS(847), - [sym_true] = ACTIONS(847), - [sym_false] = ACTIONS(847), - [sym_character_literal] = ACTIONS(845), - [sym_string_literal] = ACTIONS(847), - [sym_text_block] = ACTIONS(845), - [sym_null_literal] = ACTIONS(847), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_TILDE] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), - [anon_sym_new] = ACTIONS(847), - [anon_sym_class] = ACTIONS(847), - [anon_sym_switch] = ACTIONS(847), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_case] = ACTIONS(847), - [anon_sym_default] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(847), - [anon_sym_do] = ACTIONS(847), - [anon_sym_while] = ACTIONS(847), - [anon_sym_break] = ACTIONS(847), - [anon_sym_continue] = ACTIONS(847), - [anon_sym_return] = ACTIONS(847), - [anon_sym_yield] = ACTIONS(847), - [anon_sym_synchronized] = ACTIONS(847), - [anon_sym_throw] = ACTIONS(847), - [anon_sym_try] = ACTIONS(847), - [anon_sym_if] = ACTIONS(847), - [anon_sym_else] = ACTIONS(847), - [anon_sym_for] = ACTIONS(847), - [anon_sym_AT] = ACTIONS(847), - [anon_sym_open] = ACTIONS(847), - [anon_sym_module] = ACTIONS(847), - [anon_sym_static] = ACTIONS(847), - [anon_sym_package] = ACTIONS(847), - [anon_sym_import] = ACTIONS(847), - [anon_sym_enum] = ACTIONS(847), - [anon_sym_public] = ACTIONS(847), - [anon_sym_protected] = ACTIONS(847), - [anon_sym_private] = ACTIONS(847), - [anon_sym_abstract] = ACTIONS(847), - [anon_sym_final] = ACTIONS(847), - [anon_sym_strictfp] = ACTIONS(847), - [anon_sym_native] = ACTIONS(847), - [anon_sym_transient] = ACTIONS(847), - [anon_sym_volatile] = ACTIONS(847), - [anon_sym_sealed] = ACTIONS(847), - [anon_sym_non_DASHsealed] = ACTIONS(845), - [anon_sym_ATinterface] = ACTIONS(845), - [anon_sym_interface] = ACTIONS(847), - [anon_sym_byte] = ACTIONS(847), - [anon_sym_short] = ACTIONS(847), - [anon_sym_int] = ACTIONS(847), - [anon_sym_long] = ACTIONS(847), - [anon_sym_char] = ACTIONS(847), - [anon_sym_float] = ACTIONS(847), - [anon_sym_double] = ACTIONS(847), - [sym_boolean_type] = ACTIONS(847), - [sym_void_type] = ACTIONS(847), - [sym_this] = ACTIONS(847), - [sym_super] = ACTIONS(847), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [204] = { - [ts_builtin_sym_end] = ACTIONS(300), - [sym_identifier] = ACTIONS(302), - [sym_decimal_integer_literal] = ACTIONS(302), - [sym_hex_integer_literal] = ACTIONS(302), - [sym_octal_integer_literal] = ACTIONS(300), - [sym_binary_integer_literal] = ACTIONS(300), - [sym_decimal_floating_point_literal] = ACTIONS(300), - [sym_hex_floating_point_literal] = ACTIONS(302), - [sym_true] = ACTIONS(302), - [sym_false] = ACTIONS(302), - [sym_character_literal] = ACTIONS(300), - [sym_string_literal] = ACTIONS(302), - [sym_text_block] = ACTIONS(300), - [sym_null_literal] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(300), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_BANG] = ACTIONS(300), - [anon_sym_TILDE] = ACTIONS(300), - [anon_sym_PLUS_PLUS] = ACTIONS(300), - [anon_sym_DASH_DASH] = ACTIONS(300), - [anon_sym_new] = ACTIONS(302), - [anon_sym_class] = ACTIONS(302), - [anon_sym_switch] = ACTIONS(302), - [anon_sym_LBRACE] = ACTIONS(300), - [anon_sym_RBRACE] = ACTIONS(300), - [anon_sym_case] = ACTIONS(302), - [anon_sym_default] = ACTIONS(302), - [anon_sym_SEMI] = ACTIONS(300), - [anon_sym_assert] = ACTIONS(302), - [anon_sym_do] = ACTIONS(302), - [anon_sym_while] = ACTIONS(302), - [anon_sym_break] = ACTIONS(302), - [anon_sym_continue] = ACTIONS(302), - [anon_sym_return] = ACTIONS(302), - [anon_sym_yield] = ACTIONS(302), - [anon_sym_synchronized] = ACTIONS(302), - [anon_sym_throw] = ACTIONS(302), - [anon_sym_try] = ACTIONS(302), - [anon_sym_if] = ACTIONS(302), - [anon_sym_else] = ACTIONS(302), - [anon_sym_for] = ACTIONS(302), - [anon_sym_AT] = ACTIONS(302), - [anon_sym_open] = ACTIONS(302), - [anon_sym_module] = ACTIONS(302), - [anon_sym_static] = ACTIONS(302), - [anon_sym_package] = ACTIONS(302), - [anon_sym_import] = ACTIONS(302), - [anon_sym_enum] = ACTIONS(302), - [anon_sym_public] = ACTIONS(302), - [anon_sym_protected] = ACTIONS(302), - [anon_sym_private] = ACTIONS(302), - [anon_sym_abstract] = ACTIONS(302), - [anon_sym_final] = ACTIONS(302), - [anon_sym_strictfp] = ACTIONS(302), - [anon_sym_native] = ACTIONS(302), - [anon_sym_transient] = ACTIONS(302), - [anon_sym_volatile] = ACTIONS(302), - [anon_sym_sealed] = ACTIONS(302), - [anon_sym_non_DASHsealed] = ACTIONS(300), - [anon_sym_ATinterface] = ACTIONS(300), - [anon_sym_interface] = ACTIONS(302), - [anon_sym_byte] = ACTIONS(302), - [anon_sym_short] = ACTIONS(302), - [anon_sym_int] = ACTIONS(302), - [anon_sym_long] = ACTIONS(302), - [anon_sym_char] = ACTIONS(302), - [anon_sym_float] = ACTIONS(302), - [anon_sym_double] = ACTIONS(302), - [sym_boolean_type] = ACTIONS(302), - [sym_void_type] = ACTIONS(302), - [sym_this] = ACTIONS(302), - [sym_super] = ACTIONS(302), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [205] = { - [ts_builtin_sym_end] = ACTIONS(849), - [sym_identifier] = ACTIONS(851), - [sym_decimal_integer_literal] = ACTIONS(851), - [sym_hex_integer_literal] = ACTIONS(851), - [sym_octal_integer_literal] = ACTIONS(849), - [sym_binary_integer_literal] = ACTIONS(849), - [sym_decimal_floating_point_literal] = ACTIONS(849), - [sym_hex_floating_point_literal] = ACTIONS(851), - [sym_true] = ACTIONS(851), - [sym_false] = ACTIONS(851), - [sym_character_literal] = ACTIONS(849), - [sym_string_literal] = ACTIONS(851), - [sym_text_block] = ACTIONS(849), - [sym_null_literal] = ACTIONS(851), - [anon_sym_LPAREN] = ACTIONS(849), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_TILDE] = ACTIONS(849), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_new] = ACTIONS(851), - [anon_sym_class] = ACTIONS(851), - [anon_sym_switch] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_case] = ACTIONS(851), - [anon_sym_default] = ACTIONS(851), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_assert] = ACTIONS(851), - [anon_sym_do] = ACTIONS(851), - [anon_sym_while] = ACTIONS(851), - [anon_sym_break] = ACTIONS(851), - [anon_sym_continue] = ACTIONS(851), - [anon_sym_return] = ACTIONS(851), - [anon_sym_yield] = ACTIONS(851), - [anon_sym_synchronized] = ACTIONS(851), - [anon_sym_throw] = ACTIONS(851), - [anon_sym_try] = ACTIONS(851), - [anon_sym_if] = ACTIONS(851), - [anon_sym_else] = ACTIONS(851), - [anon_sym_for] = ACTIONS(851), - [anon_sym_AT] = ACTIONS(851), - [anon_sym_open] = ACTIONS(851), - [anon_sym_module] = ACTIONS(851), - [anon_sym_static] = ACTIONS(851), - [anon_sym_package] = ACTIONS(851), - [anon_sym_import] = ACTIONS(851), - [anon_sym_enum] = ACTIONS(851), - [anon_sym_public] = ACTIONS(851), - [anon_sym_protected] = ACTIONS(851), - [anon_sym_private] = ACTIONS(851), - [anon_sym_abstract] = ACTIONS(851), - [anon_sym_final] = ACTIONS(851), - [anon_sym_strictfp] = ACTIONS(851), - [anon_sym_native] = ACTIONS(851), - [anon_sym_transient] = ACTIONS(851), - [anon_sym_volatile] = ACTIONS(851), - [anon_sym_sealed] = ACTIONS(851), - [anon_sym_non_DASHsealed] = ACTIONS(849), - [anon_sym_ATinterface] = ACTIONS(849), - [anon_sym_interface] = ACTIONS(851), - [anon_sym_byte] = ACTIONS(851), - [anon_sym_short] = ACTIONS(851), - [anon_sym_int] = ACTIONS(851), - [anon_sym_long] = ACTIONS(851), - [anon_sym_char] = ACTIONS(851), - [anon_sym_float] = ACTIONS(851), - [anon_sym_double] = ACTIONS(851), - [sym_boolean_type] = ACTIONS(851), - [sym_void_type] = ACTIONS(851), - [sym_this] = ACTIONS(851), - [sym_super] = ACTIONS(851), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [206] = { - [ts_builtin_sym_end] = ACTIONS(853), - [sym_identifier] = ACTIONS(855), - [sym_decimal_integer_literal] = ACTIONS(855), - [sym_hex_integer_literal] = ACTIONS(855), - [sym_octal_integer_literal] = ACTIONS(853), - [sym_binary_integer_literal] = ACTIONS(853), - [sym_decimal_floating_point_literal] = ACTIONS(853), - [sym_hex_floating_point_literal] = ACTIONS(855), - [sym_true] = ACTIONS(855), - [sym_false] = ACTIONS(855), - [sym_character_literal] = ACTIONS(853), - [sym_string_literal] = ACTIONS(855), - [sym_text_block] = ACTIONS(853), - [sym_null_literal] = ACTIONS(855), - [anon_sym_LPAREN] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_new] = ACTIONS(855), - [anon_sym_class] = ACTIONS(855), - [anon_sym_switch] = ACTIONS(855), - [anon_sym_LBRACE] = ACTIONS(853), - [anon_sym_RBRACE] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [anon_sym_default] = ACTIONS(855), - [anon_sym_SEMI] = ACTIONS(853), - [anon_sym_assert] = ACTIONS(855), - [anon_sym_do] = ACTIONS(855), - [anon_sym_while] = ACTIONS(855), - [anon_sym_break] = ACTIONS(855), - [anon_sym_continue] = ACTIONS(855), - [anon_sym_return] = ACTIONS(855), - [anon_sym_yield] = ACTIONS(855), - [anon_sym_synchronized] = ACTIONS(855), - [anon_sym_throw] = ACTIONS(855), - [anon_sym_try] = ACTIONS(855), - [anon_sym_if] = ACTIONS(855), - [anon_sym_else] = ACTIONS(855), - [anon_sym_for] = ACTIONS(855), - [anon_sym_AT] = ACTIONS(855), - [anon_sym_open] = ACTIONS(855), - [anon_sym_module] = ACTIONS(855), - [anon_sym_static] = ACTIONS(855), - [anon_sym_package] = ACTIONS(855), - [anon_sym_import] = ACTIONS(855), - [anon_sym_enum] = ACTIONS(855), - [anon_sym_public] = ACTIONS(855), - [anon_sym_protected] = ACTIONS(855), - [anon_sym_private] = ACTIONS(855), - [anon_sym_abstract] = ACTIONS(855), - [anon_sym_final] = ACTIONS(855), - [anon_sym_strictfp] = ACTIONS(855), - [anon_sym_native] = ACTIONS(855), - [anon_sym_transient] = ACTIONS(855), - [anon_sym_volatile] = ACTIONS(855), - [anon_sym_sealed] = ACTIONS(855), - [anon_sym_non_DASHsealed] = ACTIONS(853), - [anon_sym_ATinterface] = ACTIONS(853), - [anon_sym_interface] = ACTIONS(855), - [anon_sym_byte] = ACTIONS(855), - [anon_sym_short] = ACTIONS(855), - [anon_sym_int] = ACTIONS(855), - [anon_sym_long] = ACTIONS(855), - [anon_sym_char] = ACTIONS(855), - [anon_sym_float] = ACTIONS(855), - [anon_sym_double] = ACTIONS(855), - [sym_boolean_type] = ACTIONS(855), - [sym_void_type] = ACTIONS(855), - [sym_this] = ACTIONS(855), - [sym_super] = ACTIONS(855), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [207] = { - [ts_builtin_sym_end] = ACTIONS(857), - [sym_identifier] = ACTIONS(859), - [sym_decimal_integer_literal] = ACTIONS(859), - [sym_hex_integer_literal] = ACTIONS(859), - [sym_octal_integer_literal] = ACTIONS(857), - [sym_binary_integer_literal] = ACTIONS(857), - [sym_decimal_floating_point_literal] = ACTIONS(857), - [sym_hex_floating_point_literal] = ACTIONS(859), - [sym_true] = ACTIONS(859), - [sym_false] = ACTIONS(859), - [sym_character_literal] = ACTIONS(857), - [sym_string_literal] = ACTIONS(859), - [sym_text_block] = ACTIONS(857), - [sym_null_literal] = ACTIONS(859), - [anon_sym_LPAREN] = ACTIONS(857), - [anon_sym_PLUS] = ACTIONS(859), - [anon_sym_DASH] = ACTIONS(859), - [anon_sym_BANG] = ACTIONS(857), - [anon_sym_TILDE] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_new] = ACTIONS(859), - [anon_sym_class] = ACTIONS(859), - [anon_sym_switch] = ACTIONS(859), - [anon_sym_LBRACE] = ACTIONS(857), - [anon_sym_RBRACE] = ACTIONS(857), - [anon_sym_case] = ACTIONS(859), - [anon_sym_default] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(857), - [anon_sym_assert] = ACTIONS(859), - [anon_sym_do] = ACTIONS(859), - [anon_sym_while] = ACTIONS(859), - [anon_sym_break] = ACTIONS(859), - [anon_sym_continue] = ACTIONS(859), - [anon_sym_return] = ACTIONS(859), - [anon_sym_yield] = ACTIONS(859), - [anon_sym_synchronized] = ACTIONS(859), - [anon_sym_throw] = ACTIONS(859), - [anon_sym_try] = ACTIONS(859), - [anon_sym_if] = ACTIONS(859), - [anon_sym_else] = ACTIONS(859), - [anon_sym_for] = ACTIONS(859), - [anon_sym_AT] = ACTIONS(859), - [anon_sym_open] = ACTIONS(859), - [anon_sym_module] = ACTIONS(859), - [anon_sym_static] = ACTIONS(859), - [anon_sym_package] = ACTIONS(859), - [anon_sym_import] = ACTIONS(859), - [anon_sym_enum] = ACTIONS(859), - [anon_sym_public] = ACTIONS(859), - [anon_sym_protected] = ACTIONS(859), - [anon_sym_private] = ACTIONS(859), - [anon_sym_abstract] = ACTIONS(859), - [anon_sym_final] = ACTIONS(859), - [anon_sym_strictfp] = ACTIONS(859), - [anon_sym_native] = ACTIONS(859), - [anon_sym_transient] = ACTIONS(859), - [anon_sym_volatile] = ACTIONS(859), - [anon_sym_sealed] = ACTIONS(859), - [anon_sym_non_DASHsealed] = ACTIONS(857), - [anon_sym_ATinterface] = ACTIONS(857), - [anon_sym_interface] = ACTIONS(859), - [anon_sym_byte] = ACTIONS(859), - [anon_sym_short] = ACTIONS(859), - [anon_sym_int] = ACTIONS(859), - [anon_sym_long] = ACTIONS(859), - [anon_sym_char] = ACTIONS(859), - [anon_sym_float] = ACTIONS(859), - [anon_sym_double] = ACTIONS(859), - [sym_boolean_type] = ACTIONS(859), - [sym_void_type] = ACTIONS(859), - [sym_this] = ACTIONS(859), - [sym_super] = ACTIONS(859), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [208] = { - [ts_builtin_sym_end] = ACTIONS(861), - [sym_identifier] = ACTIONS(863), - [sym_decimal_integer_literal] = ACTIONS(863), - [sym_hex_integer_literal] = ACTIONS(863), - [sym_octal_integer_literal] = ACTIONS(861), - [sym_binary_integer_literal] = ACTIONS(861), - [sym_decimal_floating_point_literal] = ACTIONS(861), - [sym_hex_floating_point_literal] = ACTIONS(863), - [sym_true] = ACTIONS(863), - [sym_false] = ACTIONS(863), - [sym_character_literal] = ACTIONS(861), - [sym_string_literal] = ACTIONS(863), - [sym_text_block] = ACTIONS(861), - [sym_null_literal] = ACTIONS(863), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(863), - [anon_sym_DASH] = ACTIONS(863), - [anon_sym_BANG] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_new] = ACTIONS(863), - [anon_sym_class] = ACTIONS(863), - [anon_sym_switch] = ACTIONS(863), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_case] = ACTIONS(863), - [anon_sym_default] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_assert] = ACTIONS(863), - [anon_sym_do] = ACTIONS(863), - [anon_sym_while] = ACTIONS(863), - [anon_sym_break] = ACTIONS(863), - [anon_sym_continue] = ACTIONS(863), - [anon_sym_return] = ACTIONS(863), - [anon_sym_yield] = ACTIONS(863), - [anon_sym_synchronized] = ACTIONS(863), - [anon_sym_throw] = ACTIONS(863), - [anon_sym_try] = ACTIONS(863), - [anon_sym_if] = ACTIONS(863), - [anon_sym_else] = ACTIONS(863), - [anon_sym_for] = ACTIONS(863), - [anon_sym_AT] = ACTIONS(863), - [anon_sym_open] = ACTIONS(863), - [anon_sym_module] = ACTIONS(863), - [anon_sym_static] = ACTIONS(863), - [anon_sym_package] = ACTIONS(863), - [anon_sym_import] = ACTIONS(863), - [anon_sym_enum] = ACTIONS(863), - [anon_sym_public] = ACTIONS(863), - [anon_sym_protected] = ACTIONS(863), - [anon_sym_private] = ACTIONS(863), - [anon_sym_abstract] = ACTIONS(863), - [anon_sym_final] = ACTIONS(863), - [anon_sym_strictfp] = ACTIONS(863), - [anon_sym_native] = ACTIONS(863), - [anon_sym_transient] = ACTIONS(863), - [anon_sym_volatile] = ACTIONS(863), - [anon_sym_sealed] = ACTIONS(863), - [anon_sym_non_DASHsealed] = ACTIONS(861), - [anon_sym_ATinterface] = ACTIONS(861), - [anon_sym_interface] = ACTIONS(863), - [anon_sym_byte] = ACTIONS(863), - [anon_sym_short] = ACTIONS(863), - [anon_sym_int] = ACTIONS(863), - [anon_sym_long] = ACTIONS(863), - [anon_sym_char] = ACTIONS(863), - [anon_sym_float] = ACTIONS(863), - [anon_sym_double] = ACTIONS(863), - [sym_boolean_type] = ACTIONS(863), - [sym_void_type] = ACTIONS(863), - [sym_this] = ACTIONS(863), - [sym_super] = ACTIONS(863), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [209] = { - [ts_builtin_sym_end] = ACTIONS(865), - [sym_identifier] = ACTIONS(867), - [sym_decimal_integer_literal] = ACTIONS(867), - [sym_hex_integer_literal] = ACTIONS(867), - [sym_octal_integer_literal] = ACTIONS(865), - [sym_binary_integer_literal] = ACTIONS(865), - [sym_decimal_floating_point_literal] = ACTIONS(865), - [sym_hex_floating_point_literal] = ACTIONS(867), - [sym_true] = ACTIONS(867), - [sym_false] = ACTIONS(867), - [sym_character_literal] = ACTIONS(865), - [sym_string_literal] = ACTIONS(867), - [sym_text_block] = ACTIONS(865), - [sym_null_literal] = ACTIONS(867), - [anon_sym_LPAREN] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(867), - [anon_sym_DASH] = ACTIONS(867), - [anon_sym_BANG] = ACTIONS(865), - [anon_sym_TILDE] = ACTIONS(865), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_new] = ACTIONS(867), - [anon_sym_class] = ACTIONS(867), - [anon_sym_switch] = ACTIONS(867), - [anon_sym_LBRACE] = ACTIONS(865), - [anon_sym_RBRACE] = ACTIONS(865), - [anon_sym_case] = ACTIONS(867), - [anon_sym_default] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_assert] = ACTIONS(867), - [anon_sym_do] = ACTIONS(867), - [anon_sym_while] = ACTIONS(867), - [anon_sym_break] = ACTIONS(867), - [anon_sym_continue] = ACTIONS(867), - [anon_sym_return] = ACTIONS(867), - [anon_sym_yield] = ACTIONS(867), - [anon_sym_synchronized] = ACTIONS(867), - [anon_sym_throw] = ACTIONS(867), - [anon_sym_try] = ACTIONS(867), - [anon_sym_if] = ACTIONS(867), - [anon_sym_else] = ACTIONS(867), - [anon_sym_for] = ACTIONS(867), - [anon_sym_AT] = ACTIONS(867), - [anon_sym_open] = ACTIONS(867), - [anon_sym_module] = ACTIONS(867), - [anon_sym_static] = ACTIONS(867), - [anon_sym_package] = ACTIONS(867), - [anon_sym_import] = ACTIONS(867), - [anon_sym_enum] = ACTIONS(867), - [anon_sym_public] = ACTIONS(867), - [anon_sym_protected] = ACTIONS(867), - [anon_sym_private] = ACTIONS(867), - [anon_sym_abstract] = ACTIONS(867), - [anon_sym_final] = ACTIONS(867), - [anon_sym_strictfp] = ACTIONS(867), - [anon_sym_native] = ACTIONS(867), - [anon_sym_transient] = ACTIONS(867), - [anon_sym_volatile] = ACTIONS(867), - [anon_sym_sealed] = ACTIONS(867), - [anon_sym_non_DASHsealed] = ACTIONS(865), - [anon_sym_ATinterface] = ACTIONS(865), - [anon_sym_interface] = ACTIONS(867), - [anon_sym_byte] = ACTIONS(867), - [anon_sym_short] = ACTIONS(867), - [anon_sym_int] = ACTIONS(867), - [anon_sym_long] = ACTIONS(867), - [anon_sym_char] = ACTIONS(867), - [anon_sym_float] = ACTIONS(867), - [anon_sym_double] = ACTIONS(867), - [sym_boolean_type] = ACTIONS(867), - [sym_void_type] = ACTIONS(867), - [sym_this] = ACTIONS(867), - [sym_super] = ACTIONS(867), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [210] = { - [ts_builtin_sym_end] = ACTIONS(869), - [sym_identifier] = ACTIONS(871), - [sym_decimal_integer_literal] = ACTIONS(871), - [sym_hex_integer_literal] = ACTIONS(871), - [sym_octal_integer_literal] = ACTIONS(869), - [sym_binary_integer_literal] = ACTIONS(869), - [sym_decimal_floating_point_literal] = ACTIONS(869), - [sym_hex_floating_point_literal] = ACTIONS(871), - [sym_true] = ACTIONS(871), - [sym_false] = ACTIONS(871), - [sym_character_literal] = ACTIONS(869), - [sym_string_literal] = ACTIONS(871), - [sym_text_block] = ACTIONS(869), - [sym_null_literal] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_BANG] = ACTIONS(869), - [anon_sym_TILDE] = ACTIONS(869), - [anon_sym_PLUS_PLUS] = ACTIONS(869), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_new] = ACTIONS(871), - [anon_sym_class] = ACTIONS(871), - [anon_sym_switch] = ACTIONS(871), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_RBRACE] = ACTIONS(869), - [anon_sym_case] = ACTIONS(871), - [anon_sym_default] = ACTIONS(871), - [anon_sym_SEMI] = ACTIONS(869), - [anon_sym_assert] = ACTIONS(871), - [anon_sym_do] = ACTIONS(871), - [anon_sym_while] = ACTIONS(871), - [anon_sym_break] = ACTIONS(871), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_return] = ACTIONS(871), - [anon_sym_yield] = ACTIONS(871), - [anon_sym_synchronized] = ACTIONS(871), - [anon_sym_throw] = ACTIONS(871), - [anon_sym_try] = ACTIONS(871), - [anon_sym_if] = ACTIONS(871), - [anon_sym_else] = ACTIONS(871), - [anon_sym_for] = ACTIONS(871), - [anon_sym_AT] = ACTIONS(871), - [anon_sym_open] = ACTIONS(871), - [anon_sym_module] = ACTIONS(871), - [anon_sym_static] = ACTIONS(871), - [anon_sym_package] = ACTIONS(871), - [anon_sym_import] = ACTIONS(871), - [anon_sym_enum] = ACTIONS(871), - [anon_sym_public] = ACTIONS(871), - [anon_sym_protected] = ACTIONS(871), - [anon_sym_private] = ACTIONS(871), - [anon_sym_abstract] = ACTIONS(871), - [anon_sym_final] = ACTIONS(871), - [anon_sym_strictfp] = ACTIONS(871), - [anon_sym_native] = ACTIONS(871), - [anon_sym_transient] = ACTIONS(871), - [anon_sym_volatile] = ACTIONS(871), - [anon_sym_sealed] = ACTIONS(871), - [anon_sym_non_DASHsealed] = ACTIONS(869), - [anon_sym_ATinterface] = ACTIONS(869), - [anon_sym_interface] = ACTIONS(871), - [anon_sym_byte] = ACTIONS(871), - [anon_sym_short] = ACTIONS(871), - [anon_sym_int] = ACTIONS(871), - [anon_sym_long] = ACTIONS(871), - [anon_sym_char] = ACTIONS(871), - [anon_sym_float] = ACTIONS(871), - [anon_sym_double] = ACTIONS(871), - [sym_boolean_type] = ACTIONS(871), - [sym_void_type] = ACTIONS(871), - [sym_this] = ACTIONS(871), - [sym_super] = ACTIONS(871), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [211] = { - [ts_builtin_sym_end] = ACTIONS(873), - [sym_identifier] = ACTIONS(875), - [sym_decimal_integer_literal] = ACTIONS(875), - [sym_hex_integer_literal] = ACTIONS(875), - [sym_octal_integer_literal] = ACTIONS(873), - [sym_binary_integer_literal] = ACTIONS(873), - [sym_decimal_floating_point_literal] = ACTIONS(873), - [sym_hex_floating_point_literal] = ACTIONS(875), - [sym_true] = ACTIONS(875), - [sym_false] = ACTIONS(875), - [sym_character_literal] = ACTIONS(873), - [sym_string_literal] = ACTIONS(875), - [sym_text_block] = ACTIONS(873), - [sym_null_literal] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_BANG] = ACTIONS(873), - [anon_sym_TILDE] = ACTIONS(873), - [anon_sym_PLUS_PLUS] = ACTIONS(873), - [anon_sym_DASH_DASH] = ACTIONS(873), - [anon_sym_new] = ACTIONS(875), - [anon_sym_class] = ACTIONS(875), - [anon_sym_switch] = ACTIONS(875), - [anon_sym_LBRACE] = ACTIONS(873), - [anon_sym_RBRACE] = ACTIONS(873), - [anon_sym_case] = ACTIONS(875), - [anon_sym_default] = ACTIONS(875), - [anon_sym_SEMI] = ACTIONS(873), - [anon_sym_assert] = ACTIONS(875), - [anon_sym_do] = ACTIONS(875), - [anon_sym_while] = ACTIONS(875), - [anon_sym_break] = ACTIONS(875), - [anon_sym_continue] = ACTIONS(875), - [anon_sym_return] = ACTIONS(875), - [anon_sym_yield] = ACTIONS(875), - [anon_sym_synchronized] = ACTIONS(875), - [anon_sym_throw] = ACTIONS(875), - [anon_sym_try] = ACTIONS(875), - [anon_sym_if] = ACTIONS(875), - [anon_sym_else] = ACTIONS(875), - [anon_sym_for] = ACTIONS(875), - [anon_sym_AT] = ACTIONS(875), - [anon_sym_open] = ACTIONS(875), - [anon_sym_module] = ACTIONS(875), - [anon_sym_static] = ACTIONS(875), - [anon_sym_package] = ACTIONS(875), - [anon_sym_import] = ACTIONS(875), - [anon_sym_enum] = ACTIONS(875), - [anon_sym_public] = ACTIONS(875), - [anon_sym_protected] = ACTIONS(875), - [anon_sym_private] = ACTIONS(875), - [anon_sym_abstract] = ACTIONS(875), - [anon_sym_final] = ACTIONS(875), - [anon_sym_strictfp] = ACTIONS(875), - [anon_sym_native] = ACTIONS(875), - [anon_sym_transient] = ACTIONS(875), - [anon_sym_volatile] = ACTIONS(875), - [anon_sym_sealed] = ACTIONS(875), - [anon_sym_non_DASHsealed] = ACTIONS(873), - [anon_sym_ATinterface] = ACTIONS(873), - [anon_sym_interface] = ACTIONS(875), - [anon_sym_byte] = ACTIONS(875), - [anon_sym_short] = ACTIONS(875), - [anon_sym_int] = ACTIONS(875), - [anon_sym_long] = ACTIONS(875), - [anon_sym_char] = ACTIONS(875), - [anon_sym_float] = ACTIONS(875), - [anon_sym_double] = ACTIONS(875), - [sym_boolean_type] = ACTIONS(875), - [sym_void_type] = ACTIONS(875), - [sym_this] = ACTIONS(875), - [sym_super] = ACTIONS(875), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [212] = { - [ts_builtin_sym_end] = ACTIONS(877), - [sym_identifier] = ACTIONS(879), - [sym_decimal_integer_literal] = ACTIONS(879), - [sym_hex_integer_literal] = ACTIONS(879), - [sym_octal_integer_literal] = ACTIONS(877), - [sym_binary_integer_literal] = ACTIONS(877), - [sym_decimal_floating_point_literal] = ACTIONS(877), - [sym_hex_floating_point_literal] = ACTIONS(879), - [sym_true] = ACTIONS(879), - [sym_false] = ACTIONS(879), - [sym_character_literal] = ACTIONS(877), - [sym_string_literal] = ACTIONS(879), - [sym_text_block] = ACTIONS(877), - [sym_null_literal] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(877), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_TILDE] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_new] = ACTIONS(879), - [anon_sym_class] = ACTIONS(879), - [anon_sym_switch] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(877), - [anon_sym_RBRACE] = ACTIONS(877), - [anon_sym_case] = ACTIONS(879), - [anon_sym_default] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(877), - [anon_sym_assert] = ACTIONS(879), - [anon_sym_do] = ACTIONS(879), - [anon_sym_while] = ACTIONS(879), - [anon_sym_break] = ACTIONS(879), - [anon_sym_continue] = ACTIONS(879), - [anon_sym_return] = ACTIONS(879), - [anon_sym_yield] = ACTIONS(879), - [anon_sym_synchronized] = ACTIONS(879), - [anon_sym_throw] = ACTIONS(879), - [anon_sym_try] = ACTIONS(879), - [anon_sym_if] = ACTIONS(879), - [anon_sym_else] = ACTIONS(879), - [anon_sym_for] = ACTIONS(879), - [anon_sym_AT] = ACTIONS(879), - [anon_sym_open] = ACTIONS(879), - [anon_sym_module] = ACTIONS(879), - [anon_sym_static] = ACTIONS(879), - [anon_sym_package] = ACTIONS(879), - [anon_sym_import] = ACTIONS(879), - [anon_sym_enum] = ACTIONS(879), - [anon_sym_public] = ACTIONS(879), - [anon_sym_protected] = ACTIONS(879), - [anon_sym_private] = ACTIONS(879), - [anon_sym_abstract] = ACTIONS(879), - [anon_sym_final] = ACTIONS(879), - [anon_sym_strictfp] = ACTIONS(879), - [anon_sym_native] = ACTIONS(879), - [anon_sym_transient] = ACTIONS(879), - [anon_sym_volatile] = ACTIONS(879), - [anon_sym_sealed] = ACTIONS(879), - [anon_sym_non_DASHsealed] = ACTIONS(877), - [anon_sym_ATinterface] = ACTIONS(877), - [anon_sym_interface] = ACTIONS(879), - [anon_sym_byte] = ACTIONS(879), - [anon_sym_short] = ACTIONS(879), - [anon_sym_int] = ACTIONS(879), - [anon_sym_long] = ACTIONS(879), - [anon_sym_char] = ACTIONS(879), - [anon_sym_float] = ACTIONS(879), - [anon_sym_double] = ACTIONS(879), - [sym_boolean_type] = ACTIONS(879), - [sym_void_type] = ACTIONS(879), - [sym_this] = ACTIONS(879), - [sym_super] = ACTIONS(879), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [213] = { - [ts_builtin_sym_end] = ACTIONS(881), - [sym_identifier] = ACTIONS(883), - [sym_decimal_integer_literal] = ACTIONS(883), - [sym_hex_integer_literal] = ACTIONS(883), - [sym_octal_integer_literal] = ACTIONS(881), - [sym_binary_integer_literal] = ACTIONS(881), - [sym_decimal_floating_point_literal] = ACTIONS(881), - [sym_hex_floating_point_literal] = ACTIONS(883), - [sym_true] = ACTIONS(883), - [sym_false] = ACTIONS(883), - [sym_character_literal] = ACTIONS(881), - [sym_string_literal] = ACTIONS(883), - [sym_text_block] = ACTIONS(881), - [sym_null_literal] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_BANG] = ACTIONS(881), - [anon_sym_TILDE] = ACTIONS(881), - [anon_sym_PLUS_PLUS] = ACTIONS(881), - [anon_sym_DASH_DASH] = ACTIONS(881), - [anon_sym_new] = ACTIONS(883), - [anon_sym_class] = ACTIONS(883), - [anon_sym_switch] = ACTIONS(883), - [anon_sym_LBRACE] = ACTIONS(881), - [anon_sym_RBRACE] = ACTIONS(881), - [anon_sym_case] = ACTIONS(883), - [anon_sym_default] = ACTIONS(883), - [anon_sym_SEMI] = ACTIONS(881), - [anon_sym_assert] = ACTIONS(883), - [anon_sym_do] = ACTIONS(883), - [anon_sym_while] = ACTIONS(883), - [anon_sym_break] = ACTIONS(883), - [anon_sym_continue] = ACTIONS(883), - [anon_sym_return] = ACTIONS(883), - [anon_sym_yield] = ACTIONS(883), - [anon_sym_synchronized] = ACTIONS(883), - [anon_sym_throw] = ACTIONS(883), - [anon_sym_try] = ACTIONS(883), - [anon_sym_if] = ACTIONS(883), - [anon_sym_else] = ACTIONS(883), - [anon_sym_for] = ACTIONS(883), - [anon_sym_AT] = ACTIONS(883), - [anon_sym_open] = ACTIONS(883), - [anon_sym_module] = ACTIONS(883), - [anon_sym_static] = ACTIONS(883), - [anon_sym_package] = ACTIONS(883), - [anon_sym_import] = ACTIONS(883), - [anon_sym_enum] = ACTIONS(883), - [anon_sym_public] = ACTIONS(883), - [anon_sym_protected] = ACTIONS(883), - [anon_sym_private] = ACTIONS(883), - [anon_sym_abstract] = ACTIONS(883), - [anon_sym_final] = ACTIONS(883), - [anon_sym_strictfp] = ACTIONS(883), - [anon_sym_native] = ACTIONS(883), - [anon_sym_transient] = ACTIONS(883), - [anon_sym_volatile] = ACTIONS(883), - [anon_sym_sealed] = ACTIONS(883), - [anon_sym_non_DASHsealed] = ACTIONS(881), - [anon_sym_ATinterface] = ACTIONS(881), - [anon_sym_interface] = ACTIONS(883), - [anon_sym_byte] = ACTIONS(883), - [anon_sym_short] = ACTIONS(883), - [anon_sym_int] = ACTIONS(883), - [anon_sym_long] = ACTIONS(883), - [anon_sym_char] = ACTIONS(883), - [anon_sym_float] = ACTIONS(883), - [anon_sym_double] = ACTIONS(883), - [sym_boolean_type] = ACTIONS(883), - [sym_void_type] = ACTIONS(883), - [sym_this] = ACTIONS(883), - [sym_super] = ACTIONS(883), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [214] = { - [ts_builtin_sym_end] = ACTIONS(885), - [sym_identifier] = ACTIONS(887), - [sym_decimal_integer_literal] = ACTIONS(887), - [sym_hex_integer_literal] = ACTIONS(887), - [sym_octal_integer_literal] = ACTIONS(885), - [sym_binary_integer_literal] = ACTIONS(885), - [sym_decimal_floating_point_literal] = ACTIONS(885), - [sym_hex_floating_point_literal] = ACTIONS(887), - [sym_true] = ACTIONS(887), - [sym_false] = ACTIONS(887), - [sym_character_literal] = ACTIONS(885), - [sym_string_literal] = ACTIONS(887), - [sym_text_block] = ACTIONS(885), - [sym_null_literal] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(885), - [anon_sym_PLUS] = ACTIONS(887), - [anon_sym_DASH] = ACTIONS(887), - [anon_sym_BANG] = ACTIONS(885), - [anon_sym_TILDE] = ACTIONS(885), - [anon_sym_PLUS_PLUS] = ACTIONS(885), - [anon_sym_DASH_DASH] = ACTIONS(885), - [anon_sym_new] = ACTIONS(887), - [anon_sym_class] = ACTIONS(887), - [anon_sym_switch] = ACTIONS(887), - [anon_sym_LBRACE] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_case] = ACTIONS(887), - [anon_sym_default] = ACTIONS(887), - [anon_sym_SEMI] = ACTIONS(885), - [anon_sym_assert] = ACTIONS(887), - [anon_sym_do] = ACTIONS(887), - [anon_sym_while] = ACTIONS(887), - [anon_sym_break] = ACTIONS(887), - [anon_sym_continue] = ACTIONS(887), - [anon_sym_return] = ACTIONS(887), - [anon_sym_yield] = ACTIONS(887), - [anon_sym_synchronized] = ACTIONS(887), - [anon_sym_throw] = ACTIONS(887), - [anon_sym_try] = ACTIONS(887), - [anon_sym_if] = ACTIONS(887), - [anon_sym_else] = ACTIONS(887), - [anon_sym_for] = ACTIONS(887), - [anon_sym_AT] = ACTIONS(887), - [anon_sym_open] = ACTIONS(887), - [anon_sym_module] = ACTIONS(887), - [anon_sym_static] = ACTIONS(887), - [anon_sym_package] = ACTIONS(887), - [anon_sym_import] = ACTIONS(887), - [anon_sym_enum] = ACTIONS(887), - [anon_sym_public] = ACTIONS(887), - [anon_sym_protected] = ACTIONS(887), - [anon_sym_private] = ACTIONS(887), - [anon_sym_abstract] = ACTIONS(887), - [anon_sym_final] = ACTIONS(887), - [anon_sym_strictfp] = ACTIONS(887), - [anon_sym_native] = ACTIONS(887), - [anon_sym_transient] = ACTIONS(887), - [anon_sym_volatile] = ACTIONS(887), - [anon_sym_sealed] = ACTIONS(887), - [anon_sym_non_DASHsealed] = ACTIONS(885), - [anon_sym_ATinterface] = ACTIONS(885), - [anon_sym_interface] = ACTIONS(887), - [anon_sym_byte] = ACTIONS(887), - [anon_sym_short] = ACTIONS(887), - [anon_sym_int] = ACTIONS(887), - [anon_sym_long] = ACTIONS(887), - [anon_sym_char] = ACTIONS(887), - [anon_sym_float] = ACTIONS(887), - [anon_sym_double] = ACTIONS(887), - [sym_boolean_type] = ACTIONS(887), - [sym_void_type] = ACTIONS(887), - [sym_this] = ACTIONS(887), - [sym_super] = ACTIONS(887), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [215] = { - [ts_builtin_sym_end] = ACTIONS(889), - [sym_identifier] = ACTIONS(891), - [sym_decimal_integer_literal] = ACTIONS(891), - [sym_hex_integer_literal] = ACTIONS(891), - [sym_octal_integer_literal] = ACTIONS(889), - [sym_binary_integer_literal] = ACTIONS(889), - [sym_decimal_floating_point_literal] = ACTIONS(889), - [sym_hex_floating_point_literal] = ACTIONS(891), - [sym_true] = ACTIONS(891), - [sym_false] = ACTIONS(891), - [sym_character_literal] = ACTIONS(889), - [sym_string_literal] = ACTIONS(891), - [sym_text_block] = ACTIONS(889), - [sym_null_literal] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_BANG] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(889), - [anon_sym_PLUS_PLUS] = ACTIONS(889), - [anon_sym_DASH_DASH] = ACTIONS(889), - [anon_sym_new] = ACTIONS(891), - [anon_sym_class] = ACTIONS(891), - [anon_sym_switch] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(889), - [anon_sym_RBRACE] = ACTIONS(889), - [anon_sym_case] = ACTIONS(891), - [anon_sym_default] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(889), - [anon_sym_assert] = ACTIONS(891), - [anon_sym_do] = ACTIONS(891), - [anon_sym_while] = ACTIONS(891), - [anon_sym_break] = ACTIONS(891), - [anon_sym_continue] = ACTIONS(891), - [anon_sym_return] = ACTIONS(891), - [anon_sym_yield] = ACTIONS(891), - [anon_sym_synchronized] = ACTIONS(891), - [anon_sym_throw] = ACTIONS(891), - [anon_sym_try] = ACTIONS(891), - [anon_sym_if] = ACTIONS(891), - [anon_sym_else] = ACTIONS(891), - [anon_sym_for] = ACTIONS(891), - [anon_sym_AT] = ACTIONS(891), - [anon_sym_open] = ACTIONS(891), - [anon_sym_module] = ACTIONS(891), - [anon_sym_static] = ACTIONS(891), - [anon_sym_package] = ACTIONS(891), - [anon_sym_import] = ACTIONS(891), - [anon_sym_enum] = ACTIONS(891), - [anon_sym_public] = ACTIONS(891), - [anon_sym_protected] = ACTIONS(891), - [anon_sym_private] = ACTIONS(891), - [anon_sym_abstract] = ACTIONS(891), - [anon_sym_final] = ACTIONS(891), - [anon_sym_strictfp] = ACTIONS(891), - [anon_sym_native] = ACTIONS(891), - [anon_sym_transient] = ACTIONS(891), - [anon_sym_volatile] = ACTIONS(891), - [anon_sym_sealed] = ACTIONS(891), - [anon_sym_non_DASHsealed] = ACTIONS(889), - [anon_sym_ATinterface] = ACTIONS(889), - [anon_sym_interface] = ACTIONS(891), - [anon_sym_byte] = ACTIONS(891), - [anon_sym_short] = ACTIONS(891), - [anon_sym_int] = ACTIONS(891), - [anon_sym_long] = ACTIONS(891), - [anon_sym_char] = ACTIONS(891), - [anon_sym_float] = ACTIONS(891), - [anon_sym_double] = ACTIONS(891), - [sym_boolean_type] = ACTIONS(891), - [sym_void_type] = ACTIONS(891), - [sym_this] = ACTIONS(891), - [sym_super] = ACTIONS(891), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [216] = { - [ts_builtin_sym_end] = ACTIONS(893), - [sym_identifier] = ACTIONS(895), - [sym_decimal_integer_literal] = ACTIONS(895), - [sym_hex_integer_literal] = ACTIONS(895), - [sym_octal_integer_literal] = ACTIONS(893), - [sym_binary_integer_literal] = ACTIONS(893), - [sym_decimal_floating_point_literal] = ACTIONS(893), - [sym_hex_floating_point_literal] = ACTIONS(895), - [sym_true] = ACTIONS(895), - [sym_false] = ACTIONS(895), - [sym_character_literal] = ACTIONS(893), - [sym_string_literal] = ACTIONS(895), - [sym_text_block] = ACTIONS(893), - [sym_null_literal] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_BANG] = ACTIONS(893), - [anon_sym_TILDE] = ACTIONS(893), - [anon_sym_PLUS_PLUS] = ACTIONS(893), - [anon_sym_DASH_DASH] = ACTIONS(893), - [anon_sym_new] = ACTIONS(895), - [anon_sym_class] = ACTIONS(895), - [anon_sym_switch] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(893), - [anon_sym_RBRACE] = ACTIONS(893), - [anon_sym_case] = ACTIONS(895), - [anon_sym_default] = ACTIONS(895), - [anon_sym_SEMI] = ACTIONS(893), - [anon_sym_assert] = ACTIONS(895), - [anon_sym_do] = ACTIONS(895), - [anon_sym_while] = ACTIONS(895), - [anon_sym_break] = ACTIONS(895), - [anon_sym_continue] = ACTIONS(895), - [anon_sym_return] = ACTIONS(895), - [anon_sym_yield] = ACTIONS(895), - [anon_sym_synchronized] = ACTIONS(895), - [anon_sym_throw] = ACTIONS(895), - [anon_sym_try] = ACTIONS(895), - [anon_sym_if] = ACTIONS(895), - [anon_sym_else] = ACTIONS(895), - [anon_sym_for] = ACTIONS(895), - [anon_sym_AT] = ACTIONS(895), - [anon_sym_open] = ACTIONS(895), - [anon_sym_module] = ACTIONS(895), - [anon_sym_static] = ACTIONS(895), - [anon_sym_package] = ACTIONS(895), - [anon_sym_import] = ACTIONS(895), - [anon_sym_enum] = ACTIONS(895), - [anon_sym_public] = ACTIONS(895), - [anon_sym_protected] = ACTIONS(895), - [anon_sym_private] = ACTIONS(895), - [anon_sym_abstract] = ACTIONS(895), - [anon_sym_final] = ACTIONS(895), - [anon_sym_strictfp] = ACTIONS(895), - [anon_sym_native] = ACTIONS(895), - [anon_sym_transient] = ACTIONS(895), - [anon_sym_volatile] = ACTIONS(895), - [anon_sym_sealed] = ACTIONS(895), - [anon_sym_non_DASHsealed] = ACTIONS(893), - [anon_sym_ATinterface] = ACTIONS(893), - [anon_sym_interface] = ACTIONS(895), - [anon_sym_byte] = ACTIONS(895), - [anon_sym_short] = ACTIONS(895), - [anon_sym_int] = ACTIONS(895), - [anon_sym_long] = ACTIONS(895), - [anon_sym_char] = ACTIONS(895), - [anon_sym_float] = ACTIONS(895), - [anon_sym_double] = ACTIONS(895), - [sym_boolean_type] = ACTIONS(895), - [sym_void_type] = ACTIONS(895), - [sym_this] = ACTIONS(895), - [sym_super] = ACTIONS(895), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [217] = { - [ts_builtin_sym_end] = ACTIONS(897), - [sym_identifier] = ACTIONS(899), - [sym_decimal_integer_literal] = ACTIONS(899), - [sym_hex_integer_literal] = ACTIONS(899), - [sym_octal_integer_literal] = ACTIONS(897), - [sym_binary_integer_literal] = ACTIONS(897), - [sym_decimal_floating_point_literal] = ACTIONS(897), - [sym_hex_floating_point_literal] = ACTIONS(899), - [sym_true] = ACTIONS(899), - [sym_false] = ACTIONS(899), - [sym_character_literal] = ACTIONS(897), - [sym_string_literal] = ACTIONS(899), - [sym_text_block] = ACTIONS(897), - [sym_null_literal] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(897), - [anon_sym_PLUS] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(899), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(897), - [anon_sym_PLUS_PLUS] = ACTIONS(897), - [anon_sym_DASH_DASH] = ACTIONS(897), - [anon_sym_new] = ACTIONS(899), - [anon_sym_class] = ACTIONS(899), - [anon_sym_switch] = ACTIONS(899), - [anon_sym_LBRACE] = ACTIONS(897), - [anon_sym_RBRACE] = ACTIONS(897), - [anon_sym_case] = ACTIONS(899), - [anon_sym_default] = ACTIONS(899), - [anon_sym_SEMI] = ACTIONS(897), - [anon_sym_assert] = ACTIONS(899), - [anon_sym_do] = ACTIONS(899), - [anon_sym_while] = ACTIONS(899), - [anon_sym_break] = ACTIONS(899), - [anon_sym_continue] = ACTIONS(899), - [anon_sym_return] = ACTIONS(899), - [anon_sym_yield] = ACTIONS(899), - [anon_sym_synchronized] = ACTIONS(899), - [anon_sym_throw] = ACTIONS(899), - [anon_sym_try] = ACTIONS(899), - [anon_sym_if] = ACTIONS(899), - [anon_sym_else] = ACTIONS(899), - [anon_sym_for] = ACTIONS(899), - [anon_sym_AT] = ACTIONS(899), - [anon_sym_open] = ACTIONS(899), - [anon_sym_module] = ACTIONS(899), - [anon_sym_static] = ACTIONS(899), - [anon_sym_package] = ACTIONS(899), - [anon_sym_import] = ACTIONS(899), - [anon_sym_enum] = ACTIONS(899), - [anon_sym_public] = ACTIONS(899), - [anon_sym_protected] = ACTIONS(899), - [anon_sym_private] = ACTIONS(899), - [anon_sym_abstract] = ACTIONS(899), - [anon_sym_final] = ACTIONS(899), - [anon_sym_strictfp] = ACTIONS(899), - [anon_sym_native] = ACTIONS(899), - [anon_sym_transient] = ACTIONS(899), - [anon_sym_volatile] = ACTIONS(899), - [anon_sym_sealed] = ACTIONS(899), - [anon_sym_non_DASHsealed] = ACTIONS(897), - [anon_sym_ATinterface] = ACTIONS(897), - [anon_sym_interface] = ACTIONS(899), - [anon_sym_byte] = ACTIONS(899), - [anon_sym_short] = ACTIONS(899), - [anon_sym_int] = ACTIONS(899), - [anon_sym_long] = ACTIONS(899), - [anon_sym_char] = ACTIONS(899), - [anon_sym_float] = ACTIONS(899), - [anon_sym_double] = ACTIONS(899), - [sym_boolean_type] = ACTIONS(899), - [sym_void_type] = ACTIONS(899), - [sym_this] = ACTIONS(899), - [sym_super] = ACTIONS(899), - [sym_line_comment] = ACTIONS(3), - [sym_block_comment] = ACTIONS(3), - }, - [218] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(509), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [118] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(581), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -27912,73 +24827,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(901), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(402), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [219] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(532), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [119] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(569), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -27988,73 +24907,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(903), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [220] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(504), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [120] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(596), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28064,73 +24987,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(905), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [221] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(549), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [121] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(642), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28140,73 +25067,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(907), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_RBRACK] = ACTIONS(408), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [222] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(501), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [122] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(574), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28216,73 +25147,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(410), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [223] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(487), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [123] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(626), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28292,73 +25227,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(412), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [224] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(488), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [124] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(575), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28368,73 +25307,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(414), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [225] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(489), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [125] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(558), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28444,73 +25387,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(915), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(416), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [226] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(499), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [126] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(598), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28520,73 +25467,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(917), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(418), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [227] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(490), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [127] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(554), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28596,73 +25547,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(420), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [228] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(548), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [128] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(621), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28672,73 +25627,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(921), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(422), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [229] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(544), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [129] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(576), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28748,73 +25707,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(923), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(424), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [230] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(531), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [130] = { + [ts_builtin_sym_end] = ACTIONS(426), + [sym_identifier] = ACTIONS(428), + [sym_decimal_integer_literal] = ACTIONS(428), + [sym_hex_integer_literal] = ACTIONS(428), + [sym_octal_integer_literal] = ACTIONS(426), + [sym_binary_integer_literal] = ACTIONS(426), + [sym_decimal_floating_point_literal] = ACTIONS(426), + [sym_hex_floating_point_literal] = ACTIONS(428), + [sym_true] = ACTIONS(428), + [sym_false] = ACTIONS(428), + [sym_character_literal] = ACTIONS(426), + [anon_sym_DQUOTE] = ACTIONS(428), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(426), + [sym_null_literal] = ACTIONS(428), + [anon_sym_LPAREN] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(428), + [anon_sym_DASH] = ACTIONS(428), + [anon_sym_final] = ACTIONS(428), + [anon_sym_BANG] = ACTIONS(426), + [anon_sym_TILDE] = ACTIONS(426), + [anon_sym_PLUS_PLUS] = ACTIONS(426), + [anon_sym_DASH_DASH] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_class] = ACTIONS(428), + [anon_sym_switch] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(426), + [anon_sym_RBRACE] = ACTIONS(426), + [anon_sym_case] = ACTIONS(428), + [anon_sym_default] = ACTIONS(428), + [anon_sym_SEMI] = ACTIONS(426), + [anon_sym_assert] = ACTIONS(428), + [anon_sym_do] = ACTIONS(428), + [anon_sym_while] = ACTIONS(428), + [anon_sym_break] = ACTIONS(428), + [anon_sym_continue] = ACTIONS(428), + [anon_sym_return] = ACTIONS(428), + [anon_sym_yield] = ACTIONS(428), + [anon_sym_synchronized] = ACTIONS(428), + [anon_sym_throw] = ACTIONS(428), + [anon_sym_try] = ACTIONS(428), + [anon_sym_catch] = ACTIONS(428), + [anon_sym_finally] = ACTIONS(428), + [anon_sym_if] = ACTIONS(428), + [anon_sym_else] = ACTIONS(428), + [anon_sym_for] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(428), + [anon_sym_open] = ACTIONS(428), + [anon_sym_module] = ACTIONS(428), + [anon_sym_static] = ACTIONS(428), + [anon_sym_package] = ACTIONS(428), + [anon_sym_import] = ACTIONS(428), + [anon_sym_enum] = ACTIONS(428), + [anon_sym_public] = ACTIONS(428), + [anon_sym_protected] = ACTIONS(428), + [anon_sym_private] = ACTIONS(428), + [anon_sym_abstract] = ACTIONS(428), + [anon_sym_strictfp] = ACTIONS(428), + [anon_sym_native] = ACTIONS(428), + [anon_sym_transient] = ACTIONS(428), + [anon_sym_volatile] = ACTIONS(428), + [anon_sym_sealed] = ACTIONS(428), + [anon_sym_non_DASHsealed] = ACTIONS(426), + [anon_sym_record] = ACTIONS(428), + [anon_sym_ATinterface] = ACTIONS(426), + [anon_sym_interface] = ACTIONS(428), + [anon_sym_byte] = ACTIONS(428), + [anon_sym_short] = ACTIONS(428), + [anon_sym_int] = ACTIONS(428), + [anon_sym_long] = ACTIONS(428), + [anon_sym_char] = ACTIONS(428), + [anon_sym_float] = ACTIONS(428), + [anon_sym_double] = ACTIONS(428), + [sym_boolean_type] = ACTIONS(428), + [sym_void_type] = ACTIONS(428), + [sym_this] = ACTIONS(428), + [sym_super] = ACTIONS(428), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [131] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(642), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28824,73 +25867,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(925), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_RBRACK] = ACTIONS(430), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [231] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(508), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [132] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(630), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28900,73 +25947,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [232] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(548), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [133] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(588), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -28976,73 +26027,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(929), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(434), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [233] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(529), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [134] = { + [ts_builtin_sym_end] = ACTIONS(287), + [sym_identifier] = ACTIONS(289), + [sym_decimal_integer_literal] = ACTIONS(289), + [sym_hex_integer_literal] = ACTIONS(289), + [sym_octal_integer_literal] = ACTIONS(287), + [sym_binary_integer_literal] = ACTIONS(287), + [sym_decimal_floating_point_literal] = ACTIONS(287), + [sym_hex_floating_point_literal] = ACTIONS(289), + [sym_true] = ACTIONS(289), + [sym_false] = ACTIONS(289), + [sym_character_literal] = ACTIONS(287), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(287), + [sym_null_literal] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(287), + [anon_sym_PLUS] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(289), + [anon_sym_final] = ACTIONS(289), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_TILDE] = ACTIONS(287), + [anon_sym_PLUS_PLUS] = ACTIONS(287), + [anon_sym_DASH_DASH] = ACTIONS(287), + [anon_sym_new] = ACTIONS(289), + [anon_sym_class] = ACTIONS(289), + [anon_sym_switch] = ACTIONS(289), + [anon_sym_LBRACE] = ACTIONS(287), + [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_case] = ACTIONS(289), + [anon_sym_default] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_assert] = ACTIONS(289), + [anon_sym_do] = ACTIONS(289), + [anon_sym_while] = ACTIONS(289), + [anon_sym_break] = ACTIONS(289), + [anon_sym_continue] = ACTIONS(289), + [anon_sym_return] = ACTIONS(289), + [anon_sym_yield] = ACTIONS(289), + [anon_sym_synchronized] = ACTIONS(289), + [anon_sym_throw] = ACTIONS(289), + [anon_sym_try] = ACTIONS(289), + [anon_sym_catch] = ACTIONS(289), + [anon_sym_finally] = ACTIONS(289), + [anon_sym_if] = ACTIONS(289), + [anon_sym_else] = ACTIONS(289), + [anon_sym_for] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_open] = ACTIONS(289), + [anon_sym_module] = ACTIONS(289), + [anon_sym_static] = ACTIONS(289), + [anon_sym_package] = ACTIONS(289), + [anon_sym_import] = ACTIONS(289), + [anon_sym_enum] = ACTIONS(289), + [anon_sym_public] = ACTIONS(289), + [anon_sym_protected] = ACTIONS(289), + [anon_sym_private] = ACTIONS(289), + [anon_sym_abstract] = ACTIONS(289), + [anon_sym_strictfp] = ACTIONS(289), + [anon_sym_native] = ACTIONS(289), + [anon_sym_transient] = ACTIONS(289), + [anon_sym_volatile] = ACTIONS(289), + [anon_sym_sealed] = ACTIONS(289), + [anon_sym_non_DASHsealed] = ACTIONS(287), + [anon_sym_record] = ACTIONS(289), + [anon_sym_ATinterface] = ACTIONS(287), + [anon_sym_interface] = ACTIONS(289), + [anon_sym_byte] = ACTIONS(289), + [anon_sym_short] = ACTIONS(289), + [anon_sym_int] = ACTIONS(289), + [anon_sym_long] = ACTIONS(289), + [anon_sym_char] = ACTIONS(289), + [anon_sym_float] = ACTIONS(289), + [anon_sym_double] = ACTIONS(289), + [sym_boolean_type] = ACTIONS(289), + [sym_void_type] = ACTIONS(289), + [sym_this] = ACTIONS(289), + [sym_super] = ACTIONS(289), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [135] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(570), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29052,73 +26187,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(436), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [234] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(531), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [136] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(633), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29128,73 +26267,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_RBRACK] = ACTIONS(933), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [235] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(534), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [137] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(617), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29204,73 +26347,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(935), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(440), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [236] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(435), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [138] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(636), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29280,72 +26427,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(442), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [237] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(535), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [139] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(628), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29355,72 +26507,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [238] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(510), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [140] = { + [ts_builtin_sym_end] = ACTIONS(283), + [sym_identifier] = ACTIONS(285), + [sym_decimal_integer_literal] = ACTIONS(285), + [sym_hex_integer_literal] = ACTIONS(285), + [sym_octal_integer_literal] = ACTIONS(283), + [sym_binary_integer_literal] = ACTIONS(283), + [sym_decimal_floating_point_literal] = ACTIONS(283), + [sym_hex_floating_point_literal] = ACTIONS(285), + [sym_true] = ACTIONS(285), + [sym_false] = ACTIONS(285), + [sym_character_literal] = ACTIONS(283), + [anon_sym_DQUOTE] = ACTIONS(285), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(283), + [sym_null_literal] = ACTIONS(285), + [anon_sym_LPAREN] = ACTIONS(283), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_final] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(283), + [anon_sym_TILDE] = ACTIONS(283), + [anon_sym_PLUS_PLUS] = ACTIONS(283), + [anon_sym_DASH_DASH] = ACTIONS(283), + [anon_sym_new] = ACTIONS(285), + [anon_sym_class] = ACTIONS(285), + [anon_sym_switch] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_case] = ACTIONS(285), + [anon_sym_default] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(283), + [anon_sym_assert] = ACTIONS(285), + [anon_sym_do] = ACTIONS(285), + [anon_sym_while] = ACTIONS(285), + [anon_sym_break] = ACTIONS(285), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_return] = ACTIONS(285), + [anon_sym_yield] = ACTIONS(285), + [anon_sym_synchronized] = ACTIONS(285), + [anon_sym_throw] = ACTIONS(285), + [anon_sym_try] = ACTIONS(285), + [anon_sym_catch] = ACTIONS(285), + [anon_sym_finally] = ACTIONS(285), + [anon_sym_if] = ACTIONS(285), + [anon_sym_else] = ACTIONS(285), + [anon_sym_for] = ACTIONS(285), + [anon_sym_AT] = ACTIONS(285), + [anon_sym_open] = ACTIONS(285), + [anon_sym_module] = ACTIONS(285), + [anon_sym_static] = ACTIONS(285), + [anon_sym_package] = ACTIONS(285), + [anon_sym_import] = ACTIONS(285), + [anon_sym_enum] = ACTIONS(285), + [anon_sym_public] = ACTIONS(285), + [anon_sym_protected] = ACTIONS(285), + [anon_sym_private] = ACTIONS(285), + [anon_sym_abstract] = ACTIONS(285), + [anon_sym_strictfp] = ACTIONS(285), + [anon_sym_native] = ACTIONS(285), + [anon_sym_transient] = ACTIONS(285), + [anon_sym_volatile] = ACTIONS(285), + [anon_sym_sealed] = ACTIONS(285), + [anon_sym_non_DASHsealed] = ACTIONS(283), + [anon_sym_record] = ACTIONS(285), + [anon_sym_ATinterface] = ACTIONS(283), + [anon_sym_interface] = ACTIONS(285), + [anon_sym_byte] = ACTIONS(285), + [anon_sym_short] = ACTIONS(285), + [anon_sym_int] = ACTIONS(285), + [anon_sym_long] = ACTIONS(285), + [anon_sym_char] = ACTIONS(285), + [anon_sym_float] = ACTIONS(285), + [anon_sym_double] = ACTIONS(285), + [sym_boolean_type] = ACTIONS(285), + [sym_void_type] = ACTIONS(285), + [sym_this] = ACTIONS(285), + [sym_super] = ACTIONS(285), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [141] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(631), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29430,72 +26667,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_RBRACK] = ACTIONS(446), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [239] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(495), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [142] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(563), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29505,72 +26747,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [240] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(519), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [143] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(567), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29580,72 +26827,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(450), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [241] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(494), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [144] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(584), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29655,72 +26907,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_RPAREN] = ACTIONS(452), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [242] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(431), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [145] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(640), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29730,72 +26987,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [243] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(460), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [146] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(595), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29805,72 +27066,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [244] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(543), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [147] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(531), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29880,72 +27145,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [245] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(516), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [148] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(521), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -29955,72 +27224,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [246] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(518), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [149] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(530), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30030,72 +27303,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [247] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(456), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [150] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(529), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30105,72 +27382,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [248] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(497), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [151] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(538), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30180,72 +27461,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [249] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(444), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [152] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(637), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30255,72 +27540,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [250] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(445), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [153] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(616), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30330,72 +27619,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [251] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(455), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [154] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(589), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30405,72 +27698,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [252] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(454), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [155] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(508), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30480,72 +27777,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [253] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(435), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [156] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(631), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30555,72 +27856,550 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [254] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(541), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [157] = { + [ts_builtin_sym_end] = ACTIONS(454), + [sym_identifier] = ACTIONS(456), + [sym_decimal_integer_literal] = ACTIONS(456), + [sym_hex_integer_literal] = ACTIONS(456), + [sym_octal_integer_literal] = ACTIONS(454), + [sym_binary_integer_literal] = ACTIONS(454), + [sym_decimal_floating_point_literal] = ACTIONS(454), + [sym_hex_floating_point_literal] = ACTIONS(456), + [sym_true] = ACTIONS(456), + [sym_false] = ACTIONS(456), + [sym_character_literal] = ACTIONS(454), + [anon_sym_DQUOTE] = ACTIONS(456), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(454), + [sym_null_literal] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(454), + [anon_sym_LT] = ACTIONS(454), + [anon_sym_PLUS] = ACTIONS(456), + [anon_sym_DASH] = ACTIONS(456), + [anon_sym_final] = ACTIONS(456), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_PLUS_PLUS] = ACTIONS(454), + [anon_sym_DASH_DASH] = ACTIONS(454), + [anon_sym_new] = ACTIONS(456), + [anon_sym_class] = ACTIONS(456), + [anon_sym_switch] = ACTIONS(456), + [anon_sym_LBRACE] = ACTIONS(454), + [anon_sym_RBRACE] = ACTIONS(454), + [anon_sym_case] = ACTIONS(456), + [anon_sym_default] = ACTIONS(456), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_assert] = ACTIONS(456), + [anon_sym_do] = ACTIONS(456), + [anon_sym_while] = ACTIONS(456), + [anon_sym_break] = ACTIONS(456), + [anon_sym_continue] = ACTIONS(456), + [anon_sym_return] = ACTIONS(456), + [anon_sym_yield] = ACTIONS(456), + [anon_sym_synchronized] = ACTIONS(456), + [anon_sym_throw] = ACTIONS(456), + [anon_sym_try] = ACTIONS(456), + [anon_sym_if] = ACTIONS(456), + [anon_sym_else] = ACTIONS(456), + [anon_sym_for] = ACTIONS(456), + [anon_sym_AT] = ACTIONS(456), + [anon_sym_open] = ACTIONS(456), + [anon_sym_module] = ACTIONS(456), + [anon_sym_static] = ACTIONS(456), + [anon_sym_package] = ACTIONS(456), + [anon_sym_import] = ACTIONS(456), + [anon_sym_enum] = ACTIONS(456), + [anon_sym_public] = ACTIONS(456), + [anon_sym_protected] = ACTIONS(456), + [anon_sym_private] = ACTIONS(456), + [anon_sym_abstract] = ACTIONS(456), + [anon_sym_strictfp] = ACTIONS(456), + [anon_sym_native] = ACTIONS(456), + [anon_sym_transient] = ACTIONS(456), + [anon_sym_volatile] = ACTIONS(456), + [anon_sym_sealed] = ACTIONS(456), + [anon_sym_non_DASHsealed] = ACTIONS(454), + [anon_sym_record] = ACTIONS(456), + [anon_sym_ATinterface] = ACTIONS(454), + [anon_sym_interface] = ACTIONS(456), + [anon_sym_byte] = ACTIONS(456), + [anon_sym_short] = ACTIONS(456), + [anon_sym_int] = ACTIONS(456), + [anon_sym_long] = ACTIONS(456), + [anon_sym_char] = ACTIONS(456), + [anon_sym_float] = ACTIONS(456), + [anon_sym_double] = ACTIONS(456), + [sym_boolean_type] = ACTIONS(456), + [sym_void_type] = ACTIONS(456), + [sym_this] = ACTIONS(456), + [sym_super] = ACTIONS(456), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [158] = { + [ts_builtin_sym_end] = ACTIONS(458), + [sym_identifier] = ACTIONS(460), + [sym_decimal_integer_literal] = ACTIONS(460), + [sym_hex_integer_literal] = ACTIONS(460), + [sym_octal_integer_literal] = ACTIONS(458), + [sym_binary_integer_literal] = ACTIONS(458), + [sym_decimal_floating_point_literal] = ACTIONS(458), + [sym_hex_floating_point_literal] = ACTIONS(460), + [sym_true] = ACTIONS(460), + [sym_false] = ACTIONS(460), + [sym_character_literal] = ACTIONS(458), + [anon_sym_DQUOTE] = ACTIONS(460), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(458), + [sym_null_literal] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(458), + [anon_sym_LT] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(460), + [anon_sym_DASH] = ACTIONS(460), + [anon_sym_final] = ACTIONS(460), + [anon_sym_BANG] = ACTIONS(458), + [anon_sym_TILDE] = ACTIONS(458), + [anon_sym_PLUS_PLUS] = ACTIONS(458), + [anon_sym_DASH_DASH] = ACTIONS(458), + [anon_sym_new] = ACTIONS(460), + [anon_sym_class] = ACTIONS(460), + [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_SEMI] = ACTIONS(458), + [anon_sym_assert] = ACTIONS(460), + [anon_sym_do] = ACTIONS(460), + [anon_sym_while] = ACTIONS(460), + [anon_sym_break] = ACTIONS(460), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_return] = ACTIONS(460), + [anon_sym_yield] = ACTIONS(460), + [anon_sym_synchronized] = ACTIONS(460), + [anon_sym_throw] = ACTIONS(460), + [anon_sym_try] = ACTIONS(460), + [anon_sym_if] = ACTIONS(460), + [anon_sym_else] = ACTIONS(460), + [anon_sym_for] = ACTIONS(460), + [anon_sym_AT] = ACTIONS(460), + [anon_sym_open] = ACTIONS(460), + [anon_sym_module] = ACTIONS(460), + [anon_sym_static] = ACTIONS(460), + [anon_sym_package] = ACTIONS(460), + [anon_sym_import] = ACTIONS(460), + [anon_sym_enum] = ACTIONS(460), + [anon_sym_public] = ACTIONS(460), + [anon_sym_protected] = ACTIONS(460), + [anon_sym_private] = ACTIONS(460), + [anon_sym_abstract] = ACTIONS(460), + [anon_sym_strictfp] = ACTIONS(460), + [anon_sym_native] = ACTIONS(460), + [anon_sym_transient] = ACTIONS(460), + [anon_sym_volatile] = ACTIONS(460), + [anon_sym_sealed] = ACTIONS(460), + [anon_sym_non_DASHsealed] = ACTIONS(458), + [anon_sym_record] = ACTIONS(460), + [anon_sym_ATinterface] = ACTIONS(458), + [anon_sym_interface] = ACTIONS(460), + [anon_sym_byte] = ACTIONS(460), + [anon_sym_short] = ACTIONS(460), + [anon_sym_int] = ACTIONS(460), + [anon_sym_long] = ACTIONS(460), + [anon_sym_char] = ACTIONS(460), + [anon_sym_float] = ACTIONS(460), + [anon_sym_double] = ACTIONS(460), + [sym_boolean_type] = ACTIONS(460), + [sym_void_type] = ACTIONS(460), + [sym_this] = ACTIONS(460), + [sym_super] = ACTIONS(460), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [159] = { + [ts_builtin_sym_end] = ACTIONS(462), + [sym_identifier] = ACTIONS(464), + [sym_decimal_integer_literal] = ACTIONS(464), + [sym_hex_integer_literal] = ACTIONS(464), + [sym_octal_integer_literal] = ACTIONS(462), + [sym_binary_integer_literal] = ACTIONS(462), + [sym_decimal_floating_point_literal] = ACTIONS(462), + [sym_hex_floating_point_literal] = ACTIONS(464), + [sym_true] = ACTIONS(464), + [sym_false] = ACTIONS(464), + [sym_character_literal] = ACTIONS(462), + [anon_sym_DQUOTE] = ACTIONS(464), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(462), + [sym_null_literal] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_LT] = ACTIONS(462), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_final] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(462), + [anon_sym_TILDE] = ACTIONS(462), + [anon_sym_PLUS_PLUS] = ACTIONS(462), + [anon_sym_DASH_DASH] = ACTIONS(462), + [anon_sym_new] = ACTIONS(464), + [anon_sym_class] = ACTIONS(464), + [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_SEMI] = ACTIONS(462), + [anon_sym_assert] = ACTIONS(464), + [anon_sym_do] = ACTIONS(464), + [anon_sym_while] = ACTIONS(464), + [anon_sym_break] = ACTIONS(464), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_return] = ACTIONS(464), + [anon_sym_yield] = ACTIONS(464), + [anon_sym_synchronized] = ACTIONS(464), + [anon_sym_throw] = ACTIONS(464), + [anon_sym_try] = ACTIONS(464), + [anon_sym_if] = ACTIONS(464), + [anon_sym_else] = ACTIONS(464), + [anon_sym_for] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(464), + [anon_sym_open] = ACTIONS(464), + [anon_sym_module] = ACTIONS(464), + [anon_sym_static] = ACTIONS(464), + [anon_sym_package] = ACTIONS(464), + [anon_sym_import] = ACTIONS(464), + [anon_sym_enum] = ACTIONS(464), + [anon_sym_public] = ACTIONS(464), + [anon_sym_protected] = ACTIONS(464), + [anon_sym_private] = ACTIONS(464), + [anon_sym_abstract] = ACTIONS(464), + [anon_sym_strictfp] = ACTIONS(464), + [anon_sym_native] = ACTIONS(464), + [anon_sym_transient] = ACTIONS(464), + [anon_sym_volatile] = ACTIONS(464), + [anon_sym_sealed] = ACTIONS(464), + [anon_sym_non_DASHsealed] = ACTIONS(462), + [anon_sym_record] = ACTIONS(464), + [anon_sym_ATinterface] = ACTIONS(462), + [anon_sym_interface] = ACTIONS(464), + [anon_sym_byte] = ACTIONS(464), + [anon_sym_short] = ACTIONS(464), + [anon_sym_int] = ACTIONS(464), + [anon_sym_long] = ACTIONS(464), + [anon_sym_char] = ACTIONS(464), + [anon_sym_float] = ACTIONS(464), + [anon_sym_double] = ACTIONS(464), + [sym_boolean_type] = ACTIONS(464), + [sym_void_type] = ACTIONS(464), + [sym_this] = ACTIONS(464), + [sym_super] = ACTIONS(464), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [160] = { + [ts_builtin_sym_end] = ACTIONS(466), + [sym_identifier] = ACTIONS(468), + [sym_decimal_integer_literal] = ACTIONS(468), + [sym_hex_integer_literal] = ACTIONS(468), + [sym_octal_integer_literal] = ACTIONS(466), + [sym_binary_integer_literal] = ACTIONS(466), + [sym_decimal_floating_point_literal] = ACTIONS(466), + [sym_hex_floating_point_literal] = ACTIONS(468), + [sym_true] = ACTIONS(468), + [sym_false] = ACTIONS(468), + [sym_character_literal] = ACTIONS(466), + [anon_sym_DQUOTE] = ACTIONS(468), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(466), + [sym_null_literal] = ACTIONS(468), + [anon_sym_LPAREN] = ACTIONS(466), + [anon_sym_LT] = ACTIONS(466), + [anon_sym_PLUS] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(468), + [anon_sym_final] = ACTIONS(468), + [anon_sym_BANG] = ACTIONS(466), + [anon_sym_TILDE] = ACTIONS(466), + [anon_sym_PLUS_PLUS] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(466), + [anon_sym_new] = ACTIONS(468), + [anon_sym_class] = ACTIONS(468), + [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_SEMI] = ACTIONS(466), + [anon_sym_assert] = ACTIONS(468), + [anon_sym_do] = ACTIONS(468), + [anon_sym_while] = ACTIONS(468), + [anon_sym_break] = ACTIONS(468), + [anon_sym_continue] = ACTIONS(468), + [anon_sym_return] = ACTIONS(468), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_synchronized] = ACTIONS(468), + [anon_sym_throw] = ACTIONS(468), + [anon_sym_try] = ACTIONS(468), + [anon_sym_if] = ACTIONS(468), + [anon_sym_else] = ACTIONS(468), + [anon_sym_for] = ACTIONS(468), + [anon_sym_AT] = ACTIONS(468), + [anon_sym_open] = ACTIONS(468), + [anon_sym_module] = ACTIONS(468), + [anon_sym_static] = ACTIONS(468), + [anon_sym_package] = ACTIONS(468), + [anon_sym_import] = ACTIONS(468), + [anon_sym_enum] = ACTIONS(468), + [anon_sym_public] = ACTIONS(468), + [anon_sym_protected] = ACTIONS(468), + [anon_sym_private] = ACTIONS(468), + [anon_sym_abstract] = ACTIONS(468), + [anon_sym_strictfp] = ACTIONS(468), + [anon_sym_native] = ACTIONS(468), + [anon_sym_transient] = ACTIONS(468), + [anon_sym_volatile] = ACTIONS(468), + [anon_sym_sealed] = ACTIONS(468), + [anon_sym_non_DASHsealed] = ACTIONS(466), + [anon_sym_record] = ACTIONS(468), + [anon_sym_ATinterface] = ACTIONS(466), + [anon_sym_interface] = ACTIONS(468), + [anon_sym_byte] = ACTIONS(468), + [anon_sym_short] = ACTIONS(468), + [anon_sym_int] = ACTIONS(468), + [anon_sym_long] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_float] = ACTIONS(468), + [anon_sym_double] = ACTIONS(468), + [sym_boolean_type] = ACTIONS(468), + [sym_void_type] = ACTIONS(468), + [sym_this] = ACTIONS(468), + [sym_super] = ACTIONS(468), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [161] = { + [ts_builtin_sym_end] = ACTIONS(470), + [sym_identifier] = ACTIONS(472), + [sym_decimal_integer_literal] = ACTIONS(472), + [sym_hex_integer_literal] = ACTIONS(472), + [sym_octal_integer_literal] = ACTIONS(470), + [sym_binary_integer_literal] = ACTIONS(470), + [sym_decimal_floating_point_literal] = ACTIONS(470), + [sym_hex_floating_point_literal] = ACTIONS(472), + [sym_true] = ACTIONS(472), + [sym_false] = ACTIONS(472), + [sym_character_literal] = ACTIONS(470), + [anon_sym_DQUOTE] = ACTIONS(472), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(470), + [sym_null_literal] = ACTIONS(472), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LT] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_final] = ACTIONS(472), + [anon_sym_BANG] = ACTIONS(470), + [anon_sym_TILDE] = ACTIONS(470), + [anon_sym_PLUS_PLUS] = ACTIONS(470), + [anon_sym_DASH_DASH] = ACTIONS(470), + [anon_sym_new] = ACTIONS(472), + [anon_sym_class] = ACTIONS(472), + [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_SEMI] = ACTIONS(470), + [anon_sym_assert] = ACTIONS(472), + [anon_sym_do] = ACTIONS(472), + [anon_sym_while] = ACTIONS(472), + [anon_sym_break] = ACTIONS(472), + [anon_sym_continue] = ACTIONS(472), + [anon_sym_return] = ACTIONS(472), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_synchronized] = ACTIONS(472), + [anon_sym_throw] = ACTIONS(472), + [anon_sym_try] = ACTIONS(472), + [anon_sym_if] = ACTIONS(472), + [anon_sym_else] = ACTIONS(472), + [anon_sym_for] = ACTIONS(472), + [anon_sym_AT] = ACTIONS(472), + [anon_sym_open] = ACTIONS(472), + [anon_sym_module] = ACTIONS(472), + [anon_sym_static] = ACTIONS(472), + [anon_sym_package] = ACTIONS(472), + [anon_sym_import] = ACTIONS(472), + [anon_sym_enum] = ACTIONS(472), + [anon_sym_public] = ACTIONS(472), + [anon_sym_protected] = ACTIONS(472), + [anon_sym_private] = ACTIONS(472), + [anon_sym_abstract] = ACTIONS(472), + [anon_sym_strictfp] = ACTIONS(472), + [anon_sym_native] = ACTIONS(472), + [anon_sym_transient] = ACTIONS(472), + [anon_sym_volatile] = ACTIONS(472), + [anon_sym_sealed] = ACTIONS(472), + [anon_sym_non_DASHsealed] = ACTIONS(470), + [anon_sym_record] = ACTIONS(472), + [anon_sym_ATinterface] = ACTIONS(470), + [anon_sym_interface] = ACTIONS(472), + [anon_sym_byte] = ACTIONS(472), + [anon_sym_short] = ACTIONS(472), + [anon_sym_int] = ACTIONS(472), + [anon_sym_long] = ACTIONS(472), + [anon_sym_char] = ACTIONS(472), + [anon_sym_float] = ACTIONS(472), + [anon_sym_double] = ACTIONS(472), + [sym_boolean_type] = ACTIONS(472), + [sym_void_type] = ACTIONS(472), + [sym_this] = ACTIONS(472), + [sym_super] = ACTIONS(472), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [162] = { + [ts_builtin_sym_end] = ACTIONS(474), + [sym_identifier] = ACTIONS(476), + [sym_decimal_integer_literal] = ACTIONS(476), + [sym_hex_integer_literal] = ACTIONS(476), + [sym_octal_integer_literal] = ACTIONS(474), + [sym_binary_integer_literal] = ACTIONS(474), + [sym_decimal_floating_point_literal] = ACTIONS(474), + [sym_hex_floating_point_literal] = ACTIONS(476), + [sym_true] = ACTIONS(476), + [sym_false] = ACTIONS(476), + [sym_character_literal] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(476), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(474), + [sym_null_literal] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LT] = ACTIONS(474), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_final] = ACTIONS(476), + [anon_sym_BANG] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_PLUS_PLUS] = ACTIONS(474), + [anon_sym_DASH_DASH] = ACTIONS(474), + [anon_sym_new] = ACTIONS(476), + [anon_sym_class] = ACTIONS(476), + [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_SEMI] = ACTIONS(474), + [anon_sym_assert] = ACTIONS(476), + [anon_sym_do] = ACTIONS(476), + [anon_sym_while] = ACTIONS(476), + [anon_sym_break] = ACTIONS(476), + [anon_sym_continue] = ACTIONS(476), + [anon_sym_return] = ACTIONS(476), + [anon_sym_yield] = ACTIONS(476), + [anon_sym_synchronized] = ACTIONS(476), + [anon_sym_throw] = ACTIONS(476), + [anon_sym_try] = ACTIONS(476), + [anon_sym_if] = ACTIONS(476), + [anon_sym_else] = ACTIONS(476), + [anon_sym_for] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(476), + [anon_sym_open] = ACTIONS(476), + [anon_sym_module] = ACTIONS(476), + [anon_sym_static] = ACTIONS(476), + [anon_sym_package] = ACTIONS(476), + [anon_sym_import] = ACTIONS(476), + [anon_sym_enum] = ACTIONS(476), + [anon_sym_public] = ACTIONS(476), + [anon_sym_protected] = ACTIONS(476), + [anon_sym_private] = ACTIONS(476), + [anon_sym_abstract] = ACTIONS(476), + [anon_sym_strictfp] = ACTIONS(476), + [anon_sym_native] = ACTIONS(476), + [anon_sym_transient] = ACTIONS(476), + [anon_sym_volatile] = ACTIONS(476), + [anon_sym_sealed] = ACTIONS(476), + [anon_sym_non_DASHsealed] = ACTIONS(474), + [anon_sym_record] = ACTIONS(476), + [anon_sym_ATinterface] = ACTIONS(474), + [anon_sym_interface] = ACTIONS(476), + [anon_sym_byte] = ACTIONS(476), + [anon_sym_short] = ACTIONS(476), + [anon_sym_int] = ACTIONS(476), + [anon_sym_long] = ACTIONS(476), + [anon_sym_char] = ACTIONS(476), + [anon_sym_float] = ACTIONS(476), + [anon_sym_double] = ACTIONS(476), + [sym_boolean_type] = ACTIONS(476), + [sym_void_type] = ACTIONS(476), + [sym_this] = ACTIONS(476), + [sym_super] = ACTIONS(476), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [163] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(606), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30630,72 +28409,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [255] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(540), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [164] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(508), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30705,72 +28488,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [256] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(453), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [165] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(522), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30780,72 +28567,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [257] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(512), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [166] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(572), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30855,72 +28646,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [258] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(479), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [167] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(537), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -30930,72 +28725,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [259] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(536), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [168] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(518), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31005,222 +28804,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [260] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(432), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [169] = { + [ts_builtin_sym_end] = ACTIONS(478), + [sym_identifier] = ACTIONS(480), + [sym_decimal_integer_literal] = ACTIONS(480), + [sym_hex_integer_literal] = ACTIONS(480), + [sym_octal_integer_literal] = ACTIONS(478), + [sym_binary_integer_literal] = ACTIONS(478), + [sym_decimal_floating_point_literal] = ACTIONS(478), + [sym_hex_floating_point_literal] = ACTIONS(480), + [sym_true] = ACTIONS(480), + [sym_false] = ACTIONS(480), + [sym_character_literal] = ACTIONS(478), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(478), + [sym_null_literal] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LT] = ACTIONS(478), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_final] = ACTIONS(480), + [anon_sym_BANG] = ACTIONS(478), + [anon_sym_TILDE] = ACTIONS(478), + [anon_sym_PLUS_PLUS] = ACTIONS(478), + [anon_sym_DASH_DASH] = ACTIONS(478), + [anon_sym_new] = ACTIONS(480), + [anon_sym_class] = ACTIONS(480), + [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_SEMI] = ACTIONS(478), + [anon_sym_assert] = ACTIONS(480), + [anon_sym_do] = ACTIONS(480), + [anon_sym_while] = ACTIONS(480), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_return] = ACTIONS(480), + [anon_sym_yield] = ACTIONS(480), + [anon_sym_synchronized] = ACTIONS(480), + [anon_sym_throw] = ACTIONS(480), + [anon_sym_try] = ACTIONS(480), + [anon_sym_if] = ACTIONS(480), + [anon_sym_else] = ACTIONS(480), + [anon_sym_for] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(480), + [anon_sym_open] = ACTIONS(480), + [anon_sym_module] = ACTIONS(480), + [anon_sym_static] = ACTIONS(480), + [anon_sym_package] = ACTIONS(480), + [anon_sym_import] = ACTIONS(480), + [anon_sym_enum] = ACTIONS(480), + [anon_sym_public] = ACTIONS(480), + [anon_sym_protected] = ACTIONS(480), + [anon_sym_private] = ACTIONS(480), + [anon_sym_abstract] = ACTIONS(480), + [anon_sym_strictfp] = ACTIONS(480), + [anon_sym_native] = ACTIONS(480), + [anon_sym_transient] = ACTIONS(480), + [anon_sym_volatile] = ACTIONS(480), + [anon_sym_sealed] = ACTIONS(480), + [anon_sym_non_DASHsealed] = ACTIONS(478), + [anon_sym_record] = ACTIONS(480), + [anon_sym_ATinterface] = ACTIONS(478), + [anon_sym_interface] = ACTIONS(480), + [anon_sym_byte] = ACTIONS(480), + [anon_sym_short] = ACTIONS(480), + [anon_sym_int] = ACTIONS(480), + [anon_sym_long] = ACTIONS(480), + [anon_sym_char] = ACTIONS(480), + [anon_sym_float] = ACTIONS(480), + [anon_sym_double] = ACTIONS(480), + [sym_boolean_type] = ACTIONS(480), + [sym_void_type] = ACTIONS(480), + [sym_this] = ACTIONS(480), + [sym_super] = ACTIONS(480), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [261] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(433), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [170] = { + [ts_builtin_sym_end] = ACTIONS(482), + [sym_identifier] = ACTIONS(484), + [sym_decimal_integer_literal] = ACTIONS(484), + [sym_hex_integer_literal] = ACTIONS(484), + [sym_octal_integer_literal] = ACTIONS(482), + [sym_binary_integer_literal] = ACTIONS(482), + [sym_decimal_floating_point_literal] = ACTIONS(482), + [sym_hex_floating_point_literal] = ACTIONS(484), + [sym_true] = ACTIONS(484), + [sym_false] = ACTIONS(484), + [sym_character_literal] = ACTIONS(482), + [anon_sym_DQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(482), + [sym_null_literal] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_final] = ACTIONS(484), + [anon_sym_BANG] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_PLUS_PLUS] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(482), + [anon_sym_new] = ACTIONS(484), + [anon_sym_class] = ACTIONS(484), + [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_SEMI] = ACTIONS(482), + [anon_sym_assert] = ACTIONS(484), + [anon_sym_do] = ACTIONS(484), + [anon_sym_while] = ACTIONS(484), + [anon_sym_break] = ACTIONS(484), + [anon_sym_continue] = ACTIONS(484), + [anon_sym_return] = ACTIONS(484), + [anon_sym_yield] = ACTIONS(484), + [anon_sym_synchronized] = ACTIONS(484), + [anon_sym_throw] = ACTIONS(484), + [anon_sym_try] = ACTIONS(484), + [anon_sym_if] = ACTIONS(484), + [anon_sym_else] = ACTIONS(484), + [anon_sym_for] = ACTIONS(484), + [anon_sym_AT] = ACTIONS(484), + [anon_sym_open] = ACTIONS(484), + [anon_sym_module] = ACTIONS(484), + [anon_sym_static] = ACTIONS(484), + [anon_sym_package] = ACTIONS(484), + [anon_sym_import] = ACTIONS(484), + [anon_sym_enum] = ACTIONS(484), + [anon_sym_public] = ACTIONS(484), + [anon_sym_protected] = ACTIONS(484), + [anon_sym_private] = ACTIONS(484), + [anon_sym_abstract] = ACTIONS(484), + [anon_sym_strictfp] = ACTIONS(484), + [anon_sym_native] = ACTIONS(484), + [anon_sym_transient] = ACTIONS(484), + [anon_sym_volatile] = ACTIONS(484), + [anon_sym_sealed] = ACTIONS(484), + [anon_sym_non_DASHsealed] = ACTIONS(482), + [anon_sym_record] = ACTIONS(484), + [anon_sym_ATinterface] = ACTIONS(482), + [anon_sym_interface] = ACTIONS(484), + [anon_sym_byte] = ACTIONS(484), + [anon_sym_short] = ACTIONS(484), + [anon_sym_int] = ACTIONS(484), + [anon_sym_long] = ACTIONS(484), + [anon_sym_char] = ACTIONS(484), + [anon_sym_float] = ACTIONS(484), + [anon_sym_double] = ACTIONS(484), + [sym_boolean_type] = ACTIONS(484), + [sym_void_type] = ACTIONS(484), + [sym_this] = ACTIONS(484), + [sym_super] = ACTIONS(484), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [262] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(481), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [171] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(623), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31230,147 +29041,471 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [263] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(547), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [172] = { + [ts_builtin_sym_end] = ACTIONS(486), + [sym_identifier] = ACTIONS(488), + [sym_decimal_integer_literal] = ACTIONS(488), + [sym_hex_integer_literal] = ACTIONS(488), + [sym_octal_integer_literal] = ACTIONS(486), + [sym_binary_integer_literal] = ACTIONS(486), + [sym_decimal_floating_point_literal] = ACTIONS(486), + [sym_hex_floating_point_literal] = ACTIONS(488), + [sym_true] = ACTIONS(488), + [sym_false] = ACTIONS(488), + [sym_character_literal] = ACTIONS(486), + [anon_sym_DQUOTE] = ACTIONS(488), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [sym_null_literal] = ACTIONS(488), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_LT] = ACTIONS(486), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_final] = ACTIONS(488), + [anon_sym_BANG] = ACTIONS(486), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_PLUS_PLUS] = ACTIONS(486), + [anon_sym_DASH_DASH] = ACTIONS(486), + [anon_sym_new] = ACTIONS(488), + [anon_sym_class] = ACTIONS(488), + [anon_sym_switch] = ACTIONS(488), + [anon_sym_LBRACE] = ACTIONS(486), + [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_case] = ACTIONS(488), + [anon_sym_default] = ACTIONS(488), + [anon_sym_SEMI] = ACTIONS(486), + [anon_sym_assert] = ACTIONS(488), + [anon_sym_do] = ACTIONS(488), + [anon_sym_while] = ACTIONS(488), + [anon_sym_break] = ACTIONS(488), + [anon_sym_continue] = ACTIONS(488), + [anon_sym_return] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(488), + [anon_sym_synchronized] = ACTIONS(488), + [anon_sym_throw] = ACTIONS(488), + [anon_sym_try] = ACTIONS(488), + [anon_sym_if] = ACTIONS(488), + [anon_sym_else] = ACTIONS(488), + [anon_sym_for] = ACTIONS(488), + [anon_sym_AT] = ACTIONS(488), + [anon_sym_open] = ACTIONS(488), + [anon_sym_module] = ACTIONS(488), + [anon_sym_static] = ACTIONS(488), + [anon_sym_package] = ACTIONS(488), + [anon_sym_import] = ACTIONS(488), + [anon_sym_enum] = ACTIONS(488), + [anon_sym_public] = ACTIONS(488), + [anon_sym_protected] = ACTIONS(488), + [anon_sym_private] = ACTIONS(488), + [anon_sym_abstract] = ACTIONS(488), + [anon_sym_strictfp] = ACTIONS(488), + [anon_sym_native] = ACTIONS(488), + [anon_sym_transient] = ACTIONS(488), + [anon_sym_volatile] = ACTIONS(488), + [anon_sym_sealed] = ACTIONS(488), + [anon_sym_non_DASHsealed] = ACTIONS(486), + [anon_sym_record] = ACTIONS(488), + [anon_sym_ATinterface] = ACTIONS(486), + [anon_sym_interface] = ACTIONS(488), + [anon_sym_byte] = ACTIONS(488), + [anon_sym_short] = ACTIONS(488), + [anon_sym_int] = ACTIONS(488), + [anon_sym_long] = ACTIONS(488), + [anon_sym_char] = ACTIONS(488), + [anon_sym_float] = ACTIONS(488), + [anon_sym_double] = ACTIONS(488), + [sym_boolean_type] = ACTIONS(488), + [sym_void_type] = ACTIONS(488), + [sym_this] = ACTIONS(488), + [sym_super] = ACTIONS(488), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [264] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(482), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [173] = { + [ts_builtin_sym_end] = ACTIONS(490), + [sym_identifier] = ACTIONS(492), + [sym_decimal_integer_literal] = ACTIONS(492), + [sym_hex_integer_literal] = ACTIONS(492), + [sym_octal_integer_literal] = ACTIONS(490), + [sym_binary_integer_literal] = ACTIONS(490), + [sym_decimal_floating_point_literal] = ACTIONS(490), + [sym_hex_floating_point_literal] = ACTIONS(492), + [sym_true] = ACTIONS(492), + [sym_false] = ACTIONS(492), + [sym_character_literal] = ACTIONS(490), + [anon_sym_DQUOTE] = ACTIONS(492), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(490), + [sym_null_literal] = ACTIONS(492), + [anon_sym_LPAREN] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_final] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(490), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_DASH_DASH] = ACTIONS(490), + [anon_sym_new] = ACTIONS(492), + [anon_sym_class] = ACTIONS(492), + [anon_sym_switch] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(490), + [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_case] = ACTIONS(492), + [anon_sym_default] = ACTIONS(492), + [anon_sym_SEMI] = ACTIONS(490), + [anon_sym_assert] = ACTIONS(492), + [anon_sym_do] = ACTIONS(492), + [anon_sym_while] = ACTIONS(492), + [anon_sym_break] = ACTIONS(492), + [anon_sym_continue] = ACTIONS(492), + [anon_sym_return] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(492), + [anon_sym_synchronized] = ACTIONS(492), + [anon_sym_throw] = ACTIONS(492), + [anon_sym_try] = ACTIONS(492), + [anon_sym_if] = ACTIONS(492), + [anon_sym_else] = ACTIONS(492), + [anon_sym_for] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(492), + [anon_sym_open] = ACTIONS(492), + [anon_sym_module] = ACTIONS(492), + [anon_sym_static] = ACTIONS(492), + [anon_sym_package] = ACTIONS(492), + [anon_sym_import] = ACTIONS(492), + [anon_sym_enum] = ACTIONS(492), + [anon_sym_public] = ACTIONS(492), + [anon_sym_protected] = ACTIONS(492), + [anon_sym_private] = ACTIONS(492), + [anon_sym_abstract] = ACTIONS(492), + [anon_sym_strictfp] = ACTIONS(492), + [anon_sym_native] = ACTIONS(492), + [anon_sym_transient] = ACTIONS(492), + [anon_sym_volatile] = ACTIONS(492), + [anon_sym_sealed] = ACTIONS(492), + [anon_sym_non_DASHsealed] = ACTIONS(490), + [anon_sym_record] = ACTIONS(492), + [anon_sym_ATinterface] = ACTIONS(490), + [anon_sym_interface] = ACTIONS(492), + [anon_sym_byte] = ACTIONS(492), + [anon_sym_short] = ACTIONS(492), + [anon_sym_int] = ACTIONS(492), + [anon_sym_long] = ACTIONS(492), + [anon_sym_char] = ACTIONS(492), + [anon_sym_float] = ACTIONS(492), + [anon_sym_double] = ACTIONS(492), + [sym_boolean_type] = ACTIONS(492), + [sym_void_type] = ACTIONS(492), + [sym_this] = ACTIONS(492), + [sym_super] = ACTIONS(492), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [174] = { + [ts_builtin_sym_end] = ACTIONS(494), + [sym_identifier] = ACTIONS(496), + [sym_decimal_integer_literal] = ACTIONS(496), + [sym_hex_integer_literal] = ACTIONS(496), + [sym_octal_integer_literal] = ACTIONS(494), + [sym_binary_integer_literal] = ACTIONS(494), + [sym_decimal_floating_point_literal] = ACTIONS(494), + [sym_hex_floating_point_literal] = ACTIONS(496), + [sym_true] = ACTIONS(496), + [sym_false] = ACTIONS(496), + [sym_character_literal] = ACTIONS(494), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(494), + [sym_null_literal] = ACTIONS(496), + [anon_sym_LPAREN] = ACTIONS(494), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_final] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_TILDE] = ACTIONS(494), + [anon_sym_PLUS_PLUS] = ACTIONS(494), + [anon_sym_DASH_DASH] = ACTIONS(494), + [anon_sym_new] = ACTIONS(496), + [anon_sym_class] = ACTIONS(496), + [anon_sym_switch] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(494), + [anon_sym_RBRACE] = ACTIONS(494), + [anon_sym_case] = ACTIONS(496), + [anon_sym_default] = ACTIONS(496), + [anon_sym_SEMI] = ACTIONS(494), + [anon_sym_assert] = ACTIONS(496), + [anon_sym_do] = ACTIONS(496), + [anon_sym_while] = ACTIONS(496), + [anon_sym_break] = ACTIONS(496), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_return] = ACTIONS(496), + [anon_sym_yield] = ACTIONS(496), + [anon_sym_synchronized] = ACTIONS(496), + [anon_sym_throw] = ACTIONS(496), + [anon_sym_try] = ACTIONS(496), + [anon_sym_if] = ACTIONS(496), + [anon_sym_else] = ACTIONS(496), + [anon_sym_for] = ACTIONS(496), + [anon_sym_AT] = ACTIONS(496), + [anon_sym_open] = ACTIONS(496), + [anon_sym_module] = ACTIONS(496), + [anon_sym_static] = ACTIONS(496), + [anon_sym_package] = ACTIONS(496), + [anon_sym_import] = ACTIONS(496), + [anon_sym_enum] = ACTIONS(496), + [anon_sym_public] = ACTIONS(496), + [anon_sym_protected] = ACTIONS(496), + [anon_sym_private] = ACTIONS(496), + [anon_sym_abstract] = ACTIONS(496), + [anon_sym_strictfp] = ACTIONS(496), + [anon_sym_native] = ACTIONS(496), + [anon_sym_transient] = ACTIONS(496), + [anon_sym_volatile] = ACTIONS(496), + [anon_sym_sealed] = ACTIONS(496), + [anon_sym_non_DASHsealed] = ACTIONS(494), + [anon_sym_record] = ACTIONS(496), + [anon_sym_ATinterface] = ACTIONS(494), + [anon_sym_interface] = ACTIONS(496), + [anon_sym_byte] = ACTIONS(496), + [anon_sym_short] = ACTIONS(496), + [anon_sym_int] = ACTIONS(496), + [anon_sym_long] = ACTIONS(496), + [anon_sym_char] = ACTIONS(496), + [anon_sym_float] = ACTIONS(496), + [anon_sym_double] = ACTIONS(496), + [sym_boolean_type] = ACTIONS(496), + [sym_void_type] = ACTIONS(496), + [sym_this] = ACTIONS(496), + [sym_super] = ACTIONS(496), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [175] = { + [ts_builtin_sym_end] = ACTIONS(498), + [sym_identifier] = ACTIONS(500), + [sym_decimal_integer_literal] = ACTIONS(500), + [sym_hex_integer_literal] = ACTIONS(500), + [sym_octal_integer_literal] = ACTIONS(498), + [sym_binary_integer_literal] = ACTIONS(498), + [sym_decimal_floating_point_literal] = ACTIONS(498), + [sym_hex_floating_point_literal] = ACTIONS(500), + [sym_true] = ACTIONS(500), + [sym_false] = ACTIONS(500), + [sym_character_literal] = ACTIONS(498), + [anon_sym_DQUOTE] = ACTIONS(500), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(498), + [sym_null_literal] = ACTIONS(500), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LT] = ACTIONS(498), + [anon_sym_PLUS] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(500), + [anon_sym_final] = ACTIONS(500), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_PLUS_PLUS] = ACTIONS(498), + [anon_sym_DASH_DASH] = ACTIONS(498), + [anon_sym_new] = ACTIONS(500), + [anon_sym_class] = ACTIONS(500), + [anon_sym_switch] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_case] = ACTIONS(500), + [anon_sym_default] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(498), + [anon_sym_assert] = ACTIONS(500), + [anon_sym_do] = ACTIONS(500), + [anon_sym_while] = ACTIONS(500), + [anon_sym_break] = ACTIONS(500), + [anon_sym_continue] = ACTIONS(500), + [anon_sym_return] = ACTIONS(500), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_synchronized] = ACTIONS(500), + [anon_sym_throw] = ACTIONS(500), + [anon_sym_try] = ACTIONS(500), + [anon_sym_if] = ACTIONS(500), + [anon_sym_else] = ACTIONS(500), + [anon_sym_for] = ACTIONS(500), + [anon_sym_AT] = ACTIONS(500), + [anon_sym_open] = ACTIONS(500), + [anon_sym_module] = ACTIONS(500), + [anon_sym_static] = ACTIONS(500), + [anon_sym_package] = ACTIONS(500), + [anon_sym_import] = ACTIONS(500), + [anon_sym_enum] = ACTIONS(500), + [anon_sym_public] = ACTIONS(500), + [anon_sym_protected] = ACTIONS(500), + [anon_sym_private] = ACTIONS(500), + [anon_sym_abstract] = ACTIONS(500), + [anon_sym_strictfp] = ACTIONS(500), + [anon_sym_native] = ACTIONS(500), + [anon_sym_transient] = ACTIONS(500), + [anon_sym_volatile] = ACTIONS(500), + [anon_sym_sealed] = ACTIONS(500), + [anon_sym_non_DASHsealed] = ACTIONS(498), + [anon_sym_record] = ACTIONS(500), + [anon_sym_ATinterface] = ACTIONS(498), + [anon_sym_interface] = ACTIONS(500), + [anon_sym_byte] = ACTIONS(500), + [anon_sym_short] = ACTIONS(500), + [anon_sym_int] = ACTIONS(500), + [anon_sym_long] = ACTIONS(500), + [anon_sym_char] = ACTIONS(500), + [anon_sym_float] = ACTIONS(500), + [anon_sym_double] = ACTIONS(500), + [sym_boolean_type] = ACTIONS(500), + [sym_void_type] = ACTIONS(500), + [sym_this] = ACTIONS(500), + [sym_super] = ACTIONS(500), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [176] = { + [ts_builtin_sym_end] = ACTIONS(502), + [sym_identifier] = ACTIONS(504), + [sym_decimal_integer_literal] = ACTIONS(504), + [sym_hex_integer_literal] = ACTIONS(504), + [sym_octal_integer_literal] = ACTIONS(502), + [sym_binary_integer_literal] = ACTIONS(502), + [sym_decimal_floating_point_literal] = ACTIONS(502), + [sym_hex_floating_point_literal] = ACTIONS(504), + [sym_true] = ACTIONS(504), + [sym_false] = ACTIONS(504), + [sym_character_literal] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(504), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(502), + [sym_null_literal] = ACTIONS(504), + [anon_sym_LPAREN] = ACTIONS(502), + [anon_sym_LT] = ACTIONS(502), + [anon_sym_PLUS] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_final] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_TILDE] = ACTIONS(502), + [anon_sym_PLUS_PLUS] = ACTIONS(502), + [anon_sym_DASH_DASH] = ACTIONS(502), + [anon_sym_new] = ACTIONS(504), + [anon_sym_class] = ACTIONS(504), + [anon_sym_switch] = ACTIONS(504), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(502), + [anon_sym_case] = ACTIONS(504), + [anon_sym_default] = ACTIONS(504), + [anon_sym_SEMI] = ACTIONS(502), + [anon_sym_assert] = ACTIONS(504), + [anon_sym_do] = ACTIONS(504), + [anon_sym_while] = ACTIONS(504), + [anon_sym_break] = ACTIONS(504), + [anon_sym_continue] = ACTIONS(504), + [anon_sym_return] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(504), + [anon_sym_synchronized] = ACTIONS(504), + [anon_sym_throw] = ACTIONS(504), + [anon_sym_try] = ACTIONS(504), + [anon_sym_if] = ACTIONS(504), + [anon_sym_else] = ACTIONS(504), + [anon_sym_for] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_open] = ACTIONS(504), + [anon_sym_module] = ACTIONS(504), + [anon_sym_static] = ACTIONS(504), + [anon_sym_package] = ACTIONS(504), + [anon_sym_import] = ACTIONS(504), + [anon_sym_enum] = ACTIONS(504), + [anon_sym_public] = ACTIONS(504), + [anon_sym_protected] = ACTIONS(504), + [anon_sym_private] = ACTIONS(504), + [anon_sym_abstract] = ACTIONS(504), + [anon_sym_strictfp] = ACTIONS(504), + [anon_sym_native] = ACTIONS(504), + [anon_sym_transient] = ACTIONS(504), + [anon_sym_volatile] = ACTIONS(504), + [anon_sym_sealed] = ACTIONS(504), + [anon_sym_non_DASHsealed] = ACTIONS(502), + [anon_sym_record] = ACTIONS(504), + [anon_sym_ATinterface] = ACTIONS(502), + [anon_sym_interface] = ACTIONS(504), + [anon_sym_byte] = ACTIONS(504), + [anon_sym_short] = ACTIONS(504), + [anon_sym_int] = ACTIONS(504), + [anon_sym_long] = ACTIONS(504), + [anon_sym_char] = ACTIONS(504), + [anon_sym_float] = ACTIONS(504), + [anon_sym_double] = ACTIONS(504), + [sym_boolean_type] = ACTIONS(504), + [sym_void_type] = ACTIONS(504), + [sym_this] = ACTIONS(504), + [sym_super] = ACTIONS(504), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [177] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(615), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31380,72 +29515,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [265] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(446), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [178] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(641), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31455,72 +29594,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [266] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(431), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [179] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(582), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31530,72 +29673,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [267] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(483), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [180] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(586), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31605,72 +29752,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [268] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(439), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [181] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(593), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31680,72 +29831,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [269] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(485), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [182] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(521), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31755,72 +29910,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [270] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(517), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [183] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(594), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31830,72 +29989,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [271] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(486), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [184] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(597), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -31905,222 +30068,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [272] = { - [sym_identifier] = ACTIONS(693), - [sym_decimal_integer_literal] = ACTIONS(693), - [sym_hex_integer_literal] = ACTIONS(693), - [sym_octal_integer_literal] = ACTIONS(695), - [sym_binary_integer_literal] = ACTIONS(695), - [sym_decimal_floating_point_literal] = ACTIONS(695), - [sym_hex_floating_point_literal] = ACTIONS(693), - [sym_true] = ACTIONS(693), - [sym_false] = ACTIONS(693), - [sym_character_literal] = ACTIONS(695), - [sym_string_literal] = ACTIONS(693), - [sym_text_block] = ACTIONS(695), - [sym_null_literal] = ACTIONS(693), - [anon_sym_LPAREN] = ACTIONS(695), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_TILDE] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(695), - [anon_sym_DASH_DASH] = ACTIONS(695), - [anon_sym_new] = ACTIONS(693), - [anon_sym_class] = ACTIONS(693), - [anon_sym_switch] = ACTIONS(693), - [anon_sym_LBRACE] = ACTIONS(695), - [anon_sym_RBRACE] = ACTIONS(695), - [anon_sym_case] = ACTIONS(693), - [anon_sym_default] = ACTIONS(693), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_assert] = ACTIONS(693), - [anon_sym_do] = ACTIONS(693), - [anon_sym_while] = ACTIONS(693), - [anon_sym_break] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(693), - [anon_sym_return] = ACTIONS(693), - [anon_sym_yield] = ACTIONS(693), - [anon_sym_synchronized] = ACTIONS(693), - [anon_sym_throw] = ACTIONS(693), - [anon_sym_try] = ACTIONS(693), - [anon_sym_if] = ACTIONS(693), - [anon_sym_for] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(693), - [anon_sym_open] = ACTIONS(693), - [anon_sym_module] = ACTIONS(693), - [anon_sym_static] = ACTIONS(693), - [anon_sym_package] = ACTIONS(693), - [anon_sym_import] = ACTIONS(693), - [anon_sym_enum] = ACTIONS(693), - [anon_sym_public] = ACTIONS(693), - [anon_sym_protected] = ACTIONS(693), - [anon_sym_private] = ACTIONS(693), - [anon_sym_abstract] = ACTIONS(693), - [anon_sym_final] = ACTIONS(693), - [anon_sym_strictfp] = ACTIONS(693), - [anon_sym_native] = ACTIONS(693), - [anon_sym_transient] = ACTIONS(693), - [anon_sym_volatile] = ACTIONS(693), - [anon_sym_sealed] = ACTIONS(693), - [anon_sym_non_DASHsealed] = ACTIONS(695), - [anon_sym_ATinterface] = ACTIONS(695), - [anon_sym_interface] = ACTIONS(693), - [anon_sym_byte] = ACTIONS(693), - [anon_sym_short] = ACTIONS(693), - [anon_sym_int] = ACTIONS(693), - [anon_sym_long] = ACTIONS(693), - [anon_sym_char] = ACTIONS(693), - [anon_sym_float] = ACTIONS(693), - [anon_sym_double] = ACTIONS(693), - [sym_boolean_type] = ACTIONS(693), - [sym_void_type] = ACTIONS(693), - [sym_this] = ACTIONS(693), - [sym_super] = ACTIONS(693), + [185] = { + [ts_builtin_sym_end] = ACTIONS(506), + [sym_identifier] = ACTIONS(508), + [sym_decimal_integer_literal] = ACTIONS(508), + [sym_hex_integer_literal] = ACTIONS(508), + [sym_octal_integer_literal] = ACTIONS(506), + [sym_binary_integer_literal] = ACTIONS(506), + [sym_decimal_floating_point_literal] = ACTIONS(506), + [sym_hex_floating_point_literal] = ACTIONS(508), + [sym_true] = ACTIONS(508), + [sym_false] = ACTIONS(508), + [sym_character_literal] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(508), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(506), + [sym_null_literal] = ACTIONS(508), + [anon_sym_LPAREN] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(506), + [anon_sym_PLUS] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_final] = ACTIONS(508), + [anon_sym_BANG] = ACTIONS(506), + [anon_sym_TILDE] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(506), + [anon_sym_DASH_DASH] = ACTIONS(506), + [anon_sym_new] = ACTIONS(508), + [anon_sym_class] = ACTIONS(508), + [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_SEMI] = ACTIONS(506), + [anon_sym_assert] = ACTIONS(508), + [anon_sym_do] = ACTIONS(508), + [anon_sym_while] = ACTIONS(508), + [anon_sym_break] = ACTIONS(508), + [anon_sym_continue] = ACTIONS(508), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(508), + [anon_sym_synchronized] = ACTIONS(508), + [anon_sym_throw] = ACTIONS(508), + [anon_sym_try] = ACTIONS(508), + [anon_sym_if] = ACTIONS(508), + [anon_sym_else] = ACTIONS(508), + [anon_sym_for] = ACTIONS(508), + [anon_sym_AT] = ACTIONS(508), + [anon_sym_open] = ACTIONS(508), + [anon_sym_module] = ACTIONS(508), + [anon_sym_static] = ACTIONS(508), + [anon_sym_package] = ACTIONS(508), + [anon_sym_import] = ACTIONS(508), + [anon_sym_enum] = ACTIONS(508), + [anon_sym_public] = ACTIONS(508), + [anon_sym_protected] = ACTIONS(508), + [anon_sym_private] = ACTIONS(508), + [anon_sym_abstract] = ACTIONS(508), + [anon_sym_strictfp] = ACTIONS(508), + [anon_sym_native] = ACTIONS(508), + [anon_sym_transient] = ACTIONS(508), + [anon_sym_volatile] = ACTIONS(508), + [anon_sym_sealed] = ACTIONS(508), + [anon_sym_non_DASHsealed] = ACTIONS(506), + [anon_sym_record] = ACTIONS(508), + [anon_sym_ATinterface] = ACTIONS(506), + [anon_sym_interface] = ACTIONS(508), + [anon_sym_byte] = ACTIONS(508), + [anon_sym_short] = ACTIONS(508), + [anon_sym_int] = ACTIONS(508), + [anon_sym_long] = ACTIONS(508), + [anon_sym_char] = ACTIONS(508), + [anon_sym_float] = ACTIONS(508), + [anon_sym_double] = ACTIONS(508), + [sym_boolean_type] = ACTIONS(508), + [sym_void_type] = ACTIONS(508), + [sym_this] = ACTIONS(508), + [sym_super] = ACTIONS(508), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [273] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(542), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), - [sym_decimal_integer_literal] = ACTIONS(9), - [sym_hex_integer_literal] = ACTIONS(9), - [sym_octal_integer_literal] = ACTIONS(11), - [sym_binary_integer_literal] = ACTIONS(11), - [sym_decimal_floating_point_literal] = ACTIONS(11), - [sym_hex_floating_point_literal] = ACTIONS(9), - [sym_true] = ACTIONS(9), - [sym_false] = ACTIONS(9), - [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), - [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [186] = { + [ts_builtin_sym_end] = ACTIONS(510), + [sym_identifier] = ACTIONS(512), + [sym_decimal_integer_literal] = ACTIONS(512), + [sym_hex_integer_literal] = ACTIONS(512), + [sym_octal_integer_literal] = ACTIONS(510), + [sym_binary_integer_literal] = ACTIONS(510), + [sym_decimal_floating_point_literal] = ACTIONS(510), + [sym_hex_floating_point_literal] = ACTIONS(512), + [sym_true] = ACTIONS(512), + [sym_false] = ACTIONS(512), + [sym_character_literal] = ACTIONS(510), + [anon_sym_DQUOTE] = ACTIONS(512), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(510), + [sym_null_literal] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_LT] = ACTIONS(510), + [anon_sym_PLUS] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(512), + [anon_sym_final] = ACTIONS(512), + [anon_sym_BANG] = ACTIONS(510), + [anon_sym_TILDE] = ACTIONS(510), + [anon_sym_PLUS_PLUS] = ACTIONS(510), + [anon_sym_DASH_DASH] = ACTIONS(510), + [anon_sym_new] = ACTIONS(512), + [anon_sym_class] = ACTIONS(512), + [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_SEMI] = ACTIONS(510), + [anon_sym_assert] = ACTIONS(512), + [anon_sym_do] = ACTIONS(512), + [anon_sym_while] = ACTIONS(512), + [anon_sym_break] = ACTIONS(512), + [anon_sym_continue] = ACTIONS(512), + [anon_sym_return] = ACTIONS(512), + [anon_sym_yield] = ACTIONS(512), + [anon_sym_synchronized] = ACTIONS(512), + [anon_sym_throw] = ACTIONS(512), + [anon_sym_try] = ACTIONS(512), + [anon_sym_if] = ACTIONS(512), + [anon_sym_else] = ACTIONS(512), + [anon_sym_for] = ACTIONS(512), + [anon_sym_AT] = ACTIONS(512), + [anon_sym_open] = ACTIONS(512), + [anon_sym_module] = ACTIONS(512), + [anon_sym_static] = ACTIONS(512), + [anon_sym_package] = ACTIONS(512), + [anon_sym_import] = ACTIONS(512), + [anon_sym_enum] = ACTIONS(512), + [anon_sym_public] = ACTIONS(512), + [anon_sym_protected] = ACTIONS(512), + [anon_sym_private] = ACTIONS(512), + [anon_sym_abstract] = ACTIONS(512), + [anon_sym_strictfp] = ACTIONS(512), + [anon_sym_native] = ACTIONS(512), + [anon_sym_transient] = ACTIONS(512), + [anon_sym_volatile] = ACTIONS(512), + [anon_sym_sealed] = ACTIONS(512), + [anon_sym_non_DASHsealed] = ACTIONS(510), + [anon_sym_record] = ACTIONS(512), + [anon_sym_ATinterface] = ACTIONS(510), + [anon_sym_interface] = ACTIONS(512), + [anon_sym_byte] = ACTIONS(512), + [anon_sym_short] = ACTIONS(512), + [anon_sym_int] = ACTIONS(512), + [anon_sym_long] = ACTIONS(512), + [anon_sym_char] = ACTIONS(512), + [anon_sym_float] = ACTIONS(512), + [anon_sym_double] = ACTIONS(512), + [sym_boolean_type] = ACTIONS(512), + [sym_void_type] = ACTIONS(512), + [sym_this] = ACTIONS(512), + [sym_super] = ACTIONS(512), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [274] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(521), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [187] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(523), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32130,72 +30305,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [275] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(466), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [188] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(600), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32205,72 +30384,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [276] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(506), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [189] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(602), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32280,72 +30463,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [277] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(491), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [190] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(614), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32355,72 +30542,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [278] = { - [sym__literal] = STATE(381), + [191] = { + [ts_builtin_sym_end] = ACTIONS(514), + [sym_identifier] = ACTIONS(516), + [sym_decimal_integer_literal] = ACTIONS(516), + [sym_hex_integer_literal] = ACTIONS(516), + [sym_octal_integer_literal] = ACTIONS(514), + [sym_binary_integer_literal] = ACTIONS(514), + [sym_decimal_floating_point_literal] = ACTIONS(514), + [sym_hex_floating_point_literal] = ACTIONS(516), + [sym_true] = ACTIONS(516), + [sym_false] = ACTIONS(516), + [sym_character_literal] = ACTIONS(514), + [anon_sym_DQUOTE] = ACTIONS(516), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(514), + [sym_null_literal] = ACTIONS(516), + [anon_sym_LPAREN] = ACTIONS(514), + [anon_sym_LT] = ACTIONS(514), + [anon_sym_PLUS] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(516), + [anon_sym_final] = ACTIONS(516), + [anon_sym_BANG] = ACTIONS(514), + [anon_sym_TILDE] = ACTIONS(514), + [anon_sym_PLUS_PLUS] = ACTIONS(514), + [anon_sym_DASH_DASH] = ACTIONS(514), + [anon_sym_new] = ACTIONS(516), + [anon_sym_class] = ACTIONS(516), + [anon_sym_switch] = ACTIONS(516), + [anon_sym_LBRACE] = ACTIONS(514), + [anon_sym_RBRACE] = ACTIONS(514), + [anon_sym_case] = ACTIONS(516), + [anon_sym_default] = ACTIONS(516), + [anon_sym_SEMI] = ACTIONS(514), + [anon_sym_assert] = ACTIONS(516), + [anon_sym_do] = ACTIONS(516), + [anon_sym_while] = ACTIONS(516), + [anon_sym_break] = ACTIONS(516), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_return] = ACTIONS(516), + [anon_sym_yield] = ACTIONS(516), + [anon_sym_synchronized] = ACTIONS(516), + [anon_sym_throw] = ACTIONS(516), + [anon_sym_try] = ACTIONS(516), + [anon_sym_if] = ACTIONS(516), + [anon_sym_else] = ACTIONS(516), + [anon_sym_for] = ACTIONS(516), + [anon_sym_AT] = ACTIONS(516), + [anon_sym_open] = ACTIONS(516), + [anon_sym_module] = ACTIONS(516), + [anon_sym_static] = ACTIONS(516), + [anon_sym_package] = ACTIONS(516), + [anon_sym_import] = ACTIONS(516), + [anon_sym_enum] = ACTIONS(516), + [anon_sym_public] = ACTIONS(516), + [anon_sym_protected] = ACTIONS(516), + [anon_sym_private] = ACTIONS(516), + [anon_sym_abstract] = ACTIONS(516), + [anon_sym_strictfp] = ACTIONS(516), + [anon_sym_native] = ACTIONS(516), + [anon_sym_transient] = ACTIONS(516), + [anon_sym_volatile] = ACTIONS(516), + [anon_sym_sealed] = ACTIONS(516), + [anon_sym_non_DASHsealed] = ACTIONS(514), + [anon_sym_record] = ACTIONS(516), + [anon_sym_ATinterface] = ACTIONS(514), + [anon_sym_interface] = ACTIONS(516), + [anon_sym_byte] = ACTIONS(516), + [anon_sym_short] = ACTIONS(516), + [anon_sym_int] = ACTIONS(516), + [anon_sym_long] = ACTIONS(516), + [anon_sym_char] = ACTIONS(516), + [anon_sym_float] = ACTIONS(516), + [anon_sym_double] = ACTIONS(516), + [sym_boolean_type] = ACTIONS(516), + [sym_void_type] = ACTIONS(516), + [sym_this] = ACTIONS(516), + [sym_super] = ACTIONS(516), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [192] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), [sym_expression] = STATE(523), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32430,72 +30700,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [279] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(546), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [193] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(627), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32505,72 +30779,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [280] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(538), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [194] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(601), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32580,72 +30858,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [281] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(439), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [195] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(518), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32655,72 +30937,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [282] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(448), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [196] = { + [ts_builtin_sym_end] = ACTIONS(518), + [sym_identifier] = ACTIONS(520), + [sym_decimal_integer_literal] = ACTIONS(520), + [sym_hex_integer_literal] = ACTIONS(520), + [sym_octal_integer_literal] = ACTIONS(518), + [sym_binary_integer_literal] = ACTIONS(518), + [sym_decimal_floating_point_literal] = ACTIONS(518), + [sym_hex_floating_point_literal] = ACTIONS(520), + [sym_true] = ACTIONS(520), + [sym_false] = ACTIONS(520), + [sym_character_literal] = ACTIONS(518), + [anon_sym_DQUOTE] = ACTIONS(520), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(518), + [sym_null_literal] = ACTIONS(520), + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LT] = ACTIONS(518), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_final] = ACTIONS(520), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_PLUS_PLUS] = ACTIONS(518), + [anon_sym_DASH_DASH] = ACTIONS(518), + [anon_sym_new] = ACTIONS(520), + [anon_sym_class] = ACTIONS(520), + [anon_sym_switch] = ACTIONS(520), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_case] = ACTIONS(520), + [anon_sym_default] = ACTIONS(520), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_assert] = ACTIONS(520), + [anon_sym_do] = ACTIONS(520), + [anon_sym_while] = ACTIONS(520), + [anon_sym_break] = ACTIONS(520), + [anon_sym_continue] = ACTIONS(520), + [anon_sym_return] = ACTIONS(520), + [anon_sym_yield] = ACTIONS(520), + [anon_sym_synchronized] = ACTIONS(520), + [anon_sym_throw] = ACTIONS(520), + [anon_sym_try] = ACTIONS(520), + [anon_sym_if] = ACTIONS(520), + [anon_sym_else] = ACTIONS(520), + [anon_sym_for] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_open] = ACTIONS(520), + [anon_sym_module] = ACTIONS(520), + [anon_sym_static] = ACTIONS(520), + [anon_sym_package] = ACTIONS(520), + [anon_sym_import] = ACTIONS(520), + [anon_sym_enum] = ACTIONS(520), + [anon_sym_public] = ACTIONS(520), + [anon_sym_protected] = ACTIONS(520), + [anon_sym_private] = ACTIONS(520), + [anon_sym_abstract] = ACTIONS(520), + [anon_sym_strictfp] = ACTIONS(520), + [anon_sym_native] = ACTIONS(520), + [anon_sym_transient] = ACTIONS(520), + [anon_sym_volatile] = ACTIONS(520), + [anon_sym_sealed] = ACTIONS(520), + [anon_sym_non_DASHsealed] = ACTIONS(518), + [anon_sym_record] = ACTIONS(520), + [anon_sym_ATinterface] = ACTIONS(518), + [anon_sym_interface] = ACTIONS(520), + [anon_sym_byte] = ACTIONS(520), + [anon_sym_short] = ACTIONS(520), + [anon_sym_int] = ACTIONS(520), + [anon_sym_long] = ACTIONS(520), + [anon_sym_char] = ACTIONS(520), + [anon_sym_float] = ACTIONS(520), + [anon_sym_double] = ACTIONS(520), + [sym_boolean_type] = ACTIONS(520), + [sym_void_type] = ACTIONS(520), + [sym_this] = ACTIONS(520), + [sym_super] = ACTIONS(520), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [197] = { + [ts_builtin_sym_end] = ACTIONS(522), + [sym_identifier] = ACTIONS(524), + [sym_decimal_integer_literal] = ACTIONS(524), + [sym_hex_integer_literal] = ACTIONS(524), + [sym_octal_integer_literal] = ACTIONS(522), + [sym_binary_integer_literal] = ACTIONS(522), + [sym_decimal_floating_point_literal] = ACTIONS(522), + [sym_hex_floating_point_literal] = ACTIONS(524), + [sym_true] = ACTIONS(524), + [sym_false] = ACTIONS(524), + [sym_character_literal] = ACTIONS(522), + [anon_sym_DQUOTE] = ACTIONS(524), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(522), + [sym_null_literal] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_LT] = ACTIONS(522), + [anon_sym_PLUS] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_final] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(522), + [anon_sym_TILDE] = ACTIONS(522), + [anon_sym_PLUS_PLUS] = ACTIONS(522), + [anon_sym_DASH_DASH] = ACTIONS(522), + [anon_sym_new] = ACTIONS(524), + [anon_sym_class] = ACTIONS(524), + [anon_sym_switch] = ACTIONS(524), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_RBRACE] = ACTIONS(522), + [anon_sym_case] = ACTIONS(524), + [anon_sym_default] = ACTIONS(524), + [anon_sym_SEMI] = ACTIONS(522), + [anon_sym_assert] = ACTIONS(524), + [anon_sym_do] = ACTIONS(524), + [anon_sym_while] = ACTIONS(524), + [anon_sym_break] = ACTIONS(524), + [anon_sym_continue] = ACTIONS(524), + [anon_sym_return] = ACTIONS(524), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_synchronized] = ACTIONS(524), + [anon_sym_throw] = ACTIONS(524), + [anon_sym_try] = ACTIONS(524), + [anon_sym_if] = ACTIONS(524), + [anon_sym_else] = ACTIONS(524), + [anon_sym_for] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(524), + [anon_sym_open] = ACTIONS(524), + [anon_sym_module] = ACTIONS(524), + [anon_sym_static] = ACTIONS(524), + [anon_sym_package] = ACTIONS(524), + [anon_sym_import] = ACTIONS(524), + [anon_sym_enum] = ACTIONS(524), + [anon_sym_public] = ACTIONS(524), + [anon_sym_protected] = ACTIONS(524), + [anon_sym_private] = ACTIONS(524), + [anon_sym_abstract] = ACTIONS(524), + [anon_sym_strictfp] = ACTIONS(524), + [anon_sym_native] = ACTIONS(524), + [anon_sym_transient] = ACTIONS(524), + [anon_sym_volatile] = ACTIONS(524), + [anon_sym_sealed] = ACTIONS(524), + [anon_sym_non_DASHsealed] = ACTIONS(522), + [anon_sym_record] = ACTIONS(524), + [anon_sym_ATinterface] = ACTIONS(522), + [anon_sym_interface] = ACTIONS(524), + [anon_sym_byte] = ACTIONS(524), + [anon_sym_short] = ACTIONS(524), + [anon_sym_int] = ACTIONS(524), + [anon_sym_long] = ACTIONS(524), + [anon_sym_char] = ACTIONS(524), + [anon_sym_float] = ACTIONS(524), + [anon_sym_double] = ACTIONS(524), + [sym_boolean_type] = ACTIONS(524), + [sym_void_type] = ACTIONS(524), + [sym_this] = ACTIONS(524), + [sym_super] = ACTIONS(524), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [198] = { + [ts_builtin_sym_end] = ACTIONS(526), + [sym_identifier] = ACTIONS(528), + [sym_decimal_integer_literal] = ACTIONS(528), + [sym_hex_integer_literal] = ACTIONS(528), + [sym_octal_integer_literal] = ACTIONS(526), + [sym_binary_integer_literal] = ACTIONS(526), + [sym_decimal_floating_point_literal] = ACTIONS(526), + [sym_hex_floating_point_literal] = ACTIONS(528), + [sym_true] = ACTIONS(528), + [sym_false] = ACTIONS(528), + [sym_character_literal] = ACTIONS(526), + [anon_sym_DQUOTE] = ACTIONS(528), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(526), + [sym_null_literal] = ACTIONS(528), + [anon_sym_LPAREN] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(526), + [anon_sym_PLUS] = ACTIONS(528), + [anon_sym_DASH] = ACTIONS(528), + [anon_sym_final] = ACTIONS(528), + [anon_sym_BANG] = ACTIONS(526), + [anon_sym_TILDE] = ACTIONS(526), + [anon_sym_PLUS_PLUS] = ACTIONS(526), + [anon_sym_DASH_DASH] = ACTIONS(526), + [anon_sym_new] = ACTIONS(528), + [anon_sym_class] = ACTIONS(528), + [anon_sym_switch] = ACTIONS(528), + [anon_sym_LBRACE] = ACTIONS(526), + [anon_sym_RBRACE] = ACTIONS(526), + [anon_sym_case] = ACTIONS(528), + [anon_sym_default] = ACTIONS(528), + [anon_sym_SEMI] = ACTIONS(526), + [anon_sym_assert] = ACTIONS(528), + [anon_sym_do] = ACTIONS(528), + [anon_sym_while] = ACTIONS(528), + [anon_sym_break] = ACTIONS(528), + [anon_sym_continue] = ACTIONS(528), + [anon_sym_return] = ACTIONS(528), + [anon_sym_yield] = ACTIONS(528), + [anon_sym_synchronized] = ACTIONS(528), + [anon_sym_throw] = ACTIONS(528), + [anon_sym_try] = ACTIONS(528), + [anon_sym_if] = ACTIONS(528), + [anon_sym_else] = ACTIONS(528), + [anon_sym_for] = ACTIONS(528), + [anon_sym_AT] = ACTIONS(528), + [anon_sym_open] = ACTIONS(528), + [anon_sym_module] = ACTIONS(528), + [anon_sym_static] = ACTIONS(528), + [anon_sym_package] = ACTIONS(528), + [anon_sym_import] = ACTIONS(528), + [anon_sym_enum] = ACTIONS(528), + [anon_sym_public] = ACTIONS(528), + [anon_sym_protected] = ACTIONS(528), + [anon_sym_private] = ACTIONS(528), + [anon_sym_abstract] = ACTIONS(528), + [anon_sym_strictfp] = ACTIONS(528), + [anon_sym_native] = ACTIONS(528), + [anon_sym_transient] = ACTIONS(528), + [anon_sym_volatile] = ACTIONS(528), + [anon_sym_sealed] = ACTIONS(528), + [anon_sym_non_DASHsealed] = ACTIONS(526), + [anon_sym_record] = ACTIONS(528), + [anon_sym_ATinterface] = ACTIONS(526), + [anon_sym_interface] = ACTIONS(528), + [anon_sym_byte] = ACTIONS(528), + [anon_sym_short] = ACTIONS(528), + [anon_sym_int] = ACTIONS(528), + [anon_sym_long] = ACTIONS(528), + [anon_sym_char] = ACTIONS(528), + [anon_sym_float] = ACTIONS(528), + [anon_sym_double] = ACTIONS(528), + [sym_boolean_type] = ACTIONS(528), + [sym_void_type] = ACTIONS(528), + [sym_this] = ACTIONS(528), + [sym_super] = ACTIONS(528), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [199] = { + [ts_builtin_sym_end] = ACTIONS(530), + [sym_identifier] = ACTIONS(532), + [sym_decimal_integer_literal] = ACTIONS(532), + [sym_hex_integer_literal] = ACTIONS(532), + [sym_octal_integer_literal] = ACTIONS(530), + [sym_binary_integer_literal] = ACTIONS(530), + [sym_decimal_floating_point_literal] = ACTIONS(530), + [sym_hex_floating_point_literal] = ACTIONS(532), + [sym_true] = ACTIONS(532), + [sym_false] = ACTIONS(532), + [sym_character_literal] = ACTIONS(530), + [anon_sym_DQUOTE] = ACTIONS(532), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(530), + [sym_null_literal] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(530), + [anon_sym_LT] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(532), + [anon_sym_DASH] = ACTIONS(532), + [anon_sym_final] = ACTIONS(532), + [anon_sym_BANG] = ACTIONS(530), + [anon_sym_TILDE] = ACTIONS(530), + [anon_sym_PLUS_PLUS] = ACTIONS(530), + [anon_sym_DASH_DASH] = ACTIONS(530), + [anon_sym_new] = ACTIONS(532), + [anon_sym_class] = ACTIONS(532), + [anon_sym_switch] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_RBRACE] = ACTIONS(530), + [anon_sym_case] = ACTIONS(532), + [anon_sym_default] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_assert] = ACTIONS(532), + [anon_sym_do] = ACTIONS(532), + [anon_sym_while] = ACTIONS(532), + [anon_sym_break] = ACTIONS(532), + [anon_sym_continue] = ACTIONS(532), + [anon_sym_return] = ACTIONS(532), + [anon_sym_yield] = ACTIONS(532), + [anon_sym_synchronized] = ACTIONS(532), + [anon_sym_throw] = ACTIONS(532), + [anon_sym_try] = ACTIONS(532), + [anon_sym_if] = ACTIONS(532), + [anon_sym_else] = ACTIONS(532), + [anon_sym_for] = ACTIONS(532), + [anon_sym_AT] = ACTIONS(532), + [anon_sym_open] = ACTIONS(532), + [anon_sym_module] = ACTIONS(532), + [anon_sym_static] = ACTIONS(532), + [anon_sym_package] = ACTIONS(532), + [anon_sym_import] = ACTIONS(532), + [anon_sym_enum] = ACTIONS(532), + [anon_sym_public] = ACTIONS(532), + [anon_sym_protected] = ACTIONS(532), + [anon_sym_private] = ACTIONS(532), + [anon_sym_abstract] = ACTIONS(532), + [anon_sym_strictfp] = ACTIONS(532), + [anon_sym_native] = ACTIONS(532), + [anon_sym_transient] = ACTIONS(532), + [anon_sym_volatile] = ACTIONS(532), + [anon_sym_sealed] = ACTIONS(532), + [anon_sym_non_DASHsealed] = ACTIONS(530), + [anon_sym_record] = ACTIONS(532), + [anon_sym_ATinterface] = ACTIONS(530), + [anon_sym_interface] = ACTIONS(532), + [anon_sym_byte] = ACTIONS(532), + [anon_sym_short] = ACTIONS(532), + [anon_sym_int] = ACTIONS(532), + [anon_sym_long] = ACTIONS(532), + [anon_sym_char] = ACTIONS(532), + [anon_sym_float] = ACTIONS(532), + [anon_sym_double] = ACTIONS(532), + [sym_boolean_type] = ACTIONS(532), + [sym_void_type] = ACTIONS(532), + [sym_this] = ACTIONS(532), + [sym_super] = ACTIONS(532), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [200] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(522), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32730,72 +31332,313 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [283] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(548), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [201] = { + [ts_builtin_sym_end] = ACTIONS(534), + [sym_identifier] = ACTIONS(536), + [sym_decimal_integer_literal] = ACTIONS(536), + [sym_hex_integer_literal] = ACTIONS(536), + [sym_octal_integer_literal] = ACTIONS(534), + [sym_binary_integer_literal] = ACTIONS(534), + [sym_decimal_floating_point_literal] = ACTIONS(534), + [sym_hex_floating_point_literal] = ACTIONS(536), + [sym_true] = ACTIONS(536), + [sym_false] = ACTIONS(536), + [sym_character_literal] = ACTIONS(534), + [anon_sym_DQUOTE] = ACTIONS(536), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(534), + [sym_null_literal] = ACTIONS(536), + [anon_sym_LPAREN] = ACTIONS(534), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_PLUS] = ACTIONS(536), + [anon_sym_DASH] = ACTIONS(536), + [anon_sym_final] = ACTIONS(536), + [anon_sym_BANG] = ACTIONS(534), + [anon_sym_TILDE] = ACTIONS(534), + [anon_sym_PLUS_PLUS] = ACTIONS(534), + [anon_sym_DASH_DASH] = ACTIONS(534), + [anon_sym_new] = ACTIONS(536), + [anon_sym_class] = ACTIONS(536), + [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_SEMI] = ACTIONS(534), + [anon_sym_assert] = ACTIONS(536), + [anon_sym_do] = ACTIONS(536), + [anon_sym_while] = ACTIONS(536), + [anon_sym_break] = ACTIONS(536), + [anon_sym_continue] = ACTIONS(536), + [anon_sym_return] = ACTIONS(536), + [anon_sym_yield] = ACTIONS(536), + [anon_sym_synchronized] = ACTIONS(536), + [anon_sym_throw] = ACTIONS(536), + [anon_sym_try] = ACTIONS(536), + [anon_sym_if] = ACTIONS(536), + [anon_sym_else] = ACTIONS(536), + [anon_sym_for] = ACTIONS(536), + [anon_sym_AT] = ACTIONS(536), + [anon_sym_open] = ACTIONS(536), + [anon_sym_module] = ACTIONS(536), + [anon_sym_static] = ACTIONS(536), + [anon_sym_package] = ACTIONS(536), + [anon_sym_import] = ACTIONS(536), + [anon_sym_enum] = ACTIONS(536), + [anon_sym_public] = ACTIONS(536), + [anon_sym_protected] = ACTIONS(536), + [anon_sym_private] = ACTIONS(536), + [anon_sym_abstract] = ACTIONS(536), + [anon_sym_strictfp] = ACTIONS(536), + [anon_sym_native] = ACTIONS(536), + [anon_sym_transient] = ACTIONS(536), + [anon_sym_volatile] = ACTIONS(536), + [anon_sym_sealed] = ACTIONS(536), + [anon_sym_non_DASHsealed] = ACTIONS(534), + [anon_sym_record] = ACTIONS(536), + [anon_sym_ATinterface] = ACTIONS(534), + [anon_sym_interface] = ACTIONS(536), + [anon_sym_byte] = ACTIONS(536), + [anon_sym_short] = ACTIONS(536), + [anon_sym_int] = ACTIONS(536), + [anon_sym_long] = ACTIONS(536), + [anon_sym_char] = ACTIONS(536), + [anon_sym_float] = ACTIONS(536), + [anon_sym_double] = ACTIONS(536), + [sym_boolean_type] = ACTIONS(536), + [sym_void_type] = ACTIONS(536), + [sym_this] = ACTIONS(536), + [sym_super] = ACTIONS(536), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [202] = { + [ts_builtin_sym_end] = ACTIONS(538), + [sym_identifier] = ACTIONS(540), + [sym_decimal_integer_literal] = ACTIONS(540), + [sym_hex_integer_literal] = ACTIONS(540), + [sym_octal_integer_literal] = ACTIONS(538), + [sym_binary_integer_literal] = ACTIONS(538), + [sym_decimal_floating_point_literal] = ACTIONS(538), + [sym_hex_floating_point_literal] = ACTIONS(540), + [sym_true] = ACTIONS(540), + [sym_false] = ACTIONS(540), + [sym_character_literal] = ACTIONS(538), + [anon_sym_DQUOTE] = ACTIONS(540), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(538), + [sym_null_literal] = ACTIONS(540), + [anon_sym_LPAREN] = ACTIONS(538), + [anon_sym_LT] = ACTIONS(538), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_final] = ACTIONS(540), + [anon_sym_BANG] = ACTIONS(538), + [anon_sym_TILDE] = ACTIONS(538), + [anon_sym_PLUS_PLUS] = ACTIONS(538), + [anon_sym_DASH_DASH] = ACTIONS(538), + [anon_sym_new] = ACTIONS(540), + [anon_sym_class] = ACTIONS(540), + [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_SEMI] = ACTIONS(538), + [anon_sym_assert] = ACTIONS(540), + [anon_sym_do] = ACTIONS(540), + [anon_sym_while] = ACTIONS(540), + [anon_sym_break] = ACTIONS(540), + [anon_sym_continue] = ACTIONS(540), + [anon_sym_return] = ACTIONS(540), + [anon_sym_yield] = ACTIONS(540), + [anon_sym_synchronized] = ACTIONS(540), + [anon_sym_throw] = ACTIONS(540), + [anon_sym_try] = ACTIONS(540), + [anon_sym_if] = ACTIONS(540), + [anon_sym_else] = ACTIONS(540), + [anon_sym_for] = ACTIONS(540), + [anon_sym_AT] = ACTIONS(540), + [anon_sym_open] = ACTIONS(540), + [anon_sym_module] = ACTIONS(540), + [anon_sym_static] = ACTIONS(540), + [anon_sym_package] = ACTIONS(540), + [anon_sym_import] = ACTIONS(540), + [anon_sym_enum] = ACTIONS(540), + [anon_sym_public] = ACTIONS(540), + [anon_sym_protected] = ACTIONS(540), + [anon_sym_private] = ACTIONS(540), + [anon_sym_abstract] = ACTIONS(540), + [anon_sym_strictfp] = ACTIONS(540), + [anon_sym_native] = ACTIONS(540), + [anon_sym_transient] = ACTIONS(540), + [anon_sym_volatile] = ACTIONS(540), + [anon_sym_sealed] = ACTIONS(540), + [anon_sym_non_DASHsealed] = ACTIONS(538), + [anon_sym_record] = ACTIONS(540), + [anon_sym_ATinterface] = ACTIONS(538), + [anon_sym_interface] = ACTIONS(540), + [anon_sym_byte] = ACTIONS(540), + [anon_sym_short] = ACTIONS(540), + [anon_sym_int] = ACTIONS(540), + [anon_sym_long] = ACTIONS(540), + [anon_sym_char] = ACTIONS(540), + [anon_sym_float] = ACTIONS(540), + [anon_sym_double] = ACTIONS(540), + [sym_boolean_type] = ACTIONS(540), + [sym_void_type] = ACTIONS(540), + [sym_this] = ACTIONS(540), + [sym_super] = ACTIONS(540), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [203] = { + [ts_builtin_sym_end] = ACTIONS(542), + [sym_identifier] = ACTIONS(544), + [sym_decimal_integer_literal] = ACTIONS(544), + [sym_hex_integer_literal] = ACTIONS(544), + [sym_octal_integer_literal] = ACTIONS(542), + [sym_binary_integer_literal] = ACTIONS(542), + [sym_decimal_floating_point_literal] = ACTIONS(542), + [sym_hex_floating_point_literal] = ACTIONS(544), + [sym_true] = ACTIONS(544), + [sym_false] = ACTIONS(544), + [sym_character_literal] = ACTIONS(542), + [anon_sym_DQUOTE] = ACTIONS(544), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(542), + [sym_null_literal] = ACTIONS(544), + [anon_sym_LPAREN] = ACTIONS(542), + [anon_sym_LT] = ACTIONS(542), + [anon_sym_PLUS] = ACTIONS(544), + [anon_sym_DASH] = ACTIONS(544), + [anon_sym_final] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_PLUS_PLUS] = ACTIONS(542), + [anon_sym_DASH_DASH] = ACTIONS(542), + [anon_sym_new] = ACTIONS(544), + [anon_sym_class] = ACTIONS(544), + [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_SEMI] = ACTIONS(542), + [anon_sym_assert] = ACTIONS(544), + [anon_sym_do] = ACTIONS(544), + [anon_sym_while] = ACTIONS(544), + [anon_sym_break] = ACTIONS(544), + [anon_sym_continue] = ACTIONS(544), + [anon_sym_return] = ACTIONS(544), + [anon_sym_yield] = ACTIONS(544), + [anon_sym_synchronized] = ACTIONS(544), + [anon_sym_throw] = ACTIONS(544), + [anon_sym_try] = ACTIONS(544), + [anon_sym_if] = ACTIONS(544), + [anon_sym_else] = ACTIONS(544), + [anon_sym_for] = ACTIONS(544), + [anon_sym_AT] = ACTIONS(544), + [anon_sym_open] = ACTIONS(544), + [anon_sym_module] = ACTIONS(544), + [anon_sym_static] = ACTIONS(544), + [anon_sym_package] = ACTIONS(544), + [anon_sym_import] = ACTIONS(544), + [anon_sym_enum] = ACTIONS(544), + [anon_sym_public] = ACTIONS(544), + [anon_sym_protected] = ACTIONS(544), + [anon_sym_private] = ACTIONS(544), + [anon_sym_abstract] = ACTIONS(544), + [anon_sym_strictfp] = ACTIONS(544), + [anon_sym_native] = ACTIONS(544), + [anon_sym_transient] = ACTIONS(544), + [anon_sym_volatile] = ACTIONS(544), + [anon_sym_sealed] = ACTIONS(544), + [anon_sym_non_DASHsealed] = ACTIONS(542), + [anon_sym_record] = ACTIONS(544), + [anon_sym_ATinterface] = ACTIONS(542), + [anon_sym_interface] = ACTIONS(544), + [anon_sym_byte] = ACTIONS(544), + [anon_sym_short] = ACTIONS(544), + [anon_sym_int] = ACTIONS(544), + [anon_sym_long] = ACTIONS(544), + [anon_sym_char] = ACTIONS(544), + [anon_sym_float] = ACTIONS(544), + [anon_sym_double] = ACTIONS(544), + [sym_boolean_type] = ACTIONS(544), + [sym_void_type] = ACTIONS(544), + [sym_this] = ACTIONS(544), + [sym_super] = ACTIONS(544), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [204] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(559), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32805,72 +31648,629 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [284] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(513), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [205] = { + [ts_builtin_sym_end] = ACTIONS(546), + [sym_identifier] = ACTIONS(548), + [sym_decimal_integer_literal] = ACTIONS(548), + [sym_hex_integer_literal] = ACTIONS(548), + [sym_octal_integer_literal] = ACTIONS(546), + [sym_binary_integer_literal] = ACTIONS(546), + [sym_decimal_floating_point_literal] = ACTIONS(546), + [sym_hex_floating_point_literal] = ACTIONS(548), + [sym_true] = ACTIONS(548), + [sym_false] = ACTIONS(548), + [sym_character_literal] = ACTIONS(546), + [anon_sym_DQUOTE] = ACTIONS(548), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(546), + [sym_null_literal] = ACTIONS(548), + [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_LT] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_DASH] = ACTIONS(548), + [anon_sym_final] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(546), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_PLUS_PLUS] = ACTIONS(546), + [anon_sym_DASH_DASH] = ACTIONS(546), + [anon_sym_new] = ACTIONS(548), + [anon_sym_class] = ACTIONS(548), + [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_SEMI] = ACTIONS(546), + [anon_sym_assert] = ACTIONS(548), + [anon_sym_do] = ACTIONS(548), + [anon_sym_while] = ACTIONS(548), + [anon_sym_break] = ACTIONS(548), + [anon_sym_continue] = ACTIONS(548), + [anon_sym_return] = ACTIONS(548), + [anon_sym_yield] = ACTIONS(548), + [anon_sym_synchronized] = ACTIONS(548), + [anon_sym_throw] = ACTIONS(548), + [anon_sym_try] = ACTIONS(548), + [anon_sym_if] = ACTIONS(548), + [anon_sym_else] = ACTIONS(548), + [anon_sym_for] = ACTIONS(548), + [anon_sym_AT] = ACTIONS(548), + [anon_sym_open] = ACTIONS(548), + [anon_sym_module] = ACTIONS(548), + [anon_sym_static] = ACTIONS(548), + [anon_sym_package] = ACTIONS(548), + [anon_sym_import] = ACTIONS(548), + [anon_sym_enum] = ACTIONS(548), + [anon_sym_public] = ACTIONS(548), + [anon_sym_protected] = ACTIONS(548), + [anon_sym_private] = ACTIONS(548), + [anon_sym_abstract] = ACTIONS(548), + [anon_sym_strictfp] = ACTIONS(548), + [anon_sym_native] = ACTIONS(548), + [anon_sym_transient] = ACTIONS(548), + [anon_sym_volatile] = ACTIONS(548), + [anon_sym_sealed] = ACTIONS(548), + [anon_sym_non_DASHsealed] = ACTIONS(546), + [anon_sym_record] = ACTIONS(548), + [anon_sym_ATinterface] = ACTIONS(546), + [anon_sym_interface] = ACTIONS(548), + [anon_sym_byte] = ACTIONS(548), + [anon_sym_short] = ACTIONS(548), + [anon_sym_int] = ACTIONS(548), + [anon_sym_long] = ACTIONS(548), + [anon_sym_char] = ACTIONS(548), + [anon_sym_float] = ACTIONS(548), + [anon_sym_double] = ACTIONS(548), + [sym_boolean_type] = ACTIONS(548), + [sym_void_type] = ACTIONS(548), + [sym_this] = ACTIONS(548), + [sym_super] = ACTIONS(548), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [206] = { + [ts_builtin_sym_end] = ACTIONS(550), + [sym_identifier] = ACTIONS(552), + [sym_decimal_integer_literal] = ACTIONS(552), + [sym_hex_integer_literal] = ACTIONS(552), + [sym_octal_integer_literal] = ACTIONS(550), + [sym_binary_integer_literal] = ACTIONS(550), + [sym_decimal_floating_point_literal] = ACTIONS(550), + [sym_hex_floating_point_literal] = ACTIONS(552), + [sym_true] = ACTIONS(552), + [sym_false] = ACTIONS(552), + [sym_character_literal] = ACTIONS(550), + [anon_sym_DQUOTE] = ACTIONS(552), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(550), + [sym_null_literal] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(550), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(552), + [anon_sym_final] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(550), + [anon_sym_TILDE] = ACTIONS(550), + [anon_sym_PLUS_PLUS] = ACTIONS(550), + [anon_sym_DASH_DASH] = ACTIONS(550), + [anon_sym_new] = ACTIONS(552), + [anon_sym_class] = ACTIONS(552), + [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_SEMI] = ACTIONS(550), + [anon_sym_assert] = ACTIONS(552), + [anon_sym_do] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_yield] = ACTIONS(552), + [anon_sym_synchronized] = ACTIONS(552), + [anon_sym_throw] = ACTIONS(552), + [anon_sym_try] = ACTIONS(552), + [anon_sym_if] = ACTIONS(552), + [anon_sym_else] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_AT] = ACTIONS(552), + [anon_sym_open] = ACTIONS(552), + [anon_sym_module] = ACTIONS(552), + [anon_sym_static] = ACTIONS(552), + [anon_sym_package] = ACTIONS(552), + [anon_sym_import] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_public] = ACTIONS(552), + [anon_sym_protected] = ACTIONS(552), + [anon_sym_private] = ACTIONS(552), + [anon_sym_abstract] = ACTIONS(552), + [anon_sym_strictfp] = ACTIONS(552), + [anon_sym_native] = ACTIONS(552), + [anon_sym_transient] = ACTIONS(552), + [anon_sym_volatile] = ACTIONS(552), + [anon_sym_sealed] = ACTIONS(552), + [anon_sym_non_DASHsealed] = ACTIONS(550), + [anon_sym_record] = ACTIONS(552), + [anon_sym_ATinterface] = ACTIONS(550), + [anon_sym_interface] = ACTIONS(552), + [anon_sym_byte] = ACTIONS(552), + [anon_sym_short] = ACTIONS(552), + [anon_sym_int] = ACTIONS(552), + [anon_sym_long] = ACTIONS(552), + [anon_sym_char] = ACTIONS(552), + [anon_sym_float] = ACTIONS(552), + [anon_sym_double] = ACTIONS(552), + [sym_boolean_type] = ACTIONS(552), + [sym_void_type] = ACTIONS(552), + [sym_this] = ACTIONS(552), + [sym_super] = ACTIONS(552), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [207] = { + [ts_builtin_sym_end] = ACTIONS(554), + [sym_identifier] = ACTIONS(556), + [sym_decimal_integer_literal] = ACTIONS(556), + [sym_hex_integer_literal] = ACTIONS(556), + [sym_octal_integer_literal] = ACTIONS(554), + [sym_binary_integer_literal] = ACTIONS(554), + [sym_decimal_floating_point_literal] = ACTIONS(554), + [sym_hex_floating_point_literal] = ACTIONS(556), + [sym_true] = ACTIONS(556), + [sym_false] = ACTIONS(556), + [sym_character_literal] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(556), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(554), + [sym_null_literal] = ACTIONS(556), + [anon_sym_LPAREN] = ACTIONS(554), + [anon_sym_LT] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_final] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_TILDE] = ACTIONS(554), + [anon_sym_PLUS_PLUS] = ACTIONS(554), + [anon_sym_DASH_DASH] = ACTIONS(554), + [anon_sym_new] = ACTIONS(556), + [anon_sym_class] = ACTIONS(556), + [anon_sym_switch] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_RBRACE] = ACTIONS(554), + [anon_sym_case] = ACTIONS(556), + [anon_sym_default] = ACTIONS(556), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_assert] = ACTIONS(556), + [anon_sym_do] = ACTIONS(556), + [anon_sym_while] = ACTIONS(556), + [anon_sym_break] = ACTIONS(556), + [anon_sym_continue] = ACTIONS(556), + [anon_sym_return] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(556), + [anon_sym_synchronized] = ACTIONS(556), + [anon_sym_throw] = ACTIONS(556), + [anon_sym_try] = ACTIONS(556), + [anon_sym_if] = ACTIONS(556), + [anon_sym_else] = ACTIONS(556), + [anon_sym_for] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(556), + [anon_sym_open] = ACTIONS(556), + [anon_sym_module] = ACTIONS(556), + [anon_sym_static] = ACTIONS(556), + [anon_sym_package] = ACTIONS(556), + [anon_sym_import] = ACTIONS(556), + [anon_sym_enum] = ACTIONS(556), + [anon_sym_public] = ACTIONS(556), + [anon_sym_protected] = ACTIONS(556), + [anon_sym_private] = ACTIONS(556), + [anon_sym_abstract] = ACTIONS(556), + [anon_sym_strictfp] = ACTIONS(556), + [anon_sym_native] = ACTIONS(556), + [anon_sym_transient] = ACTIONS(556), + [anon_sym_volatile] = ACTIONS(556), + [anon_sym_sealed] = ACTIONS(556), + [anon_sym_non_DASHsealed] = ACTIONS(554), + [anon_sym_record] = ACTIONS(556), + [anon_sym_ATinterface] = ACTIONS(554), + [anon_sym_interface] = ACTIONS(556), + [anon_sym_byte] = ACTIONS(556), + [anon_sym_short] = ACTIONS(556), + [anon_sym_int] = ACTIONS(556), + [anon_sym_long] = ACTIONS(556), + [anon_sym_char] = ACTIONS(556), + [anon_sym_float] = ACTIONS(556), + [anon_sym_double] = ACTIONS(556), + [sym_boolean_type] = ACTIONS(556), + [sym_void_type] = ACTIONS(556), + [sym_this] = ACTIONS(556), + [sym_super] = ACTIONS(556), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [208] = { + [ts_builtin_sym_end] = ACTIONS(558), + [sym_identifier] = ACTIONS(560), + [sym_decimal_integer_literal] = ACTIONS(560), + [sym_hex_integer_literal] = ACTIONS(560), + [sym_octal_integer_literal] = ACTIONS(558), + [sym_binary_integer_literal] = ACTIONS(558), + [sym_decimal_floating_point_literal] = ACTIONS(558), + [sym_hex_floating_point_literal] = ACTIONS(560), + [sym_true] = ACTIONS(560), + [sym_false] = ACTIONS(560), + [sym_character_literal] = ACTIONS(558), + [anon_sym_DQUOTE] = ACTIONS(560), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(558), + [sym_null_literal] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(560), + [anon_sym_DASH] = ACTIONS(560), + [anon_sym_final] = ACTIONS(560), + [anon_sym_BANG] = ACTIONS(558), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_PLUS_PLUS] = ACTIONS(558), + [anon_sym_DASH_DASH] = ACTIONS(558), + [anon_sym_new] = ACTIONS(560), + [anon_sym_class] = ACTIONS(560), + [anon_sym_switch] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_case] = ACTIONS(560), + [anon_sym_default] = ACTIONS(560), + [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_assert] = ACTIONS(560), + [anon_sym_do] = ACTIONS(560), + [anon_sym_while] = ACTIONS(560), + [anon_sym_break] = ACTIONS(560), + [anon_sym_continue] = ACTIONS(560), + [anon_sym_return] = ACTIONS(560), + [anon_sym_yield] = ACTIONS(560), + [anon_sym_synchronized] = ACTIONS(560), + [anon_sym_throw] = ACTIONS(560), + [anon_sym_try] = ACTIONS(560), + [anon_sym_if] = ACTIONS(560), + [anon_sym_else] = ACTIONS(560), + [anon_sym_for] = ACTIONS(560), + [anon_sym_AT] = ACTIONS(560), + [anon_sym_open] = ACTIONS(560), + [anon_sym_module] = ACTIONS(560), + [anon_sym_static] = ACTIONS(560), + [anon_sym_package] = ACTIONS(560), + [anon_sym_import] = ACTIONS(560), + [anon_sym_enum] = ACTIONS(560), + [anon_sym_public] = ACTIONS(560), + [anon_sym_protected] = ACTIONS(560), + [anon_sym_private] = ACTIONS(560), + [anon_sym_abstract] = ACTIONS(560), + [anon_sym_strictfp] = ACTIONS(560), + [anon_sym_native] = ACTIONS(560), + [anon_sym_transient] = ACTIONS(560), + [anon_sym_volatile] = ACTIONS(560), + [anon_sym_sealed] = ACTIONS(560), + [anon_sym_non_DASHsealed] = ACTIONS(558), + [anon_sym_record] = ACTIONS(560), + [anon_sym_ATinterface] = ACTIONS(558), + [anon_sym_interface] = ACTIONS(560), + [anon_sym_byte] = ACTIONS(560), + [anon_sym_short] = ACTIONS(560), + [anon_sym_int] = ACTIONS(560), + [anon_sym_long] = ACTIONS(560), + [anon_sym_char] = ACTIONS(560), + [anon_sym_float] = ACTIONS(560), + [anon_sym_double] = ACTIONS(560), + [sym_boolean_type] = ACTIONS(560), + [sym_void_type] = ACTIONS(560), + [sym_this] = ACTIONS(560), + [sym_super] = ACTIONS(560), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [209] = { + [ts_builtin_sym_end] = ACTIONS(562), + [sym_identifier] = ACTIONS(564), + [sym_decimal_integer_literal] = ACTIONS(564), + [sym_hex_integer_literal] = ACTIONS(564), + [sym_octal_integer_literal] = ACTIONS(562), + [sym_binary_integer_literal] = ACTIONS(562), + [sym_decimal_floating_point_literal] = ACTIONS(562), + [sym_hex_floating_point_literal] = ACTIONS(564), + [sym_true] = ACTIONS(564), + [sym_false] = ACTIONS(564), + [sym_character_literal] = ACTIONS(562), + [anon_sym_DQUOTE] = ACTIONS(564), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(562), + [sym_null_literal] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_LT] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_final] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(562), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_PLUS_PLUS] = ACTIONS(562), + [anon_sym_DASH_DASH] = ACTIONS(562), + [anon_sym_new] = ACTIONS(564), + [anon_sym_class] = ACTIONS(564), + [anon_sym_switch] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(562), + [anon_sym_case] = ACTIONS(564), + [anon_sym_default] = ACTIONS(564), + [anon_sym_SEMI] = ACTIONS(562), + [anon_sym_assert] = ACTIONS(564), + [anon_sym_do] = ACTIONS(564), + [anon_sym_while] = ACTIONS(564), + [anon_sym_break] = ACTIONS(564), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_return] = ACTIONS(564), + [anon_sym_yield] = ACTIONS(564), + [anon_sym_synchronized] = ACTIONS(564), + [anon_sym_throw] = ACTIONS(564), + [anon_sym_try] = ACTIONS(564), + [anon_sym_if] = ACTIONS(564), + [anon_sym_else] = ACTIONS(564), + [anon_sym_for] = ACTIONS(564), + [anon_sym_AT] = ACTIONS(564), + [anon_sym_open] = ACTIONS(564), + [anon_sym_module] = ACTIONS(564), + [anon_sym_static] = ACTIONS(564), + [anon_sym_package] = ACTIONS(564), + [anon_sym_import] = ACTIONS(564), + [anon_sym_enum] = ACTIONS(564), + [anon_sym_public] = ACTIONS(564), + [anon_sym_protected] = ACTIONS(564), + [anon_sym_private] = ACTIONS(564), + [anon_sym_abstract] = ACTIONS(564), + [anon_sym_strictfp] = ACTIONS(564), + [anon_sym_native] = ACTIONS(564), + [anon_sym_transient] = ACTIONS(564), + [anon_sym_volatile] = ACTIONS(564), + [anon_sym_sealed] = ACTIONS(564), + [anon_sym_non_DASHsealed] = ACTIONS(562), + [anon_sym_record] = ACTIONS(564), + [anon_sym_ATinterface] = ACTIONS(562), + [anon_sym_interface] = ACTIONS(564), + [anon_sym_byte] = ACTIONS(564), + [anon_sym_short] = ACTIONS(564), + [anon_sym_int] = ACTIONS(564), + [anon_sym_long] = ACTIONS(564), + [anon_sym_char] = ACTIONS(564), + [anon_sym_float] = ACTIONS(564), + [anon_sym_double] = ACTIONS(564), + [sym_boolean_type] = ACTIONS(564), + [sym_void_type] = ACTIONS(564), + [sym_this] = ACTIONS(564), + [sym_super] = ACTIONS(564), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [210] = { + [ts_builtin_sym_end] = ACTIONS(566), + [sym_identifier] = ACTIONS(568), + [sym_decimal_integer_literal] = ACTIONS(568), + [sym_hex_integer_literal] = ACTIONS(568), + [sym_octal_integer_literal] = ACTIONS(566), + [sym_binary_integer_literal] = ACTIONS(566), + [sym_decimal_floating_point_literal] = ACTIONS(566), + [sym_hex_floating_point_literal] = ACTIONS(568), + [sym_true] = ACTIONS(568), + [sym_false] = ACTIONS(568), + [sym_character_literal] = ACTIONS(566), + [anon_sym_DQUOTE] = ACTIONS(568), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(566), + [sym_null_literal] = ACTIONS(568), + [anon_sym_LPAREN] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_final] = ACTIONS(568), + [anon_sym_BANG] = ACTIONS(566), + [anon_sym_TILDE] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(566), + [anon_sym_DASH_DASH] = ACTIONS(566), + [anon_sym_new] = ACTIONS(568), + [anon_sym_class] = ACTIONS(568), + [anon_sym_switch] = ACTIONS(568), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_case] = ACTIONS(568), + [anon_sym_default] = ACTIONS(568), + [anon_sym_SEMI] = ACTIONS(566), + [anon_sym_assert] = ACTIONS(568), + [anon_sym_do] = ACTIONS(568), + [anon_sym_while] = ACTIONS(568), + [anon_sym_break] = ACTIONS(568), + [anon_sym_continue] = ACTIONS(568), + [anon_sym_return] = ACTIONS(568), + [anon_sym_yield] = ACTIONS(568), + [anon_sym_synchronized] = ACTIONS(568), + [anon_sym_throw] = ACTIONS(568), + [anon_sym_try] = ACTIONS(568), + [anon_sym_if] = ACTIONS(568), + [anon_sym_else] = ACTIONS(568), + [anon_sym_for] = ACTIONS(568), + [anon_sym_AT] = ACTIONS(568), + [anon_sym_open] = ACTIONS(568), + [anon_sym_module] = ACTIONS(568), + [anon_sym_static] = ACTIONS(568), + [anon_sym_package] = ACTIONS(568), + [anon_sym_import] = ACTIONS(568), + [anon_sym_enum] = ACTIONS(568), + [anon_sym_public] = ACTIONS(568), + [anon_sym_protected] = ACTIONS(568), + [anon_sym_private] = ACTIONS(568), + [anon_sym_abstract] = ACTIONS(568), + [anon_sym_strictfp] = ACTIONS(568), + [anon_sym_native] = ACTIONS(568), + [anon_sym_transient] = ACTIONS(568), + [anon_sym_volatile] = ACTIONS(568), + [anon_sym_sealed] = ACTIONS(568), + [anon_sym_non_DASHsealed] = ACTIONS(566), + [anon_sym_record] = ACTIONS(568), + [anon_sym_ATinterface] = ACTIONS(566), + [anon_sym_interface] = ACTIONS(568), + [anon_sym_byte] = ACTIONS(568), + [anon_sym_short] = ACTIONS(568), + [anon_sym_int] = ACTIONS(568), + [anon_sym_long] = ACTIONS(568), + [anon_sym_char] = ACTIONS(568), + [anon_sym_float] = ACTIONS(568), + [anon_sym_double] = ACTIONS(568), + [sym_boolean_type] = ACTIONS(568), + [sym_void_type] = ACTIONS(568), + [sym_this] = ACTIONS(568), + [sym_super] = ACTIONS(568), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [211] = { + [ts_builtin_sym_end] = ACTIONS(570), + [sym_identifier] = ACTIONS(572), + [sym_decimal_integer_literal] = ACTIONS(572), + [sym_hex_integer_literal] = ACTIONS(572), + [sym_octal_integer_literal] = ACTIONS(570), + [sym_binary_integer_literal] = ACTIONS(570), + [sym_decimal_floating_point_literal] = ACTIONS(570), + [sym_hex_floating_point_literal] = ACTIONS(572), + [sym_true] = ACTIONS(572), + [sym_false] = ACTIONS(572), + [sym_character_literal] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(572), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(570), + [sym_null_literal] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_final] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS_PLUS] = ACTIONS(570), + [anon_sym_DASH_DASH] = ACTIONS(570), + [anon_sym_new] = ACTIONS(572), + [anon_sym_class] = ACTIONS(572), + [anon_sym_switch] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(572), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_assert] = ACTIONS(572), + [anon_sym_do] = ACTIONS(572), + [anon_sym_while] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_return] = ACTIONS(572), + [anon_sym_yield] = ACTIONS(572), + [anon_sym_synchronized] = ACTIONS(572), + [anon_sym_throw] = ACTIONS(572), + [anon_sym_try] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_else] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_AT] = ACTIONS(572), + [anon_sym_open] = ACTIONS(572), + [anon_sym_module] = ACTIONS(572), + [anon_sym_static] = ACTIONS(572), + [anon_sym_package] = ACTIONS(572), + [anon_sym_import] = ACTIONS(572), + [anon_sym_enum] = ACTIONS(572), + [anon_sym_public] = ACTIONS(572), + [anon_sym_protected] = ACTIONS(572), + [anon_sym_private] = ACTIONS(572), + [anon_sym_abstract] = ACTIONS(572), + [anon_sym_strictfp] = ACTIONS(572), + [anon_sym_native] = ACTIONS(572), + [anon_sym_transient] = ACTIONS(572), + [anon_sym_volatile] = ACTIONS(572), + [anon_sym_sealed] = ACTIONS(572), + [anon_sym_non_DASHsealed] = ACTIONS(570), + [anon_sym_record] = ACTIONS(572), + [anon_sym_ATinterface] = ACTIONS(570), + [anon_sym_interface] = ACTIONS(572), + [anon_sym_byte] = ACTIONS(572), + [anon_sym_short] = ACTIONS(572), + [anon_sym_int] = ACTIONS(572), + [anon_sym_long] = ACTIONS(572), + [anon_sym_char] = ACTIONS(572), + [anon_sym_float] = ACTIONS(572), + [anon_sym_double] = ACTIONS(572), + [sym_boolean_type] = ACTIONS(572), + [sym_void_type] = ACTIONS(572), + [sym_this] = ACTIONS(572), + [sym_super] = ACTIONS(572), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [212] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(557), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32880,72 +32280,471 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [285] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(432), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [213] = { + [ts_builtin_sym_end] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [sym_decimal_integer_literal] = ACTIONS(576), + [sym_hex_integer_literal] = ACTIONS(576), + [sym_octal_integer_literal] = ACTIONS(574), + [sym_binary_integer_literal] = ACTIONS(574), + [sym_decimal_floating_point_literal] = ACTIONS(574), + [sym_hex_floating_point_literal] = ACTIONS(576), + [sym_true] = ACTIONS(576), + [sym_false] = ACTIONS(576), + [sym_character_literal] = ACTIONS(574), + [anon_sym_DQUOTE] = ACTIONS(576), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(574), + [sym_null_literal] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_LT] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_final] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_TILDE] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_new] = ACTIONS(576), + [anon_sym_class] = ACTIONS(576), + [anon_sym_switch] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_RBRACE] = ACTIONS(574), + [anon_sym_case] = ACTIONS(576), + [anon_sym_default] = ACTIONS(576), + [anon_sym_SEMI] = ACTIONS(574), + [anon_sym_assert] = ACTIONS(576), + [anon_sym_do] = ACTIONS(576), + [anon_sym_while] = ACTIONS(576), + [anon_sym_break] = ACTIONS(576), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_return] = ACTIONS(576), + [anon_sym_yield] = ACTIONS(576), + [anon_sym_synchronized] = ACTIONS(576), + [anon_sym_throw] = ACTIONS(576), + [anon_sym_try] = ACTIONS(576), + [anon_sym_if] = ACTIONS(576), + [anon_sym_else] = ACTIONS(576), + [anon_sym_for] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym_open] = ACTIONS(576), + [anon_sym_module] = ACTIONS(576), + [anon_sym_static] = ACTIONS(576), + [anon_sym_package] = ACTIONS(576), + [anon_sym_import] = ACTIONS(576), + [anon_sym_enum] = ACTIONS(576), + [anon_sym_public] = ACTIONS(576), + [anon_sym_protected] = ACTIONS(576), + [anon_sym_private] = ACTIONS(576), + [anon_sym_abstract] = ACTIONS(576), + [anon_sym_strictfp] = ACTIONS(576), + [anon_sym_native] = ACTIONS(576), + [anon_sym_transient] = ACTIONS(576), + [anon_sym_volatile] = ACTIONS(576), + [anon_sym_sealed] = ACTIONS(576), + [anon_sym_non_DASHsealed] = ACTIONS(574), + [anon_sym_record] = ACTIONS(576), + [anon_sym_ATinterface] = ACTIONS(574), + [anon_sym_interface] = ACTIONS(576), + [anon_sym_byte] = ACTIONS(576), + [anon_sym_short] = ACTIONS(576), + [anon_sym_int] = ACTIONS(576), + [anon_sym_long] = ACTIONS(576), + [anon_sym_char] = ACTIONS(576), + [anon_sym_float] = ACTIONS(576), + [anon_sym_double] = ACTIONS(576), + [sym_boolean_type] = ACTIONS(576), + [sym_void_type] = ACTIONS(576), + [sym_this] = ACTIONS(576), + [sym_super] = ACTIONS(576), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [214] = { + [ts_builtin_sym_end] = ACTIONS(578), + [sym_identifier] = ACTIONS(580), + [sym_decimal_integer_literal] = ACTIONS(580), + [sym_hex_integer_literal] = ACTIONS(580), + [sym_octal_integer_literal] = ACTIONS(578), + [sym_binary_integer_literal] = ACTIONS(578), + [sym_decimal_floating_point_literal] = ACTIONS(578), + [sym_hex_floating_point_literal] = ACTIONS(580), + [sym_true] = ACTIONS(580), + [sym_false] = ACTIONS(580), + [sym_character_literal] = ACTIONS(578), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(578), + [sym_null_literal] = ACTIONS(580), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_final] = ACTIONS(580), + [anon_sym_BANG] = ACTIONS(578), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_PLUS_PLUS] = ACTIONS(578), + [anon_sym_DASH_DASH] = ACTIONS(578), + [anon_sym_new] = ACTIONS(580), + [anon_sym_class] = ACTIONS(580), + [anon_sym_switch] = ACTIONS(580), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_RBRACE] = ACTIONS(578), + [anon_sym_case] = ACTIONS(580), + [anon_sym_default] = ACTIONS(580), + [anon_sym_SEMI] = ACTIONS(578), + [anon_sym_assert] = ACTIONS(580), + [anon_sym_do] = ACTIONS(580), + [anon_sym_while] = ACTIONS(580), + [anon_sym_break] = ACTIONS(580), + [anon_sym_continue] = ACTIONS(580), + [anon_sym_return] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(580), + [anon_sym_synchronized] = ACTIONS(580), + [anon_sym_throw] = ACTIONS(580), + [anon_sym_try] = ACTIONS(580), + [anon_sym_if] = ACTIONS(580), + [anon_sym_else] = ACTIONS(580), + [anon_sym_for] = ACTIONS(580), + [anon_sym_AT] = ACTIONS(580), + [anon_sym_open] = ACTIONS(580), + [anon_sym_module] = ACTIONS(580), + [anon_sym_static] = ACTIONS(580), + [anon_sym_package] = ACTIONS(580), + [anon_sym_import] = ACTIONS(580), + [anon_sym_enum] = ACTIONS(580), + [anon_sym_public] = ACTIONS(580), + [anon_sym_protected] = ACTIONS(580), + [anon_sym_private] = ACTIONS(580), + [anon_sym_abstract] = ACTIONS(580), + [anon_sym_strictfp] = ACTIONS(580), + [anon_sym_native] = ACTIONS(580), + [anon_sym_transient] = ACTIONS(580), + [anon_sym_volatile] = ACTIONS(580), + [anon_sym_sealed] = ACTIONS(580), + [anon_sym_non_DASHsealed] = ACTIONS(578), + [anon_sym_record] = ACTIONS(580), + [anon_sym_ATinterface] = ACTIONS(578), + [anon_sym_interface] = ACTIONS(580), + [anon_sym_byte] = ACTIONS(580), + [anon_sym_short] = ACTIONS(580), + [anon_sym_int] = ACTIONS(580), + [anon_sym_long] = ACTIONS(580), + [anon_sym_char] = ACTIONS(580), + [anon_sym_float] = ACTIONS(580), + [anon_sym_double] = ACTIONS(580), + [sym_boolean_type] = ACTIONS(580), + [sym_void_type] = ACTIONS(580), + [sym_this] = ACTIONS(580), + [sym_super] = ACTIONS(580), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [215] = { + [ts_builtin_sym_end] = ACTIONS(582), + [sym_identifier] = ACTIONS(584), + [sym_decimal_integer_literal] = ACTIONS(584), + [sym_hex_integer_literal] = ACTIONS(584), + [sym_octal_integer_literal] = ACTIONS(582), + [sym_binary_integer_literal] = ACTIONS(582), + [sym_decimal_floating_point_literal] = ACTIONS(582), + [sym_hex_floating_point_literal] = ACTIONS(584), + [sym_true] = ACTIONS(584), + [sym_false] = ACTIONS(584), + [sym_character_literal] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(582), + [sym_null_literal] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_LT] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_final] = ACTIONS(584), + [anon_sym_BANG] = ACTIONS(582), + [anon_sym_TILDE] = ACTIONS(582), + [anon_sym_PLUS_PLUS] = ACTIONS(582), + [anon_sym_DASH_DASH] = ACTIONS(582), + [anon_sym_new] = ACTIONS(584), + [anon_sym_class] = ACTIONS(584), + [anon_sym_switch] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_RBRACE] = ACTIONS(582), + [anon_sym_case] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(582), + [anon_sym_assert] = ACTIONS(584), + [anon_sym_do] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_yield] = ACTIONS(584), + [anon_sym_synchronized] = ACTIONS(584), + [anon_sym_throw] = ACTIONS(584), + [anon_sym_try] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_else] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_AT] = ACTIONS(584), + [anon_sym_open] = ACTIONS(584), + [anon_sym_module] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_package] = ACTIONS(584), + [anon_sym_import] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_public] = ACTIONS(584), + [anon_sym_protected] = ACTIONS(584), + [anon_sym_private] = ACTIONS(584), + [anon_sym_abstract] = ACTIONS(584), + [anon_sym_strictfp] = ACTIONS(584), + [anon_sym_native] = ACTIONS(584), + [anon_sym_transient] = ACTIONS(584), + [anon_sym_volatile] = ACTIONS(584), + [anon_sym_sealed] = ACTIONS(584), + [anon_sym_non_DASHsealed] = ACTIONS(582), + [anon_sym_record] = ACTIONS(584), + [anon_sym_ATinterface] = ACTIONS(582), + [anon_sym_interface] = ACTIONS(584), + [anon_sym_byte] = ACTIONS(584), + [anon_sym_short] = ACTIONS(584), + [anon_sym_int] = ACTIONS(584), + [anon_sym_long] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_float] = ACTIONS(584), + [anon_sym_double] = ACTIONS(584), + [sym_boolean_type] = ACTIONS(584), + [sym_void_type] = ACTIONS(584), + [sym_this] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [216] = { + [ts_builtin_sym_end] = ACTIONS(586), + [sym_identifier] = ACTIONS(588), + [sym_decimal_integer_literal] = ACTIONS(588), + [sym_hex_integer_literal] = ACTIONS(588), + [sym_octal_integer_literal] = ACTIONS(586), + [sym_binary_integer_literal] = ACTIONS(586), + [sym_decimal_floating_point_literal] = ACTIONS(586), + [sym_hex_floating_point_literal] = ACTIONS(588), + [sym_true] = ACTIONS(588), + [sym_false] = ACTIONS(588), + [sym_character_literal] = ACTIONS(586), + [anon_sym_DQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [sym_null_literal] = ACTIONS(588), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_final] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_TILDE] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(586), + [anon_sym_DASH_DASH] = ACTIONS(586), + [anon_sym_new] = ACTIONS(588), + [anon_sym_class] = ACTIONS(588), + [anon_sym_switch] = ACTIONS(588), + [anon_sym_LBRACE] = ACTIONS(586), + [anon_sym_RBRACE] = ACTIONS(586), + [anon_sym_case] = ACTIONS(588), + [anon_sym_default] = ACTIONS(588), + [anon_sym_SEMI] = ACTIONS(586), + [anon_sym_assert] = ACTIONS(588), + [anon_sym_do] = ACTIONS(588), + [anon_sym_while] = ACTIONS(588), + [anon_sym_break] = ACTIONS(588), + [anon_sym_continue] = ACTIONS(588), + [anon_sym_return] = ACTIONS(588), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_synchronized] = ACTIONS(588), + [anon_sym_throw] = ACTIONS(588), + [anon_sym_try] = ACTIONS(588), + [anon_sym_if] = ACTIONS(588), + [anon_sym_else] = ACTIONS(588), + [anon_sym_for] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(588), + [anon_sym_open] = ACTIONS(588), + [anon_sym_module] = ACTIONS(588), + [anon_sym_static] = ACTIONS(588), + [anon_sym_package] = ACTIONS(588), + [anon_sym_import] = ACTIONS(588), + [anon_sym_enum] = ACTIONS(588), + [anon_sym_public] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(588), + [anon_sym_strictfp] = ACTIONS(588), + [anon_sym_native] = ACTIONS(588), + [anon_sym_transient] = ACTIONS(588), + [anon_sym_volatile] = ACTIONS(588), + [anon_sym_sealed] = ACTIONS(588), + [anon_sym_non_DASHsealed] = ACTIONS(586), + [anon_sym_record] = ACTIONS(588), + [anon_sym_ATinterface] = ACTIONS(586), + [anon_sym_interface] = ACTIONS(588), + [anon_sym_byte] = ACTIONS(588), + [anon_sym_short] = ACTIONS(588), + [anon_sym_int] = ACTIONS(588), + [anon_sym_long] = ACTIONS(588), + [anon_sym_char] = ACTIONS(588), + [anon_sym_float] = ACTIONS(588), + [anon_sym_double] = ACTIONS(588), + [sym_boolean_type] = ACTIONS(588), + [sym_void_type] = ACTIONS(588), + [sym_this] = ACTIONS(588), + [sym_super] = ACTIONS(588), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [217] = { + [ts_builtin_sym_end] = ACTIONS(590), + [sym_identifier] = ACTIONS(592), + [sym_decimal_integer_literal] = ACTIONS(592), + [sym_hex_integer_literal] = ACTIONS(592), + [sym_octal_integer_literal] = ACTIONS(590), + [sym_binary_integer_literal] = ACTIONS(590), + [sym_decimal_floating_point_literal] = ACTIONS(590), + [sym_hex_floating_point_literal] = ACTIONS(592), + [sym_true] = ACTIONS(592), + [sym_false] = ACTIONS(592), + [sym_character_literal] = ACTIONS(590), + [anon_sym_DQUOTE] = ACTIONS(592), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [sym_null_literal] = ACTIONS(592), + [anon_sym_LPAREN] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(590), + [anon_sym_PLUS] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(592), + [anon_sym_final] = ACTIONS(592), + [anon_sym_BANG] = ACTIONS(590), + [anon_sym_TILDE] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_DASH_DASH] = ACTIONS(590), + [anon_sym_new] = ACTIONS(592), + [anon_sym_class] = ACTIONS(592), + [anon_sym_switch] = ACTIONS(592), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(590), + [anon_sym_case] = ACTIONS(592), + [anon_sym_default] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(590), + [anon_sym_assert] = ACTIONS(592), + [anon_sym_do] = ACTIONS(592), + [anon_sym_while] = ACTIONS(592), + [anon_sym_break] = ACTIONS(592), + [anon_sym_continue] = ACTIONS(592), + [anon_sym_return] = ACTIONS(592), + [anon_sym_yield] = ACTIONS(592), + [anon_sym_synchronized] = ACTIONS(592), + [anon_sym_throw] = ACTIONS(592), + [anon_sym_try] = ACTIONS(592), + [anon_sym_if] = ACTIONS(592), + [anon_sym_else] = ACTIONS(592), + [anon_sym_for] = ACTIONS(592), + [anon_sym_AT] = ACTIONS(592), + [anon_sym_open] = ACTIONS(592), + [anon_sym_module] = ACTIONS(592), + [anon_sym_static] = ACTIONS(592), + [anon_sym_package] = ACTIONS(592), + [anon_sym_import] = ACTIONS(592), + [anon_sym_enum] = ACTIONS(592), + [anon_sym_public] = ACTIONS(592), + [anon_sym_protected] = ACTIONS(592), + [anon_sym_private] = ACTIONS(592), + [anon_sym_abstract] = ACTIONS(592), + [anon_sym_strictfp] = ACTIONS(592), + [anon_sym_native] = ACTIONS(592), + [anon_sym_transient] = ACTIONS(592), + [anon_sym_volatile] = ACTIONS(592), + [anon_sym_sealed] = ACTIONS(592), + [anon_sym_non_DASHsealed] = ACTIONS(590), + [anon_sym_record] = ACTIONS(592), + [anon_sym_ATinterface] = ACTIONS(590), + [anon_sym_interface] = ACTIONS(592), + [anon_sym_byte] = ACTIONS(592), + [anon_sym_short] = ACTIONS(592), + [anon_sym_int] = ACTIONS(592), + [anon_sym_long] = ACTIONS(592), + [anon_sym_char] = ACTIONS(592), + [anon_sym_float] = ACTIONS(592), + [anon_sym_double] = ACTIONS(592), + [sym_boolean_type] = ACTIONS(592), + [sym_void_type] = ACTIONS(592), + [sym_this] = ACTIONS(592), + [sym_super] = ACTIONS(592), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [218] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(590), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -32955,72 +32754,787 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [286] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(531), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [219] = { + [ts_builtin_sym_end] = ACTIONS(594), + [sym_identifier] = ACTIONS(596), + [sym_decimal_integer_literal] = ACTIONS(596), + [sym_hex_integer_literal] = ACTIONS(596), + [sym_octal_integer_literal] = ACTIONS(594), + [sym_binary_integer_literal] = ACTIONS(594), + [sym_decimal_floating_point_literal] = ACTIONS(594), + [sym_hex_floating_point_literal] = ACTIONS(596), + [sym_true] = ACTIONS(596), + [sym_false] = ACTIONS(596), + [sym_character_literal] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(594), + [sym_null_literal] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(594), + [anon_sym_LT] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_final] = ACTIONS(596), + [anon_sym_BANG] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(594), + [anon_sym_PLUS_PLUS] = ACTIONS(594), + [anon_sym_DASH_DASH] = ACTIONS(594), + [anon_sym_new] = ACTIONS(596), + [anon_sym_class] = ACTIONS(596), + [anon_sym_switch] = ACTIONS(596), + [anon_sym_LBRACE] = ACTIONS(594), + [anon_sym_RBRACE] = ACTIONS(594), + [anon_sym_case] = ACTIONS(596), + [anon_sym_default] = ACTIONS(596), + [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_assert] = ACTIONS(596), + [anon_sym_do] = ACTIONS(596), + [anon_sym_while] = ACTIONS(596), + [anon_sym_break] = ACTIONS(596), + [anon_sym_continue] = ACTIONS(596), + [anon_sym_return] = ACTIONS(596), + [anon_sym_yield] = ACTIONS(596), + [anon_sym_synchronized] = ACTIONS(596), + [anon_sym_throw] = ACTIONS(596), + [anon_sym_try] = ACTIONS(596), + [anon_sym_if] = ACTIONS(596), + [anon_sym_else] = ACTIONS(596), + [anon_sym_for] = ACTIONS(596), + [anon_sym_AT] = ACTIONS(596), + [anon_sym_open] = ACTIONS(596), + [anon_sym_module] = ACTIONS(596), + [anon_sym_static] = ACTIONS(596), + [anon_sym_package] = ACTIONS(596), + [anon_sym_import] = ACTIONS(596), + [anon_sym_enum] = ACTIONS(596), + [anon_sym_public] = ACTIONS(596), + [anon_sym_protected] = ACTIONS(596), + [anon_sym_private] = ACTIONS(596), + [anon_sym_abstract] = ACTIONS(596), + [anon_sym_strictfp] = ACTIONS(596), + [anon_sym_native] = ACTIONS(596), + [anon_sym_transient] = ACTIONS(596), + [anon_sym_volatile] = ACTIONS(596), + [anon_sym_sealed] = ACTIONS(596), + [anon_sym_non_DASHsealed] = ACTIONS(594), + [anon_sym_record] = ACTIONS(596), + [anon_sym_ATinterface] = ACTIONS(594), + [anon_sym_interface] = ACTIONS(596), + [anon_sym_byte] = ACTIONS(596), + [anon_sym_short] = ACTIONS(596), + [anon_sym_int] = ACTIONS(596), + [anon_sym_long] = ACTIONS(596), + [anon_sym_char] = ACTIONS(596), + [anon_sym_float] = ACTIONS(596), + [anon_sym_double] = ACTIONS(596), + [sym_boolean_type] = ACTIONS(596), + [sym_void_type] = ACTIONS(596), + [sym_this] = ACTIONS(596), + [sym_super] = ACTIONS(596), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [220] = { + [ts_builtin_sym_end] = ACTIONS(598), + [sym_identifier] = ACTIONS(600), + [sym_decimal_integer_literal] = ACTIONS(600), + [sym_hex_integer_literal] = ACTIONS(600), + [sym_octal_integer_literal] = ACTIONS(598), + [sym_binary_integer_literal] = ACTIONS(598), + [sym_decimal_floating_point_literal] = ACTIONS(598), + [sym_hex_floating_point_literal] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_character_literal] = ACTIONS(598), + [anon_sym_DQUOTE] = ACTIONS(600), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(598), + [sym_null_literal] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(598), + [anon_sym_LT] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_final] = ACTIONS(600), + [anon_sym_BANG] = ACTIONS(598), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS_PLUS] = ACTIONS(598), + [anon_sym_DASH_DASH] = ACTIONS(598), + [anon_sym_new] = ACTIONS(600), + [anon_sym_class] = ACTIONS(600), + [anon_sym_switch] = ACTIONS(600), + [anon_sym_LBRACE] = ACTIONS(598), + [anon_sym_RBRACE] = ACTIONS(598), + [anon_sym_case] = ACTIONS(600), + [anon_sym_default] = ACTIONS(600), + [anon_sym_SEMI] = ACTIONS(598), + [anon_sym_assert] = ACTIONS(600), + [anon_sym_do] = ACTIONS(600), + [anon_sym_while] = ACTIONS(600), + [anon_sym_break] = ACTIONS(600), + [anon_sym_continue] = ACTIONS(600), + [anon_sym_return] = ACTIONS(600), + [anon_sym_yield] = ACTIONS(600), + [anon_sym_synchronized] = ACTIONS(600), + [anon_sym_throw] = ACTIONS(600), + [anon_sym_try] = ACTIONS(600), + [anon_sym_if] = ACTIONS(600), + [anon_sym_else] = ACTIONS(600), + [anon_sym_for] = ACTIONS(600), + [anon_sym_AT] = ACTIONS(600), + [anon_sym_open] = ACTIONS(600), + [anon_sym_module] = ACTIONS(600), + [anon_sym_static] = ACTIONS(600), + [anon_sym_package] = ACTIONS(600), + [anon_sym_import] = ACTIONS(600), + [anon_sym_enum] = ACTIONS(600), + [anon_sym_public] = ACTIONS(600), + [anon_sym_protected] = ACTIONS(600), + [anon_sym_private] = ACTIONS(600), + [anon_sym_abstract] = ACTIONS(600), + [anon_sym_strictfp] = ACTIONS(600), + [anon_sym_native] = ACTIONS(600), + [anon_sym_transient] = ACTIONS(600), + [anon_sym_volatile] = ACTIONS(600), + [anon_sym_sealed] = ACTIONS(600), + [anon_sym_non_DASHsealed] = ACTIONS(598), + [anon_sym_record] = ACTIONS(600), + [anon_sym_ATinterface] = ACTIONS(598), + [anon_sym_interface] = ACTIONS(600), + [anon_sym_byte] = ACTIONS(600), + [anon_sym_short] = ACTIONS(600), + [anon_sym_int] = ACTIONS(600), + [anon_sym_long] = ACTIONS(600), + [anon_sym_char] = ACTIONS(600), + [anon_sym_float] = ACTIONS(600), + [anon_sym_double] = ACTIONS(600), + [sym_boolean_type] = ACTIONS(600), + [sym_void_type] = ACTIONS(600), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [221] = { + [ts_builtin_sym_end] = ACTIONS(602), + [sym_identifier] = ACTIONS(604), + [sym_decimal_integer_literal] = ACTIONS(604), + [sym_hex_integer_literal] = ACTIONS(604), + [sym_octal_integer_literal] = ACTIONS(602), + [sym_binary_integer_literal] = ACTIONS(602), + [sym_decimal_floating_point_literal] = ACTIONS(602), + [sym_hex_floating_point_literal] = ACTIONS(604), + [sym_true] = ACTIONS(604), + [sym_false] = ACTIONS(604), + [sym_character_literal] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(604), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(602), + [sym_null_literal] = ACTIONS(604), + [anon_sym_LPAREN] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_PLUS] = ACTIONS(604), + [anon_sym_DASH] = ACTIONS(604), + [anon_sym_final] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_TILDE] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_new] = ACTIONS(604), + [anon_sym_class] = ACTIONS(604), + [anon_sym_switch] = ACTIONS(604), + [anon_sym_LBRACE] = ACTIONS(602), + [anon_sym_RBRACE] = ACTIONS(602), + [anon_sym_case] = ACTIONS(604), + [anon_sym_default] = ACTIONS(604), + [anon_sym_SEMI] = ACTIONS(602), + [anon_sym_assert] = ACTIONS(604), + [anon_sym_do] = ACTIONS(604), + [anon_sym_while] = ACTIONS(604), + [anon_sym_break] = ACTIONS(604), + [anon_sym_continue] = ACTIONS(604), + [anon_sym_return] = ACTIONS(604), + [anon_sym_yield] = ACTIONS(604), + [anon_sym_synchronized] = ACTIONS(604), + [anon_sym_throw] = ACTIONS(604), + [anon_sym_try] = ACTIONS(604), + [anon_sym_if] = ACTIONS(604), + [anon_sym_else] = ACTIONS(604), + [anon_sym_for] = ACTIONS(604), + [anon_sym_AT] = ACTIONS(604), + [anon_sym_open] = ACTIONS(604), + [anon_sym_module] = ACTIONS(604), + [anon_sym_static] = ACTIONS(604), + [anon_sym_package] = ACTIONS(604), + [anon_sym_import] = ACTIONS(604), + [anon_sym_enum] = ACTIONS(604), + [anon_sym_public] = ACTIONS(604), + [anon_sym_protected] = ACTIONS(604), + [anon_sym_private] = ACTIONS(604), + [anon_sym_abstract] = ACTIONS(604), + [anon_sym_strictfp] = ACTIONS(604), + [anon_sym_native] = ACTIONS(604), + [anon_sym_transient] = ACTIONS(604), + [anon_sym_volatile] = ACTIONS(604), + [anon_sym_sealed] = ACTIONS(604), + [anon_sym_non_DASHsealed] = ACTIONS(602), + [anon_sym_record] = ACTIONS(604), + [anon_sym_ATinterface] = ACTIONS(602), + [anon_sym_interface] = ACTIONS(604), + [anon_sym_byte] = ACTIONS(604), + [anon_sym_short] = ACTIONS(604), + [anon_sym_int] = ACTIONS(604), + [anon_sym_long] = ACTIONS(604), + [anon_sym_char] = ACTIONS(604), + [anon_sym_float] = ACTIONS(604), + [anon_sym_double] = ACTIONS(604), + [sym_boolean_type] = ACTIONS(604), + [sym_void_type] = ACTIONS(604), + [sym_this] = ACTIONS(604), + [sym_super] = ACTIONS(604), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [222] = { + [ts_builtin_sym_end] = ACTIONS(606), + [sym_identifier] = ACTIONS(608), + [sym_decimal_integer_literal] = ACTIONS(608), + [sym_hex_integer_literal] = ACTIONS(608), + [sym_octal_integer_literal] = ACTIONS(606), + [sym_binary_integer_literal] = ACTIONS(606), + [sym_decimal_floating_point_literal] = ACTIONS(606), + [sym_hex_floating_point_literal] = ACTIONS(608), + [sym_true] = ACTIONS(608), + [sym_false] = ACTIONS(608), + [sym_character_literal] = ACTIONS(606), + [anon_sym_DQUOTE] = ACTIONS(608), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(606), + [sym_null_literal] = ACTIONS(608), + [anon_sym_LPAREN] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(608), + [anon_sym_final] = ACTIONS(608), + [anon_sym_BANG] = ACTIONS(606), + [anon_sym_TILDE] = ACTIONS(606), + [anon_sym_PLUS_PLUS] = ACTIONS(606), + [anon_sym_DASH_DASH] = ACTIONS(606), + [anon_sym_new] = ACTIONS(608), + [anon_sym_class] = ACTIONS(608), + [anon_sym_switch] = ACTIONS(608), + [anon_sym_LBRACE] = ACTIONS(606), + [anon_sym_RBRACE] = ACTIONS(606), + [anon_sym_case] = ACTIONS(608), + [anon_sym_default] = ACTIONS(608), + [anon_sym_SEMI] = ACTIONS(606), + [anon_sym_assert] = ACTIONS(608), + [anon_sym_do] = ACTIONS(608), + [anon_sym_while] = ACTIONS(608), + [anon_sym_break] = ACTIONS(608), + [anon_sym_continue] = ACTIONS(608), + [anon_sym_return] = ACTIONS(608), + [anon_sym_yield] = ACTIONS(608), + [anon_sym_synchronized] = ACTIONS(608), + [anon_sym_throw] = ACTIONS(608), + [anon_sym_try] = ACTIONS(608), + [anon_sym_if] = ACTIONS(608), + [anon_sym_else] = ACTIONS(608), + [anon_sym_for] = ACTIONS(608), + [anon_sym_AT] = ACTIONS(608), + [anon_sym_open] = ACTIONS(608), + [anon_sym_module] = ACTIONS(608), + [anon_sym_static] = ACTIONS(608), + [anon_sym_package] = ACTIONS(608), + [anon_sym_import] = ACTIONS(608), + [anon_sym_enum] = ACTIONS(608), + [anon_sym_public] = ACTIONS(608), + [anon_sym_protected] = ACTIONS(608), + [anon_sym_private] = ACTIONS(608), + [anon_sym_abstract] = ACTIONS(608), + [anon_sym_strictfp] = ACTIONS(608), + [anon_sym_native] = ACTIONS(608), + [anon_sym_transient] = ACTIONS(608), + [anon_sym_volatile] = ACTIONS(608), + [anon_sym_sealed] = ACTIONS(608), + [anon_sym_non_DASHsealed] = ACTIONS(606), + [anon_sym_record] = ACTIONS(608), + [anon_sym_ATinterface] = ACTIONS(606), + [anon_sym_interface] = ACTIONS(608), + [anon_sym_byte] = ACTIONS(608), + [anon_sym_short] = ACTIONS(608), + [anon_sym_int] = ACTIONS(608), + [anon_sym_long] = ACTIONS(608), + [anon_sym_char] = ACTIONS(608), + [anon_sym_float] = ACTIONS(608), + [anon_sym_double] = ACTIONS(608), + [sym_boolean_type] = ACTIONS(608), + [sym_void_type] = ACTIONS(608), + [sym_this] = ACTIONS(608), + [sym_super] = ACTIONS(608), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [223] = { + [ts_builtin_sym_end] = ACTIONS(610), + [sym_identifier] = ACTIONS(612), + [sym_decimal_integer_literal] = ACTIONS(612), + [sym_hex_integer_literal] = ACTIONS(612), + [sym_octal_integer_literal] = ACTIONS(610), + [sym_binary_integer_literal] = ACTIONS(610), + [sym_decimal_floating_point_literal] = ACTIONS(610), + [sym_hex_floating_point_literal] = ACTIONS(612), + [sym_true] = ACTIONS(612), + [sym_false] = ACTIONS(612), + [sym_character_literal] = ACTIONS(610), + [anon_sym_DQUOTE] = ACTIONS(612), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(610), + [sym_null_literal] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(610), + [anon_sym_PLUS] = ACTIONS(612), + [anon_sym_DASH] = ACTIONS(612), + [anon_sym_final] = ACTIONS(612), + [anon_sym_BANG] = ACTIONS(610), + [anon_sym_TILDE] = ACTIONS(610), + [anon_sym_PLUS_PLUS] = ACTIONS(610), + [anon_sym_DASH_DASH] = ACTIONS(610), + [anon_sym_new] = ACTIONS(612), + [anon_sym_class] = ACTIONS(612), + [anon_sym_switch] = ACTIONS(612), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_RBRACE] = ACTIONS(610), + [anon_sym_case] = ACTIONS(612), + [anon_sym_default] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(610), + [anon_sym_assert] = ACTIONS(612), + [anon_sym_do] = ACTIONS(612), + [anon_sym_while] = ACTIONS(612), + [anon_sym_break] = ACTIONS(612), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_return] = ACTIONS(612), + [anon_sym_yield] = ACTIONS(612), + [anon_sym_synchronized] = ACTIONS(612), + [anon_sym_throw] = ACTIONS(612), + [anon_sym_try] = ACTIONS(612), + [anon_sym_if] = ACTIONS(612), + [anon_sym_else] = ACTIONS(612), + [anon_sym_for] = ACTIONS(612), + [anon_sym_AT] = ACTIONS(612), + [anon_sym_open] = ACTIONS(612), + [anon_sym_module] = ACTIONS(612), + [anon_sym_static] = ACTIONS(612), + [anon_sym_package] = ACTIONS(612), + [anon_sym_import] = ACTIONS(612), + [anon_sym_enum] = ACTIONS(612), + [anon_sym_public] = ACTIONS(612), + [anon_sym_protected] = ACTIONS(612), + [anon_sym_private] = ACTIONS(612), + [anon_sym_abstract] = ACTIONS(612), + [anon_sym_strictfp] = ACTIONS(612), + [anon_sym_native] = ACTIONS(612), + [anon_sym_transient] = ACTIONS(612), + [anon_sym_volatile] = ACTIONS(612), + [anon_sym_sealed] = ACTIONS(612), + [anon_sym_non_DASHsealed] = ACTIONS(610), + [anon_sym_record] = ACTIONS(612), + [anon_sym_ATinterface] = ACTIONS(610), + [anon_sym_interface] = ACTIONS(612), + [anon_sym_byte] = ACTIONS(612), + [anon_sym_short] = ACTIONS(612), + [anon_sym_int] = ACTIONS(612), + [anon_sym_long] = ACTIONS(612), + [anon_sym_char] = ACTIONS(612), + [anon_sym_float] = ACTIONS(612), + [anon_sym_double] = ACTIONS(612), + [sym_boolean_type] = ACTIONS(612), + [sym_void_type] = ACTIONS(612), + [sym_this] = ACTIONS(612), + [sym_super] = ACTIONS(612), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [224] = { + [ts_builtin_sym_end] = ACTIONS(614), + [sym_identifier] = ACTIONS(616), + [sym_decimal_integer_literal] = ACTIONS(616), + [sym_hex_integer_literal] = ACTIONS(616), + [sym_octal_integer_literal] = ACTIONS(614), + [sym_binary_integer_literal] = ACTIONS(614), + [sym_decimal_floating_point_literal] = ACTIONS(614), + [sym_hex_floating_point_literal] = ACTIONS(616), + [sym_true] = ACTIONS(616), + [sym_false] = ACTIONS(616), + [sym_character_literal] = ACTIONS(614), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(614), + [sym_null_literal] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(614), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_final] = ACTIONS(616), + [anon_sym_BANG] = ACTIONS(614), + [anon_sym_TILDE] = ACTIONS(614), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(616), + [anon_sym_class] = ACTIONS(616), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_RBRACE] = ACTIONS(614), + [anon_sym_case] = ACTIONS(616), + [anon_sym_default] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(614), + [anon_sym_assert] = ACTIONS(616), + [anon_sym_do] = ACTIONS(616), + [anon_sym_while] = ACTIONS(616), + [anon_sym_break] = ACTIONS(616), + [anon_sym_continue] = ACTIONS(616), + [anon_sym_return] = ACTIONS(616), + [anon_sym_yield] = ACTIONS(616), + [anon_sym_synchronized] = ACTIONS(616), + [anon_sym_throw] = ACTIONS(616), + [anon_sym_try] = ACTIONS(616), + [anon_sym_if] = ACTIONS(616), + [anon_sym_else] = ACTIONS(616), + [anon_sym_for] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym_open] = ACTIONS(616), + [anon_sym_module] = ACTIONS(616), + [anon_sym_static] = ACTIONS(616), + [anon_sym_package] = ACTIONS(616), + [anon_sym_import] = ACTIONS(616), + [anon_sym_enum] = ACTIONS(616), + [anon_sym_public] = ACTIONS(616), + [anon_sym_protected] = ACTIONS(616), + [anon_sym_private] = ACTIONS(616), + [anon_sym_abstract] = ACTIONS(616), + [anon_sym_strictfp] = ACTIONS(616), + [anon_sym_native] = ACTIONS(616), + [anon_sym_transient] = ACTIONS(616), + [anon_sym_volatile] = ACTIONS(616), + [anon_sym_sealed] = ACTIONS(616), + [anon_sym_non_DASHsealed] = ACTIONS(614), + [anon_sym_record] = ACTIONS(616), + [anon_sym_ATinterface] = ACTIONS(614), + [anon_sym_interface] = ACTIONS(616), + [anon_sym_byte] = ACTIONS(616), + [anon_sym_short] = ACTIONS(616), + [anon_sym_int] = ACTIONS(616), + [anon_sym_long] = ACTIONS(616), + [anon_sym_char] = ACTIONS(616), + [anon_sym_float] = ACTIONS(616), + [anon_sym_double] = ACTIONS(616), + [sym_boolean_type] = ACTIONS(616), + [sym_void_type] = ACTIONS(616), + [sym_this] = ACTIONS(616), + [sym_super] = ACTIONS(616), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [225] = { + [ts_builtin_sym_end] = ACTIONS(618), + [sym_identifier] = ACTIONS(620), + [sym_decimal_integer_literal] = ACTIONS(620), + [sym_hex_integer_literal] = ACTIONS(620), + [sym_octal_integer_literal] = ACTIONS(618), + [sym_binary_integer_literal] = ACTIONS(618), + [sym_decimal_floating_point_literal] = ACTIONS(618), + [sym_hex_floating_point_literal] = ACTIONS(620), + [sym_true] = ACTIONS(620), + [sym_false] = ACTIONS(620), + [sym_character_literal] = ACTIONS(618), + [anon_sym_DQUOTE] = ACTIONS(620), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(618), + [sym_null_literal] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_LT] = ACTIONS(618), + [anon_sym_PLUS] = ACTIONS(620), + [anon_sym_DASH] = ACTIONS(620), + [anon_sym_final] = ACTIONS(620), + [anon_sym_BANG] = ACTIONS(618), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_PLUS_PLUS] = ACTIONS(618), + [anon_sym_DASH_DASH] = ACTIONS(618), + [anon_sym_new] = ACTIONS(620), + [anon_sym_class] = ACTIONS(620), + [anon_sym_switch] = ACTIONS(620), + [anon_sym_LBRACE] = ACTIONS(618), + [anon_sym_RBRACE] = ACTIONS(618), + [anon_sym_case] = ACTIONS(620), + [anon_sym_default] = ACTIONS(620), + [anon_sym_SEMI] = ACTIONS(618), + [anon_sym_assert] = ACTIONS(620), + [anon_sym_do] = ACTIONS(620), + [anon_sym_while] = ACTIONS(620), + [anon_sym_break] = ACTIONS(620), + [anon_sym_continue] = ACTIONS(620), + [anon_sym_return] = ACTIONS(620), + [anon_sym_yield] = ACTIONS(620), + [anon_sym_synchronized] = ACTIONS(620), + [anon_sym_throw] = ACTIONS(620), + [anon_sym_try] = ACTIONS(620), + [anon_sym_if] = ACTIONS(620), + [anon_sym_else] = ACTIONS(620), + [anon_sym_for] = ACTIONS(620), + [anon_sym_AT] = ACTIONS(620), + [anon_sym_open] = ACTIONS(620), + [anon_sym_module] = ACTIONS(620), + [anon_sym_static] = ACTIONS(620), + [anon_sym_package] = ACTIONS(620), + [anon_sym_import] = ACTIONS(620), + [anon_sym_enum] = ACTIONS(620), + [anon_sym_public] = ACTIONS(620), + [anon_sym_protected] = ACTIONS(620), + [anon_sym_private] = ACTIONS(620), + [anon_sym_abstract] = ACTIONS(620), + [anon_sym_strictfp] = ACTIONS(620), + [anon_sym_native] = ACTIONS(620), + [anon_sym_transient] = ACTIONS(620), + [anon_sym_volatile] = ACTIONS(620), + [anon_sym_sealed] = ACTIONS(620), + [anon_sym_non_DASHsealed] = ACTIONS(618), + [anon_sym_record] = ACTIONS(620), + [anon_sym_ATinterface] = ACTIONS(618), + [anon_sym_interface] = ACTIONS(620), + [anon_sym_byte] = ACTIONS(620), + [anon_sym_short] = ACTIONS(620), + [anon_sym_int] = ACTIONS(620), + [anon_sym_long] = ACTIONS(620), + [anon_sym_char] = ACTIONS(620), + [anon_sym_float] = ACTIONS(620), + [anon_sym_double] = ACTIONS(620), + [sym_boolean_type] = ACTIONS(620), + [sym_void_type] = ACTIONS(620), + [sym_this] = ACTIONS(620), + [sym_super] = ACTIONS(620), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [226] = { + [ts_builtin_sym_end] = ACTIONS(622), + [sym_identifier] = ACTIONS(624), + [sym_decimal_integer_literal] = ACTIONS(624), + [sym_hex_integer_literal] = ACTIONS(624), + [sym_octal_integer_literal] = ACTIONS(622), + [sym_binary_integer_literal] = ACTIONS(622), + [sym_decimal_floating_point_literal] = ACTIONS(622), + [sym_hex_floating_point_literal] = ACTIONS(624), + [sym_true] = ACTIONS(624), + [sym_false] = ACTIONS(624), + [sym_character_literal] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(624), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(622), + [sym_null_literal] = ACTIONS(624), + [anon_sym_LPAREN] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(622), + [anon_sym_PLUS] = ACTIONS(624), + [anon_sym_DASH] = ACTIONS(624), + [anon_sym_final] = ACTIONS(624), + [anon_sym_BANG] = ACTIONS(622), + [anon_sym_TILDE] = ACTIONS(622), + [anon_sym_PLUS_PLUS] = ACTIONS(622), + [anon_sym_DASH_DASH] = ACTIONS(622), + [anon_sym_new] = ACTIONS(624), + [anon_sym_class] = ACTIONS(624), + [anon_sym_switch] = ACTIONS(624), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_RBRACE] = ACTIONS(622), + [anon_sym_case] = ACTIONS(624), + [anon_sym_default] = ACTIONS(624), + [anon_sym_SEMI] = ACTIONS(622), + [anon_sym_assert] = ACTIONS(624), + [anon_sym_do] = ACTIONS(624), + [anon_sym_while] = ACTIONS(624), + [anon_sym_break] = ACTIONS(624), + [anon_sym_continue] = ACTIONS(624), + [anon_sym_return] = ACTIONS(624), + [anon_sym_yield] = ACTIONS(624), + [anon_sym_synchronized] = ACTIONS(624), + [anon_sym_throw] = ACTIONS(624), + [anon_sym_try] = ACTIONS(624), + [anon_sym_if] = ACTIONS(624), + [anon_sym_else] = ACTIONS(624), + [anon_sym_for] = ACTIONS(624), + [anon_sym_AT] = ACTIONS(624), + [anon_sym_open] = ACTIONS(624), + [anon_sym_module] = ACTIONS(624), + [anon_sym_static] = ACTIONS(624), + [anon_sym_package] = ACTIONS(624), + [anon_sym_import] = ACTIONS(624), + [anon_sym_enum] = ACTIONS(624), + [anon_sym_public] = ACTIONS(624), + [anon_sym_protected] = ACTIONS(624), + [anon_sym_private] = ACTIONS(624), + [anon_sym_abstract] = ACTIONS(624), + [anon_sym_strictfp] = ACTIONS(624), + [anon_sym_native] = ACTIONS(624), + [anon_sym_transient] = ACTIONS(624), + [anon_sym_volatile] = ACTIONS(624), + [anon_sym_sealed] = ACTIONS(624), + [anon_sym_non_DASHsealed] = ACTIONS(622), + [anon_sym_record] = ACTIONS(624), + [anon_sym_ATinterface] = ACTIONS(622), + [anon_sym_interface] = ACTIONS(624), + [anon_sym_byte] = ACTIONS(624), + [anon_sym_short] = ACTIONS(624), + [anon_sym_int] = ACTIONS(624), + [anon_sym_long] = ACTIONS(624), + [anon_sym_char] = ACTIONS(624), + [anon_sym_float] = ACTIONS(624), + [anon_sym_double] = ACTIONS(624), + [sym_boolean_type] = ACTIONS(624), + [sym_void_type] = ACTIONS(624), + [sym_this] = ACTIONS(624), + [sym_super] = ACTIONS(624), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [227] = { + [ts_builtin_sym_end] = ACTIONS(626), + [sym_identifier] = ACTIONS(628), + [sym_decimal_integer_literal] = ACTIONS(628), + [sym_hex_integer_literal] = ACTIONS(628), + [sym_octal_integer_literal] = ACTIONS(626), + [sym_binary_integer_literal] = ACTIONS(626), + [sym_decimal_floating_point_literal] = ACTIONS(626), + [sym_hex_floating_point_literal] = ACTIONS(628), + [sym_true] = ACTIONS(628), + [sym_false] = ACTIONS(628), + [sym_character_literal] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(628), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(626), + [sym_null_literal] = ACTIONS(628), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(628), + [anon_sym_DASH] = ACTIONS(628), + [anon_sym_final] = ACTIONS(628), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_TILDE] = ACTIONS(626), + [anon_sym_PLUS_PLUS] = ACTIONS(626), + [anon_sym_DASH_DASH] = ACTIONS(626), + [anon_sym_new] = ACTIONS(628), + [anon_sym_class] = ACTIONS(628), + [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_SEMI] = ACTIONS(626), + [anon_sym_assert] = ACTIONS(628), + [anon_sym_do] = ACTIONS(628), + [anon_sym_while] = ACTIONS(628), + [anon_sym_break] = ACTIONS(628), + [anon_sym_continue] = ACTIONS(628), + [anon_sym_return] = ACTIONS(628), + [anon_sym_yield] = ACTIONS(628), + [anon_sym_synchronized] = ACTIONS(628), + [anon_sym_throw] = ACTIONS(628), + [anon_sym_try] = ACTIONS(628), + [anon_sym_if] = ACTIONS(628), + [anon_sym_else] = ACTIONS(628), + [anon_sym_for] = ACTIONS(628), + [anon_sym_AT] = ACTIONS(628), + [anon_sym_open] = ACTIONS(628), + [anon_sym_module] = ACTIONS(628), + [anon_sym_static] = ACTIONS(628), + [anon_sym_package] = ACTIONS(628), + [anon_sym_import] = ACTIONS(628), + [anon_sym_enum] = ACTIONS(628), + [anon_sym_public] = ACTIONS(628), + [anon_sym_protected] = ACTIONS(628), + [anon_sym_private] = ACTIONS(628), + [anon_sym_abstract] = ACTIONS(628), + [anon_sym_strictfp] = ACTIONS(628), + [anon_sym_native] = ACTIONS(628), + [anon_sym_transient] = ACTIONS(628), + [anon_sym_volatile] = ACTIONS(628), + [anon_sym_sealed] = ACTIONS(628), + [anon_sym_non_DASHsealed] = ACTIONS(626), + [anon_sym_record] = ACTIONS(628), + [anon_sym_ATinterface] = ACTIONS(626), + [anon_sym_interface] = ACTIONS(628), + [anon_sym_byte] = ACTIONS(628), + [anon_sym_short] = ACTIONS(628), + [anon_sym_int] = ACTIONS(628), + [anon_sym_long] = ACTIONS(628), + [anon_sym_char] = ACTIONS(628), + [anon_sym_float] = ACTIONS(628), + [anon_sym_double] = ACTIONS(628), + [sym_boolean_type] = ACTIONS(628), + [sym_void_type] = ACTIONS(628), + [sym_this] = ACTIONS(628), + [sym_super] = ACTIONS(628), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [228] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(634), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33030,72 +33544,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [287] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(433), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [229] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(580), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33105,72 +33623,471 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [288] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(450), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [230] = { + [ts_builtin_sym_end] = ACTIONS(630), + [sym_identifier] = ACTIONS(632), + [sym_decimal_integer_literal] = ACTIONS(632), + [sym_hex_integer_literal] = ACTIONS(632), + [sym_octal_integer_literal] = ACTIONS(630), + [sym_binary_integer_literal] = ACTIONS(630), + [sym_decimal_floating_point_literal] = ACTIONS(630), + [sym_hex_floating_point_literal] = ACTIONS(632), + [sym_true] = ACTIONS(632), + [sym_false] = ACTIONS(632), + [sym_character_literal] = ACTIONS(630), + [anon_sym_DQUOTE] = ACTIONS(632), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(630), + [sym_null_literal] = ACTIONS(632), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_LT] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(632), + [anon_sym_DASH] = ACTIONS(632), + [anon_sym_final] = ACTIONS(632), + [anon_sym_BANG] = ACTIONS(630), + [anon_sym_TILDE] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(630), + [anon_sym_DASH_DASH] = ACTIONS(630), + [anon_sym_new] = ACTIONS(632), + [anon_sym_class] = ACTIONS(632), + [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_SEMI] = ACTIONS(630), + [anon_sym_assert] = ACTIONS(632), + [anon_sym_do] = ACTIONS(632), + [anon_sym_while] = ACTIONS(632), + [anon_sym_break] = ACTIONS(632), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_return] = ACTIONS(632), + [anon_sym_yield] = ACTIONS(632), + [anon_sym_synchronized] = ACTIONS(632), + [anon_sym_throw] = ACTIONS(632), + [anon_sym_try] = ACTIONS(632), + [anon_sym_if] = ACTIONS(632), + [anon_sym_else] = ACTIONS(632), + [anon_sym_for] = ACTIONS(632), + [anon_sym_AT] = ACTIONS(632), + [anon_sym_open] = ACTIONS(632), + [anon_sym_module] = ACTIONS(632), + [anon_sym_static] = ACTIONS(632), + [anon_sym_package] = ACTIONS(632), + [anon_sym_import] = ACTIONS(632), + [anon_sym_enum] = ACTIONS(632), + [anon_sym_public] = ACTIONS(632), + [anon_sym_protected] = ACTIONS(632), + [anon_sym_private] = ACTIONS(632), + [anon_sym_abstract] = ACTIONS(632), + [anon_sym_strictfp] = ACTIONS(632), + [anon_sym_native] = ACTIONS(632), + [anon_sym_transient] = ACTIONS(632), + [anon_sym_volatile] = ACTIONS(632), + [anon_sym_sealed] = ACTIONS(632), + [anon_sym_non_DASHsealed] = ACTIONS(630), + [anon_sym_record] = ACTIONS(632), + [anon_sym_ATinterface] = ACTIONS(630), + [anon_sym_interface] = ACTIONS(632), + [anon_sym_byte] = ACTIONS(632), + [anon_sym_short] = ACTIONS(632), + [anon_sym_int] = ACTIONS(632), + [anon_sym_long] = ACTIONS(632), + [anon_sym_char] = ACTIONS(632), + [anon_sym_float] = ACTIONS(632), + [anon_sym_double] = ACTIONS(632), + [sym_boolean_type] = ACTIONS(632), + [sym_void_type] = ACTIONS(632), + [sym_this] = ACTIONS(632), + [sym_super] = ACTIONS(632), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [231] = { + [ts_builtin_sym_end] = ACTIONS(634), + [sym_identifier] = ACTIONS(636), + [sym_decimal_integer_literal] = ACTIONS(636), + [sym_hex_integer_literal] = ACTIONS(636), + [sym_octal_integer_literal] = ACTIONS(634), + [sym_binary_integer_literal] = ACTIONS(634), + [sym_decimal_floating_point_literal] = ACTIONS(634), + [sym_hex_floating_point_literal] = ACTIONS(636), + [sym_true] = ACTIONS(636), + [sym_false] = ACTIONS(636), + [sym_character_literal] = ACTIONS(634), + [anon_sym_DQUOTE] = ACTIONS(636), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(634), + [sym_null_literal] = ACTIONS(636), + [anon_sym_LPAREN] = ACTIONS(634), + [anon_sym_LT] = ACTIONS(634), + [anon_sym_PLUS] = ACTIONS(636), + [anon_sym_DASH] = ACTIONS(636), + [anon_sym_final] = ACTIONS(636), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_TILDE] = ACTIONS(634), + [anon_sym_PLUS_PLUS] = ACTIONS(634), + [anon_sym_DASH_DASH] = ACTIONS(634), + [anon_sym_new] = ACTIONS(636), + [anon_sym_class] = ACTIONS(636), + [anon_sym_switch] = ACTIONS(636), + [anon_sym_LBRACE] = ACTIONS(634), + [anon_sym_RBRACE] = ACTIONS(634), + [anon_sym_case] = ACTIONS(636), + [anon_sym_default] = ACTIONS(636), + [anon_sym_SEMI] = ACTIONS(634), + [anon_sym_assert] = ACTIONS(636), + [anon_sym_do] = ACTIONS(636), + [anon_sym_while] = ACTIONS(636), + [anon_sym_break] = ACTIONS(636), + [anon_sym_continue] = ACTIONS(636), + [anon_sym_return] = ACTIONS(636), + [anon_sym_yield] = ACTIONS(636), + [anon_sym_synchronized] = ACTIONS(636), + [anon_sym_throw] = ACTIONS(636), + [anon_sym_try] = ACTIONS(636), + [anon_sym_if] = ACTIONS(636), + [anon_sym_else] = ACTIONS(636), + [anon_sym_for] = ACTIONS(636), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_open] = ACTIONS(636), + [anon_sym_module] = ACTIONS(636), + [anon_sym_static] = ACTIONS(636), + [anon_sym_package] = ACTIONS(636), + [anon_sym_import] = ACTIONS(636), + [anon_sym_enum] = ACTIONS(636), + [anon_sym_public] = ACTIONS(636), + [anon_sym_protected] = ACTIONS(636), + [anon_sym_private] = ACTIONS(636), + [anon_sym_abstract] = ACTIONS(636), + [anon_sym_strictfp] = ACTIONS(636), + [anon_sym_native] = ACTIONS(636), + [anon_sym_transient] = ACTIONS(636), + [anon_sym_volatile] = ACTIONS(636), + [anon_sym_sealed] = ACTIONS(636), + [anon_sym_non_DASHsealed] = ACTIONS(634), + [anon_sym_record] = ACTIONS(636), + [anon_sym_ATinterface] = ACTIONS(634), + [anon_sym_interface] = ACTIONS(636), + [anon_sym_byte] = ACTIONS(636), + [anon_sym_short] = ACTIONS(636), + [anon_sym_int] = ACTIONS(636), + [anon_sym_long] = ACTIONS(636), + [anon_sym_char] = ACTIONS(636), + [anon_sym_float] = ACTIONS(636), + [anon_sym_double] = ACTIONS(636), + [sym_boolean_type] = ACTIONS(636), + [sym_void_type] = ACTIONS(636), + [sym_this] = ACTIONS(636), + [sym_super] = ACTIONS(636), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [232] = { + [ts_builtin_sym_end] = ACTIONS(638), + [sym_identifier] = ACTIONS(640), + [sym_decimal_integer_literal] = ACTIONS(640), + [sym_hex_integer_literal] = ACTIONS(640), + [sym_octal_integer_literal] = ACTIONS(638), + [sym_binary_integer_literal] = ACTIONS(638), + [sym_decimal_floating_point_literal] = ACTIONS(638), + [sym_hex_floating_point_literal] = ACTIONS(640), + [sym_true] = ACTIONS(640), + [sym_false] = ACTIONS(640), + [sym_character_literal] = ACTIONS(638), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(638), + [sym_null_literal] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(638), + [anon_sym_LT] = ACTIONS(638), + [anon_sym_PLUS] = ACTIONS(640), + [anon_sym_DASH] = ACTIONS(640), + [anon_sym_final] = ACTIONS(640), + [anon_sym_BANG] = ACTIONS(638), + [anon_sym_TILDE] = ACTIONS(638), + [anon_sym_PLUS_PLUS] = ACTIONS(638), + [anon_sym_DASH_DASH] = ACTIONS(638), + [anon_sym_new] = ACTIONS(640), + [anon_sym_class] = ACTIONS(640), + [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_SEMI] = ACTIONS(638), + [anon_sym_assert] = ACTIONS(640), + [anon_sym_do] = ACTIONS(640), + [anon_sym_while] = ACTIONS(640), + [anon_sym_break] = ACTIONS(640), + [anon_sym_continue] = ACTIONS(640), + [anon_sym_return] = ACTIONS(640), + [anon_sym_yield] = ACTIONS(640), + [anon_sym_synchronized] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(640), + [anon_sym_try] = ACTIONS(640), + [anon_sym_if] = ACTIONS(640), + [anon_sym_else] = ACTIONS(640), + [anon_sym_for] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym_open] = ACTIONS(640), + [anon_sym_module] = ACTIONS(640), + [anon_sym_static] = ACTIONS(640), + [anon_sym_package] = ACTIONS(640), + [anon_sym_import] = ACTIONS(640), + [anon_sym_enum] = ACTIONS(640), + [anon_sym_public] = ACTIONS(640), + [anon_sym_protected] = ACTIONS(640), + [anon_sym_private] = ACTIONS(640), + [anon_sym_abstract] = ACTIONS(640), + [anon_sym_strictfp] = ACTIONS(640), + [anon_sym_native] = ACTIONS(640), + [anon_sym_transient] = ACTIONS(640), + [anon_sym_volatile] = ACTIONS(640), + [anon_sym_sealed] = ACTIONS(640), + [anon_sym_non_DASHsealed] = ACTIONS(638), + [anon_sym_record] = ACTIONS(640), + [anon_sym_ATinterface] = ACTIONS(638), + [anon_sym_interface] = ACTIONS(640), + [anon_sym_byte] = ACTIONS(640), + [anon_sym_short] = ACTIONS(640), + [anon_sym_int] = ACTIONS(640), + [anon_sym_long] = ACTIONS(640), + [anon_sym_char] = ACTIONS(640), + [anon_sym_float] = ACTIONS(640), + [anon_sym_double] = ACTIONS(640), + [sym_boolean_type] = ACTIONS(640), + [sym_void_type] = ACTIONS(640), + [sym_this] = ACTIONS(640), + [sym_super] = ACTIONS(640), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [233] = { + [ts_builtin_sym_end] = ACTIONS(642), + [sym_identifier] = ACTIONS(644), + [sym_decimal_integer_literal] = ACTIONS(644), + [sym_hex_integer_literal] = ACTIONS(644), + [sym_octal_integer_literal] = ACTIONS(642), + [sym_binary_integer_literal] = ACTIONS(642), + [sym_decimal_floating_point_literal] = ACTIONS(642), + [sym_hex_floating_point_literal] = ACTIONS(644), + [sym_true] = ACTIONS(644), + [sym_false] = ACTIONS(644), + [sym_character_literal] = ACTIONS(642), + [anon_sym_DQUOTE] = ACTIONS(644), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(642), + [sym_null_literal] = ACTIONS(644), + [anon_sym_LPAREN] = ACTIONS(642), + [anon_sym_LT] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(644), + [anon_sym_DASH] = ACTIONS(644), + [anon_sym_final] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_PLUS_PLUS] = ACTIONS(642), + [anon_sym_DASH_DASH] = ACTIONS(642), + [anon_sym_new] = ACTIONS(644), + [anon_sym_class] = ACTIONS(644), + [anon_sym_switch] = ACTIONS(644), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_case] = ACTIONS(644), + [anon_sym_default] = ACTIONS(644), + [anon_sym_SEMI] = ACTIONS(642), + [anon_sym_assert] = ACTIONS(644), + [anon_sym_do] = ACTIONS(644), + [anon_sym_while] = ACTIONS(644), + [anon_sym_break] = ACTIONS(644), + [anon_sym_continue] = ACTIONS(644), + [anon_sym_return] = ACTIONS(644), + [anon_sym_yield] = ACTIONS(644), + [anon_sym_synchronized] = ACTIONS(644), + [anon_sym_throw] = ACTIONS(644), + [anon_sym_try] = ACTIONS(644), + [anon_sym_if] = ACTIONS(644), + [anon_sym_else] = ACTIONS(644), + [anon_sym_for] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(644), + [anon_sym_open] = ACTIONS(644), + [anon_sym_module] = ACTIONS(644), + [anon_sym_static] = ACTIONS(644), + [anon_sym_package] = ACTIONS(644), + [anon_sym_import] = ACTIONS(644), + [anon_sym_enum] = ACTIONS(644), + [anon_sym_public] = ACTIONS(644), + [anon_sym_protected] = ACTIONS(644), + [anon_sym_private] = ACTIONS(644), + [anon_sym_abstract] = ACTIONS(644), + [anon_sym_strictfp] = ACTIONS(644), + [anon_sym_native] = ACTIONS(644), + [anon_sym_transient] = ACTIONS(644), + [anon_sym_volatile] = ACTIONS(644), + [anon_sym_sealed] = ACTIONS(644), + [anon_sym_non_DASHsealed] = ACTIONS(642), + [anon_sym_record] = ACTIONS(644), + [anon_sym_ATinterface] = ACTIONS(642), + [anon_sym_interface] = ACTIONS(644), + [anon_sym_byte] = ACTIONS(644), + [anon_sym_short] = ACTIONS(644), + [anon_sym_int] = ACTIONS(644), + [anon_sym_long] = ACTIONS(644), + [anon_sym_char] = ACTIONS(644), + [anon_sym_float] = ACTIONS(644), + [anon_sym_double] = ACTIONS(644), + [sym_boolean_type] = ACTIONS(644), + [sym_void_type] = ACTIONS(644), + [sym_this] = ACTIONS(644), + [sym_super] = ACTIONS(644), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [234] = { + [ts_builtin_sym_end] = ACTIONS(646), + [sym_identifier] = ACTIONS(648), + [sym_decimal_integer_literal] = ACTIONS(648), + [sym_hex_integer_literal] = ACTIONS(648), + [sym_octal_integer_literal] = ACTIONS(646), + [sym_binary_integer_literal] = ACTIONS(646), + [sym_decimal_floating_point_literal] = ACTIONS(646), + [sym_hex_floating_point_literal] = ACTIONS(648), + [sym_true] = ACTIONS(648), + [sym_false] = ACTIONS(648), + [sym_character_literal] = ACTIONS(646), + [anon_sym_DQUOTE] = ACTIONS(648), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(646), + [sym_null_literal] = ACTIONS(648), + [anon_sym_LPAREN] = ACTIONS(646), + [anon_sym_LT] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(648), + [anon_sym_DASH] = ACTIONS(648), + [anon_sym_final] = ACTIONS(648), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_TILDE] = ACTIONS(646), + [anon_sym_PLUS_PLUS] = ACTIONS(646), + [anon_sym_DASH_DASH] = ACTIONS(646), + [anon_sym_new] = ACTIONS(648), + [anon_sym_class] = ACTIONS(648), + [anon_sym_switch] = ACTIONS(648), + [anon_sym_LBRACE] = ACTIONS(646), + [anon_sym_RBRACE] = ACTIONS(646), + [anon_sym_case] = ACTIONS(648), + [anon_sym_default] = ACTIONS(648), + [anon_sym_SEMI] = ACTIONS(646), + [anon_sym_assert] = ACTIONS(648), + [anon_sym_do] = ACTIONS(648), + [anon_sym_while] = ACTIONS(648), + [anon_sym_break] = ACTIONS(648), + [anon_sym_continue] = ACTIONS(648), + [anon_sym_return] = ACTIONS(648), + [anon_sym_yield] = ACTIONS(648), + [anon_sym_synchronized] = ACTIONS(648), + [anon_sym_throw] = ACTIONS(648), + [anon_sym_try] = ACTIONS(648), + [anon_sym_if] = ACTIONS(648), + [anon_sym_else] = ACTIONS(648), + [anon_sym_for] = ACTIONS(648), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_open] = ACTIONS(648), + [anon_sym_module] = ACTIONS(648), + [anon_sym_static] = ACTIONS(648), + [anon_sym_package] = ACTIONS(648), + [anon_sym_import] = ACTIONS(648), + [anon_sym_enum] = ACTIONS(648), + [anon_sym_public] = ACTIONS(648), + [anon_sym_protected] = ACTIONS(648), + [anon_sym_private] = ACTIONS(648), + [anon_sym_abstract] = ACTIONS(648), + [anon_sym_strictfp] = ACTIONS(648), + [anon_sym_native] = ACTIONS(648), + [anon_sym_transient] = ACTIONS(648), + [anon_sym_volatile] = ACTIONS(648), + [anon_sym_sealed] = ACTIONS(648), + [anon_sym_non_DASHsealed] = ACTIONS(646), + [anon_sym_record] = ACTIONS(648), + [anon_sym_ATinterface] = ACTIONS(646), + [anon_sym_interface] = ACTIONS(648), + [anon_sym_byte] = ACTIONS(648), + [anon_sym_short] = ACTIONS(648), + [anon_sym_int] = ACTIONS(648), + [anon_sym_long] = ACTIONS(648), + [anon_sym_char] = ACTIONS(648), + [anon_sym_float] = ACTIONS(648), + [anon_sym_double] = ACTIONS(648), + [sym_boolean_type] = ACTIONS(648), + [sym_void_type] = ACTIONS(648), + [sym_this] = ACTIONS(648), + [sym_super] = ACTIONS(648), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [235] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(612), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33180,72 +34097,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [289] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(452), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1073), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(323), - [sym_array_access] = STATE(323), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1073), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(288), + [236] = { + [ts_builtin_sym_end] = ACTIONS(650), + [sym_identifier] = ACTIONS(652), + [sym_decimal_integer_literal] = ACTIONS(652), + [sym_hex_integer_literal] = ACTIONS(652), + [sym_octal_integer_literal] = ACTIONS(650), + [sym_binary_integer_literal] = ACTIONS(650), + [sym_decimal_floating_point_literal] = ACTIONS(650), + [sym_hex_floating_point_literal] = ACTIONS(652), + [sym_true] = ACTIONS(652), + [sym_false] = ACTIONS(652), + [sym_character_literal] = ACTIONS(650), + [anon_sym_DQUOTE] = ACTIONS(652), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(650), + [sym_null_literal] = ACTIONS(652), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_PLUS] = ACTIONS(652), + [anon_sym_DASH] = ACTIONS(652), + [anon_sym_final] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_TILDE] = ACTIONS(650), + [anon_sym_PLUS_PLUS] = ACTIONS(650), + [anon_sym_DASH_DASH] = ACTIONS(650), + [anon_sym_new] = ACTIONS(652), + [anon_sym_class] = ACTIONS(652), + [anon_sym_switch] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_RBRACE] = ACTIONS(650), + [anon_sym_case] = ACTIONS(652), + [anon_sym_default] = ACTIONS(652), + [anon_sym_SEMI] = ACTIONS(650), + [anon_sym_assert] = ACTIONS(652), + [anon_sym_do] = ACTIONS(652), + [anon_sym_while] = ACTIONS(652), + [anon_sym_break] = ACTIONS(652), + [anon_sym_continue] = ACTIONS(652), + [anon_sym_return] = ACTIONS(652), + [anon_sym_yield] = ACTIONS(652), + [anon_sym_synchronized] = ACTIONS(652), + [anon_sym_throw] = ACTIONS(652), + [anon_sym_try] = ACTIONS(652), + [anon_sym_if] = ACTIONS(652), + [anon_sym_else] = ACTIONS(652), + [anon_sym_for] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(652), + [anon_sym_open] = ACTIONS(652), + [anon_sym_module] = ACTIONS(652), + [anon_sym_static] = ACTIONS(652), + [anon_sym_package] = ACTIONS(652), + [anon_sym_import] = ACTIONS(652), + [anon_sym_enum] = ACTIONS(652), + [anon_sym_public] = ACTIONS(652), + [anon_sym_protected] = ACTIONS(652), + [anon_sym_private] = ACTIONS(652), + [anon_sym_abstract] = ACTIONS(652), + [anon_sym_strictfp] = ACTIONS(652), + [anon_sym_native] = ACTIONS(652), + [anon_sym_transient] = ACTIONS(652), + [anon_sym_volatile] = ACTIONS(652), + [anon_sym_sealed] = ACTIONS(652), + [anon_sym_non_DASHsealed] = ACTIONS(650), + [anon_sym_record] = ACTIONS(652), + [anon_sym_ATinterface] = ACTIONS(650), + [anon_sym_interface] = ACTIONS(652), + [anon_sym_byte] = ACTIONS(652), + [anon_sym_short] = ACTIONS(652), + [anon_sym_int] = ACTIONS(652), + [anon_sym_long] = ACTIONS(652), + [anon_sym_char] = ACTIONS(652), + [anon_sym_float] = ACTIONS(652), + [anon_sym_double] = ACTIONS(652), + [sym_boolean_type] = ACTIONS(652), + [sym_void_type] = ACTIONS(652), + [sym_this] = ACTIONS(652), + [sym_super] = ACTIONS(652), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [237] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(534), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33255,72 +34255,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_PLUS] = ACTIONS(15), - [anon_sym_DASH] = ACTIONS(15), - [anon_sym_BANG] = ACTIONS(17), - [anon_sym_TILDE] = ACTIONS(17), - [anon_sym_PLUS_PLUS] = ACTIONS(19), - [anon_sym_DASH_DASH] = ACTIONS(19), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(284), - [anon_sym_module] = ACTIONS(284), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [290] = { - [sym__literal] = STATE(381), - [sym_expression] = STATE(475), - [sym_cast_expression] = STATE(437), - [sym_assignment_expression] = STATE(437), - [sym_binary_expression] = STATE(437), - [sym_instanceof_expression] = STATE(437), - [sym_lambda_expression] = STATE(437), - [sym_inferred_parameters] = STATE(1102), - [sym_ternary_expression] = STATE(437), - [sym_unary_expression] = STATE(437), - [sym_update_expression] = STATE(437), - [sym_primary_expression] = STATE(407), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(329), - [sym_array_access] = STATE(329), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_switch_expression] = STATE(441), - [sym__annotation] = STATE(572), - [sym_marker_annotation] = STATE(572), - [sym_annotation] = STATE(572), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(657), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [sym_formal_parameters] = STATE(1102), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [sym_identifier] = ACTIONS(795), + [238] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(625), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33330,63 +34334,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_TILDE] = ACTIONS(801), - [anon_sym_PLUS_PLUS] = ACTIONS(803), - [anon_sym_DASH_DASH] = ACTIONS(803), - [anon_sym_new] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(25), - [anon_sym_AT] = ACTIONS(321), - [anon_sym_open] = ACTIONS(805), - [anon_sym_module] = ACTIONS(805), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [291] = { - [sym__literal] = STATE(381), - [sym_primary_expression] = STATE(874), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(752), + [239] = { + [ts_builtin_sym_end] = ACTIONS(654), + [sym_identifier] = ACTIONS(656), + [sym_decimal_integer_literal] = ACTIONS(656), + [sym_hex_integer_literal] = ACTIONS(656), + [sym_octal_integer_literal] = ACTIONS(654), + [sym_binary_integer_literal] = ACTIONS(654), + [sym_decimal_floating_point_literal] = ACTIONS(654), + [sym_hex_floating_point_literal] = ACTIONS(656), + [sym_true] = ACTIONS(656), + [sym_false] = ACTIONS(656), + [sym_character_literal] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(656), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(654), + [sym_null_literal] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(654), + [anon_sym_PLUS] = ACTIONS(656), + [anon_sym_DASH] = ACTIONS(656), + [anon_sym_final] = ACTIONS(656), + [anon_sym_BANG] = ACTIONS(654), + [anon_sym_TILDE] = ACTIONS(654), + [anon_sym_PLUS_PLUS] = ACTIONS(654), + [anon_sym_DASH_DASH] = ACTIONS(654), + [anon_sym_new] = ACTIONS(656), + [anon_sym_class] = ACTIONS(656), + [anon_sym_switch] = ACTIONS(656), + [anon_sym_LBRACE] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(654), + [anon_sym_case] = ACTIONS(656), + [anon_sym_default] = ACTIONS(656), + [anon_sym_SEMI] = ACTIONS(654), + [anon_sym_assert] = ACTIONS(656), + [anon_sym_do] = ACTIONS(656), + [anon_sym_while] = ACTIONS(656), + [anon_sym_break] = ACTIONS(656), + [anon_sym_continue] = ACTIONS(656), + [anon_sym_return] = ACTIONS(656), + [anon_sym_yield] = ACTIONS(656), + [anon_sym_synchronized] = ACTIONS(656), + [anon_sym_throw] = ACTIONS(656), + [anon_sym_try] = ACTIONS(656), + [anon_sym_if] = ACTIONS(656), + [anon_sym_else] = ACTIONS(656), + [anon_sym_for] = ACTIONS(656), + [anon_sym_AT] = ACTIONS(656), + [anon_sym_open] = ACTIONS(656), + [anon_sym_module] = ACTIONS(656), + [anon_sym_static] = ACTIONS(656), + [anon_sym_package] = ACTIONS(656), + [anon_sym_import] = ACTIONS(656), + [anon_sym_enum] = ACTIONS(656), + [anon_sym_public] = ACTIONS(656), + [anon_sym_protected] = ACTIONS(656), + [anon_sym_private] = ACTIONS(656), + [anon_sym_abstract] = ACTIONS(656), + [anon_sym_strictfp] = ACTIONS(656), + [anon_sym_native] = ACTIONS(656), + [anon_sym_transient] = ACTIONS(656), + [anon_sym_volatile] = ACTIONS(656), + [anon_sym_sealed] = ACTIONS(656), + [anon_sym_non_DASHsealed] = ACTIONS(654), + [anon_sym_record] = ACTIONS(656), + [anon_sym_ATinterface] = ACTIONS(654), + [anon_sym_interface] = ACTIONS(656), + [anon_sym_byte] = ACTIONS(656), + [anon_sym_short] = ACTIONS(656), + [anon_sym_int] = ACTIONS(656), + [anon_sym_long] = ACTIONS(656), + [anon_sym_char] = ACTIONS(656), + [anon_sym_float] = ACTIONS(656), + [anon_sym_double] = ACTIONS(656), + [sym_boolean_type] = ACTIONS(656), + [sym_void_type] = ACTIONS(656), + [sym_this] = ACTIONS(656), + [sym_super] = ACTIONS(656), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [240] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(604), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_resource] = STATE(1028), - [sym__annotation] = STATE(526), - [sym_marker_annotation] = STATE(526), - [sym_annotation] = STATE(526), - [sym_modifiers] = STATE(605), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(620), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [aux_sym_modifiers_repeat1] = STATE(461), - [sym_identifier] = ACTIONS(937), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33396,219 +34492,471 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_RPAREN] = ACTIONS(941), - [anon_sym_new] = ACTIONS(943), - [anon_sym_default] = ACTIONS(280), - [anon_sym_synchronized] = ACTIONS(280), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_open] = ACTIONS(945), - [anon_sym_module] = ACTIONS(945), - [anon_sym_static] = ACTIONS(280), - [anon_sym_public] = ACTIONS(280), - [anon_sym_protected] = ACTIONS(280), - [anon_sym_private] = ACTIONS(280), - [anon_sym_abstract] = ACTIONS(280), - [anon_sym_final] = ACTIONS(280), - [anon_sym_strictfp] = ACTIONS(280), - [anon_sym_native] = ACTIONS(280), - [anon_sym_transient] = ACTIONS(280), - [anon_sym_volatile] = ACTIONS(280), - [anon_sym_sealed] = ACTIONS(280), - [anon_sym_non_DASHsealed] = ACTIONS(286), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [292] = { - [sym_identifier] = ACTIONS(947), - [sym_decimal_integer_literal] = ACTIONS(947), - [sym_hex_integer_literal] = ACTIONS(947), - [sym_octal_integer_literal] = ACTIONS(949), - [sym_binary_integer_literal] = ACTIONS(949), - [sym_decimal_floating_point_literal] = ACTIONS(949), - [sym_hex_floating_point_literal] = ACTIONS(947), - [sym_true] = ACTIONS(947), - [sym_false] = ACTIONS(947), - [sym_character_literal] = ACTIONS(949), - [sym_string_literal] = ACTIONS(947), - [sym_text_block] = ACTIONS(949), - [sym_null_literal] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(949), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_TILDE] = ACTIONS(949), - [anon_sym_PLUS_PLUS] = ACTIONS(949), - [anon_sym_DASH_DASH] = ACTIONS(949), - [anon_sym_new] = ACTIONS(947), - [anon_sym_class] = ACTIONS(947), - [anon_sym_switch] = ACTIONS(947), - [anon_sym_LBRACE] = ACTIONS(949), - [anon_sym_RBRACE] = ACTIONS(949), - [anon_sym_default] = ACTIONS(947), - [anon_sym_SEMI] = ACTIONS(949), - [anon_sym_assert] = ACTIONS(947), - [anon_sym_do] = ACTIONS(947), - [anon_sym_while] = ACTIONS(947), - [anon_sym_break] = ACTIONS(947), - [anon_sym_continue] = ACTIONS(947), - [anon_sym_return] = ACTIONS(947), - [anon_sym_yield] = ACTIONS(947), - [anon_sym_synchronized] = ACTIONS(947), - [anon_sym_throw] = ACTIONS(947), - [anon_sym_try] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_for] = ACTIONS(947), - [anon_sym_AT] = ACTIONS(947), - [anon_sym_open] = ACTIONS(947), - [anon_sym_module] = ACTIONS(947), - [anon_sym_static] = ACTIONS(947), - [anon_sym_package] = ACTIONS(947), - [anon_sym_import] = ACTIONS(947), - [anon_sym_enum] = ACTIONS(947), - [anon_sym_public] = ACTIONS(947), - [anon_sym_protected] = ACTIONS(947), - [anon_sym_private] = ACTIONS(947), - [anon_sym_abstract] = ACTIONS(947), - [anon_sym_final] = ACTIONS(947), - [anon_sym_strictfp] = ACTIONS(947), - [anon_sym_native] = ACTIONS(947), - [anon_sym_transient] = ACTIONS(947), - [anon_sym_volatile] = ACTIONS(947), - [anon_sym_sealed] = ACTIONS(947), - [anon_sym_non_DASHsealed] = ACTIONS(949), - [anon_sym_ATinterface] = ACTIONS(949), - [anon_sym_interface] = ACTIONS(947), - [anon_sym_byte] = ACTIONS(947), - [anon_sym_short] = ACTIONS(947), - [anon_sym_int] = ACTIONS(947), - [anon_sym_long] = ACTIONS(947), - [anon_sym_char] = ACTIONS(947), - [anon_sym_float] = ACTIONS(947), - [anon_sym_double] = ACTIONS(947), - [sym_boolean_type] = ACTIONS(947), - [sym_void_type] = ACTIONS(947), - [sym_this] = ACTIONS(947), - [sym_super] = ACTIONS(947), + [241] = { + [ts_builtin_sym_end] = ACTIONS(658), + [sym_identifier] = ACTIONS(660), + [sym_decimal_integer_literal] = ACTIONS(660), + [sym_hex_integer_literal] = ACTIONS(660), + [sym_octal_integer_literal] = ACTIONS(658), + [sym_binary_integer_literal] = ACTIONS(658), + [sym_decimal_floating_point_literal] = ACTIONS(658), + [sym_hex_floating_point_literal] = ACTIONS(660), + [sym_true] = ACTIONS(660), + [sym_false] = ACTIONS(660), + [sym_character_literal] = ACTIONS(658), + [anon_sym_DQUOTE] = ACTIONS(660), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(658), + [sym_null_literal] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(658), + [anon_sym_LT] = ACTIONS(658), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_final] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(658), + [anon_sym_TILDE] = ACTIONS(658), + [anon_sym_PLUS_PLUS] = ACTIONS(658), + [anon_sym_DASH_DASH] = ACTIONS(658), + [anon_sym_new] = ACTIONS(660), + [anon_sym_class] = ACTIONS(660), + [anon_sym_switch] = ACTIONS(660), + [anon_sym_LBRACE] = ACTIONS(658), + [anon_sym_RBRACE] = ACTIONS(658), + [anon_sym_case] = ACTIONS(660), + [anon_sym_default] = ACTIONS(660), + [anon_sym_SEMI] = ACTIONS(658), + [anon_sym_assert] = ACTIONS(660), + [anon_sym_do] = ACTIONS(660), + [anon_sym_while] = ACTIONS(660), + [anon_sym_break] = ACTIONS(660), + [anon_sym_continue] = ACTIONS(660), + [anon_sym_return] = ACTIONS(660), + [anon_sym_yield] = ACTIONS(660), + [anon_sym_synchronized] = ACTIONS(660), + [anon_sym_throw] = ACTIONS(660), + [anon_sym_try] = ACTIONS(660), + [anon_sym_if] = ACTIONS(660), + [anon_sym_else] = ACTIONS(660), + [anon_sym_for] = ACTIONS(660), + [anon_sym_AT] = ACTIONS(660), + [anon_sym_open] = ACTIONS(660), + [anon_sym_module] = ACTIONS(660), + [anon_sym_static] = ACTIONS(660), + [anon_sym_package] = ACTIONS(660), + [anon_sym_import] = ACTIONS(660), + [anon_sym_enum] = ACTIONS(660), + [anon_sym_public] = ACTIONS(660), + [anon_sym_protected] = ACTIONS(660), + [anon_sym_private] = ACTIONS(660), + [anon_sym_abstract] = ACTIONS(660), + [anon_sym_strictfp] = ACTIONS(660), + [anon_sym_native] = ACTIONS(660), + [anon_sym_transient] = ACTIONS(660), + [anon_sym_volatile] = ACTIONS(660), + [anon_sym_sealed] = ACTIONS(660), + [anon_sym_non_DASHsealed] = ACTIONS(658), + [anon_sym_record] = ACTIONS(660), + [anon_sym_ATinterface] = ACTIONS(658), + [anon_sym_interface] = ACTIONS(660), + [anon_sym_byte] = ACTIONS(660), + [anon_sym_short] = ACTIONS(660), + [anon_sym_int] = ACTIONS(660), + [anon_sym_long] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_float] = ACTIONS(660), + [anon_sym_double] = ACTIONS(660), + [sym_boolean_type] = ACTIONS(660), + [sym_void_type] = ACTIONS(660), + [sym_this] = ACTIONS(660), + [sym_super] = ACTIONS(660), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [293] = { - [sym_identifier] = ACTIONS(951), - [sym_decimal_integer_literal] = ACTIONS(951), - [sym_hex_integer_literal] = ACTIONS(951), - [sym_octal_integer_literal] = ACTIONS(953), - [sym_binary_integer_literal] = ACTIONS(953), - [sym_decimal_floating_point_literal] = ACTIONS(953), - [sym_hex_floating_point_literal] = ACTIONS(951), - [sym_true] = ACTIONS(951), - [sym_false] = ACTIONS(951), - [sym_character_literal] = ACTIONS(953), - [sym_string_literal] = ACTIONS(951), - [sym_text_block] = ACTIONS(953), - [sym_null_literal] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(951), - [anon_sym_BANG] = ACTIONS(953), - [anon_sym_TILDE] = ACTIONS(953), - [anon_sym_PLUS_PLUS] = ACTIONS(953), - [anon_sym_DASH_DASH] = ACTIONS(953), - [anon_sym_new] = ACTIONS(951), - [anon_sym_class] = ACTIONS(951), - [anon_sym_switch] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_default] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(953), - [anon_sym_assert] = ACTIONS(951), - [anon_sym_do] = ACTIONS(951), - [anon_sym_while] = ACTIONS(951), - [anon_sym_break] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(951), - [anon_sym_return] = ACTIONS(951), - [anon_sym_yield] = ACTIONS(951), - [anon_sym_synchronized] = ACTIONS(951), - [anon_sym_throw] = ACTIONS(951), - [anon_sym_try] = ACTIONS(951), - [anon_sym_if] = ACTIONS(951), - [anon_sym_for] = ACTIONS(951), - [anon_sym_AT] = ACTIONS(951), - [anon_sym_open] = ACTIONS(951), - [anon_sym_module] = ACTIONS(951), - [anon_sym_static] = ACTIONS(951), - [anon_sym_package] = ACTIONS(951), - [anon_sym_import] = ACTIONS(951), - [anon_sym_enum] = ACTIONS(951), - [anon_sym_public] = ACTIONS(951), - [anon_sym_protected] = ACTIONS(951), - [anon_sym_private] = ACTIONS(951), - [anon_sym_abstract] = ACTIONS(951), - [anon_sym_final] = ACTIONS(951), - [anon_sym_strictfp] = ACTIONS(951), - [anon_sym_native] = ACTIONS(951), - [anon_sym_transient] = ACTIONS(951), - [anon_sym_volatile] = ACTIONS(951), - [anon_sym_sealed] = ACTIONS(951), - [anon_sym_non_DASHsealed] = ACTIONS(953), - [anon_sym_ATinterface] = ACTIONS(953), - [anon_sym_interface] = ACTIONS(951), - [anon_sym_byte] = ACTIONS(951), - [anon_sym_short] = ACTIONS(951), - [anon_sym_int] = ACTIONS(951), - [anon_sym_long] = ACTIONS(951), - [anon_sym_char] = ACTIONS(951), - [anon_sym_float] = ACTIONS(951), - [anon_sym_double] = ACTIONS(951), - [sym_boolean_type] = ACTIONS(951), - [sym_void_type] = ACTIONS(951), - [sym_this] = ACTIONS(951), - [sym_super] = ACTIONS(951), + [242] = { + [ts_builtin_sym_end] = ACTIONS(662), + [sym_identifier] = ACTIONS(664), + [sym_decimal_integer_literal] = ACTIONS(664), + [sym_hex_integer_literal] = ACTIONS(664), + [sym_octal_integer_literal] = ACTIONS(662), + [sym_binary_integer_literal] = ACTIONS(662), + [sym_decimal_floating_point_literal] = ACTIONS(662), + [sym_hex_floating_point_literal] = ACTIONS(664), + [sym_true] = ACTIONS(664), + [sym_false] = ACTIONS(664), + [sym_character_literal] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(664), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(662), + [sym_null_literal] = ACTIONS(664), + [anon_sym_LPAREN] = ACTIONS(662), + [anon_sym_LT] = ACTIONS(662), + [anon_sym_PLUS] = ACTIONS(664), + [anon_sym_DASH] = ACTIONS(664), + [anon_sym_final] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_TILDE] = ACTIONS(662), + [anon_sym_PLUS_PLUS] = ACTIONS(662), + [anon_sym_DASH_DASH] = ACTIONS(662), + [anon_sym_new] = ACTIONS(664), + [anon_sym_class] = ACTIONS(664), + [anon_sym_switch] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(662), + [anon_sym_RBRACE] = ACTIONS(662), + [anon_sym_case] = ACTIONS(664), + [anon_sym_default] = ACTIONS(664), + [anon_sym_SEMI] = ACTIONS(662), + [anon_sym_assert] = ACTIONS(664), + [anon_sym_do] = ACTIONS(664), + [anon_sym_while] = ACTIONS(664), + [anon_sym_break] = ACTIONS(664), + [anon_sym_continue] = ACTIONS(664), + [anon_sym_return] = ACTIONS(664), + [anon_sym_yield] = ACTIONS(664), + [anon_sym_synchronized] = ACTIONS(664), + [anon_sym_throw] = ACTIONS(664), + [anon_sym_try] = ACTIONS(664), + [anon_sym_if] = ACTIONS(664), + [anon_sym_else] = ACTIONS(664), + [anon_sym_for] = ACTIONS(664), + [anon_sym_AT] = ACTIONS(664), + [anon_sym_open] = ACTIONS(664), + [anon_sym_module] = ACTIONS(664), + [anon_sym_static] = ACTIONS(664), + [anon_sym_package] = ACTIONS(664), + [anon_sym_import] = ACTIONS(664), + [anon_sym_enum] = ACTIONS(664), + [anon_sym_public] = ACTIONS(664), + [anon_sym_protected] = ACTIONS(664), + [anon_sym_private] = ACTIONS(664), + [anon_sym_abstract] = ACTIONS(664), + [anon_sym_strictfp] = ACTIONS(664), + [anon_sym_native] = ACTIONS(664), + [anon_sym_transient] = ACTIONS(664), + [anon_sym_volatile] = ACTIONS(664), + [anon_sym_sealed] = ACTIONS(664), + [anon_sym_non_DASHsealed] = ACTIONS(662), + [anon_sym_record] = ACTIONS(664), + [anon_sym_ATinterface] = ACTIONS(662), + [anon_sym_interface] = ACTIONS(664), + [anon_sym_byte] = ACTIONS(664), + [anon_sym_short] = ACTIONS(664), + [anon_sym_int] = ACTIONS(664), + [anon_sym_long] = ACTIONS(664), + [anon_sym_char] = ACTIONS(664), + [anon_sym_float] = ACTIONS(664), + [anon_sym_double] = ACTIONS(664), + [sym_boolean_type] = ACTIONS(664), + [sym_void_type] = ACTIONS(664), + [sym_this] = ACTIONS(664), + [sym_super] = ACTIONS(664), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [294] = { - [sym__literal] = STATE(381), - [sym_primary_expression] = STATE(874), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(752), + [243] = { + [ts_builtin_sym_end] = ACTIONS(666), + [sym_identifier] = ACTIONS(668), + [sym_decimal_integer_literal] = ACTIONS(668), + [sym_hex_integer_literal] = ACTIONS(668), + [sym_octal_integer_literal] = ACTIONS(666), + [sym_binary_integer_literal] = ACTIONS(666), + [sym_decimal_floating_point_literal] = ACTIONS(666), + [sym_hex_floating_point_literal] = ACTIONS(668), + [sym_true] = ACTIONS(668), + [sym_false] = ACTIONS(668), + [sym_character_literal] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(668), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(666), + [sym_null_literal] = ACTIONS(668), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_LT] = ACTIONS(666), + [anon_sym_PLUS] = ACTIONS(668), + [anon_sym_DASH] = ACTIONS(668), + [anon_sym_final] = ACTIONS(668), + [anon_sym_BANG] = ACTIONS(666), + [anon_sym_TILDE] = ACTIONS(666), + [anon_sym_PLUS_PLUS] = ACTIONS(666), + [anon_sym_DASH_DASH] = ACTIONS(666), + [anon_sym_new] = ACTIONS(668), + [anon_sym_class] = ACTIONS(668), + [anon_sym_switch] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(666), + [anon_sym_RBRACE] = ACTIONS(666), + [anon_sym_case] = ACTIONS(668), + [anon_sym_default] = ACTIONS(668), + [anon_sym_SEMI] = ACTIONS(666), + [anon_sym_assert] = ACTIONS(668), + [anon_sym_do] = ACTIONS(668), + [anon_sym_while] = ACTIONS(668), + [anon_sym_break] = ACTIONS(668), + [anon_sym_continue] = ACTIONS(668), + [anon_sym_return] = ACTIONS(668), + [anon_sym_yield] = ACTIONS(668), + [anon_sym_synchronized] = ACTIONS(668), + [anon_sym_throw] = ACTIONS(668), + [anon_sym_try] = ACTIONS(668), + [anon_sym_if] = ACTIONS(668), + [anon_sym_else] = ACTIONS(668), + [anon_sym_for] = ACTIONS(668), + [anon_sym_AT] = ACTIONS(668), + [anon_sym_open] = ACTIONS(668), + [anon_sym_module] = ACTIONS(668), + [anon_sym_static] = ACTIONS(668), + [anon_sym_package] = ACTIONS(668), + [anon_sym_import] = ACTIONS(668), + [anon_sym_enum] = ACTIONS(668), + [anon_sym_public] = ACTIONS(668), + [anon_sym_protected] = ACTIONS(668), + [anon_sym_private] = ACTIONS(668), + [anon_sym_abstract] = ACTIONS(668), + [anon_sym_strictfp] = ACTIONS(668), + [anon_sym_native] = ACTIONS(668), + [anon_sym_transient] = ACTIONS(668), + [anon_sym_volatile] = ACTIONS(668), + [anon_sym_sealed] = ACTIONS(668), + [anon_sym_non_DASHsealed] = ACTIONS(666), + [anon_sym_record] = ACTIONS(668), + [anon_sym_ATinterface] = ACTIONS(666), + [anon_sym_interface] = ACTIONS(668), + [anon_sym_byte] = ACTIONS(668), + [anon_sym_short] = ACTIONS(668), + [anon_sym_int] = ACTIONS(668), + [anon_sym_long] = ACTIONS(668), + [anon_sym_char] = ACTIONS(668), + [anon_sym_float] = ACTIONS(668), + [anon_sym_double] = ACTIONS(668), + [sym_boolean_type] = ACTIONS(668), + [sym_void_type] = ACTIONS(668), + [sym_this] = ACTIONS(668), + [sym_super] = ACTIONS(668), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [244] = { + [ts_builtin_sym_end] = ACTIONS(670), + [sym_identifier] = ACTIONS(672), + [sym_decimal_integer_literal] = ACTIONS(672), + [sym_hex_integer_literal] = ACTIONS(672), + [sym_octal_integer_literal] = ACTIONS(670), + [sym_binary_integer_literal] = ACTIONS(670), + [sym_decimal_floating_point_literal] = ACTIONS(670), + [sym_hex_floating_point_literal] = ACTIONS(672), + [sym_true] = ACTIONS(672), + [sym_false] = ACTIONS(672), + [sym_character_literal] = ACTIONS(670), + [anon_sym_DQUOTE] = ACTIONS(672), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(670), + [sym_null_literal] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(670), + [anon_sym_LT] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_final] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(670), + [anon_sym_TILDE] = ACTIONS(670), + [anon_sym_PLUS_PLUS] = ACTIONS(670), + [anon_sym_DASH_DASH] = ACTIONS(670), + [anon_sym_new] = ACTIONS(672), + [anon_sym_class] = ACTIONS(672), + [anon_sym_switch] = ACTIONS(672), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_RBRACE] = ACTIONS(670), + [anon_sym_case] = ACTIONS(672), + [anon_sym_default] = ACTIONS(672), + [anon_sym_SEMI] = ACTIONS(670), + [anon_sym_assert] = ACTIONS(672), + [anon_sym_do] = ACTIONS(672), + [anon_sym_while] = ACTIONS(672), + [anon_sym_break] = ACTIONS(672), + [anon_sym_continue] = ACTIONS(672), + [anon_sym_return] = ACTIONS(672), + [anon_sym_yield] = ACTIONS(672), + [anon_sym_synchronized] = ACTIONS(672), + [anon_sym_throw] = ACTIONS(672), + [anon_sym_try] = ACTIONS(672), + [anon_sym_if] = ACTIONS(672), + [anon_sym_else] = ACTIONS(672), + [anon_sym_for] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym_open] = ACTIONS(672), + [anon_sym_module] = ACTIONS(672), + [anon_sym_static] = ACTIONS(672), + [anon_sym_package] = ACTIONS(672), + [anon_sym_import] = ACTIONS(672), + [anon_sym_enum] = ACTIONS(672), + [anon_sym_public] = ACTIONS(672), + [anon_sym_protected] = ACTIONS(672), + [anon_sym_private] = ACTIONS(672), + [anon_sym_abstract] = ACTIONS(672), + [anon_sym_strictfp] = ACTIONS(672), + [anon_sym_native] = ACTIONS(672), + [anon_sym_transient] = ACTIONS(672), + [anon_sym_volatile] = ACTIONS(672), + [anon_sym_sealed] = ACTIONS(672), + [anon_sym_non_DASHsealed] = ACTIONS(670), + [anon_sym_record] = ACTIONS(672), + [anon_sym_ATinterface] = ACTIONS(670), + [anon_sym_interface] = ACTIONS(672), + [anon_sym_byte] = ACTIONS(672), + [anon_sym_short] = ACTIONS(672), + [anon_sym_int] = ACTIONS(672), + [anon_sym_long] = ACTIONS(672), + [anon_sym_char] = ACTIONS(672), + [anon_sym_float] = ACTIONS(672), + [anon_sym_double] = ACTIONS(672), + [sym_boolean_type] = ACTIONS(672), + [sym_void_type] = ACTIONS(672), + [sym_this] = ACTIONS(672), + [sym_super] = ACTIONS(672), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [245] = { + [ts_builtin_sym_end] = ACTIONS(674), + [sym_identifier] = ACTIONS(676), + [sym_decimal_integer_literal] = ACTIONS(676), + [sym_hex_integer_literal] = ACTIONS(676), + [sym_octal_integer_literal] = ACTIONS(674), + [sym_binary_integer_literal] = ACTIONS(674), + [sym_decimal_floating_point_literal] = ACTIONS(674), + [sym_hex_floating_point_literal] = ACTIONS(676), + [sym_true] = ACTIONS(676), + [sym_false] = ACTIONS(676), + [sym_character_literal] = ACTIONS(674), + [anon_sym_DQUOTE] = ACTIONS(676), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(674), + [sym_null_literal] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LT] = ACTIONS(674), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_final] = ACTIONS(676), + [anon_sym_BANG] = ACTIONS(674), + [anon_sym_TILDE] = ACTIONS(674), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym_new] = ACTIONS(676), + [anon_sym_class] = ACTIONS(676), + [anon_sym_switch] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(674), + [anon_sym_RBRACE] = ACTIONS(674), + [anon_sym_case] = ACTIONS(676), + [anon_sym_default] = ACTIONS(676), + [anon_sym_SEMI] = ACTIONS(674), + [anon_sym_assert] = ACTIONS(676), + [anon_sym_do] = ACTIONS(676), + [anon_sym_while] = ACTIONS(676), + [anon_sym_break] = ACTIONS(676), + [anon_sym_continue] = ACTIONS(676), + [anon_sym_return] = ACTIONS(676), + [anon_sym_yield] = ACTIONS(676), + [anon_sym_synchronized] = ACTIONS(676), + [anon_sym_throw] = ACTIONS(676), + [anon_sym_try] = ACTIONS(676), + [anon_sym_if] = ACTIONS(676), + [anon_sym_else] = ACTIONS(676), + [anon_sym_for] = ACTIONS(676), + [anon_sym_AT] = ACTIONS(676), + [anon_sym_open] = ACTIONS(676), + [anon_sym_module] = ACTIONS(676), + [anon_sym_static] = ACTIONS(676), + [anon_sym_package] = ACTIONS(676), + [anon_sym_import] = ACTIONS(676), + [anon_sym_enum] = ACTIONS(676), + [anon_sym_public] = ACTIONS(676), + [anon_sym_protected] = ACTIONS(676), + [anon_sym_private] = ACTIONS(676), + [anon_sym_abstract] = ACTIONS(676), + [anon_sym_strictfp] = ACTIONS(676), + [anon_sym_native] = ACTIONS(676), + [anon_sym_transient] = ACTIONS(676), + [anon_sym_volatile] = ACTIONS(676), + [anon_sym_sealed] = ACTIONS(676), + [anon_sym_non_DASHsealed] = ACTIONS(674), + [anon_sym_record] = ACTIONS(676), + [anon_sym_ATinterface] = ACTIONS(674), + [anon_sym_interface] = ACTIONS(676), + [anon_sym_byte] = ACTIONS(676), + [anon_sym_short] = ACTIONS(676), + [anon_sym_int] = ACTIONS(676), + [anon_sym_long] = ACTIONS(676), + [anon_sym_char] = ACTIONS(676), + [anon_sym_float] = ACTIONS(676), + [anon_sym_double] = ACTIONS(676), + [sym_boolean_type] = ACTIONS(676), + [sym_void_type] = ACTIONS(676), + [sym_this] = ACTIONS(676), + [sym_super] = ACTIONS(676), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [246] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(629), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_resource] = STATE(1028), - [sym__annotation] = STATE(526), - [sym_marker_annotation] = STATE(526), - [sym_annotation] = STATE(526), - [sym_modifiers] = STATE(605), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(620), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [aux_sym_modifiers_repeat1] = STATE(461), - [sym_identifier] = ACTIONS(937), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33618,219 +34966,787 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_new] = ACTIONS(943), - [anon_sym_default] = ACTIONS(280), - [anon_sym_synchronized] = ACTIONS(280), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_open] = ACTIONS(945), - [anon_sym_module] = ACTIONS(945), - [anon_sym_static] = ACTIONS(280), - [anon_sym_public] = ACTIONS(280), - [anon_sym_protected] = ACTIONS(280), - [anon_sym_private] = ACTIONS(280), - [anon_sym_abstract] = ACTIONS(280), - [anon_sym_final] = ACTIONS(280), - [anon_sym_strictfp] = ACTIONS(280), - [anon_sym_native] = ACTIONS(280), - [anon_sym_transient] = ACTIONS(280), - [anon_sym_volatile] = ACTIONS(280), - [anon_sym_sealed] = ACTIONS(280), - [anon_sym_non_DASHsealed] = ACTIONS(286), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [295] = { - [sym_identifier] = ACTIONS(957), - [sym_decimal_integer_literal] = ACTIONS(957), - [sym_hex_integer_literal] = ACTIONS(957), - [sym_octal_integer_literal] = ACTIONS(959), - [sym_binary_integer_literal] = ACTIONS(959), - [sym_decimal_floating_point_literal] = ACTIONS(959), - [sym_hex_floating_point_literal] = ACTIONS(957), - [sym_true] = ACTIONS(957), - [sym_false] = ACTIONS(957), - [sym_character_literal] = ACTIONS(959), - [sym_string_literal] = ACTIONS(957), - [sym_text_block] = ACTIONS(959), - [sym_null_literal] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(957), - [anon_sym_DASH] = ACTIONS(957), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_TILDE] = ACTIONS(959), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_new] = ACTIONS(957), - [anon_sym_class] = ACTIONS(957), - [anon_sym_switch] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_default] = ACTIONS(957), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_assert] = ACTIONS(957), - [anon_sym_do] = ACTIONS(957), - [anon_sym_while] = ACTIONS(957), - [anon_sym_break] = ACTIONS(957), - [anon_sym_continue] = ACTIONS(957), - [anon_sym_return] = ACTIONS(957), - [anon_sym_yield] = ACTIONS(957), - [anon_sym_synchronized] = ACTIONS(957), - [anon_sym_throw] = ACTIONS(957), - [anon_sym_try] = ACTIONS(957), - [anon_sym_if] = ACTIONS(957), - [anon_sym_for] = ACTIONS(957), - [anon_sym_AT] = ACTIONS(957), - [anon_sym_open] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_static] = ACTIONS(957), - [anon_sym_package] = ACTIONS(957), - [anon_sym_import] = ACTIONS(957), - [anon_sym_enum] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_abstract] = ACTIONS(957), - [anon_sym_final] = ACTIONS(957), - [anon_sym_strictfp] = ACTIONS(957), - [anon_sym_native] = ACTIONS(957), - [anon_sym_transient] = ACTIONS(957), - [anon_sym_volatile] = ACTIONS(957), - [anon_sym_sealed] = ACTIONS(957), - [anon_sym_non_DASHsealed] = ACTIONS(959), - [anon_sym_ATinterface] = ACTIONS(959), - [anon_sym_interface] = ACTIONS(957), - [anon_sym_byte] = ACTIONS(957), - [anon_sym_short] = ACTIONS(957), - [anon_sym_int] = ACTIONS(957), - [anon_sym_long] = ACTIONS(957), - [anon_sym_char] = ACTIONS(957), - [anon_sym_float] = ACTIONS(957), - [anon_sym_double] = ACTIONS(957), - [sym_boolean_type] = ACTIONS(957), - [sym_void_type] = ACTIONS(957), - [sym_this] = ACTIONS(957), - [sym_super] = ACTIONS(957), + [247] = { + [ts_builtin_sym_end] = ACTIONS(678), + [sym_identifier] = ACTIONS(680), + [sym_decimal_integer_literal] = ACTIONS(680), + [sym_hex_integer_literal] = ACTIONS(680), + [sym_octal_integer_literal] = ACTIONS(678), + [sym_binary_integer_literal] = ACTIONS(678), + [sym_decimal_floating_point_literal] = ACTIONS(678), + [sym_hex_floating_point_literal] = ACTIONS(680), + [sym_true] = ACTIONS(680), + [sym_false] = ACTIONS(680), + [sym_character_literal] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(680), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(678), + [sym_null_literal] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_LT] = ACTIONS(678), + [anon_sym_PLUS] = ACTIONS(680), + [anon_sym_DASH] = ACTIONS(680), + [anon_sym_final] = ACTIONS(680), + [anon_sym_BANG] = ACTIONS(678), + [anon_sym_TILDE] = ACTIONS(678), + [anon_sym_PLUS_PLUS] = ACTIONS(678), + [anon_sym_DASH_DASH] = ACTIONS(678), + [anon_sym_new] = ACTIONS(680), + [anon_sym_class] = ACTIONS(680), + [anon_sym_switch] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(678), + [anon_sym_RBRACE] = ACTIONS(678), + [anon_sym_case] = ACTIONS(680), + [anon_sym_default] = ACTIONS(680), + [anon_sym_SEMI] = ACTIONS(678), + [anon_sym_assert] = ACTIONS(680), + [anon_sym_do] = ACTIONS(680), + [anon_sym_while] = ACTIONS(680), + [anon_sym_break] = ACTIONS(680), + [anon_sym_continue] = ACTIONS(680), + [anon_sym_return] = ACTIONS(680), + [anon_sym_yield] = ACTIONS(680), + [anon_sym_synchronized] = ACTIONS(680), + [anon_sym_throw] = ACTIONS(680), + [anon_sym_try] = ACTIONS(680), + [anon_sym_if] = ACTIONS(680), + [anon_sym_else] = ACTIONS(680), + [anon_sym_for] = ACTIONS(680), + [anon_sym_AT] = ACTIONS(680), + [anon_sym_open] = ACTIONS(680), + [anon_sym_module] = ACTIONS(680), + [anon_sym_static] = ACTIONS(680), + [anon_sym_package] = ACTIONS(680), + [anon_sym_import] = ACTIONS(680), + [anon_sym_enum] = ACTIONS(680), + [anon_sym_public] = ACTIONS(680), + [anon_sym_protected] = ACTIONS(680), + [anon_sym_private] = ACTIONS(680), + [anon_sym_abstract] = ACTIONS(680), + [anon_sym_strictfp] = ACTIONS(680), + [anon_sym_native] = ACTIONS(680), + [anon_sym_transient] = ACTIONS(680), + [anon_sym_volatile] = ACTIONS(680), + [anon_sym_sealed] = ACTIONS(680), + [anon_sym_non_DASHsealed] = ACTIONS(678), + [anon_sym_record] = ACTIONS(680), + [anon_sym_ATinterface] = ACTIONS(678), + [anon_sym_interface] = ACTIONS(680), + [anon_sym_byte] = ACTIONS(680), + [anon_sym_short] = ACTIONS(680), + [anon_sym_int] = ACTIONS(680), + [anon_sym_long] = ACTIONS(680), + [anon_sym_char] = ACTIONS(680), + [anon_sym_float] = ACTIONS(680), + [anon_sym_double] = ACTIONS(680), + [sym_boolean_type] = ACTIONS(680), + [sym_void_type] = ACTIONS(680), + [sym_this] = ACTIONS(680), + [sym_super] = ACTIONS(680), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [296] = { - [sym_identifier] = ACTIONS(961), - [sym_decimal_integer_literal] = ACTIONS(961), - [sym_hex_integer_literal] = ACTIONS(961), - [sym_octal_integer_literal] = ACTIONS(963), - [sym_binary_integer_literal] = ACTIONS(963), - [sym_decimal_floating_point_literal] = ACTIONS(963), - [sym_hex_floating_point_literal] = ACTIONS(961), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), - [sym_character_literal] = ACTIONS(963), - [sym_string_literal] = ACTIONS(961), - [sym_text_block] = ACTIONS(963), - [sym_null_literal] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_BANG] = ACTIONS(963), - [anon_sym_TILDE] = ACTIONS(963), - [anon_sym_PLUS_PLUS] = ACTIONS(963), - [anon_sym_DASH_DASH] = ACTIONS(963), - [anon_sym_new] = ACTIONS(961), - [anon_sym_class] = ACTIONS(961), - [anon_sym_switch] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_default] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_assert] = ACTIONS(961), - [anon_sym_do] = ACTIONS(961), - [anon_sym_while] = ACTIONS(961), - [anon_sym_break] = ACTIONS(961), - [anon_sym_continue] = ACTIONS(961), - [anon_sym_return] = ACTIONS(961), - [anon_sym_yield] = ACTIONS(961), - [anon_sym_synchronized] = ACTIONS(961), - [anon_sym_throw] = ACTIONS(961), - [anon_sym_try] = ACTIONS(961), - [anon_sym_if] = ACTIONS(961), - [anon_sym_for] = ACTIONS(961), - [anon_sym_AT] = ACTIONS(961), - [anon_sym_open] = ACTIONS(961), - [anon_sym_module] = ACTIONS(961), - [anon_sym_static] = ACTIONS(961), - [anon_sym_package] = ACTIONS(961), - [anon_sym_import] = ACTIONS(961), - [anon_sym_enum] = ACTIONS(961), - [anon_sym_public] = ACTIONS(961), - [anon_sym_protected] = ACTIONS(961), - [anon_sym_private] = ACTIONS(961), - [anon_sym_abstract] = ACTIONS(961), - [anon_sym_final] = ACTIONS(961), - [anon_sym_strictfp] = ACTIONS(961), - [anon_sym_native] = ACTIONS(961), - [anon_sym_transient] = ACTIONS(961), - [anon_sym_volatile] = ACTIONS(961), - [anon_sym_sealed] = ACTIONS(961), - [anon_sym_non_DASHsealed] = ACTIONS(963), - [anon_sym_ATinterface] = ACTIONS(963), - [anon_sym_interface] = ACTIONS(961), - [anon_sym_byte] = ACTIONS(961), - [anon_sym_short] = ACTIONS(961), - [anon_sym_int] = ACTIONS(961), - [anon_sym_long] = ACTIONS(961), - [anon_sym_char] = ACTIONS(961), - [anon_sym_float] = ACTIONS(961), - [anon_sym_double] = ACTIONS(961), - [sym_boolean_type] = ACTIONS(961), - [sym_void_type] = ACTIONS(961), - [sym_this] = ACTIONS(961), - [sym_super] = ACTIONS(961), + [248] = { + [ts_builtin_sym_end] = ACTIONS(682), + [sym_identifier] = ACTIONS(684), + [sym_decimal_integer_literal] = ACTIONS(684), + [sym_hex_integer_literal] = ACTIONS(684), + [sym_octal_integer_literal] = ACTIONS(682), + [sym_binary_integer_literal] = ACTIONS(682), + [sym_decimal_floating_point_literal] = ACTIONS(682), + [sym_hex_floating_point_literal] = ACTIONS(684), + [sym_true] = ACTIONS(684), + [sym_false] = ACTIONS(684), + [sym_character_literal] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(684), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(682), + [sym_null_literal] = ACTIONS(684), + [anon_sym_LPAREN] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_final] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_TILDE] = ACTIONS(682), + [anon_sym_PLUS_PLUS] = ACTIONS(682), + [anon_sym_DASH_DASH] = ACTIONS(682), + [anon_sym_new] = ACTIONS(684), + [anon_sym_class] = ACTIONS(684), + [anon_sym_switch] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_RBRACE] = ACTIONS(682), + [anon_sym_case] = ACTIONS(684), + [anon_sym_default] = ACTIONS(684), + [anon_sym_SEMI] = ACTIONS(682), + [anon_sym_assert] = ACTIONS(684), + [anon_sym_do] = ACTIONS(684), + [anon_sym_while] = ACTIONS(684), + [anon_sym_break] = ACTIONS(684), + [anon_sym_continue] = ACTIONS(684), + [anon_sym_return] = ACTIONS(684), + [anon_sym_yield] = ACTIONS(684), + [anon_sym_synchronized] = ACTIONS(684), + [anon_sym_throw] = ACTIONS(684), + [anon_sym_try] = ACTIONS(684), + [anon_sym_if] = ACTIONS(684), + [anon_sym_else] = ACTIONS(684), + [anon_sym_for] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(684), + [anon_sym_open] = ACTIONS(684), + [anon_sym_module] = ACTIONS(684), + [anon_sym_static] = ACTIONS(684), + [anon_sym_package] = ACTIONS(684), + [anon_sym_import] = ACTIONS(684), + [anon_sym_enum] = ACTIONS(684), + [anon_sym_public] = ACTIONS(684), + [anon_sym_protected] = ACTIONS(684), + [anon_sym_private] = ACTIONS(684), + [anon_sym_abstract] = ACTIONS(684), + [anon_sym_strictfp] = ACTIONS(684), + [anon_sym_native] = ACTIONS(684), + [anon_sym_transient] = ACTIONS(684), + [anon_sym_volatile] = ACTIONS(684), + [anon_sym_sealed] = ACTIONS(684), + [anon_sym_non_DASHsealed] = ACTIONS(682), + [anon_sym_record] = ACTIONS(684), + [anon_sym_ATinterface] = ACTIONS(682), + [anon_sym_interface] = ACTIONS(684), + [anon_sym_byte] = ACTIONS(684), + [anon_sym_short] = ACTIONS(684), + [anon_sym_int] = ACTIONS(684), + [anon_sym_long] = ACTIONS(684), + [anon_sym_char] = ACTIONS(684), + [anon_sym_float] = ACTIONS(684), + [anon_sym_double] = ACTIONS(684), + [sym_boolean_type] = ACTIONS(684), + [sym_void_type] = ACTIONS(684), + [sym_this] = ACTIONS(684), + [sym_super] = ACTIONS(684), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [297] = { - [sym__literal] = STATE(381), - [sym_primary_expression] = STATE(874), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(752), + [249] = { + [ts_builtin_sym_end] = ACTIONS(686), + [sym_identifier] = ACTIONS(688), + [sym_decimal_integer_literal] = ACTIONS(688), + [sym_hex_integer_literal] = ACTIONS(688), + [sym_octal_integer_literal] = ACTIONS(686), + [sym_binary_integer_literal] = ACTIONS(686), + [sym_decimal_floating_point_literal] = ACTIONS(686), + [sym_hex_floating_point_literal] = ACTIONS(688), + [sym_true] = ACTIONS(688), + [sym_false] = ACTIONS(688), + [sym_character_literal] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(688), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(686), + [sym_null_literal] = ACTIONS(688), + [anon_sym_LPAREN] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_PLUS] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(688), + [anon_sym_final] = ACTIONS(688), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_TILDE] = ACTIONS(686), + [anon_sym_PLUS_PLUS] = ACTIONS(686), + [anon_sym_DASH_DASH] = ACTIONS(686), + [anon_sym_new] = ACTIONS(688), + [anon_sym_class] = ACTIONS(688), + [anon_sym_switch] = ACTIONS(688), + [anon_sym_LBRACE] = ACTIONS(686), + [anon_sym_RBRACE] = ACTIONS(686), + [anon_sym_case] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(686), + [anon_sym_assert] = ACTIONS(688), + [anon_sym_do] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_yield] = ACTIONS(688), + [anon_sym_synchronized] = ACTIONS(688), + [anon_sym_throw] = ACTIONS(688), + [anon_sym_try] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_else] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_AT] = ACTIONS(688), + [anon_sym_open] = ACTIONS(688), + [anon_sym_module] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_package] = ACTIONS(688), + [anon_sym_import] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_public] = ACTIONS(688), + [anon_sym_protected] = ACTIONS(688), + [anon_sym_private] = ACTIONS(688), + [anon_sym_abstract] = ACTIONS(688), + [anon_sym_strictfp] = ACTIONS(688), + [anon_sym_native] = ACTIONS(688), + [anon_sym_transient] = ACTIONS(688), + [anon_sym_volatile] = ACTIONS(688), + [anon_sym_sealed] = ACTIONS(688), + [anon_sym_non_DASHsealed] = ACTIONS(686), + [anon_sym_record] = ACTIONS(688), + [anon_sym_ATinterface] = ACTIONS(686), + [anon_sym_interface] = ACTIONS(688), + [anon_sym_byte] = ACTIONS(688), + [anon_sym_short] = ACTIONS(688), + [anon_sym_int] = ACTIONS(688), + [anon_sym_long] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_float] = ACTIONS(688), + [anon_sym_double] = ACTIONS(688), + [sym_boolean_type] = ACTIONS(688), + [sym_void_type] = ACTIONS(688), + [sym_this] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [250] = { + [ts_builtin_sym_end] = ACTIONS(690), + [sym_identifier] = ACTIONS(692), + [sym_decimal_integer_literal] = ACTIONS(692), + [sym_hex_integer_literal] = ACTIONS(692), + [sym_octal_integer_literal] = ACTIONS(690), + [sym_binary_integer_literal] = ACTIONS(690), + [sym_decimal_floating_point_literal] = ACTIONS(690), + [sym_hex_floating_point_literal] = ACTIONS(692), + [sym_true] = ACTIONS(692), + [sym_false] = ACTIONS(692), + [sym_character_literal] = ACTIONS(690), + [anon_sym_DQUOTE] = ACTIONS(692), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(690), + [sym_null_literal] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_final] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(690), + [anon_sym_TILDE] = ACTIONS(690), + [anon_sym_PLUS_PLUS] = ACTIONS(690), + [anon_sym_DASH_DASH] = ACTIONS(690), + [anon_sym_new] = ACTIONS(692), + [anon_sym_class] = ACTIONS(692), + [anon_sym_switch] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(690), + [anon_sym_RBRACE] = ACTIONS(690), + [anon_sym_case] = ACTIONS(692), + [anon_sym_default] = ACTIONS(692), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_assert] = ACTIONS(692), + [anon_sym_do] = ACTIONS(692), + [anon_sym_while] = ACTIONS(692), + [anon_sym_break] = ACTIONS(692), + [anon_sym_continue] = ACTIONS(692), + [anon_sym_return] = ACTIONS(692), + [anon_sym_yield] = ACTIONS(692), + [anon_sym_synchronized] = ACTIONS(692), + [anon_sym_throw] = ACTIONS(692), + [anon_sym_try] = ACTIONS(692), + [anon_sym_if] = ACTIONS(692), + [anon_sym_else] = ACTIONS(692), + [anon_sym_for] = ACTIONS(692), + [anon_sym_AT] = ACTIONS(692), + [anon_sym_open] = ACTIONS(692), + [anon_sym_module] = ACTIONS(692), + [anon_sym_static] = ACTIONS(692), + [anon_sym_package] = ACTIONS(692), + [anon_sym_import] = ACTIONS(692), + [anon_sym_enum] = ACTIONS(692), + [anon_sym_public] = ACTIONS(692), + [anon_sym_protected] = ACTIONS(692), + [anon_sym_private] = ACTIONS(692), + [anon_sym_abstract] = ACTIONS(692), + [anon_sym_strictfp] = ACTIONS(692), + [anon_sym_native] = ACTIONS(692), + [anon_sym_transient] = ACTIONS(692), + [anon_sym_volatile] = ACTIONS(692), + [anon_sym_sealed] = ACTIONS(692), + [anon_sym_non_DASHsealed] = ACTIONS(690), + [anon_sym_record] = ACTIONS(692), + [anon_sym_ATinterface] = ACTIONS(690), + [anon_sym_interface] = ACTIONS(692), + [anon_sym_byte] = ACTIONS(692), + [anon_sym_short] = ACTIONS(692), + [anon_sym_int] = ACTIONS(692), + [anon_sym_long] = ACTIONS(692), + [anon_sym_char] = ACTIONS(692), + [anon_sym_float] = ACTIONS(692), + [anon_sym_double] = ACTIONS(692), + [sym_boolean_type] = ACTIONS(692), + [sym_void_type] = ACTIONS(692), + [sym_this] = ACTIONS(692), + [sym_super] = ACTIONS(692), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [251] = { + [ts_builtin_sym_end] = ACTIONS(694), + [sym_identifier] = ACTIONS(696), + [sym_decimal_integer_literal] = ACTIONS(696), + [sym_hex_integer_literal] = ACTIONS(696), + [sym_octal_integer_literal] = ACTIONS(694), + [sym_binary_integer_literal] = ACTIONS(694), + [sym_decimal_floating_point_literal] = ACTIONS(694), + [sym_hex_floating_point_literal] = ACTIONS(696), + [sym_true] = ACTIONS(696), + [sym_false] = ACTIONS(696), + [sym_character_literal] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(696), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(694), + [sym_null_literal] = ACTIONS(696), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_final] = ACTIONS(696), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(694), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_class] = ACTIONS(696), + [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_SEMI] = ACTIONS(694), + [anon_sym_assert] = ACTIONS(696), + [anon_sym_do] = ACTIONS(696), + [anon_sym_while] = ACTIONS(696), + [anon_sym_break] = ACTIONS(696), + [anon_sym_continue] = ACTIONS(696), + [anon_sym_return] = ACTIONS(696), + [anon_sym_yield] = ACTIONS(696), + [anon_sym_synchronized] = ACTIONS(696), + [anon_sym_throw] = ACTIONS(696), + [anon_sym_try] = ACTIONS(696), + [anon_sym_if] = ACTIONS(696), + [anon_sym_else] = ACTIONS(696), + [anon_sym_for] = ACTIONS(696), + [anon_sym_AT] = ACTIONS(696), + [anon_sym_open] = ACTIONS(696), + [anon_sym_module] = ACTIONS(696), + [anon_sym_static] = ACTIONS(696), + [anon_sym_package] = ACTIONS(696), + [anon_sym_import] = ACTIONS(696), + [anon_sym_enum] = ACTIONS(696), + [anon_sym_public] = ACTIONS(696), + [anon_sym_protected] = ACTIONS(696), + [anon_sym_private] = ACTIONS(696), + [anon_sym_abstract] = ACTIONS(696), + [anon_sym_strictfp] = ACTIONS(696), + [anon_sym_native] = ACTIONS(696), + [anon_sym_transient] = ACTIONS(696), + [anon_sym_volatile] = ACTIONS(696), + [anon_sym_sealed] = ACTIONS(696), + [anon_sym_non_DASHsealed] = ACTIONS(694), + [anon_sym_record] = ACTIONS(696), + [anon_sym_ATinterface] = ACTIONS(694), + [anon_sym_interface] = ACTIONS(696), + [anon_sym_byte] = ACTIONS(696), + [anon_sym_short] = ACTIONS(696), + [anon_sym_int] = ACTIONS(696), + [anon_sym_long] = ACTIONS(696), + [anon_sym_char] = ACTIONS(696), + [anon_sym_float] = ACTIONS(696), + [anon_sym_double] = ACTIONS(696), + [sym_boolean_type] = ACTIONS(696), + [sym_void_type] = ACTIONS(696), + [sym_this] = ACTIONS(696), + [sym_super] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [252] = { + [ts_builtin_sym_end] = ACTIONS(698), + [sym_identifier] = ACTIONS(700), + [sym_decimal_integer_literal] = ACTIONS(700), + [sym_hex_integer_literal] = ACTIONS(700), + [sym_octal_integer_literal] = ACTIONS(698), + [sym_binary_integer_literal] = ACTIONS(698), + [sym_decimal_floating_point_literal] = ACTIONS(698), + [sym_hex_floating_point_literal] = ACTIONS(700), + [sym_true] = ACTIONS(700), + [sym_false] = ACTIONS(700), + [sym_character_literal] = ACTIONS(698), + [anon_sym_DQUOTE] = ACTIONS(700), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(698), + [sym_null_literal] = ACTIONS(700), + [anon_sym_LPAREN] = ACTIONS(698), + [anon_sym_LT] = ACTIONS(698), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_final] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_TILDE] = ACTIONS(698), + [anon_sym_PLUS_PLUS] = ACTIONS(698), + [anon_sym_DASH_DASH] = ACTIONS(698), + [anon_sym_new] = ACTIONS(700), + [anon_sym_class] = ACTIONS(700), + [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_SEMI] = ACTIONS(698), + [anon_sym_assert] = ACTIONS(700), + [anon_sym_do] = ACTIONS(700), + [anon_sym_while] = ACTIONS(700), + [anon_sym_break] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(700), + [anon_sym_return] = ACTIONS(700), + [anon_sym_yield] = ACTIONS(700), + [anon_sym_synchronized] = ACTIONS(700), + [anon_sym_throw] = ACTIONS(700), + [anon_sym_try] = ACTIONS(700), + [anon_sym_if] = ACTIONS(700), + [anon_sym_else] = ACTIONS(700), + [anon_sym_for] = ACTIONS(700), + [anon_sym_AT] = ACTIONS(700), + [anon_sym_open] = ACTIONS(700), + [anon_sym_module] = ACTIONS(700), + [anon_sym_static] = ACTIONS(700), + [anon_sym_package] = ACTIONS(700), + [anon_sym_import] = ACTIONS(700), + [anon_sym_enum] = ACTIONS(700), + [anon_sym_public] = ACTIONS(700), + [anon_sym_protected] = ACTIONS(700), + [anon_sym_private] = ACTIONS(700), + [anon_sym_abstract] = ACTIONS(700), + [anon_sym_strictfp] = ACTIONS(700), + [anon_sym_native] = ACTIONS(700), + [anon_sym_transient] = ACTIONS(700), + [anon_sym_volatile] = ACTIONS(700), + [anon_sym_sealed] = ACTIONS(700), + [anon_sym_non_DASHsealed] = ACTIONS(698), + [anon_sym_record] = ACTIONS(700), + [anon_sym_ATinterface] = ACTIONS(698), + [anon_sym_interface] = ACTIONS(700), + [anon_sym_byte] = ACTIONS(700), + [anon_sym_short] = ACTIONS(700), + [anon_sym_int] = ACTIONS(700), + [anon_sym_long] = ACTIONS(700), + [anon_sym_char] = ACTIONS(700), + [anon_sym_float] = ACTIONS(700), + [anon_sym_double] = ACTIONS(700), + [sym_boolean_type] = ACTIONS(700), + [sym_void_type] = ACTIONS(700), + [sym_this] = ACTIONS(700), + [sym_super] = ACTIONS(700), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [253] = { + [ts_builtin_sym_end] = ACTIONS(702), + [sym_identifier] = ACTIONS(704), + [sym_decimal_integer_literal] = ACTIONS(704), + [sym_hex_integer_literal] = ACTIONS(704), + [sym_octal_integer_literal] = ACTIONS(702), + [sym_binary_integer_literal] = ACTIONS(702), + [sym_decimal_floating_point_literal] = ACTIONS(702), + [sym_hex_floating_point_literal] = ACTIONS(704), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_character_literal] = ACTIONS(702), + [anon_sym_DQUOTE] = ACTIONS(704), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(702), + [sym_null_literal] = ACTIONS(704), + [anon_sym_LPAREN] = ACTIONS(702), + [anon_sym_LT] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(704), + [anon_sym_DASH] = ACTIONS(704), + [anon_sym_final] = ACTIONS(704), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_TILDE] = ACTIONS(702), + [anon_sym_PLUS_PLUS] = ACTIONS(702), + [anon_sym_DASH_DASH] = ACTIONS(702), + [anon_sym_new] = ACTIONS(704), + [anon_sym_class] = ACTIONS(704), + [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_SEMI] = ACTIONS(702), + [anon_sym_assert] = ACTIONS(704), + [anon_sym_do] = ACTIONS(704), + [anon_sym_while] = ACTIONS(704), + [anon_sym_break] = ACTIONS(704), + [anon_sym_continue] = ACTIONS(704), + [anon_sym_return] = ACTIONS(704), + [anon_sym_yield] = ACTIONS(704), + [anon_sym_synchronized] = ACTIONS(704), + [anon_sym_throw] = ACTIONS(704), + [anon_sym_try] = ACTIONS(704), + [anon_sym_if] = ACTIONS(704), + [anon_sym_else] = ACTIONS(704), + [anon_sym_for] = ACTIONS(704), + [anon_sym_AT] = ACTIONS(704), + [anon_sym_open] = ACTIONS(704), + [anon_sym_module] = ACTIONS(704), + [anon_sym_static] = ACTIONS(704), + [anon_sym_package] = ACTIONS(704), + [anon_sym_import] = ACTIONS(704), + [anon_sym_enum] = ACTIONS(704), + [anon_sym_public] = ACTIONS(704), + [anon_sym_protected] = ACTIONS(704), + [anon_sym_private] = ACTIONS(704), + [anon_sym_abstract] = ACTIONS(704), + [anon_sym_strictfp] = ACTIONS(704), + [anon_sym_native] = ACTIONS(704), + [anon_sym_transient] = ACTIONS(704), + [anon_sym_volatile] = ACTIONS(704), + [anon_sym_sealed] = ACTIONS(704), + [anon_sym_non_DASHsealed] = ACTIONS(702), + [anon_sym_record] = ACTIONS(704), + [anon_sym_ATinterface] = ACTIONS(702), + [anon_sym_interface] = ACTIONS(704), + [anon_sym_byte] = ACTIONS(704), + [anon_sym_short] = ACTIONS(704), + [anon_sym_int] = ACTIONS(704), + [anon_sym_long] = ACTIONS(704), + [anon_sym_char] = ACTIONS(704), + [anon_sym_float] = ACTIONS(704), + [anon_sym_double] = ACTIONS(704), + [sym_boolean_type] = ACTIONS(704), + [sym_void_type] = ACTIONS(704), + [sym_this] = ACTIONS(704), + [sym_super] = ACTIONS(704), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [254] = { + [ts_builtin_sym_end] = ACTIONS(706), + [sym_identifier] = ACTIONS(708), + [sym_decimal_integer_literal] = ACTIONS(708), + [sym_hex_integer_literal] = ACTIONS(708), + [sym_octal_integer_literal] = ACTIONS(706), + [sym_binary_integer_literal] = ACTIONS(706), + [sym_decimal_floating_point_literal] = ACTIONS(706), + [sym_hex_floating_point_literal] = ACTIONS(708), + [sym_true] = ACTIONS(708), + [sym_false] = ACTIONS(708), + [sym_character_literal] = ACTIONS(706), + [anon_sym_DQUOTE] = ACTIONS(708), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(706), + [sym_null_literal] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(706), + [anon_sym_LT] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(708), + [anon_sym_final] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_TILDE] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(706), + [anon_sym_DASH_DASH] = ACTIONS(706), + [anon_sym_new] = ACTIONS(708), + [anon_sym_class] = ACTIONS(708), + [anon_sym_switch] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_RBRACE] = ACTIONS(706), + [anon_sym_case] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(706), + [anon_sym_assert] = ACTIONS(708), + [anon_sym_do] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_yield] = ACTIONS(708), + [anon_sym_synchronized] = ACTIONS(708), + [anon_sym_throw] = ACTIONS(708), + [anon_sym_try] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_else] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_open] = ACTIONS(708), + [anon_sym_module] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_package] = ACTIONS(708), + [anon_sym_import] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_public] = ACTIONS(708), + [anon_sym_protected] = ACTIONS(708), + [anon_sym_private] = ACTIONS(708), + [anon_sym_abstract] = ACTIONS(708), + [anon_sym_strictfp] = ACTIONS(708), + [anon_sym_native] = ACTIONS(708), + [anon_sym_transient] = ACTIONS(708), + [anon_sym_volatile] = ACTIONS(708), + [anon_sym_sealed] = ACTIONS(708), + [anon_sym_non_DASHsealed] = ACTIONS(706), + [anon_sym_record] = ACTIONS(708), + [anon_sym_ATinterface] = ACTIONS(706), + [anon_sym_interface] = ACTIONS(708), + [anon_sym_byte] = ACTIONS(708), + [anon_sym_short] = ACTIONS(708), + [anon_sym_int] = ACTIONS(708), + [anon_sym_long] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_float] = ACTIONS(708), + [anon_sym_double] = ACTIONS(708), + [sym_boolean_type] = ACTIONS(708), + [sym_void_type] = ACTIONS(708), + [sym_this] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [255] = { + [ts_builtin_sym_end] = ACTIONS(710), + [sym_identifier] = ACTIONS(712), + [sym_decimal_integer_literal] = ACTIONS(712), + [sym_hex_integer_literal] = ACTIONS(712), + [sym_octal_integer_literal] = ACTIONS(710), + [sym_binary_integer_literal] = ACTIONS(710), + [sym_decimal_floating_point_literal] = ACTIONS(710), + [sym_hex_floating_point_literal] = ACTIONS(712), + [sym_true] = ACTIONS(712), + [sym_false] = ACTIONS(712), + [sym_character_literal] = ACTIONS(710), + [anon_sym_DQUOTE] = ACTIONS(712), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(710), + [sym_null_literal] = ACTIONS(712), + [anon_sym_LPAREN] = ACTIONS(710), + [anon_sym_LT] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(712), + [anon_sym_final] = ACTIONS(712), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(710), + [anon_sym_PLUS_PLUS] = ACTIONS(710), + [anon_sym_DASH_DASH] = ACTIONS(710), + [anon_sym_new] = ACTIONS(712), + [anon_sym_class] = ACTIONS(712), + [anon_sym_switch] = ACTIONS(712), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(710), + [anon_sym_case] = ACTIONS(712), + [anon_sym_default] = ACTIONS(712), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_assert] = ACTIONS(712), + [anon_sym_do] = ACTIONS(712), + [anon_sym_while] = ACTIONS(712), + [anon_sym_break] = ACTIONS(712), + [anon_sym_continue] = ACTIONS(712), + [anon_sym_return] = ACTIONS(712), + [anon_sym_yield] = ACTIONS(712), + [anon_sym_synchronized] = ACTIONS(712), + [anon_sym_throw] = ACTIONS(712), + [anon_sym_try] = ACTIONS(712), + [anon_sym_if] = ACTIONS(712), + [anon_sym_else] = ACTIONS(712), + [anon_sym_for] = ACTIONS(712), + [anon_sym_AT] = ACTIONS(712), + [anon_sym_open] = ACTIONS(712), + [anon_sym_module] = ACTIONS(712), + [anon_sym_static] = ACTIONS(712), + [anon_sym_package] = ACTIONS(712), + [anon_sym_import] = ACTIONS(712), + [anon_sym_enum] = ACTIONS(712), + [anon_sym_public] = ACTIONS(712), + [anon_sym_protected] = ACTIONS(712), + [anon_sym_private] = ACTIONS(712), + [anon_sym_abstract] = ACTIONS(712), + [anon_sym_strictfp] = ACTIONS(712), + [anon_sym_native] = ACTIONS(712), + [anon_sym_transient] = ACTIONS(712), + [anon_sym_volatile] = ACTIONS(712), + [anon_sym_sealed] = ACTIONS(712), + [anon_sym_non_DASHsealed] = ACTIONS(710), + [anon_sym_record] = ACTIONS(712), + [anon_sym_ATinterface] = ACTIONS(710), + [anon_sym_interface] = ACTIONS(712), + [anon_sym_byte] = ACTIONS(712), + [anon_sym_short] = ACTIONS(712), + [anon_sym_int] = ACTIONS(712), + [anon_sym_long] = ACTIONS(712), + [anon_sym_char] = ACTIONS(712), + [anon_sym_float] = ACTIONS(712), + [anon_sym_double] = ACTIONS(712), + [sym_boolean_type] = ACTIONS(712), + [sym_void_type] = ACTIONS(712), + [sym_this] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [256] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(609), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_resource] = STATE(877), - [sym__annotation] = STATE(526), - [sym_marker_annotation] = STATE(526), - [sym_annotation] = STATE(526), - [sym_modifiers] = STATE(605), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(620), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [aux_sym_modifiers_repeat1] = STATE(461), - [sym_identifier] = ACTIONS(937), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33840,70 +35756,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_new] = ACTIONS(943), - [anon_sym_default] = ACTIONS(280), - [anon_sym_synchronized] = ACTIONS(280), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_open] = ACTIONS(945), - [anon_sym_module] = ACTIONS(945), - [anon_sym_static] = ACTIONS(280), - [anon_sym_public] = ACTIONS(280), - [anon_sym_protected] = ACTIONS(280), - [anon_sym_private] = ACTIONS(280), - [anon_sym_abstract] = ACTIONS(280), - [anon_sym_final] = ACTIONS(280), - [anon_sym_strictfp] = ACTIONS(280), - [anon_sym_native] = ACTIONS(280), - [anon_sym_transient] = ACTIONS(280), - [anon_sym_volatile] = ACTIONS(280), - [anon_sym_sealed] = ACTIONS(280), - [anon_sym_non_DASHsealed] = ACTIONS(286), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, - [298] = { - [sym__literal] = STATE(381), - [sym_primary_expression] = STATE(874), - [sym_array_creation_expression] = STATE(381), - [sym_parenthesized_expression] = STATE(381), - [sym_class_literal] = STATE(381), - [sym_object_creation_expression] = STATE(381), - [sym__unqualified_object_creation_expression] = STATE(382), - [sym_field_access] = STATE(752), + [257] = { + [ts_builtin_sym_end] = ACTIONS(714), + [sym_identifier] = ACTIONS(716), + [sym_decimal_integer_literal] = ACTIONS(716), + [sym_hex_integer_literal] = ACTIONS(716), + [sym_octal_integer_literal] = ACTIONS(714), + [sym_binary_integer_literal] = ACTIONS(714), + [sym_decimal_floating_point_literal] = ACTIONS(714), + [sym_hex_floating_point_literal] = ACTIONS(716), + [sym_true] = ACTIONS(716), + [sym_false] = ACTIONS(716), + [sym_character_literal] = ACTIONS(714), + [anon_sym_DQUOTE] = ACTIONS(716), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(714), + [sym_null_literal] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(714), + [anon_sym_LT] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_final] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(714), + [anon_sym_TILDE] = ACTIONS(714), + [anon_sym_PLUS_PLUS] = ACTIONS(714), + [anon_sym_DASH_DASH] = ACTIONS(714), + [anon_sym_new] = ACTIONS(716), + [anon_sym_class] = ACTIONS(716), + [anon_sym_switch] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(714), + [anon_sym_RBRACE] = ACTIONS(714), + [anon_sym_case] = ACTIONS(716), + [anon_sym_default] = ACTIONS(716), + [anon_sym_SEMI] = ACTIONS(714), + [anon_sym_assert] = ACTIONS(716), + [anon_sym_do] = ACTIONS(716), + [anon_sym_while] = ACTIONS(716), + [anon_sym_break] = ACTIONS(716), + [anon_sym_continue] = ACTIONS(716), + [anon_sym_return] = ACTIONS(716), + [anon_sym_yield] = ACTIONS(716), + [anon_sym_synchronized] = ACTIONS(716), + [anon_sym_throw] = ACTIONS(716), + [anon_sym_try] = ACTIONS(716), + [anon_sym_if] = ACTIONS(716), + [anon_sym_else] = ACTIONS(716), + [anon_sym_for] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(716), + [anon_sym_open] = ACTIONS(716), + [anon_sym_module] = ACTIONS(716), + [anon_sym_static] = ACTIONS(716), + [anon_sym_package] = ACTIONS(716), + [anon_sym_import] = ACTIONS(716), + [anon_sym_enum] = ACTIONS(716), + [anon_sym_public] = ACTIONS(716), + [anon_sym_protected] = ACTIONS(716), + [anon_sym_private] = ACTIONS(716), + [anon_sym_abstract] = ACTIONS(716), + [anon_sym_strictfp] = ACTIONS(716), + [anon_sym_native] = ACTIONS(716), + [anon_sym_transient] = ACTIONS(716), + [anon_sym_volatile] = ACTIONS(716), + [anon_sym_sealed] = ACTIONS(716), + [anon_sym_non_DASHsealed] = ACTIONS(714), + [anon_sym_record] = ACTIONS(716), + [anon_sym_ATinterface] = ACTIONS(714), + [anon_sym_interface] = ACTIONS(716), + [anon_sym_byte] = ACTIONS(716), + [anon_sym_short] = ACTIONS(716), + [anon_sym_int] = ACTIONS(716), + [anon_sym_long] = ACTIONS(716), + [anon_sym_char] = ACTIONS(716), + [anon_sym_float] = ACTIONS(716), + [anon_sym_double] = ACTIONS(716), + [sym_boolean_type] = ACTIONS(716), + [sym_void_type] = ACTIONS(716), + [sym_this] = ACTIONS(716), + [sym_super] = ACTIONS(716), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [258] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(526), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), [sym_array_access] = STATE(381), - [sym_method_invocation] = STATE(381), - [sym_method_reference] = STATE(381), - [sym_resource] = STATE(1028), - [sym__annotation] = STATE(526), - [sym_marker_annotation] = STATE(526), - [sym_annotation] = STATE(526), - [sym_modifiers] = STATE(605), - [sym__type] = STATE(1068), - [sym__unannotated_type] = STATE(620), - [sym_annotated_type] = STATE(666), - [sym_scoped_type_identifier] = STATE(626), - [sym_generic_type] = STATE(656), - [sym_array_type] = STATE(593), - [sym_integral_type] = STATE(593), - [sym_floating_point_type] = STATE(593), - [aux_sym_dimensions_expr_repeat1] = STATE(572), - [aux_sym_modifiers_repeat1] = STATE(461), - [sym_identifier] = ACTIONS(937), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), [sym_decimal_integer_literal] = ACTIONS(9), [sym_hex_integer_literal] = ACTIONS(9), [sym_octal_integer_literal] = ACTIONS(11), @@ -33913,602 +35914,9315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(9), [sym_false] = ACTIONS(9), [sym_character_literal] = ACTIONS(11), - [sym_string_literal] = ACTIONS(9), - [sym_text_block] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), [sym_null_literal] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_new] = ACTIONS(943), - [anon_sym_default] = ACTIONS(280), - [anon_sym_synchronized] = ACTIONS(280), - [anon_sym_AT] = ACTIONS(282), - [anon_sym_open] = ACTIONS(945), - [anon_sym_module] = ACTIONS(945), - [anon_sym_static] = ACTIONS(280), - [anon_sym_public] = ACTIONS(280), - [anon_sym_protected] = ACTIONS(280), - [anon_sym_private] = ACTIONS(280), - [anon_sym_abstract] = ACTIONS(280), - [anon_sym_final] = ACTIONS(280), - [anon_sym_strictfp] = ACTIONS(280), - [anon_sym_native] = ACTIONS(280), - [anon_sym_transient] = ACTIONS(280), - [anon_sym_volatile] = ACTIONS(280), - [anon_sym_sealed] = ACTIONS(280), - [anon_sym_non_DASHsealed] = ACTIONS(286), - [anon_sym_byte] = ACTIONS(75), - [anon_sym_short] = ACTIONS(75), - [anon_sym_int] = ACTIONS(75), - [anon_sym_long] = ACTIONS(75), - [anon_sym_char] = ACTIONS(75), - [anon_sym_float] = ACTIONS(77), - [anon_sym_double] = ACTIONS(77), - [sym_boolean_type] = ACTIONS(79), - [sym_void_type] = ACTIONS(79), - [sym_this] = ACTIONS(81), - [sym_super] = ACTIONS(83), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [sym_block_comment] = ACTIONS(3), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 28, - ACTIONS(965), 1, - sym_identifier, - ACTIONS(968), 1, - anon_sym_LT, - ACTIONS(971), 1, - anon_sym_class, - ACTIONS(974), 1, - anon_sym_LBRACE, - ACTIONS(977), 1, - anon_sym_RBRACE, - ACTIONS(982), 1, - anon_sym_SEMI, - ACTIONS(985), 1, - anon_sym_AT, - ACTIONS(988), 1, - anon_sym_static, - ACTIONS(991), 1, - anon_sym_enum, - ACTIONS(994), 1, - anon_sym_non_DASHsealed, - ACTIONS(997), 1, - anon_sym_record, - ACTIONS(1000), 1, - anon_sym_ATinterface, - ACTIONS(1003), 1, - anon_sym_interface, - STATE(520), 1, - sym_modifiers, - STATE(569), 1, - sym_type_parameters, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(608), 1, - sym__unannotated_type, - STATE(777), 1, - sym__constructor_declarator, - STATE(873), 1, - sym__method_header, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1009), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(1012), 2, - sym_boolean_type, - sym_void_type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(348), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(1006), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - STATE(299), 11, - sym_block, - sym_enum_declaration, - sym_class_declaration, - sym_static_initializer, - sym_constructor_declaration, - sym_field_declaration, - sym_record_declaration, - sym_annotation_type_declaration, - sym_interface_declaration, - sym_method_declaration, - aux_sym_enum_body_declarations_repeat1, - ACTIONS(979), 12, - anon_sym_default, - anon_sym_synchronized, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [118] = 28, - ACTIONS(23), 1, - anon_sym_class, - ACTIONS(27), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_AT, - ACTIONS(67), 1, - anon_sym_enum, - ACTIONS(69), 1, - anon_sym_non_DASHsealed, - ACTIONS(71), 1, - anon_sym_ATinterface, - ACTIONS(73), 1, - anon_sym_interface, - ACTIONS(1015), 1, - sym_identifier, - ACTIONS(1017), 1, - anon_sym_LT, - ACTIONS(1019), 1, - anon_sym_RBRACE, - ACTIONS(1021), 1, - anon_sym_SEMI, - ACTIONS(1023), 1, - anon_sym_static, - ACTIONS(1025), 1, - anon_sym_record, - STATE(520), 1, - sym_modifiers, - STATE(569), 1, - sym_type_parameters, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(608), 1, - sym__unannotated_type, - STATE(777), 1, - sym__constructor_declarator, - STATE(873), 1, - sym__method_header, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(348), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - STATE(299), 11, - sym_block, - sym_enum_declaration, - sym_class_declaration, - sym_static_initializer, - sym_constructor_declaration, - sym_field_declaration, - sym_record_declaration, - sym_annotation_type_declaration, - sym_interface_declaration, - sym_method_declaration, - aux_sym_enum_body_declarations_repeat1, - ACTIONS(29), 12, - anon_sym_default, - anon_sym_synchronized, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [236] = 28, - ACTIONS(23), 1, - anon_sym_class, - ACTIONS(27), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_AT, - ACTIONS(67), 1, - anon_sym_enum, - ACTIONS(69), 1, - anon_sym_non_DASHsealed, - ACTIONS(71), 1, - anon_sym_ATinterface, - ACTIONS(73), 1, - anon_sym_interface, - ACTIONS(1015), 1, - sym_identifier, - ACTIONS(1017), 1, - anon_sym_LT, - ACTIONS(1023), 1, - anon_sym_static, - ACTIONS(1025), 1, - anon_sym_record, - ACTIONS(1027), 1, - anon_sym_RBRACE, - ACTIONS(1029), 1, - anon_sym_SEMI, - STATE(520), 1, - sym_modifiers, - STATE(569), 1, - sym_type_parameters, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(608), 1, - sym__unannotated_type, - STATE(777), 1, - sym__constructor_declarator, - STATE(873), 1, - sym__method_header, + [259] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(642), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [260] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(540), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [261] = { + [ts_builtin_sym_end] = ACTIONS(718), + [sym_identifier] = ACTIONS(720), + [sym_decimal_integer_literal] = ACTIONS(720), + [sym_hex_integer_literal] = ACTIONS(720), + [sym_octal_integer_literal] = ACTIONS(718), + [sym_binary_integer_literal] = ACTIONS(718), + [sym_decimal_floating_point_literal] = ACTIONS(718), + [sym_hex_floating_point_literal] = ACTIONS(720), + [sym_true] = ACTIONS(720), + [sym_false] = ACTIONS(720), + [sym_character_literal] = ACTIONS(718), + [anon_sym_DQUOTE] = ACTIONS(720), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(718), + [sym_null_literal] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(718), + [anon_sym_LT] = ACTIONS(718), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_final] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(718), + [anon_sym_TILDE] = ACTIONS(718), + [anon_sym_PLUS_PLUS] = ACTIONS(718), + [anon_sym_DASH_DASH] = ACTIONS(718), + [anon_sym_new] = ACTIONS(720), + [anon_sym_class] = ACTIONS(720), + [anon_sym_switch] = ACTIONS(720), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(718), + [anon_sym_case] = ACTIONS(720), + [anon_sym_default] = ACTIONS(720), + [anon_sym_SEMI] = ACTIONS(718), + [anon_sym_assert] = ACTIONS(720), + [anon_sym_do] = ACTIONS(720), + [anon_sym_while] = ACTIONS(720), + [anon_sym_break] = ACTIONS(720), + [anon_sym_continue] = ACTIONS(720), + [anon_sym_return] = ACTIONS(720), + [anon_sym_yield] = ACTIONS(720), + [anon_sym_synchronized] = ACTIONS(720), + [anon_sym_throw] = ACTIONS(720), + [anon_sym_try] = ACTIONS(720), + [anon_sym_if] = ACTIONS(720), + [anon_sym_else] = ACTIONS(720), + [anon_sym_for] = ACTIONS(720), + [anon_sym_AT] = ACTIONS(720), + [anon_sym_open] = ACTIONS(720), + [anon_sym_module] = ACTIONS(720), + [anon_sym_static] = ACTIONS(720), + [anon_sym_package] = ACTIONS(720), + [anon_sym_import] = ACTIONS(720), + [anon_sym_enum] = ACTIONS(720), + [anon_sym_public] = ACTIONS(720), + [anon_sym_protected] = ACTIONS(720), + [anon_sym_private] = ACTIONS(720), + [anon_sym_abstract] = ACTIONS(720), + [anon_sym_strictfp] = ACTIONS(720), + [anon_sym_native] = ACTIONS(720), + [anon_sym_transient] = ACTIONS(720), + [anon_sym_volatile] = ACTIONS(720), + [anon_sym_sealed] = ACTIONS(720), + [anon_sym_non_DASHsealed] = ACTIONS(718), + [anon_sym_record] = ACTIONS(720), + [anon_sym_ATinterface] = ACTIONS(718), + [anon_sym_interface] = ACTIONS(720), + [anon_sym_byte] = ACTIONS(720), + [anon_sym_short] = ACTIONS(720), + [anon_sym_int] = ACTIONS(720), + [anon_sym_long] = ACTIONS(720), + [anon_sym_char] = ACTIONS(720), + [anon_sym_float] = ACTIONS(720), + [anon_sym_double] = ACTIONS(720), + [sym_boolean_type] = ACTIONS(720), + [sym_void_type] = ACTIONS(720), + [sym_this] = ACTIONS(720), + [sym_super] = ACTIONS(720), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [262] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(527), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [263] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(533), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [264] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(536), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [265] = { + [ts_builtin_sym_end] = ACTIONS(722), + [sym_identifier] = ACTIONS(724), + [sym_decimal_integer_literal] = ACTIONS(724), + [sym_hex_integer_literal] = ACTIONS(724), + [sym_octal_integer_literal] = ACTIONS(722), + [sym_binary_integer_literal] = ACTIONS(722), + [sym_decimal_floating_point_literal] = ACTIONS(722), + [sym_hex_floating_point_literal] = ACTIONS(724), + [sym_true] = ACTIONS(724), + [sym_false] = ACTIONS(724), + [sym_character_literal] = ACTIONS(722), + [anon_sym_DQUOTE] = ACTIONS(724), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(722), + [sym_null_literal] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(722), + [anon_sym_LT] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(724), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_final] = ACTIONS(724), + [anon_sym_BANG] = ACTIONS(722), + [anon_sym_TILDE] = ACTIONS(722), + [anon_sym_PLUS_PLUS] = ACTIONS(722), + [anon_sym_DASH_DASH] = ACTIONS(722), + [anon_sym_new] = ACTIONS(724), + [anon_sym_class] = ACTIONS(724), + [anon_sym_switch] = ACTIONS(724), + [anon_sym_LBRACE] = ACTIONS(722), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_case] = ACTIONS(724), + [anon_sym_default] = ACTIONS(724), + [anon_sym_SEMI] = ACTIONS(722), + [anon_sym_assert] = ACTIONS(724), + [anon_sym_do] = ACTIONS(724), + [anon_sym_while] = ACTIONS(724), + [anon_sym_break] = ACTIONS(724), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_return] = ACTIONS(724), + [anon_sym_yield] = ACTIONS(724), + [anon_sym_synchronized] = ACTIONS(724), + [anon_sym_throw] = ACTIONS(724), + [anon_sym_try] = ACTIONS(724), + [anon_sym_if] = ACTIONS(724), + [anon_sym_else] = ACTIONS(724), + [anon_sym_for] = ACTIONS(724), + [anon_sym_AT] = ACTIONS(724), + [anon_sym_open] = ACTIONS(724), + [anon_sym_module] = ACTIONS(724), + [anon_sym_static] = ACTIONS(724), + [anon_sym_package] = ACTIONS(724), + [anon_sym_import] = ACTIONS(724), + [anon_sym_enum] = ACTIONS(724), + [anon_sym_public] = ACTIONS(724), + [anon_sym_protected] = ACTIONS(724), + [anon_sym_private] = ACTIONS(724), + [anon_sym_abstract] = ACTIONS(724), + [anon_sym_strictfp] = ACTIONS(724), + [anon_sym_native] = ACTIONS(724), + [anon_sym_transient] = ACTIONS(724), + [anon_sym_volatile] = ACTIONS(724), + [anon_sym_sealed] = ACTIONS(724), + [anon_sym_non_DASHsealed] = ACTIONS(722), + [anon_sym_record] = ACTIONS(724), + [anon_sym_ATinterface] = ACTIONS(722), + [anon_sym_interface] = ACTIONS(724), + [anon_sym_byte] = ACTIONS(724), + [anon_sym_short] = ACTIONS(724), + [anon_sym_int] = ACTIONS(724), + [anon_sym_long] = ACTIONS(724), + [anon_sym_char] = ACTIONS(724), + [anon_sym_float] = ACTIONS(724), + [anon_sym_double] = ACTIONS(724), + [sym_boolean_type] = ACTIONS(724), + [sym_void_type] = ACTIONS(724), + [sym_this] = ACTIONS(724), + [sym_super] = ACTIONS(724), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [266] = { + [ts_builtin_sym_end] = ACTIONS(726), + [sym_identifier] = ACTIONS(728), + [sym_decimal_integer_literal] = ACTIONS(728), + [sym_hex_integer_literal] = ACTIONS(728), + [sym_octal_integer_literal] = ACTIONS(726), + [sym_binary_integer_literal] = ACTIONS(726), + [sym_decimal_floating_point_literal] = ACTIONS(726), + [sym_hex_floating_point_literal] = ACTIONS(728), + [sym_true] = ACTIONS(728), + [sym_false] = ACTIONS(728), + [sym_character_literal] = ACTIONS(726), + [anon_sym_DQUOTE] = ACTIONS(728), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(726), + [sym_null_literal] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(726), + [anon_sym_LT] = ACTIONS(726), + [anon_sym_PLUS] = ACTIONS(728), + [anon_sym_DASH] = ACTIONS(728), + [anon_sym_final] = ACTIONS(728), + [anon_sym_BANG] = ACTIONS(726), + [anon_sym_TILDE] = ACTIONS(726), + [anon_sym_PLUS_PLUS] = ACTIONS(726), + [anon_sym_DASH_DASH] = ACTIONS(726), + [anon_sym_new] = ACTIONS(728), + [anon_sym_class] = ACTIONS(728), + [anon_sym_switch] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(726), + [anon_sym_RBRACE] = ACTIONS(726), + [anon_sym_case] = ACTIONS(728), + [anon_sym_default] = ACTIONS(728), + [anon_sym_SEMI] = ACTIONS(726), + [anon_sym_assert] = ACTIONS(728), + [anon_sym_do] = ACTIONS(728), + [anon_sym_while] = ACTIONS(728), + [anon_sym_break] = ACTIONS(728), + [anon_sym_continue] = ACTIONS(728), + [anon_sym_return] = ACTIONS(728), + [anon_sym_yield] = ACTIONS(728), + [anon_sym_synchronized] = ACTIONS(728), + [anon_sym_throw] = ACTIONS(728), + [anon_sym_try] = ACTIONS(728), + [anon_sym_if] = ACTIONS(728), + [anon_sym_else] = ACTIONS(728), + [anon_sym_for] = ACTIONS(728), + [anon_sym_AT] = ACTIONS(728), + [anon_sym_open] = ACTIONS(728), + [anon_sym_module] = ACTIONS(728), + [anon_sym_static] = ACTIONS(728), + [anon_sym_package] = ACTIONS(728), + [anon_sym_import] = ACTIONS(728), + [anon_sym_enum] = ACTIONS(728), + [anon_sym_public] = ACTIONS(728), + [anon_sym_protected] = ACTIONS(728), + [anon_sym_private] = ACTIONS(728), + [anon_sym_abstract] = ACTIONS(728), + [anon_sym_strictfp] = ACTIONS(728), + [anon_sym_native] = ACTIONS(728), + [anon_sym_transient] = ACTIONS(728), + [anon_sym_volatile] = ACTIONS(728), + [anon_sym_sealed] = ACTIONS(728), + [anon_sym_non_DASHsealed] = ACTIONS(726), + [anon_sym_record] = ACTIONS(728), + [anon_sym_ATinterface] = ACTIONS(726), + [anon_sym_interface] = ACTIONS(728), + [anon_sym_byte] = ACTIONS(728), + [anon_sym_short] = ACTIONS(728), + [anon_sym_int] = ACTIONS(728), + [anon_sym_long] = ACTIONS(728), + [anon_sym_char] = ACTIONS(728), + [anon_sym_float] = ACTIONS(728), + [anon_sym_double] = ACTIONS(728), + [sym_boolean_type] = ACTIONS(728), + [sym_void_type] = ACTIONS(728), + [sym_this] = ACTIONS(728), + [sym_super] = ACTIONS(728), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [267] = { + [ts_builtin_sym_end] = ACTIONS(730), + [sym_identifier] = ACTIONS(732), + [sym_decimal_integer_literal] = ACTIONS(732), + [sym_hex_integer_literal] = ACTIONS(732), + [sym_octal_integer_literal] = ACTIONS(730), + [sym_binary_integer_literal] = ACTIONS(730), + [sym_decimal_floating_point_literal] = ACTIONS(730), + [sym_hex_floating_point_literal] = ACTIONS(732), + [sym_true] = ACTIONS(732), + [sym_false] = ACTIONS(732), + [sym_character_literal] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(730), + [sym_null_literal] = ACTIONS(732), + [anon_sym_LPAREN] = ACTIONS(730), + [anon_sym_LT] = ACTIONS(730), + [anon_sym_PLUS] = ACTIONS(732), + [anon_sym_DASH] = ACTIONS(732), + [anon_sym_final] = ACTIONS(732), + [anon_sym_BANG] = ACTIONS(730), + [anon_sym_TILDE] = ACTIONS(730), + [anon_sym_PLUS_PLUS] = ACTIONS(730), + [anon_sym_DASH_DASH] = ACTIONS(730), + [anon_sym_new] = ACTIONS(732), + [anon_sym_class] = ACTIONS(732), + [anon_sym_switch] = ACTIONS(732), + [anon_sym_LBRACE] = ACTIONS(730), + [anon_sym_RBRACE] = ACTIONS(730), + [anon_sym_case] = ACTIONS(732), + [anon_sym_default] = ACTIONS(732), + [anon_sym_SEMI] = ACTIONS(730), + [anon_sym_assert] = ACTIONS(732), + [anon_sym_do] = ACTIONS(732), + [anon_sym_while] = ACTIONS(732), + [anon_sym_break] = ACTIONS(732), + [anon_sym_continue] = ACTIONS(732), + [anon_sym_return] = ACTIONS(732), + [anon_sym_yield] = ACTIONS(732), + [anon_sym_synchronized] = ACTIONS(732), + [anon_sym_throw] = ACTIONS(732), + [anon_sym_try] = ACTIONS(732), + [anon_sym_if] = ACTIONS(732), + [anon_sym_else] = ACTIONS(732), + [anon_sym_for] = ACTIONS(732), + [anon_sym_AT] = ACTIONS(732), + [anon_sym_open] = ACTIONS(732), + [anon_sym_module] = ACTIONS(732), + [anon_sym_static] = ACTIONS(732), + [anon_sym_package] = ACTIONS(732), + [anon_sym_import] = ACTIONS(732), + [anon_sym_enum] = ACTIONS(732), + [anon_sym_public] = ACTIONS(732), + [anon_sym_protected] = ACTIONS(732), + [anon_sym_private] = ACTIONS(732), + [anon_sym_abstract] = ACTIONS(732), + [anon_sym_strictfp] = ACTIONS(732), + [anon_sym_native] = ACTIONS(732), + [anon_sym_transient] = ACTIONS(732), + [anon_sym_volatile] = ACTIONS(732), + [anon_sym_sealed] = ACTIONS(732), + [anon_sym_non_DASHsealed] = ACTIONS(730), + [anon_sym_record] = ACTIONS(732), + [anon_sym_ATinterface] = ACTIONS(730), + [anon_sym_interface] = ACTIONS(732), + [anon_sym_byte] = ACTIONS(732), + [anon_sym_short] = ACTIONS(732), + [anon_sym_int] = ACTIONS(732), + [anon_sym_long] = ACTIONS(732), + [anon_sym_char] = ACTIONS(732), + [anon_sym_float] = ACTIONS(732), + [anon_sym_double] = ACTIONS(732), + [sym_boolean_type] = ACTIONS(732), + [sym_void_type] = ACTIONS(732), + [sym_this] = ACTIONS(732), + [sym_super] = ACTIONS(732), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [268] = { + [ts_builtin_sym_end] = ACTIONS(734), + [sym_identifier] = ACTIONS(736), + [sym_decimal_integer_literal] = ACTIONS(736), + [sym_hex_integer_literal] = ACTIONS(736), + [sym_octal_integer_literal] = ACTIONS(734), + [sym_binary_integer_literal] = ACTIONS(734), + [sym_decimal_floating_point_literal] = ACTIONS(734), + [sym_hex_floating_point_literal] = ACTIONS(736), + [sym_true] = ACTIONS(736), + [sym_false] = ACTIONS(736), + [sym_character_literal] = ACTIONS(734), + [anon_sym_DQUOTE] = ACTIONS(736), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(734), + [sym_null_literal] = ACTIONS(736), + [anon_sym_LPAREN] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(734), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_final] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(734), + [anon_sym_TILDE] = ACTIONS(734), + [anon_sym_PLUS_PLUS] = ACTIONS(734), + [anon_sym_DASH_DASH] = ACTIONS(734), + [anon_sym_new] = ACTIONS(736), + [anon_sym_class] = ACTIONS(736), + [anon_sym_switch] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(734), + [anon_sym_RBRACE] = ACTIONS(734), + [anon_sym_case] = ACTIONS(736), + [anon_sym_default] = ACTIONS(736), + [anon_sym_SEMI] = ACTIONS(734), + [anon_sym_assert] = ACTIONS(736), + [anon_sym_do] = ACTIONS(736), + [anon_sym_while] = ACTIONS(736), + [anon_sym_break] = ACTIONS(736), + [anon_sym_continue] = ACTIONS(736), + [anon_sym_return] = ACTIONS(736), + [anon_sym_yield] = ACTIONS(736), + [anon_sym_synchronized] = ACTIONS(736), + [anon_sym_throw] = ACTIONS(736), + [anon_sym_try] = ACTIONS(736), + [anon_sym_if] = ACTIONS(736), + [anon_sym_else] = ACTIONS(736), + [anon_sym_for] = ACTIONS(736), + [anon_sym_AT] = ACTIONS(736), + [anon_sym_open] = ACTIONS(736), + [anon_sym_module] = ACTIONS(736), + [anon_sym_static] = ACTIONS(736), + [anon_sym_package] = ACTIONS(736), + [anon_sym_import] = ACTIONS(736), + [anon_sym_enum] = ACTIONS(736), + [anon_sym_public] = ACTIONS(736), + [anon_sym_protected] = ACTIONS(736), + [anon_sym_private] = ACTIONS(736), + [anon_sym_abstract] = ACTIONS(736), + [anon_sym_strictfp] = ACTIONS(736), + [anon_sym_native] = ACTIONS(736), + [anon_sym_transient] = ACTIONS(736), + [anon_sym_volatile] = ACTIONS(736), + [anon_sym_sealed] = ACTIONS(736), + [anon_sym_non_DASHsealed] = ACTIONS(734), + [anon_sym_record] = ACTIONS(736), + [anon_sym_ATinterface] = ACTIONS(734), + [anon_sym_interface] = ACTIONS(736), + [anon_sym_byte] = ACTIONS(736), + [anon_sym_short] = ACTIONS(736), + [anon_sym_int] = ACTIONS(736), + [anon_sym_long] = ACTIONS(736), + [anon_sym_char] = ACTIONS(736), + [anon_sym_float] = ACTIONS(736), + [anon_sym_double] = ACTIONS(736), + [sym_boolean_type] = ACTIONS(736), + [sym_void_type] = ACTIONS(736), + [sym_this] = ACTIONS(736), + [sym_super] = ACTIONS(736), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [269] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(551), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1253), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(394), + [sym_array_access] = STATE(394), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1253), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(378), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(384), + [anon_sym_TILDE] = ACTIONS(384), + [anon_sym_PLUS_PLUS] = ACTIONS(386), + [anon_sym_DASH_DASH] = ACTIONS(386), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(388), + [anon_sym_module] = ACTIONS(388), + [anon_sym_record] = ACTIONS(388), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [270] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(638), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [271] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_expression] = STATE(543), + [sym_cast_expression] = STATE(519), + [sym_assignment_expression] = STATE(519), + [sym_binary_expression] = STATE(519), + [sym_instanceof_expression] = STATE(519), + [sym_lambda_expression] = STATE(519), + [sym_inferred_parameters] = STATE(1214), + [sym_ternary_expression] = STATE(519), + [sym_unary_expression] = STATE(519), + [sym_update_expression] = STATE(519), + [sym_primary_expression] = STATE(474), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(381), + [sym_array_access] = STATE(381), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_switch_expression] = STATE(519), + [sym__annotation] = STATE(674), + [sym_marker_annotation] = STATE(674), + [sym_annotation] = STATE(674), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(771), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [sym_formal_parameters] = STATE(1214), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [sym_identifier] = ACTIONS(303), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(19), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(23), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_new] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(31), + [anon_sym_AT] = ACTIONS(331), + [anon_sym_open] = ACTIONS(307), + [anon_sym_module] = ACTIONS(307), + [anon_sym_record] = ACTIONS(307), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [272] = { + [ts_builtin_sym_end] = ACTIONS(738), + [sym_identifier] = ACTIONS(740), + [sym_decimal_integer_literal] = ACTIONS(740), + [sym_hex_integer_literal] = ACTIONS(740), + [sym_octal_integer_literal] = ACTIONS(738), + [sym_binary_integer_literal] = ACTIONS(738), + [sym_decimal_floating_point_literal] = ACTIONS(738), + [sym_hex_floating_point_literal] = ACTIONS(740), + [sym_true] = ACTIONS(740), + [sym_false] = ACTIONS(740), + [sym_character_literal] = ACTIONS(738), + [anon_sym_DQUOTE] = ACTIONS(740), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(738), + [sym_null_literal] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_final] = ACTIONS(740), + [anon_sym_BANG] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_PLUS_PLUS] = ACTIONS(738), + [anon_sym_DASH_DASH] = ACTIONS(738), + [anon_sym_new] = ACTIONS(740), + [anon_sym_class] = ACTIONS(740), + [anon_sym_switch] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_case] = ACTIONS(740), + [anon_sym_default] = ACTIONS(740), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_assert] = ACTIONS(740), + [anon_sym_do] = ACTIONS(740), + [anon_sym_while] = ACTIONS(740), + [anon_sym_break] = ACTIONS(740), + [anon_sym_continue] = ACTIONS(740), + [anon_sym_return] = ACTIONS(740), + [anon_sym_yield] = ACTIONS(740), + [anon_sym_synchronized] = ACTIONS(740), + [anon_sym_throw] = ACTIONS(740), + [anon_sym_try] = ACTIONS(740), + [anon_sym_if] = ACTIONS(740), + [anon_sym_else] = ACTIONS(740), + [anon_sym_for] = ACTIONS(740), + [anon_sym_AT] = ACTIONS(740), + [anon_sym_open] = ACTIONS(740), + [anon_sym_module] = ACTIONS(740), + [anon_sym_static] = ACTIONS(740), + [anon_sym_package] = ACTIONS(740), + [anon_sym_import] = ACTIONS(740), + [anon_sym_enum] = ACTIONS(740), + [anon_sym_public] = ACTIONS(740), + [anon_sym_protected] = ACTIONS(740), + [anon_sym_private] = ACTIONS(740), + [anon_sym_abstract] = ACTIONS(740), + [anon_sym_strictfp] = ACTIONS(740), + [anon_sym_native] = ACTIONS(740), + [anon_sym_transient] = ACTIONS(740), + [anon_sym_volatile] = ACTIONS(740), + [anon_sym_sealed] = ACTIONS(740), + [anon_sym_non_DASHsealed] = ACTIONS(738), + [anon_sym_record] = ACTIONS(740), + [anon_sym_ATinterface] = ACTIONS(738), + [anon_sym_interface] = ACTIONS(740), + [anon_sym_byte] = ACTIONS(740), + [anon_sym_short] = ACTIONS(740), + [anon_sym_int] = ACTIONS(740), + [anon_sym_long] = ACTIONS(740), + [anon_sym_char] = ACTIONS(740), + [anon_sym_float] = ACTIONS(740), + [anon_sym_double] = ACTIONS(740), + [sym_boolean_type] = ACTIONS(740), + [sym_void_type] = ACTIONS(740), + [sym_this] = ACTIONS(740), + [sym_super] = ACTIONS(740), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [273] = { + [ts_builtin_sym_end] = ACTIONS(357), + [sym_identifier] = ACTIONS(359), + [sym_decimal_integer_literal] = ACTIONS(359), + [sym_hex_integer_literal] = ACTIONS(359), + [sym_octal_integer_literal] = ACTIONS(357), + [sym_binary_integer_literal] = ACTIONS(357), + [sym_decimal_floating_point_literal] = ACTIONS(357), + [sym_hex_floating_point_literal] = ACTIONS(359), + [sym_true] = ACTIONS(359), + [sym_false] = ACTIONS(359), + [sym_character_literal] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(357), + [sym_null_literal] = ACTIONS(359), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(359), + [anon_sym_DASH] = ACTIONS(359), + [anon_sym_final] = ACTIONS(359), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [anon_sym_new] = ACTIONS(359), + [anon_sym_class] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_RBRACE] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(359), + [anon_sym_SEMI] = ACTIONS(357), + [anon_sym_assert] = ACTIONS(359), + [anon_sym_do] = ACTIONS(359), + [anon_sym_while] = ACTIONS(359), + [anon_sym_break] = ACTIONS(359), + [anon_sym_continue] = ACTIONS(359), + [anon_sym_return] = ACTIONS(359), + [anon_sym_yield] = ACTIONS(359), + [anon_sym_synchronized] = ACTIONS(359), + [anon_sym_throw] = ACTIONS(359), + [anon_sym_try] = ACTIONS(359), + [anon_sym_if] = ACTIONS(359), + [anon_sym_else] = ACTIONS(359), + [anon_sym_for] = ACTIONS(359), + [anon_sym_AT] = ACTIONS(359), + [anon_sym_open] = ACTIONS(359), + [anon_sym_module] = ACTIONS(359), + [anon_sym_static] = ACTIONS(359), + [anon_sym_package] = ACTIONS(359), + [anon_sym_import] = ACTIONS(359), + [anon_sym_enum] = ACTIONS(359), + [anon_sym_public] = ACTIONS(359), + [anon_sym_protected] = ACTIONS(359), + [anon_sym_private] = ACTIONS(359), + [anon_sym_abstract] = ACTIONS(359), + [anon_sym_strictfp] = ACTIONS(359), + [anon_sym_native] = ACTIONS(359), + [anon_sym_transient] = ACTIONS(359), + [anon_sym_volatile] = ACTIONS(359), + [anon_sym_sealed] = ACTIONS(359), + [anon_sym_non_DASHsealed] = ACTIONS(357), + [anon_sym_record] = ACTIONS(359), + [anon_sym_ATinterface] = ACTIONS(357), + [anon_sym_interface] = ACTIONS(359), + [anon_sym_byte] = ACTIONS(359), + [anon_sym_short] = ACTIONS(359), + [anon_sym_int] = ACTIONS(359), + [anon_sym_long] = ACTIONS(359), + [anon_sym_char] = ACTIONS(359), + [anon_sym_float] = ACTIONS(359), + [anon_sym_double] = ACTIONS(359), + [sym_boolean_type] = ACTIONS(359), + [sym_void_type] = ACTIONS(359), + [sym_this] = ACTIONS(359), + [sym_super] = ACTIONS(359), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [274] = { + [ts_builtin_sym_end] = ACTIONS(742), + [sym_identifier] = ACTIONS(744), + [sym_decimal_integer_literal] = ACTIONS(744), + [sym_hex_integer_literal] = ACTIONS(744), + [sym_octal_integer_literal] = ACTIONS(742), + [sym_binary_integer_literal] = ACTIONS(742), + [sym_decimal_floating_point_literal] = ACTIONS(742), + [sym_hex_floating_point_literal] = ACTIONS(744), + [sym_true] = ACTIONS(744), + [sym_false] = ACTIONS(744), + [sym_character_literal] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(744), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(742), + [sym_null_literal] = ACTIONS(744), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_final] = ACTIONS(744), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_PLUS_PLUS] = ACTIONS(742), + [anon_sym_DASH_DASH] = ACTIONS(742), + [anon_sym_new] = ACTIONS(744), + [anon_sym_class] = ACTIONS(744), + [anon_sym_switch] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(742), + [anon_sym_RBRACE] = ACTIONS(742), + [anon_sym_case] = ACTIONS(744), + [anon_sym_default] = ACTIONS(744), + [anon_sym_SEMI] = ACTIONS(742), + [anon_sym_assert] = ACTIONS(744), + [anon_sym_do] = ACTIONS(744), + [anon_sym_while] = ACTIONS(744), + [anon_sym_break] = ACTIONS(744), + [anon_sym_continue] = ACTIONS(744), + [anon_sym_return] = ACTIONS(744), + [anon_sym_yield] = ACTIONS(744), + [anon_sym_synchronized] = ACTIONS(744), + [anon_sym_throw] = ACTIONS(744), + [anon_sym_try] = ACTIONS(744), + [anon_sym_if] = ACTIONS(744), + [anon_sym_else] = ACTIONS(744), + [anon_sym_for] = ACTIONS(744), + [anon_sym_AT] = ACTIONS(744), + [anon_sym_open] = ACTIONS(744), + [anon_sym_module] = ACTIONS(744), + [anon_sym_static] = ACTIONS(744), + [anon_sym_package] = ACTIONS(744), + [anon_sym_import] = ACTIONS(744), + [anon_sym_enum] = ACTIONS(744), + [anon_sym_public] = ACTIONS(744), + [anon_sym_protected] = ACTIONS(744), + [anon_sym_private] = ACTIONS(744), + [anon_sym_abstract] = ACTIONS(744), + [anon_sym_strictfp] = ACTIONS(744), + [anon_sym_native] = ACTIONS(744), + [anon_sym_transient] = ACTIONS(744), + [anon_sym_volatile] = ACTIONS(744), + [anon_sym_sealed] = ACTIONS(744), + [anon_sym_non_DASHsealed] = ACTIONS(742), + [anon_sym_record] = ACTIONS(744), + [anon_sym_ATinterface] = ACTIONS(742), + [anon_sym_interface] = ACTIONS(744), + [anon_sym_byte] = ACTIONS(744), + [anon_sym_short] = ACTIONS(744), + [anon_sym_int] = ACTIONS(744), + [anon_sym_long] = ACTIONS(744), + [anon_sym_char] = ACTIONS(744), + [anon_sym_float] = ACTIONS(744), + [anon_sym_double] = ACTIONS(744), + [sym_boolean_type] = ACTIONS(744), + [sym_void_type] = ACTIONS(744), + [sym_this] = ACTIONS(744), + [sym_super] = ACTIONS(744), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [275] = { + [ts_builtin_sym_end] = ACTIONS(746), + [sym_identifier] = ACTIONS(748), + [sym_decimal_integer_literal] = ACTIONS(748), + [sym_hex_integer_literal] = ACTIONS(748), + [sym_octal_integer_literal] = ACTIONS(746), + [sym_binary_integer_literal] = ACTIONS(746), + [sym_decimal_floating_point_literal] = ACTIONS(746), + [sym_hex_floating_point_literal] = ACTIONS(748), + [sym_true] = ACTIONS(748), + [sym_false] = ACTIONS(748), + [sym_character_literal] = ACTIONS(746), + [anon_sym_DQUOTE] = ACTIONS(748), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(746), + [sym_null_literal] = ACTIONS(748), + [anon_sym_LPAREN] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(748), + [anon_sym_final] = ACTIONS(748), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(746), + [anon_sym_DASH_DASH] = ACTIONS(746), + [anon_sym_new] = ACTIONS(748), + [anon_sym_class] = ACTIONS(748), + [anon_sym_switch] = ACTIONS(748), + [anon_sym_LBRACE] = ACTIONS(746), + [anon_sym_RBRACE] = ACTIONS(746), + [anon_sym_case] = ACTIONS(748), + [anon_sym_default] = ACTIONS(748), + [anon_sym_SEMI] = ACTIONS(746), + [anon_sym_assert] = ACTIONS(748), + [anon_sym_do] = ACTIONS(748), + [anon_sym_while] = ACTIONS(748), + [anon_sym_break] = ACTIONS(748), + [anon_sym_continue] = ACTIONS(748), + [anon_sym_return] = ACTIONS(748), + [anon_sym_yield] = ACTIONS(748), + [anon_sym_synchronized] = ACTIONS(748), + [anon_sym_throw] = ACTIONS(748), + [anon_sym_try] = ACTIONS(748), + [anon_sym_if] = ACTIONS(748), + [anon_sym_else] = ACTIONS(748), + [anon_sym_for] = ACTIONS(748), + [anon_sym_AT] = ACTIONS(748), + [anon_sym_open] = ACTIONS(748), + [anon_sym_module] = ACTIONS(748), + [anon_sym_static] = ACTIONS(748), + [anon_sym_package] = ACTIONS(748), + [anon_sym_import] = ACTIONS(748), + [anon_sym_enum] = ACTIONS(748), + [anon_sym_public] = ACTIONS(748), + [anon_sym_protected] = ACTIONS(748), + [anon_sym_private] = ACTIONS(748), + [anon_sym_abstract] = ACTIONS(748), + [anon_sym_strictfp] = ACTIONS(748), + [anon_sym_native] = ACTIONS(748), + [anon_sym_transient] = ACTIONS(748), + [anon_sym_volatile] = ACTIONS(748), + [anon_sym_sealed] = ACTIONS(748), + [anon_sym_non_DASHsealed] = ACTIONS(746), + [anon_sym_record] = ACTIONS(748), + [anon_sym_ATinterface] = ACTIONS(746), + [anon_sym_interface] = ACTIONS(748), + [anon_sym_byte] = ACTIONS(748), + [anon_sym_short] = ACTIONS(748), + [anon_sym_int] = ACTIONS(748), + [anon_sym_long] = ACTIONS(748), + [anon_sym_char] = ACTIONS(748), + [anon_sym_float] = ACTIONS(748), + [anon_sym_double] = ACTIONS(748), + [sym_boolean_type] = ACTIONS(748), + [sym_void_type] = ACTIONS(748), + [sym_this] = ACTIONS(748), + [sym_super] = ACTIONS(748), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [276] = { + [ts_builtin_sym_end] = ACTIONS(750), + [sym_identifier] = ACTIONS(752), + [sym_decimal_integer_literal] = ACTIONS(752), + [sym_hex_integer_literal] = ACTIONS(752), + [sym_octal_integer_literal] = ACTIONS(750), + [sym_binary_integer_literal] = ACTIONS(750), + [sym_decimal_floating_point_literal] = ACTIONS(750), + [sym_hex_floating_point_literal] = ACTIONS(752), + [sym_true] = ACTIONS(752), + [sym_false] = ACTIONS(752), + [sym_character_literal] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(752), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(750), + [sym_null_literal] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_final] = ACTIONS(752), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_PLUS_PLUS] = ACTIONS(750), + [anon_sym_DASH_DASH] = ACTIONS(750), + [anon_sym_new] = ACTIONS(752), + [anon_sym_class] = ACTIONS(752), + [anon_sym_switch] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(750), + [anon_sym_RBRACE] = ACTIONS(750), + [anon_sym_case] = ACTIONS(752), + [anon_sym_default] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(750), + [anon_sym_assert] = ACTIONS(752), + [anon_sym_do] = ACTIONS(752), + [anon_sym_while] = ACTIONS(752), + [anon_sym_break] = ACTIONS(752), + [anon_sym_continue] = ACTIONS(752), + [anon_sym_return] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(752), + [anon_sym_synchronized] = ACTIONS(752), + [anon_sym_throw] = ACTIONS(752), + [anon_sym_try] = ACTIONS(752), + [anon_sym_if] = ACTIONS(752), + [anon_sym_else] = ACTIONS(752), + [anon_sym_for] = ACTIONS(752), + [anon_sym_AT] = ACTIONS(752), + [anon_sym_open] = ACTIONS(752), + [anon_sym_module] = ACTIONS(752), + [anon_sym_static] = ACTIONS(752), + [anon_sym_package] = ACTIONS(752), + [anon_sym_import] = ACTIONS(752), + [anon_sym_enum] = ACTIONS(752), + [anon_sym_public] = ACTIONS(752), + [anon_sym_protected] = ACTIONS(752), + [anon_sym_private] = ACTIONS(752), + [anon_sym_abstract] = ACTIONS(752), + [anon_sym_strictfp] = ACTIONS(752), + [anon_sym_native] = ACTIONS(752), + [anon_sym_transient] = ACTIONS(752), + [anon_sym_volatile] = ACTIONS(752), + [anon_sym_sealed] = ACTIONS(752), + [anon_sym_non_DASHsealed] = ACTIONS(750), + [anon_sym_record] = ACTIONS(752), + [anon_sym_ATinterface] = ACTIONS(750), + [anon_sym_interface] = ACTIONS(752), + [anon_sym_byte] = ACTIONS(752), + [anon_sym_short] = ACTIONS(752), + [anon_sym_int] = ACTIONS(752), + [anon_sym_long] = ACTIONS(752), + [anon_sym_char] = ACTIONS(752), + [anon_sym_float] = ACTIONS(752), + [anon_sym_double] = ACTIONS(752), + [sym_boolean_type] = ACTIONS(752), + [sym_void_type] = ACTIONS(752), + [sym_this] = ACTIONS(752), + [sym_super] = ACTIONS(752), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [277] = { + [ts_builtin_sym_end] = ACTIONS(754), + [sym_identifier] = ACTIONS(756), + [sym_decimal_integer_literal] = ACTIONS(756), + [sym_hex_integer_literal] = ACTIONS(756), + [sym_octal_integer_literal] = ACTIONS(754), + [sym_binary_integer_literal] = ACTIONS(754), + [sym_decimal_floating_point_literal] = ACTIONS(754), + [sym_hex_floating_point_literal] = ACTIONS(756), + [sym_true] = ACTIONS(756), + [sym_false] = ACTIONS(756), + [sym_character_literal] = ACTIONS(754), + [anon_sym_DQUOTE] = ACTIONS(756), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(754), + [sym_null_literal] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(754), + [anon_sym_PLUS] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(756), + [anon_sym_final] = ACTIONS(756), + [anon_sym_BANG] = ACTIONS(754), + [anon_sym_TILDE] = ACTIONS(754), + [anon_sym_PLUS_PLUS] = ACTIONS(754), + [anon_sym_DASH_DASH] = ACTIONS(754), + [anon_sym_new] = ACTIONS(756), + [anon_sym_class] = ACTIONS(756), + [anon_sym_switch] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(754), + [anon_sym_RBRACE] = ACTIONS(754), + [anon_sym_case] = ACTIONS(756), + [anon_sym_default] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_assert] = ACTIONS(756), + [anon_sym_do] = ACTIONS(756), + [anon_sym_while] = ACTIONS(756), + [anon_sym_break] = ACTIONS(756), + [anon_sym_continue] = ACTIONS(756), + [anon_sym_return] = ACTIONS(756), + [anon_sym_yield] = ACTIONS(756), + [anon_sym_synchronized] = ACTIONS(756), + [anon_sym_throw] = ACTIONS(756), + [anon_sym_try] = ACTIONS(756), + [anon_sym_if] = ACTIONS(756), + [anon_sym_else] = ACTIONS(756), + [anon_sym_for] = ACTIONS(756), + [anon_sym_AT] = ACTIONS(756), + [anon_sym_open] = ACTIONS(756), + [anon_sym_module] = ACTIONS(756), + [anon_sym_static] = ACTIONS(756), + [anon_sym_package] = ACTIONS(756), + [anon_sym_import] = ACTIONS(756), + [anon_sym_enum] = ACTIONS(756), + [anon_sym_public] = ACTIONS(756), + [anon_sym_protected] = ACTIONS(756), + [anon_sym_private] = ACTIONS(756), + [anon_sym_abstract] = ACTIONS(756), + [anon_sym_strictfp] = ACTIONS(756), + [anon_sym_native] = ACTIONS(756), + [anon_sym_transient] = ACTIONS(756), + [anon_sym_volatile] = ACTIONS(756), + [anon_sym_sealed] = ACTIONS(756), + [anon_sym_non_DASHsealed] = ACTIONS(754), + [anon_sym_record] = ACTIONS(756), + [anon_sym_ATinterface] = ACTIONS(754), + [anon_sym_interface] = ACTIONS(756), + [anon_sym_byte] = ACTIONS(756), + [anon_sym_short] = ACTIONS(756), + [anon_sym_int] = ACTIONS(756), + [anon_sym_long] = ACTIONS(756), + [anon_sym_char] = ACTIONS(756), + [anon_sym_float] = ACTIONS(756), + [anon_sym_double] = ACTIONS(756), + [sym_boolean_type] = ACTIONS(756), + [sym_void_type] = ACTIONS(756), + [sym_this] = ACTIONS(756), + [sym_super] = ACTIONS(756), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [278] = { + [ts_builtin_sym_end] = ACTIONS(758), + [sym_identifier] = ACTIONS(760), + [sym_decimal_integer_literal] = ACTIONS(760), + [sym_hex_integer_literal] = ACTIONS(760), + [sym_octal_integer_literal] = ACTIONS(758), + [sym_binary_integer_literal] = ACTIONS(758), + [sym_decimal_floating_point_literal] = ACTIONS(758), + [sym_hex_floating_point_literal] = ACTIONS(760), + [sym_true] = ACTIONS(760), + [sym_false] = ACTIONS(760), + [sym_character_literal] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(760), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(758), + [sym_null_literal] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(760), + [anon_sym_DASH] = ACTIONS(760), + [anon_sym_final] = ACTIONS(760), + [anon_sym_BANG] = ACTIONS(758), + [anon_sym_TILDE] = ACTIONS(758), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_new] = ACTIONS(760), + [anon_sym_class] = ACTIONS(760), + [anon_sym_switch] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_case] = ACTIONS(760), + [anon_sym_default] = ACTIONS(760), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_assert] = ACTIONS(760), + [anon_sym_do] = ACTIONS(760), + [anon_sym_while] = ACTIONS(760), + [anon_sym_break] = ACTIONS(760), + [anon_sym_continue] = ACTIONS(760), + [anon_sym_return] = ACTIONS(760), + [anon_sym_yield] = ACTIONS(760), + [anon_sym_synchronized] = ACTIONS(760), + [anon_sym_throw] = ACTIONS(760), + [anon_sym_try] = ACTIONS(760), + [anon_sym_if] = ACTIONS(760), + [anon_sym_else] = ACTIONS(760), + [anon_sym_for] = ACTIONS(760), + [anon_sym_AT] = ACTIONS(760), + [anon_sym_open] = ACTIONS(760), + [anon_sym_module] = ACTIONS(760), + [anon_sym_static] = ACTIONS(760), + [anon_sym_package] = ACTIONS(760), + [anon_sym_import] = ACTIONS(760), + [anon_sym_enum] = ACTIONS(760), + [anon_sym_public] = ACTIONS(760), + [anon_sym_protected] = ACTIONS(760), + [anon_sym_private] = ACTIONS(760), + [anon_sym_abstract] = ACTIONS(760), + [anon_sym_strictfp] = ACTIONS(760), + [anon_sym_native] = ACTIONS(760), + [anon_sym_transient] = ACTIONS(760), + [anon_sym_volatile] = ACTIONS(760), + [anon_sym_sealed] = ACTIONS(760), + [anon_sym_non_DASHsealed] = ACTIONS(758), + [anon_sym_record] = ACTIONS(760), + [anon_sym_ATinterface] = ACTIONS(758), + [anon_sym_interface] = ACTIONS(760), + [anon_sym_byte] = ACTIONS(760), + [anon_sym_short] = ACTIONS(760), + [anon_sym_int] = ACTIONS(760), + [anon_sym_long] = ACTIONS(760), + [anon_sym_char] = ACTIONS(760), + [anon_sym_float] = ACTIONS(760), + [anon_sym_double] = ACTIONS(760), + [sym_boolean_type] = ACTIONS(760), + [sym_void_type] = ACTIONS(760), + [sym_this] = ACTIONS(760), + [sym_super] = ACTIONS(760), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [279] = { + [ts_builtin_sym_end] = ACTIONS(762), + [sym_identifier] = ACTIONS(764), + [sym_decimal_integer_literal] = ACTIONS(764), + [sym_hex_integer_literal] = ACTIONS(764), + [sym_octal_integer_literal] = ACTIONS(762), + [sym_binary_integer_literal] = ACTIONS(762), + [sym_decimal_floating_point_literal] = ACTIONS(762), + [sym_hex_floating_point_literal] = ACTIONS(764), + [sym_true] = ACTIONS(764), + [sym_false] = ACTIONS(764), + [sym_character_literal] = ACTIONS(762), + [anon_sym_DQUOTE] = ACTIONS(764), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(762), + [sym_null_literal] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(762), + [anon_sym_PLUS] = ACTIONS(764), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_final] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(762), + [anon_sym_TILDE] = ACTIONS(762), + [anon_sym_PLUS_PLUS] = ACTIONS(762), + [anon_sym_DASH_DASH] = ACTIONS(762), + [anon_sym_new] = ACTIONS(764), + [anon_sym_class] = ACTIONS(764), + [anon_sym_switch] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(762), + [anon_sym_RBRACE] = ACTIONS(762), + [anon_sym_case] = ACTIONS(764), + [anon_sym_default] = ACTIONS(764), + [anon_sym_SEMI] = ACTIONS(762), + [anon_sym_assert] = ACTIONS(764), + [anon_sym_do] = ACTIONS(764), + [anon_sym_while] = ACTIONS(764), + [anon_sym_break] = ACTIONS(764), + [anon_sym_continue] = ACTIONS(764), + [anon_sym_return] = ACTIONS(764), + [anon_sym_yield] = ACTIONS(764), + [anon_sym_synchronized] = ACTIONS(764), + [anon_sym_throw] = ACTIONS(764), + [anon_sym_try] = ACTIONS(764), + [anon_sym_if] = ACTIONS(764), + [anon_sym_else] = ACTIONS(764), + [anon_sym_for] = ACTIONS(764), + [anon_sym_AT] = ACTIONS(764), + [anon_sym_open] = ACTIONS(764), + [anon_sym_module] = ACTIONS(764), + [anon_sym_static] = ACTIONS(764), + [anon_sym_package] = ACTIONS(764), + [anon_sym_import] = ACTIONS(764), + [anon_sym_enum] = ACTIONS(764), + [anon_sym_public] = ACTIONS(764), + [anon_sym_protected] = ACTIONS(764), + [anon_sym_private] = ACTIONS(764), + [anon_sym_abstract] = ACTIONS(764), + [anon_sym_strictfp] = ACTIONS(764), + [anon_sym_native] = ACTIONS(764), + [anon_sym_transient] = ACTIONS(764), + [anon_sym_volatile] = ACTIONS(764), + [anon_sym_sealed] = ACTIONS(764), + [anon_sym_non_DASHsealed] = ACTIONS(762), + [anon_sym_record] = ACTIONS(764), + [anon_sym_ATinterface] = ACTIONS(762), + [anon_sym_interface] = ACTIONS(764), + [anon_sym_byte] = ACTIONS(764), + [anon_sym_short] = ACTIONS(764), + [anon_sym_int] = ACTIONS(764), + [anon_sym_long] = ACTIONS(764), + [anon_sym_char] = ACTIONS(764), + [anon_sym_float] = ACTIONS(764), + [anon_sym_double] = ACTIONS(764), + [sym_boolean_type] = ACTIONS(764), + [sym_void_type] = ACTIONS(764), + [sym_this] = ACTIONS(764), + [sym_super] = ACTIONS(764), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [280] = { + [ts_builtin_sym_end] = ACTIONS(766), + [sym_identifier] = ACTIONS(768), + [sym_decimal_integer_literal] = ACTIONS(768), + [sym_hex_integer_literal] = ACTIONS(768), + [sym_octal_integer_literal] = ACTIONS(766), + [sym_binary_integer_literal] = ACTIONS(766), + [sym_decimal_floating_point_literal] = ACTIONS(766), + [sym_hex_floating_point_literal] = ACTIONS(768), + [sym_true] = ACTIONS(768), + [sym_false] = ACTIONS(768), + [sym_character_literal] = ACTIONS(766), + [anon_sym_DQUOTE] = ACTIONS(768), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(766), + [sym_null_literal] = ACTIONS(768), + [anon_sym_LPAREN] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(768), + [anon_sym_DASH] = ACTIONS(768), + [anon_sym_final] = ACTIONS(768), + [anon_sym_BANG] = ACTIONS(766), + [anon_sym_TILDE] = ACTIONS(766), + [anon_sym_PLUS_PLUS] = ACTIONS(766), + [anon_sym_DASH_DASH] = ACTIONS(766), + [anon_sym_new] = ACTIONS(768), + [anon_sym_class] = ACTIONS(768), + [anon_sym_switch] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_RBRACE] = ACTIONS(766), + [anon_sym_case] = ACTIONS(768), + [anon_sym_default] = ACTIONS(768), + [anon_sym_SEMI] = ACTIONS(766), + [anon_sym_assert] = ACTIONS(768), + [anon_sym_do] = ACTIONS(768), + [anon_sym_while] = ACTIONS(768), + [anon_sym_break] = ACTIONS(768), + [anon_sym_continue] = ACTIONS(768), + [anon_sym_return] = ACTIONS(768), + [anon_sym_yield] = ACTIONS(768), + [anon_sym_synchronized] = ACTIONS(768), + [anon_sym_throw] = ACTIONS(768), + [anon_sym_try] = ACTIONS(768), + [anon_sym_if] = ACTIONS(768), + [anon_sym_else] = ACTIONS(768), + [anon_sym_for] = ACTIONS(768), + [anon_sym_AT] = ACTIONS(768), + [anon_sym_open] = ACTIONS(768), + [anon_sym_module] = ACTIONS(768), + [anon_sym_static] = ACTIONS(768), + [anon_sym_package] = ACTIONS(768), + [anon_sym_import] = ACTIONS(768), + [anon_sym_enum] = ACTIONS(768), + [anon_sym_public] = ACTIONS(768), + [anon_sym_protected] = ACTIONS(768), + [anon_sym_private] = ACTIONS(768), + [anon_sym_abstract] = ACTIONS(768), + [anon_sym_strictfp] = ACTIONS(768), + [anon_sym_native] = ACTIONS(768), + [anon_sym_transient] = ACTIONS(768), + [anon_sym_volatile] = ACTIONS(768), + [anon_sym_sealed] = ACTIONS(768), + [anon_sym_non_DASHsealed] = ACTIONS(766), + [anon_sym_record] = ACTIONS(768), + [anon_sym_ATinterface] = ACTIONS(766), + [anon_sym_interface] = ACTIONS(768), + [anon_sym_byte] = ACTIONS(768), + [anon_sym_short] = ACTIONS(768), + [anon_sym_int] = ACTIONS(768), + [anon_sym_long] = ACTIONS(768), + [anon_sym_char] = ACTIONS(768), + [anon_sym_float] = ACTIONS(768), + [anon_sym_double] = ACTIONS(768), + [sym_boolean_type] = ACTIONS(768), + [sym_void_type] = ACTIONS(768), + [sym_this] = ACTIONS(768), + [sym_super] = ACTIONS(768), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [281] = { + [ts_builtin_sym_end] = ACTIONS(770), + [sym_identifier] = ACTIONS(772), + [sym_decimal_integer_literal] = ACTIONS(772), + [sym_hex_integer_literal] = ACTIONS(772), + [sym_octal_integer_literal] = ACTIONS(770), + [sym_binary_integer_literal] = ACTIONS(770), + [sym_decimal_floating_point_literal] = ACTIONS(770), + [sym_hex_floating_point_literal] = ACTIONS(772), + [sym_true] = ACTIONS(772), + [sym_false] = ACTIONS(772), + [sym_character_literal] = ACTIONS(770), + [anon_sym_DQUOTE] = ACTIONS(772), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(770), + [sym_null_literal] = ACTIONS(772), + [anon_sym_LPAREN] = ACTIONS(770), + [anon_sym_PLUS] = ACTIONS(772), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_final] = ACTIONS(772), + [anon_sym_BANG] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(770), + [anon_sym_PLUS_PLUS] = ACTIONS(770), + [anon_sym_DASH_DASH] = ACTIONS(770), + [anon_sym_new] = ACTIONS(772), + [anon_sym_class] = ACTIONS(772), + [anon_sym_switch] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_RBRACE] = ACTIONS(770), + [anon_sym_case] = ACTIONS(772), + [anon_sym_default] = ACTIONS(772), + [anon_sym_SEMI] = ACTIONS(770), + [anon_sym_assert] = ACTIONS(772), + [anon_sym_do] = ACTIONS(772), + [anon_sym_while] = ACTIONS(772), + [anon_sym_break] = ACTIONS(772), + [anon_sym_continue] = ACTIONS(772), + [anon_sym_return] = ACTIONS(772), + [anon_sym_yield] = ACTIONS(772), + [anon_sym_synchronized] = ACTIONS(772), + [anon_sym_throw] = ACTIONS(772), + [anon_sym_try] = ACTIONS(772), + [anon_sym_if] = ACTIONS(772), + [anon_sym_else] = ACTIONS(772), + [anon_sym_for] = ACTIONS(772), + [anon_sym_AT] = ACTIONS(772), + [anon_sym_open] = ACTIONS(772), + [anon_sym_module] = ACTIONS(772), + [anon_sym_static] = ACTIONS(772), + [anon_sym_package] = ACTIONS(772), + [anon_sym_import] = ACTIONS(772), + [anon_sym_enum] = ACTIONS(772), + [anon_sym_public] = ACTIONS(772), + [anon_sym_protected] = ACTIONS(772), + [anon_sym_private] = ACTIONS(772), + [anon_sym_abstract] = ACTIONS(772), + [anon_sym_strictfp] = ACTIONS(772), + [anon_sym_native] = ACTIONS(772), + [anon_sym_transient] = ACTIONS(772), + [anon_sym_volatile] = ACTIONS(772), + [anon_sym_sealed] = ACTIONS(772), + [anon_sym_non_DASHsealed] = ACTIONS(770), + [anon_sym_record] = ACTIONS(772), + [anon_sym_ATinterface] = ACTIONS(770), + [anon_sym_interface] = ACTIONS(772), + [anon_sym_byte] = ACTIONS(772), + [anon_sym_short] = ACTIONS(772), + [anon_sym_int] = ACTIONS(772), + [anon_sym_long] = ACTIONS(772), + [anon_sym_char] = ACTIONS(772), + [anon_sym_float] = ACTIONS(772), + [anon_sym_double] = ACTIONS(772), + [sym_boolean_type] = ACTIONS(772), + [sym_void_type] = ACTIONS(772), + [sym_this] = ACTIONS(772), + [sym_super] = ACTIONS(772), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [282] = { + [ts_builtin_sym_end] = ACTIONS(774), + [sym_identifier] = ACTIONS(776), + [sym_decimal_integer_literal] = ACTIONS(776), + [sym_hex_integer_literal] = ACTIONS(776), + [sym_octal_integer_literal] = ACTIONS(774), + [sym_binary_integer_literal] = ACTIONS(774), + [sym_decimal_floating_point_literal] = ACTIONS(774), + [sym_hex_floating_point_literal] = ACTIONS(776), + [sym_true] = ACTIONS(776), + [sym_false] = ACTIONS(776), + [sym_character_literal] = ACTIONS(774), + [anon_sym_DQUOTE] = ACTIONS(776), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(774), + [sym_null_literal] = ACTIONS(776), + [anon_sym_LPAREN] = ACTIONS(774), + [anon_sym_PLUS] = ACTIONS(776), + [anon_sym_DASH] = ACTIONS(776), + [anon_sym_final] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(774), + [anon_sym_TILDE] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(774), + [anon_sym_DASH_DASH] = ACTIONS(774), + [anon_sym_new] = ACTIONS(776), + [anon_sym_class] = ACTIONS(776), + [anon_sym_switch] = ACTIONS(776), + [anon_sym_LBRACE] = ACTIONS(774), + [anon_sym_RBRACE] = ACTIONS(774), + [anon_sym_case] = ACTIONS(776), + [anon_sym_default] = ACTIONS(776), + [anon_sym_SEMI] = ACTIONS(774), + [anon_sym_assert] = ACTIONS(776), + [anon_sym_do] = ACTIONS(776), + [anon_sym_while] = ACTIONS(776), + [anon_sym_break] = ACTIONS(776), + [anon_sym_continue] = ACTIONS(776), + [anon_sym_return] = ACTIONS(776), + [anon_sym_yield] = ACTIONS(776), + [anon_sym_synchronized] = ACTIONS(776), + [anon_sym_throw] = ACTIONS(776), + [anon_sym_try] = ACTIONS(776), + [anon_sym_if] = ACTIONS(776), + [anon_sym_else] = ACTIONS(776), + [anon_sym_for] = ACTIONS(776), + [anon_sym_AT] = ACTIONS(776), + [anon_sym_open] = ACTIONS(776), + [anon_sym_module] = ACTIONS(776), + [anon_sym_static] = ACTIONS(776), + [anon_sym_package] = ACTIONS(776), + [anon_sym_import] = ACTIONS(776), + [anon_sym_enum] = ACTIONS(776), + [anon_sym_public] = ACTIONS(776), + [anon_sym_protected] = ACTIONS(776), + [anon_sym_private] = ACTIONS(776), + [anon_sym_abstract] = ACTIONS(776), + [anon_sym_strictfp] = ACTIONS(776), + [anon_sym_native] = ACTIONS(776), + [anon_sym_transient] = ACTIONS(776), + [anon_sym_volatile] = ACTIONS(776), + [anon_sym_sealed] = ACTIONS(776), + [anon_sym_non_DASHsealed] = ACTIONS(774), + [anon_sym_record] = ACTIONS(776), + [anon_sym_ATinterface] = ACTIONS(774), + [anon_sym_interface] = ACTIONS(776), + [anon_sym_byte] = ACTIONS(776), + [anon_sym_short] = ACTIONS(776), + [anon_sym_int] = ACTIONS(776), + [anon_sym_long] = ACTIONS(776), + [anon_sym_char] = ACTIONS(776), + [anon_sym_float] = ACTIONS(776), + [anon_sym_double] = ACTIONS(776), + [sym_boolean_type] = ACTIONS(776), + [sym_void_type] = ACTIONS(776), + [sym_this] = ACTIONS(776), + [sym_super] = ACTIONS(776), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [283] = { + [ts_builtin_sym_end] = ACTIONS(778), + [sym_identifier] = ACTIONS(780), + [sym_decimal_integer_literal] = ACTIONS(780), + [sym_hex_integer_literal] = ACTIONS(780), + [sym_octal_integer_literal] = ACTIONS(778), + [sym_binary_integer_literal] = ACTIONS(778), + [sym_decimal_floating_point_literal] = ACTIONS(778), + [sym_hex_floating_point_literal] = ACTIONS(780), + [sym_true] = ACTIONS(780), + [sym_false] = ACTIONS(780), + [sym_character_literal] = ACTIONS(778), + [anon_sym_DQUOTE] = ACTIONS(780), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(778), + [sym_null_literal] = ACTIONS(780), + [anon_sym_LPAREN] = ACTIONS(778), + [anon_sym_PLUS] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(780), + [anon_sym_final] = ACTIONS(780), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_PLUS_PLUS] = ACTIONS(778), + [anon_sym_DASH_DASH] = ACTIONS(778), + [anon_sym_new] = ACTIONS(780), + [anon_sym_class] = ACTIONS(780), + [anon_sym_switch] = ACTIONS(780), + [anon_sym_LBRACE] = ACTIONS(778), + [anon_sym_RBRACE] = ACTIONS(778), + [anon_sym_case] = ACTIONS(780), + [anon_sym_default] = ACTIONS(780), + [anon_sym_SEMI] = ACTIONS(778), + [anon_sym_assert] = ACTIONS(780), + [anon_sym_do] = ACTIONS(780), + [anon_sym_while] = ACTIONS(780), + [anon_sym_break] = ACTIONS(780), + [anon_sym_continue] = ACTIONS(780), + [anon_sym_return] = ACTIONS(780), + [anon_sym_yield] = ACTIONS(780), + [anon_sym_synchronized] = ACTIONS(780), + [anon_sym_throw] = ACTIONS(780), + [anon_sym_try] = ACTIONS(780), + [anon_sym_if] = ACTIONS(780), + [anon_sym_else] = ACTIONS(780), + [anon_sym_for] = ACTIONS(780), + [anon_sym_AT] = ACTIONS(780), + [anon_sym_open] = ACTIONS(780), + [anon_sym_module] = ACTIONS(780), + [anon_sym_static] = ACTIONS(780), + [anon_sym_package] = ACTIONS(780), + [anon_sym_import] = ACTIONS(780), + [anon_sym_enum] = ACTIONS(780), + [anon_sym_public] = ACTIONS(780), + [anon_sym_protected] = ACTIONS(780), + [anon_sym_private] = ACTIONS(780), + [anon_sym_abstract] = ACTIONS(780), + [anon_sym_strictfp] = ACTIONS(780), + [anon_sym_native] = ACTIONS(780), + [anon_sym_transient] = ACTIONS(780), + [anon_sym_volatile] = ACTIONS(780), + [anon_sym_sealed] = ACTIONS(780), + [anon_sym_non_DASHsealed] = ACTIONS(778), + [anon_sym_record] = ACTIONS(780), + [anon_sym_ATinterface] = ACTIONS(778), + [anon_sym_interface] = ACTIONS(780), + [anon_sym_byte] = ACTIONS(780), + [anon_sym_short] = ACTIONS(780), + [anon_sym_int] = ACTIONS(780), + [anon_sym_long] = ACTIONS(780), + [anon_sym_char] = ACTIONS(780), + [anon_sym_float] = ACTIONS(780), + [anon_sym_double] = ACTIONS(780), + [sym_boolean_type] = ACTIONS(780), + [sym_void_type] = ACTIONS(780), + [sym_this] = ACTIONS(780), + [sym_super] = ACTIONS(780), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [284] = { + [ts_builtin_sym_end] = ACTIONS(782), + [sym_identifier] = ACTIONS(784), + [sym_decimal_integer_literal] = ACTIONS(784), + [sym_hex_integer_literal] = ACTIONS(784), + [sym_octal_integer_literal] = ACTIONS(782), + [sym_binary_integer_literal] = ACTIONS(782), + [sym_decimal_floating_point_literal] = ACTIONS(782), + [sym_hex_floating_point_literal] = ACTIONS(784), + [sym_true] = ACTIONS(784), + [sym_false] = ACTIONS(784), + [sym_character_literal] = ACTIONS(782), + [anon_sym_DQUOTE] = ACTIONS(784), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(782), + [sym_null_literal] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(782), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_final] = ACTIONS(784), + [anon_sym_BANG] = ACTIONS(782), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), + [anon_sym_new] = ACTIONS(784), + [anon_sym_class] = ACTIONS(784), + [anon_sym_switch] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(782), + [anon_sym_RBRACE] = ACTIONS(782), + [anon_sym_case] = ACTIONS(784), + [anon_sym_default] = ACTIONS(784), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_assert] = ACTIONS(784), + [anon_sym_do] = ACTIONS(784), + [anon_sym_while] = ACTIONS(784), + [anon_sym_break] = ACTIONS(784), + [anon_sym_continue] = ACTIONS(784), + [anon_sym_return] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_synchronized] = ACTIONS(784), + [anon_sym_throw] = ACTIONS(784), + [anon_sym_try] = ACTIONS(784), + [anon_sym_if] = ACTIONS(784), + [anon_sym_else] = ACTIONS(786), + [anon_sym_for] = ACTIONS(784), + [anon_sym_AT] = ACTIONS(784), + [anon_sym_open] = ACTIONS(784), + [anon_sym_module] = ACTIONS(784), + [anon_sym_static] = ACTIONS(784), + [anon_sym_package] = ACTIONS(784), + [anon_sym_import] = ACTIONS(784), + [anon_sym_enum] = ACTIONS(784), + [anon_sym_public] = ACTIONS(784), + [anon_sym_protected] = ACTIONS(784), + [anon_sym_private] = ACTIONS(784), + [anon_sym_abstract] = ACTIONS(784), + [anon_sym_strictfp] = ACTIONS(784), + [anon_sym_native] = ACTIONS(784), + [anon_sym_transient] = ACTIONS(784), + [anon_sym_volatile] = ACTIONS(784), + [anon_sym_sealed] = ACTIONS(784), + [anon_sym_non_DASHsealed] = ACTIONS(782), + [anon_sym_record] = ACTIONS(784), + [anon_sym_ATinterface] = ACTIONS(782), + [anon_sym_interface] = ACTIONS(784), + [anon_sym_byte] = ACTIONS(784), + [anon_sym_short] = ACTIONS(784), + [anon_sym_int] = ACTIONS(784), + [anon_sym_long] = ACTIONS(784), + [anon_sym_char] = ACTIONS(784), + [anon_sym_float] = ACTIONS(784), + [anon_sym_double] = ACTIONS(784), + [sym_boolean_type] = ACTIONS(784), + [sym_void_type] = ACTIONS(784), + [sym_this] = ACTIONS(784), + [sym_super] = ACTIONS(784), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [285] = { + [ts_builtin_sym_end] = ACTIONS(361), + [sym_identifier] = ACTIONS(363), + [sym_decimal_integer_literal] = ACTIONS(363), + [sym_hex_integer_literal] = ACTIONS(363), + [sym_octal_integer_literal] = ACTIONS(361), + [sym_binary_integer_literal] = ACTIONS(361), + [sym_decimal_floating_point_literal] = ACTIONS(361), + [sym_hex_floating_point_literal] = ACTIONS(363), + [sym_true] = ACTIONS(363), + [sym_false] = ACTIONS(363), + [sym_character_literal] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(361), + [sym_null_literal] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(361), + [anon_sym_PLUS] = ACTIONS(363), + [anon_sym_DASH] = ACTIONS(363), + [anon_sym_final] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(361), + [anon_sym_PLUS_PLUS] = ACTIONS(361), + [anon_sym_DASH_DASH] = ACTIONS(361), + [anon_sym_new] = ACTIONS(363), + [anon_sym_class] = ACTIONS(363), + [anon_sym_switch] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_RBRACE] = ACTIONS(361), + [anon_sym_case] = ACTIONS(363), + [anon_sym_default] = ACTIONS(363), + [anon_sym_SEMI] = ACTIONS(361), + [anon_sym_assert] = ACTIONS(363), + [anon_sym_do] = ACTIONS(363), + [anon_sym_while] = ACTIONS(363), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(363), + [anon_sym_return] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(363), + [anon_sym_synchronized] = ACTIONS(363), + [anon_sym_throw] = ACTIONS(363), + [anon_sym_try] = ACTIONS(363), + [anon_sym_if] = ACTIONS(363), + [anon_sym_else] = ACTIONS(363), + [anon_sym_for] = ACTIONS(363), + [anon_sym_AT] = ACTIONS(363), + [anon_sym_open] = ACTIONS(363), + [anon_sym_module] = ACTIONS(363), + [anon_sym_static] = ACTIONS(363), + [anon_sym_package] = ACTIONS(363), + [anon_sym_import] = ACTIONS(363), + [anon_sym_enum] = ACTIONS(363), + [anon_sym_public] = ACTIONS(363), + [anon_sym_protected] = ACTIONS(363), + [anon_sym_private] = ACTIONS(363), + [anon_sym_abstract] = ACTIONS(363), + [anon_sym_strictfp] = ACTIONS(363), + [anon_sym_native] = ACTIONS(363), + [anon_sym_transient] = ACTIONS(363), + [anon_sym_volatile] = ACTIONS(363), + [anon_sym_sealed] = ACTIONS(363), + [anon_sym_non_DASHsealed] = ACTIONS(361), + [anon_sym_record] = ACTIONS(363), + [anon_sym_ATinterface] = ACTIONS(361), + [anon_sym_interface] = ACTIONS(363), + [anon_sym_byte] = ACTIONS(363), + [anon_sym_short] = ACTIONS(363), + [anon_sym_int] = ACTIONS(363), + [anon_sym_long] = ACTIONS(363), + [anon_sym_char] = ACTIONS(363), + [anon_sym_float] = ACTIONS(363), + [anon_sym_double] = ACTIONS(363), + [sym_boolean_type] = ACTIONS(363), + [sym_void_type] = ACTIONS(363), + [sym_this] = ACTIONS(363), + [sym_super] = ACTIONS(363), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [286] = { + [ts_builtin_sym_end] = ACTIONS(788), + [sym_identifier] = ACTIONS(790), + [sym_decimal_integer_literal] = ACTIONS(790), + [sym_hex_integer_literal] = ACTIONS(790), + [sym_octal_integer_literal] = ACTIONS(788), + [sym_binary_integer_literal] = ACTIONS(788), + [sym_decimal_floating_point_literal] = ACTIONS(788), + [sym_hex_floating_point_literal] = ACTIONS(790), + [sym_true] = ACTIONS(790), + [sym_false] = ACTIONS(790), + [sym_character_literal] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(788), + [sym_null_literal] = ACTIONS(790), + [anon_sym_LPAREN] = ACTIONS(788), + [anon_sym_PLUS] = ACTIONS(790), + [anon_sym_DASH] = ACTIONS(790), + [anon_sym_final] = ACTIONS(790), + [anon_sym_BANG] = ACTIONS(788), + [anon_sym_TILDE] = ACTIONS(788), + [anon_sym_PLUS_PLUS] = ACTIONS(788), + [anon_sym_DASH_DASH] = ACTIONS(788), + [anon_sym_new] = ACTIONS(790), + [anon_sym_class] = ACTIONS(790), + [anon_sym_switch] = ACTIONS(790), + [anon_sym_LBRACE] = ACTIONS(788), + [anon_sym_RBRACE] = ACTIONS(788), + [anon_sym_case] = ACTIONS(790), + [anon_sym_default] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(788), + [anon_sym_assert] = ACTIONS(790), + [anon_sym_do] = ACTIONS(790), + [anon_sym_while] = ACTIONS(790), + [anon_sym_break] = ACTIONS(790), + [anon_sym_continue] = ACTIONS(790), + [anon_sym_return] = ACTIONS(790), + [anon_sym_yield] = ACTIONS(790), + [anon_sym_synchronized] = ACTIONS(790), + [anon_sym_throw] = ACTIONS(790), + [anon_sym_try] = ACTIONS(790), + [anon_sym_if] = ACTIONS(790), + [anon_sym_else] = ACTIONS(790), + [anon_sym_for] = ACTIONS(790), + [anon_sym_AT] = ACTIONS(790), + [anon_sym_open] = ACTIONS(790), + [anon_sym_module] = ACTIONS(790), + [anon_sym_static] = ACTIONS(790), + [anon_sym_package] = ACTIONS(790), + [anon_sym_import] = ACTIONS(790), + [anon_sym_enum] = ACTIONS(790), + [anon_sym_public] = ACTIONS(790), + [anon_sym_protected] = ACTIONS(790), + [anon_sym_private] = ACTIONS(790), + [anon_sym_abstract] = ACTIONS(790), + [anon_sym_strictfp] = ACTIONS(790), + [anon_sym_native] = ACTIONS(790), + [anon_sym_transient] = ACTIONS(790), + [anon_sym_volatile] = ACTIONS(790), + [anon_sym_sealed] = ACTIONS(790), + [anon_sym_non_DASHsealed] = ACTIONS(788), + [anon_sym_record] = ACTIONS(790), + [anon_sym_ATinterface] = ACTIONS(788), + [anon_sym_interface] = ACTIONS(790), + [anon_sym_byte] = ACTIONS(790), + [anon_sym_short] = ACTIONS(790), + [anon_sym_int] = ACTIONS(790), + [anon_sym_long] = ACTIONS(790), + [anon_sym_char] = ACTIONS(790), + [anon_sym_float] = ACTIONS(790), + [anon_sym_double] = ACTIONS(790), + [sym_boolean_type] = ACTIONS(790), + [sym_void_type] = ACTIONS(790), + [sym_this] = ACTIONS(790), + [sym_super] = ACTIONS(790), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [287] = { + [ts_builtin_sym_end] = ACTIONS(792), + [sym_identifier] = ACTIONS(794), + [sym_decimal_integer_literal] = ACTIONS(794), + [sym_hex_integer_literal] = ACTIONS(794), + [sym_octal_integer_literal] = ACTIONS(792), + [sym_binary_integer_literal] = ACTIONS(792), + [sym_decimal_floating_point_literal] = ACTIONS(792), + [sym_hex_floating_point_literal] = ACTIONS(794), + [sym_true] = ACTIONS(794), + [sym_false] = ACTIONS(794), + [sym_character_literal] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(792), + [sym_null_literal] = ACTIONS(794), + [anon_sym_LPAREN] = ACTIONS(792), + [anon_sym_PLUS] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_final] = ACTIONS(794), + [anon_sym_BANG] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_PLUS_PLUS] = ACTIONS(792), + [anon_sym_DASH_DASH] = ACTIONS(792), + [anon_sym_new] = ACTIONS(794), + [anon_sym_class] = ACTIONS(794), + [anon_sym_switch] = ACTIONS(794), + [anon_sym_LBRACE] = ACTIONS(792), + [anon_sym_RBRACE] = ACTIONS(792), + [anon_sym_case] = ACTIONS(794), + [anon_sym_default] = ACTIONS(794), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_assert] = ACTIONS(794), + [anon_sym_do] = ACTIONS(794), + [anon_sym_while] = ACTIONS(794), + [anon_sym_break] = ACTIONS(794), + [anon_sym_continue] = ACTIONS(794), + [anon_sym_return] = ACTIONS(794), + [anon_sym_yield] = ACTIONS(794), + [anon_sym_synchronized] = ACTIONS(794), + [anon_sym_throw] = ACTIONS(794), + [anon_sym_try] = ACTIONS(794), + [anon_sym_if] = ACTIONS(794), + [anon_sym_else] = ACTIONS(794), + [anon_sym_for] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(794), + [anon_sym_open] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_static] = ACTIONS(794), + [anon_sym_package] = ACTIONS(794), + [anon_sym_import] = ACTIONS(794), + [anon_sym_enum] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_abstract] = ACTIONS(794), + [anon_sym_strictfp] = ACTIONS(794), + [anon_sym_native] = ACTIONS(794), + [anon_sym_transient] = ACTIONS(794), + [anon_sym_volatile] = ACTIONS(794), + [anon_sym_sealed] = ACTIONS(794), + [anon_sym_non_DASHsealed] = ACTIONS(792), + [anon_sym_record] = ACTIONS(794), + [anon_sym_ATinterface] = ACTIONS(792), + [anon_sym_interface] = ACTIONS(794), + [anon_sym_byte] = ACTIONS(794), + [anon_sym_short] = ACTIONS(794), + [anon_sym_int] = ACTIONS(794), + [anon_sym_long] = ACTIONS(794), + [anon_sym_char] = ACTIONS(794), + [anon_sym_float] = ACTIONS(794), + [anon_sym_double] = ACTIONS(794), + [sym_boolean_type] = ACTIONS(794), + [sym_void_type] = ACTIONS(794), + [sym_this] = ACTIONS(794), + [sym_super] = ACTIONS(794), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [288] = { + [ts_builtin_sym_end] = ACTIONS(796), + [sym_identifier] = ACTIONS(798), + [sym_decimal_integer_literal] = ACTIONS(798), + [sym_hex_integer_literal] = ACTIONS(798), + [sym_octal_integer_literal] = ACTIONS(796), + [sym_binary_integer_literal] = ACTIONS(796), + [sym_decimal_floating_point_literal] = ACTIONS(796), + [sym_hex_floating_point_literal] = ACTIONS(798), + [sym_true] = ACTIONS(798), + [sym_false] = ACTIONS(798), + [sym_character_literal] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(798), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [sym_null_literal] = ACTIONS(798), + [anon_sym_LPAREN] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(798), + [anon_sym_DASH] = ACTIONS(798), + [anon_sym_final] = ACTIONS(798), + [anon_sym_BANG] = ACTIONS(796), + [anon_sym_TILDE] = ACTIONS(796), + [anon_sym_PLUS_PLUS] = ACTIONS(796), + [anon_sym_DASH_DASH] = ACTIONS(796), + [anon_sym_new] = ACTIONS(798), + [anon_sym_class] = ACTIONS(798), + [anon_sym_switch] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_RBRACE] = ACTIONS(796), + [anon_sym_case] = ACTIONS(798), + [anon_sym_default] = ACTIONS(798), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_assert] = ACTIONS(798), + [anon_sym_do] = ACTIONS(798), + [anon_sym_while] = ACTIONS(798), + [anon_sym_break] = ACTIONS(798), + [anon_sym_continue] = ACTIONS(798), + [anon_sym_return] = ACTIONS(798), + [anon_sym_yield] = ACTIONS(798), + [anon_sym_synchronized] = ACTIONS(798), + [anon_sym_throw] = ACTIONS(798), + [anon_sym_try] = ACTIONS(798), + [anon_sym_if] = ACTIONS(798), + [anon_sym_else] = ACTIONS(798), + [anon_sym_for] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(798), + [anon_sym_open] = ACTIONS(798), + [anon_sym_module] = ACTIONS(798), + [anon_sym_static] = ACTIONS(798), + [anon_sym_package] = ACTIONS(798), + [anon_sym_import] = ACTIONS(798), + [anon_sym_enum] = ACTIONS(798), + [anon_sym_public] = ACTIONS(798), + [anon_sym_protected] = ACTIONS(798), + [anon_sym_private] = ACTIONS(798), + [anon_sym_abstract] = ACTIONS(798), + [anon_sym_strictfp] = ACTIONS(798), + [anon_sym_native] = ACTIONS(798), + [anon_sym_transient] = ACTIONS(798), + [anon_sym_volatile] = ACTIONS(798), + [anon_sym_sealed] = ACTIONS(798), + [anon_sym_non_DASHsealed] = ACTIONS(796), + [anon_sym_record] = ACTIONS(798), + [anon_sym_ATinterface] = ACTIONS(796), + [anon_sym_interface] = ACTIONS(798), + [anon_sym_byte] = ACTIONS(798), + [anon_sym_short] = ACTIONS(798), + [anon_sym_int] = ACTIONS(798), + [anon_sym_long] = ACTIONS(798), + [anon_sym_char] = ACTIONS(798), + [anon_sym_float] = ACTIONS(798), + [anon_sym_double] = ACTIONS(798), + [sym_boolean_type] = ACTIONS(798), + [sym_void_type] = ACTIONS(798), + [sym_this] = ACTIONS(798), + [sym_super] = ACTIONS(798), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [289] = { + [ts_builtin_sym_end] = ACTIONS(309), + [sym_identifier] = ACTIONS(311), + [sym_decimal_integer_literal] = ACTIONS(311), + [sym_hex_integer_literal] = ACTIONS(311), + [sym_octal_integer_literal] = ACTIONS(309), + [sym_binary_integer_literal] = ACTIONS(309), + [sym_decimal_floating_point_literal] = ACTIONS(309), + [sym_hex_floating_point_literal] = ACTIONS(311), + [sym_true] = ACTIONS(311), + [sym_false] = ACTIONS(311), + [sym_character_literal] = ACTIONS(309), + [anon_sym_DQUOTE] = ACTIONS(311), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(309), + [sym_null_literal] = ACTIONS(311), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_PLUS] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(311), + [anon_sym_final] = ACTIONS(311), + [anon_sym_BANG] = ACTIONS(309), + [anon_sym_TILDE] = ACTIONS(309), + [anon_sym_PLUS_PLUS] = ACTIONS(309), + [anon_sym_DASH_DASH] = ACTIONS(309), + [anon_sym_new] = ACTIONS(311), + [anon_sym_class] = ACTIONS(311), + [anon_sym_switch] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(309), + [anon_sym_case] = ACTIONS(311), + [anon_sym_default] = ACTIONS(311), + [anon_sym_SEMI] = ACTIONS(309), + [anon_sym_assert] = ACTIONS(311), + [anon_sym_do] = ACTIONS(311), + [anon_sym_while] = ACTIONS(311), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(311), + [anon_sym_return] = ACTIONS(311), + [anon_sym_yield] = ACTIONS(311), + [anon_sym_synchronized] = ACTIONS(311), + [anon_sym_throw] = ACTIONS(311), + [anon_sym_try] = ACTIONS(311), + [anon_sym_if] = ACTIONS(311), + [anon_sym_else] = ACTIONS(311), + [anon_sym_for] = ACTIONS(311), + [anon_sym_AT] = ACTIONS(311), + [anon_sym_open] = ACTIONS(311), + [anon_sym_module] = ACTIONS(311), + [anon_sym_static] = ACTIONS(311), + [anon_sym_package] = ACTIONS(311), + [anon_sym_import] = ACTIONS(311), + [anon_sym_enum] = ACTIONS(311), + [anon_sym_public] = ACTIONS(311), + [anon_sym_protected] = ACTIONS(311), + [anon_sym_private] = ACTIONS(311), + [anon_sym_abstract] = ACTIONS(311), + [anon_sym_strictfp] = ACTIONS(311), + [anon_sym_native] = ACTIONS(311), + [anon_sym_transient] = ACTIONS(311), + [anon_sym_volatile] = ACTIONS(311), + [anon_sym_sealed] = ACTIONS(311), + [anon_sym_non_DASHsealed] = ACTIONS(309), + [anon_sym_record] = ACTIONS(311), + [anon_sym_ATinterface] = ACTIONS(309), + [anon_sym_interface] = ACTIONS(311), + [anon_sym_byte] = ACTIONS(311), + [anon_sym_short] = ACTIONS(311), + [anon_sym_int] = ACTIONS(311), + [anon_sym_long] = ACTIONS(311), + [anon_sym_char] = ACTIONS(311), + [anon_sym_float] = ACTIONS(311), + [anon_sym_double] = ACTIONS(311), + [sym_boolean_type] = ACTIONS(311), + [sym_void_type] = ACTIONS(311), + [sym_this] = ACTIONS(311), + [sym_super] = ACTIONS(311), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [290] = { + [ts_builtin_sym_end] = ACTIONS(800), + [sym_identifier] = ACTIONS(802), + [sym_decimal_integer_literal] = ACTIONS(802), + [sym_hex_integer_literal] = ACTIONS(802), + [sym_octal_integer_literal] = ACTIONS(800), + [sym_binary_integer_literal] = ACTIONS(800), + [sym_decimal_floating_point_literal] = ACTIONS(800), + [sym_hex_floating_point_literal] = ACTIONS(802), + [sym_true] = ACTIONS(802), + [sym_false] = ACTIONS(802), + [sym_character_literal] = ACTIONS(800), + [anon_sym_DQUOTE] = ACTIONS(802), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(800), + [sym_null_literal] = ACTIONS(802), + [anon_sym_LPAREN] = ACTIONS(800), + [anon_sym_PLUS] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(802), + [anon_sym_final] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(800), + [anon_sym_TILDE] = ACTIONS(800), + [anon_sym_PLUS_PLUS] = ACTIONS(800), + [anon_sym_DASH_DASH] = ACTIONS(800), + [anon_sym_new] = ACTIONS(802), + [anon_sym_class] = ACTIONS(802), + [anon_sym_switch] = ACTIONS(802), + [anon_sym_LBRACE] = ACTIONS(800), + [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_case] = ACTIONS(802), + [anon_sym_default] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(800), + [anon_sym_assert] = ACTIONS(802), + [anon_sym_do] = ACTIONS(802), + [anon_sym_while] = ACTIONS(802), + [anon_sym_break] = ACTIONS(802), + [anon_sym_continue] = ACTIONS(802), + [anon_sym_return] = ACTIONS(802), + [anon_sym_yield] = ACTIONS(802), + [anon_sym_synchronized] = ACTIONS(802), + [anon_sym_throw] = ACTIONS(802), + [anon_sym_try] = ACTIONS(802), + [anon_sym_if] = ACTIONS(802), + [anon_sym_else] = ACTIONS(802), + [anon_sym_for] = ACTIONS(802), + [anon_sym_AT] = ACTIONS(802), + [anon_sym_open] = ACTIONS(802), + [anon_sym_module] = ACTIONS(802), + [anon_sym_static] = ACTIONS(802), + [anon_sym_package] = ACTIONS(802), + [anon_sym_import] = ACTIONS(802), + [anon_sym_enum] = ACTIONS(802), + [anon_sym_public] = ACTIONS(802), + [anon_sym_protected] = ACTIONS(802), + [anon_sym_private] = ACTIONS(802), + [anon_sym_abstract] = ACTIONS(802), + [anon_sym_strictfp] = ACTIONS(802), + [anon_sym_native] = ACTIONS(802), + [anon_sym_transient] = ACTIONS(802), + [anon_sym_volatile] = ACTIONS(802), + [anon_sym_sealed] = ACTIONS(802), + [anon_sym_non_DASHsealed] = ACTIONS(800), + [anon_sym_record] = ACTIONS(802), + [anon_sym_ATinterface] = ACTIONS(800), + [anon_sym_interface] = ACTIONS(802), + [anon_sym_byte] = ACTIONS(802), + [anon_sym_short] = ACTIONS(802), + [anon_sym_int] = ACTIONS(802), + [anon_sym_long] = ACTIONS(802), + [anon_sym_char] = ACTIONS(802), + [anon_sym_float] = ACTIONS(802), + [anon_sym_double] = ACTIONS(802), + [sym_boolean_type] = ACTIONS(802), + [sym_void_type] = ACTIONS(802), + [sym_this] = ACTIONS(802), + [sym_super] = ACTIONS(802), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [291] = { + [ts_builtin_sym_end] = ACTIONS(804), + [sym_identifier] = ACTIONS(806), + [sym_decimal_integer_literal] = ACTIONS(806), + [sym_hex_integer_literal] = ACTIONS(806), + [sym_octal_integer_literal] = ACTIONS(804), + [sym_binary_integer_literal] = ACTIONS(804), + [sym_decimal_floating_point_literal] = ACTIONS(804), + [sym_hex_floating_point_literal] = ACTIONS(806), + [sym_true] = ACTIONS(806), + [sym_false] = ACTIONS(806), + [sym_character_literal] = ACTIONS(804), + [anon_sym_DQUOTE] = ACTIONS(806), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(804), + [sym_null_literal] = ACTIONS(806), + [anon_sym_LPAREN] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_final] = ACTIONS(806), + [anon_sym_BANG] = ACTIONS(804), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_PLUS_PLUS] = ACTIONS(804), + [anon_sym_DASH_DASH] = ACTIONS(804), + [anon_sym_new] = ACTIONS(806), + [anon_sym_class] = ACTIONS(806), + [anon_sym_switch] = ACTIONS(806), + [anon_sym_LBRACE] = ACTIONS(804), + [anon_sym_RBRACE] = ACTIONS(804), + [anon_sym_case] = ACTIONS(806), + [anon_sym_default] = ACTIONS(806), + [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_assert] = ACTIONS(806), + [anon_sym_do] = ACTIONS(806), + [anon_sym_while] = ACTIONS(806), + [anon_sym_break] = ACTIONS(806), + [anon_sym_continue] = ACTIONS(806), + [anon_sym_return] = ACTIONS(806), + [anon_sym_yield] = ACTIONS(806), + [anon_sym_synchronized] = ACTIONS(806), + [anon_sym_throw] = ACTIONS(806), + [anon_sym_try] = ACTIONS(806), + [anon_sym_if] = ACTIONS(806), + [anon_sym_else] = ACTIONS(806), + [anon_sym_for] = ACTIONS(806), + [anon_sym_AT] = ACTIONS(806), + [anon_sym_open] = ACTIONS(806), + [anon_sym_module] = ACTIONS(806), + [anon_sym_static] = ACTIONS(806), + [anon_sym_package] = ACTIONS(806), + [anon_sym_import] = ACTIONS(806), + [anon_sym_enum] = ACTIONS(806), + [anon_sym_public] = ACTIONS(806), + [anon_sym_protected] = ACTIONS(806), + [anon_sym_private] = ACTIONS(806), + [anon_sym_abstract] = ACTIONS(806), + [anon_sym_strictfp] = ACTIONS(806), + [anon_sym_native] = ACTIONS(806), + [anon_sym_transient] = ACTIONS(806), + [anon_sym_volatile] = ACTIONS(806), + [anon_sym_sealed] = ACTIONS(806), + [anon_sym_non_DASHsealed] = ACTIONS(804), + [anon_sym_record] = ACTIONS(806), + [anon_sym_ATinterface] = ACTIONS(804), + [anon_sym_interface] = ACTIONS(806), + [anon_sym_byte] = ACTIONS(806), + [anon_sym_short] = ACTIONS(806), + [anon_sym_int] = ACTIONS(806), + [anon_sym_long] = ACTIONS(806), + [anon_sym_char] = ACTIONS(806), + [anon_sym_float] = ACTIONS(806), + [anon_sym_double] = ACTIONS(806), + [sym_boolean_type] = ACTIONS(806), + [sym_void_type] = ACTIONS(806), + [sym_this] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [292] = { + [ts_builtin_sym_end] = ACTIONS(808), + [sym_identifier] = ACTIONS(810), + [sym_decimal_integer_literal] = ACTIONS(810), + [sym_hex_integer_literal] = ACTIONS(810), + [sym_octal_integer_literal] = ACTIONS(808), + [sym_binary_integer_literal] = ACTIONS(808), + [sym_decimal_floating_point_literal] = ACTIONS(808), + [sym_hex_floating_point_literal] = ACTIONS(810), + [sym_true] = ACTIONS(810), + [sym_false] = ACTIONS(810), + [sym_character_literal] = ACTIONS(808), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(808), + [sym_null_literal] = ACTIONS(810), + [anon_sym_LPAREN] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_final] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(808), + [anon_sym_TILDE] = ACTIONS(808), + [anon_sym_PLUS_PLUS] = ACTIONS(808), + [anon_sym_DASH_DASH] = ACTIONS(808), + [anon_sym_new] = ACTIONS(810), + [anon_sym_class] = ACTIONS(810), + [anon_sym_switch] = ACTIONS(810), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_RBRACE] = ACTIONS(808), + [anon_sym_case] = ACTIONS(810), + [anon_sym_default] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(808), + [anon_sym_assert] = ACTIONS(810), + [anon_sym_do] = ACTIONS(810), + [anon_sym_while] = ACTIONS(810), + [anon_sym_break] = ACTIONS(810), + [anon_sym_continue] = ACTIONS(810), + [anon_sym_return] = ACTIONS(810), + [anon_sym_yield] = ACTIONS(810), + [anon_sym_synchronized] = ACTIONS(810), + [anon_sym_throw] = ACTIONS(810), + [anon_sym_try] = ACTIONS(810), + [anon_sym_if] = ACTIONS(810), + [anon_sym_else] = ACTIONS(810), + [anon_sym_for] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(810), + [anon_sym_open] = ACTIONS(810), + [anon_sym_module] = ACTIONS(810), + [anon_sym_static] = ACTIONS(810), + [anon_sym_package] = ACTIONS(810), + [anon_sym_import] = ACTIONS(810), + [anon_sym_enum] = ACTIONS(810), + [anon_sym_public] = ACTIONS(810), + [anon_sym_protected] = ACTIONS(810), + [anon_sym_private] = ACTIONS(810), + [anon_sym_abstract] = ACTIONS(810), + [anon_sym_strictfp] = ACTIONS(810), + [anon_sym_native] = ACTIONS(810), + [anon_sym_transient] = ACTIONS(810), + [anon_sym_volatile] = ACTIONS(810), + [anon_sym_sealed] = ACTIONS(810), + [anon_sym_non_DASHsealed] = ACTIONS(808), + [anon_sym_record] = ACTIONS(810), + [anon_sym_ATinterface] = ACTIONS(808), + [anon_sym_interface] = ACTIONS(810), + [anon_sym_byte] = ACTIONS(810), + [anon_sym_short] = ACTIONS(810), + [anon_sym_int] = ACTIONS(810), + [anon_sym_long] = ACTIONS(810), + [anon_sym_char] = ACTIONS(810), + [anon_sym_float] = ACTIONS(810), + [anon_sym_double] = ACTIONS(810), + [sym_boolean_type] = ACTIONS(810), + [sym_void_type] = ACTIONS(810), + [sym_this] = ACTIONS(810), + [sym_super] = ACTIONS(810), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [293] = { + [ts_builtin_sym_end] = ACTIONS(812), + [sym_identifier] = ACTIONS(814), + [sym_decimal_integer_literal] = ACTIONS(814), + [sym_hex_integer_literal] = ACTIONS(814), + [sym_octal_integer_literal] = ACTIONS(812), + [sym_binary_integer_literal] = ACTIONS(812), + [sym_decimal_floating_point_literal] = ACTIONS(812), + [sym_hex_floating_point_literal] = ACTIONS(814), + [sym_true] = ACTIONS(814), + [sym_false] = ACTIONS(814), + [sym_character_literal] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(812), + [sym_null_literal] = ACTIONS(814), + [anon_sym_LPAREN] = ACTIONS(812), + [anon_sym_PLUS] = ACTIONS(814), + [anon_sym_DASH] = ACTIONS(814), + [anon_sym_final] = ACTIONS(814), + [anon_sym_BANG] = ACTIONS(812), + [anon_sym_TILDE] = ACTIONS(812), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_new] = ACTIONS(814), + [anon_sym_class] = ACTIONS(814), + [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_SEMI] = ACTIONS(812), + [anon_sym_assert] = ACTIONS(814), + [anon_sym_do] = ACTIONS(814), + [anon_sym_while] = ACTIONS(814), + [anon_sym_break] = ACTIONS(814), + [anon_sym_continue] = ACTIONS(814), + [anon_sym_return] = ACTIONS(814), + [anon_sym_yield] = ACTIONS(814), + [anon_sym_synchronized] = ACTIONS(814), + [anon_sym_throw] = ACTIONS(814), + [anon_sym_try] = ACTIONS(814), + [anon_sym_if] = ACTIONS(814), + [anon_sym_else] = ACTIONS(814), + [anon_sym_for] = ACTIONS(814), + [anon_sym_AT] = ACTIONS(814), + [anon_sym_open] = ACTIONS(814), + [anon_sym_module] = ACTIONS(814), + [anon_sym_static] = ACTIONS(814), + [anon_sym_package] = ACTIONS(814), + [anon_sym_import] = ACTIONS(814), + [anon_sym_enum] = ACTIONS(814), + [anon_sym_public] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_abstract] = ACTIONS(814), + [anon_sym_strictfp] = ACTIONS(814), + [anon_sym_native] = ACTIONS(814), + [anon_sym_transient] = ACTIONS(814), + [anon_sym_volatile] = ACTIONS(814), + [anon_sym_sealed] = ACTIONS(814), + [anon_sym_non_DASHsealed] = ACTIONS(812), + [anon_sym_record] = ACTIONS(814), + [anon_sym_ATinterface] = ACTIONS(812), + [anon_sym_interface] = ACTIONS(814), + [anon_sym_byte] = ACTIONS(814), + [anon_sym_short] = ACTIONS(814), + [anon_sym_int] = ACTIONS(814), + [anon_sym_long] = ACTIONS(814), + [anon_sym_char] = ACTIONS(814), + [anon_sym_float] = ACTIONS(814), + [anon_sym_double] = ACTIONS(814), + [sym_boolean_type] = ACTIONS(814), + [sym_void_type] = ACTIONS(814), + [sym_this] = ACTIONS(814), + [sym_super] = ACTIONS(814), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [294] = { + [ts_builtin_sym_end] = ACTIONS(816), + [sym_identifier] = ACTIONS(818), + [sym_decimal_integer_literal] = ACTIONS(818), + [sym_hex_integer_literal] = ACTIONS(818), + [sym_octal_integer_literal] = ACTIONS(816), + [sym_binary_integer_literal] = ACTIONS(816), + [sym_decimal_floating_point_literal] = ACTIONS(816), + [sym_hex_floating_point_literal] = ACTIONS(818), + [sym_true] = ACTIONS(818), + [sym_false] = ACTIONS(818), + [sym_character_literal] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(818), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(816), + [sym_null_literal] = ACTIONS(818), + [anon_sym_LPAREN] = ACTIONS(816), + [anon_sym_PLUS] = ACTIONS(818), + [anon_sym_DASH] = ACTIONS(818), + [anon_sym_final] = ACTIONS(818), + [anon_sym_BANG] = ACTIONS(816), + [anon_sym_TILDE] = ACTIONS(816), + [anon_sym_PLUS_PLUS] = ACTIONS(816), + [anon_sym_DASH_DASH] = ACTIONS(816), + [anon_sym_new] = ACTIONS(818), + [anon_sym_class] = ACTIONS(818), + [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_SEMI] = ACTIONS(816), + [anon_sym_assert] = ACTIONS(818), + [anon_sym_do] = ACTIONS(818), + [anon_sym_while] = ACTIONS(818), + [anon_sym_break] = ACTIONS(818), + [anon_sym_continue] = ACTIONS(818), + [anon_sym_return] = ACTIONS(818), + [anon_sym_yield] = ACTIONS(818), + [anon_sym_synchronized] = ACTIONS(818), + [anon_sym_throw] = ACTIONS(818), + [anon_sym_try] = ACTIONS(818), + [anon_sym_if] = ACTIONS(818), + [anon_sym_else] = ACTIONS(818), + [anon_sym_for] = ACTIONS(818), + [anon_sym_AT] = ACTIONS(818), + [anon_sym_open] = ACTIONS(818), + [anon_sym_module] = ACTIONS(818), + [anon_sym_static] = ACTIONS(818), + [anon_sym_package] = ACTIONS(818), + [anon_sym_import] = ACTIONS(818), + [anon_sym_enum] = ACTIONS(818), + [anon_sym_public] = ACTIONS(818), + [anon_sym_protected] = ACTIONS(818), + [anon_sym_private] = ACTIONS(818), + [anon_sym_abstract] = ACTIONS(818), + [anon_sym_strictfp] = ACTIONS(818), + [anon_sym_native] = ACTIONS(818), + [anon_sym_transient] = ACTIONS(818), + [anon_sym_volatile] = ACTIONS(818), + [anon_sym_sealed] = ACTIONS(818), + [anon_sym_non_DASHsealed] = ACTIONS(816), + [anon_sym_record] = ACTIONS(818), + [anon_sym_ATinterface] = ACTIONS(816), + [anon_sym_interface] = ACTIONS(818), + [anon_sym_byte] = ACTIONS(818), + [anon_sym_short] = ACTIONS(818), + [anon_sym_int] = ACTIONS(818), + [anon_sym_long] = ACTIONS(818), + [anon_sym_char] = ACTIONS(818), + [anon_sym_float] = ACTIONS(818), + [anon_sym_double] = ACTIONS(818), + [sym_boolean_type] = ACTIONS(818), + [sym_void_type] = ACTIONS(818), + [sym_this] = ACTIONS(818), + [sym_super] = ACTIONS(818), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [295] = { + [ts_builtin_sym_end] = ACTIONS(820), + [sym_identifier] = ACTIONS(822), + [sym_decimal_integer_literal] = ACTIONS(822), + [sym_hex_integer_literal] = ACTIONS(822), + [sym_octal_integer_literal] = ACTIONS(820), + [sym_binary_integer_literal] = ACTIONS(820), + [sym_decimal_floating_point_literal] = ACTIONS(820), + [sym_hex_floating_point_literal] = ACTIONS(822), + [sym_true] = ACTIONS(822), + [sym_false] = ACTIONS(822), + [sym_character_literal] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(822), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(820), + [sym_null_literal] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(820), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_final] = ACTIONS(822), + [anon_sym_BANG] = ACTIONS(820), + [anon_sym_TILDE] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(820), + [anon_sym_DASH_DASH] = ACTIONS(820), + [anon_sym_new] = ACTIONS(822), + [anon_sym_class] = ACTIONS(822), + [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_SEMI] = ACTIONS(820), + [anon_sym_assert] = ACTIONS(822), + [anon_sym_do] = ACTIONS(822), + [anon_sym_while] = ACTIONS(822), + [anon_sym_break] = ACTIONS(822), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_return] = ACTIONS(822), + [anon_sym_yield] = ACTIONS(822), + [anon_sym_synchronized] = ACTIONS(822), + [anon_sym_throw] = ACTIONS(822), + [anon_sym_try] = ACTIONS(822), + [anon_sym_if] = ACTIONS(822), + [anon_sym_else] = ACTIONS(822), + [anon_sym_for] = ACTIONS(822), + [anon_sym_AT] = ACTIONS(822), + [anon_sym_open] = ACTIONS(822), + [anon_sym_module] = ACTIONS(822), + [anon_sym_static] = ACTIONS(822), + [anon_sym_package] = ACTIONS(822), + [anon_sym_import] = ACTIONS(822), + [anon_sym_enum] = ACTIONS(822), + [anon_sym_public] = ACTIONS(822), + [anon_sym_protected] = ACTIONS(822), + [anon_sym_private] = ACTIONS(822), + [anon_sym_abstract] = ACTIONS(822), + [anon_sym_strictfp] = ACTIONS(822), + [anon_sym_native] = ACTIONS(822), + [anon_sym_transient] = ACTIONS(822), + [anon_sym_volatile] = ACTIONS(822), + [anon_sym_sealed] = ACTIONS(822), + [anon_sym_non_DASHsealed] = ACTIONS(820), + [anon_sym_record] = ACTIONS(822), + [anon_sym_ATinterface] = ACTIONS(820), + [anon_sym_interface] = ACTIONS(822), + [anon_sym_byte] = ACTIONS(822), + [anon_sym_short] = ACTIONS(822), + [anon_sym_int] = ACTIONS(822), + [anon_sym_long] = ACTIONS(822), + [anon_sym_char] = ACTIONS(822), + [anon_sym_float] = ACTIONS(822), + [anon_sym_double] = ACTIONS(822), + [sym_boolean_type] = ACTIONS(822), + [sym_void_type] = ACTIONS(822), + [sym_this] = ACTIONS(822), + [sym_super] = ACTIONS(822), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [296] = { + [ts_builtin_sym_end] = ACTIONS(824), + [sym_identifier] = ACTIONS(826), + [sym_decimal_integer_literal] = ACTIONS(826), + [sym_hex_integer_literal] = ACTIONS(826), + [sym_octal_integer_literal] = ACTIONS(824), + [sym_binary_integer_literal] = ACTIONS(824), + [sym_decimal_floating_point_literal] = ACTIONS(824), + [sym_hex_floating_point_literal] = ACTIONS(826), + [sym_true] = ACTIONS(826), + [sym_false] = ACTIONS(826), + [sym_character_literal] = ACTIONS(824), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(824), + [sym_null_literal] = ACTIONS(826), + [anon_sym_LPAREN] = ACTIONS(824), + [anon_sym_PLUS] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_final] = ACTIONS(826), + [anon_sym_BANG] = ACTIONS(824), + [anon_sym_TILDE] = ACTIONS(824), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [anon_sym_new] = ACTIONS(826), + [anon_sym_class] = ACTIONS(826), + [anon_sym_switch] = ACTIONS(826), + [anon_sym_LBRACE] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(824), + [anon_sym_case] = ACTIONS(826), + [anon_sym_default] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_assert] = ACTIONS(826), + [anon_sym_do] = ACTIONS(826), + [anon_sym_while] = ACTIONS(826), + [anon_sym_break] = ACTIONS(826), + [anon_sym_continue] = ACTIONS(826), + [anon_sym_return] = ACTIONS(826), + [anon_sym_yield] = ACTIONS(826), + [anon_sym_synchronized] = ACTIONS(826), + [anon_sym_throw] = ACTIONS(826), + [anon_sym_try] = ACTIONS(826), + [anon_sym_if] = ACTIONS(826), + [anon_sym_else] = ACTIONS(826), + [anon_sym_for] = ACTIONS(826), + [anon_sym_AT] = ACTIONS(826), + [anon_sym_open] = ACTIONS(826), + [anon_sym_module] = ACTIONS(826), + [anon_sym_static] = ACTIONS(826), + [anon_sym_package] = ACTIONS(826), + [anon_sym_import] = ACTIONS(826), + [anon_sym_enum] = ACTIONS(826), + [anon_sym_public] = ACTIONS(826), + [anon_sym_protected] = ACTIONS(826), + [anon_sym_private] = ACTIONS(826), + [anon_sym_abstract] = ACTIONS(826), + [anon_sym_strictfp] = ACTIONS(826), + [anon_sym_native] = ACTIONS(826), + [anon_sym_transient] = ACTIONS(826), + [anon_sym_volatile] = ACTIONS(826), + [anon_sym_sealed] = ACTIONS(826), + [anon_sym_non_DASHsealed] = ACTIONS(824), + [anon_sym_record] = ACTIONS(826), + [anon_sym_ATinterface] = ACTIONS(824), + [anon_sym_interface] = ACTIONS(826), + [anon_sym_byte] = ACTIONS(826), + [anon_sym_short] = ACTIONS(826), + [anon_sym_int] = ACTIONS(826), + [anon_sym_long] = ACTIONS(826), + [anon_sym_char] = ACTIONS(826), + [anon_sym_float] = ACTIONS(826), + [anon_sym_double] = ACTIONS(826), + [sym_boolean_type] = ACTIONS(826), + [sym_void_type] = ACTIONS(826), + [sym_this] = ACTIONS(826), + [sym_super] = ACTIONS(826), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [297] = { + [ts_builtin_sym_end] = ACTIONS(828), + [sym_identifier] = ACTIONS(830), + [sym_decimal_integer_literal] = ACTIONS(830), + [sym_hex_integer_literal] = ACTIONS(830), + [sym_octal_integer_literal] = ACTIONS(828), + [sym_binary_integer_literal] = ACTIONS(828), + [sym_decimal_floating_point_literal] = ACTIONS(828), + [sym_hex_floating_point_literal] = ACTIONS(830), + [sym_true] = ACTIONS(830), + [sym_false] = ACTIONS(830), + [sym_character_literal] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(828), + [sym_null_literal] = ACTIONS(830), + [anon_sym_LPAREN] = ACTIONS(828), + [anon_sym_PLUS] = ACTIONS(830), + [anon_sym_DASH] = ACTIONS(830), + [anon_sym_final] = ACTIONS(830), + [anon_sym_BANG] = ACTIONS(828), + [anon_sym_TILDE] = ACTIONS(828), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), + [anon_sym_new] = ACTIONS(830), + [anon_sym_class] = ACTIONS(830), + [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_SEMI] = ACTIONS(828), + [anon_sym_assert] = ACTIONS(830), + [anon_sym_do] = ACTIONS(830), + [anon_sym_while] = ACTIONS(830), + [anon_sym_break] = ACTIONS(830), + [anon_sym_continue] = ACTIONS(830), + [anon_sym_return] = ACTIONS(830), + [anon_sym_yield] = ACTIONS(830), + [anon_sym_synchronized] = ACTIONS(830), + [anon_sym_throw] = ACTIONS(830), + [anon_sym_try] = ACTIONS(830), + [anon_sym_if] = ACTIONS(830), + [anon_sym_else] = ACTIONS(830), + [anon_sym_for] = ACTIONS(830), + [anon_sym_AT] = ACTIONS(830), + [anon_sym_open] = ACTIONS(830), + [anon_sym_module] = ACTIONS(830), + [anon_sym_static] = ACTIONS(830), + [anon_sym_package] = ACTIONS(830), + [anon_sym_import] = ACTIONS(830), + [anon_sym_enum] = ACTIONS(830), + [anon_sym_public] = ACTIONS(830), + [anon_sym_protected] = ACTIONS(830), + [anon_sym_private] = ACTIONS(830), + [anon_sym_abstract] = ACTIONS(830), + [anon_sym_strictfp] = ACTIONS(830), + [anon_sym_native] = ACTIONS(830), + [anon_sym_transient] = ACTIONS(830), + [anon_sym_volatile] = ACTIONS(830), + [anon_sym_sealed] = ACTIONS(830), + [anon_sym_non_DASHsealed] = ACTIONS(828), + [anon_sym_record] = ACTIONS(830), + [anon_sym_ATinterface] = ACTIONS(828), + [anon_sym_interface] = ACTIONS(830), + [anon_sym_byte] = ACTIONS(830), + [anon_sym_short] = ACTIONS(830), + [anon_sym_int] = ACTIONS(830), + [anon_sym_long] = ACTIONS(830), + [anon_sym_char] = ACTIONS(830), + [anon_sym_float] = ACTIONS(830), + [anon_sym_double] = ACTIONS(830), + [sym_boolean_type] = ACTIONS(830), + [sym_void_type] = ACTIONS(830), + [sym_this] = ACTIONS(830), + [sym_super] = ACTIONS(830), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [298] = { + [ts_builtin_sym_end] = ACTIONS(832), + [sym_identifier] = ACTIONS(834), + [sym_decimal_integer_literal] = ACTIONS(834), + [sym_hex_integer_literal] = ACTIONS(834), + [sym_octal_integer_literal] = ACTIONS(832), + [sym_binary_integer_literal] = ACTIONS(832), + [sym_decimal_floating_point_literal] = ACTIONS(832), + [sym_hex_floating_point_literal] = ACTIONS(834), + [sym_true] = ACTIONS(834), + [sym_false] = ACTIONS(834), + [sym_character_literal] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(832), + [sym_null_literal] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(832), + [anon_sym_PLUS] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(834), + [anon_sym_final] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(832), + [anon_sym_TILDE] = ACTIONS(832), + [anon_sym_PLUS_PLUS] = ACTIONS(832), + [anon_sym_DASH_DASH] = ACTIONS(832), + [anon_sym_new] = ACTIONS(834), + [anon_sym_class] = ACTIONS(834), + [anon_sym_switch] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(832), + [anon_sym_RBRACE] = ACTIONS(832), + [anon_sym_case] = ACTIONS(834), + [anon_sym_default] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_assert] = ACTIONS(834), + [anon_sym_do] = ACTIONS(834), + [anon_sym_while] = ACTIONS(834), + [anon_sym_break] = ACTIONS(834), + [anon_sym_continue] = ACTIONS(834), + [anon_sym_return] = ACTIONS(834), + [anon_sym_yield] = ACTIONS(834), + [anon_sym_synchronized] = ACTIONS(834), + [anon_sym_throw] = ACTIONS(834), + [anon_sym_try] = ACTIONS(834), + [anon_sym_if] = ACTIONS(834), + [anon_sym_else] = ACTIONS(834), + [anon_sym_for] = ACTIONS(834), + [anon_sym_AT] = ACTIONS(834), + [anon_sym_open] = ACTIONS(834), + [anon_sym_module] = ACTIONS(834), + [anon_sym_static] = ACTIONS(834), + [anon_sym_package] = ACTIONS(834), + [anon_sym_import] = ACTIONS(834), + [anon_sym_enum] = ACTIONS(834), + [anon_sym_public] = ACTIONS(834), + [anon_sym_protected] = ACTIONS(834), + [anon_sym_private] = ACTIONS(834), + [anon_sym_abstract] = ACTIONS(834), + [anon_sym_strictfp] = ACTIONS(834), + [anon_sym_native] = ACTIONS(834), + [anon_sym_transient] = ACTIONS(834), + [anon_sym_volatile] = ACTIONS(834), + [anon_sym_sealed] = ACTIONS(834), + [anon_sym_non_DASHsealed] = ACTIONS(832), + [anon_sym_record] = ACTIONS(834), + [anon_sym_ATinterface] = ACTIONS(832), + [anon_sym_interface] = ACTIONS(834), + [anon_sym_byte] = ACTIONS(834), + [anon_sym_short] = ACTIONS(834), + [anon_sym_int] = ACTIONS(834), + [anon_sym_long] = ACTIONS(834), + [anon_sym_char] = ACTIONS(834), + [anon_sym_float] = ACTIONS(834), + [anon_sym_double] = ACTIONS(834), + [sym_boolean_type] = ACTIONS(834), + [sym_void_type] = ACTIONS(834), + [sym_this] = ACTIONS(834), + [sym_super] = ACTIONS(834), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [299] = { + [ts_builtin_sym_end] = ACTIONS(836), + [sym_identifier] = ACTIONS(838), + [sym_decimal_integer_literal] = ACTIONS(838), + [sym_hex_integer_literal] = ACTIONS(838), + [sym_octal_integer_literal] = ACTIONS(836), + [sym_binary_integer_literal] = ACTIONS(836), + [sym_decimal_floating_point_literal] = ACTIONS(836), + [sym_hex_floating_point_literal] = ACTIONS(838), + [sym_true] = ACTIONS(838), + [sym_false] = ACTIONS(838), + [sym_character_literal] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(836), + [sym_null_literal] = ACTIONS(838), + [anon_sym_LPAREN] = ACTIONS(836), + [anon_sym_PLUS] = ACTIONS(838), + [anon_sym_DASH] = ACTIONS(838), + [anon_sym_final] = ACTIONS(838), + [anon_sym_BANG] = ACTIONS(836), + [anon_sym_TILDE] = ACTIONS(836), + [anon_sym_PLUS_PLUS] = ACTIONS(836), + [anon_sym_DASH_DASH] = ACTIONS(836), + [anon_sym_new] = ACTIONS(838), + [anon_sym_class] = ACTIONS(838), + [anon_sym_switch] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(836), + [anon_sym_RBRACE] = ACTIONS(836), + [anon_sym_case] = ACTIONS(838), + [anon_sym_default] = ACTIONS(838), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_assert] = ACTIONS(838), + [anon_sym_do] = ACTIONS(838), + [anon_sym_while] = ACTIONS(838), + [anon_sym_break] = ACTIONS(838), + [anon_sym_continue] = ACTIONS(838), + [anon_sym_return] = ACTIONS(838), + [anon_sym_yield] = ACTIONS(838), + [anon_sym_synchronized] = ACTIONS(838), + [anon_sym_throw] = ACTIONS(838), + [anon_sym_try] = ACTIONS(838), + [anon_sym_if] = ACTIONS(838), + [anon_sym_else] = ACTIONS(838), + [anon_sym_for] = ACTIONS(838), + [anon_sym_AT] = ACTIONS(838), + [anon_sym_open] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_static] = ACTIONS(838), + [anon_sym_package] = ACTIONS(838), + [anon_sym_import] = ACTIONS(838), + [anon_sym_enum] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_abstract] = ACTIONS(838), + [anon_sym_strictfp] = ACTIONS(838), + [anon_sym_native] = ACTIONS(838), + [anon_sym_transient] = ACTIONS(838), + [anon_sym_volatile] = ACTIONS(838), + [anon_sym_sealed] = ACTIONS(838), + [anon_sym_non_DASHsealed] = ACTIONS(836), + [anon_sym_record] = ACTIONS(838), + [anon_sym_ATinterface] = ACTIONS(836), + [anon_sym_interface] = ACTIONS(838), + [anon_sym_byte] = ACTIONS(838), + [anon_sym_short] = ACTIONS(838), + [anon_sym_int] = ACTIONS(838), + [anon_sym_long] = ACTIONS(838), + [anon_sym_char] = ACTIONS(838), + [anon_sym_float] = ACTIONS(838), + [anon_sym_double] = ACTIONS(838), + [sym_boolean_type] = ACTIONS(838), + [sym_void_type] = ACTIONS(838), + [sym_this] = ACTIONS(838), + [sym_super] = ACTIONS(838), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [300] = { + [ts_builtin_sym_end] = ACTIONS(840), + [sym_identifier] = ACTIONS(842), + [sym_decimal_integer_literal] = ACTIONS(842), + [sym_hex_integer_literal] = ACTIONS(842), + [sym_octal_integer_literal] = ACTIONS(840), + [sym_binary_integer_literal] = ACTIONS(840), + [sym_decimal_floating_point_literal] = ACTIONS(840), + [sym_hex_floating_point_literal] = ACTIONS(842), + [sym_true] = ACTIONS(842), + [sym_false] = ACTIONS(842), + [sym_character_literal] = ACTIONS(840), + [anon_sym_DQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(840), + [sym_null_literal] = ACTIONS(842), + [anon_sym_LPAREN] = ACTIONS(840), + [anon_sym_PLUS] = ACTIONS(842), + [anon_sym_DASH] = ACTIONS(842), + [anon_sym_final] = ACTIONS(842), + [anon_sym_BANG] = ACTIONS(840), + [anon_sym_TILDE] = ACTIONS(840), + [anon_sym_PLUS_PLUS] = ACTIONS(840), + [anon_sym_DASH_DASH] = ACTIONS(840), + [anon_sym_new] = ACTIONS(842), + [anon_sym_class] = ACTIONS(842), + [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_SEMI] = ACTIONS(840), + [anon_sym_assert] = ACTIONS(842), + [anon_sym_do] = ACTIONS(842), + [anon_sym_while] = ACTIONS(842), + [anon_sym_break] = ACTIONS(842), + [anon_sym_continue] = ACTIONS(842), + [anon_sym_return] = ACTIONS(842), + [anon_sym_yield] = ACTIONS(842), + [anon_sym_synchronized] = ACTIONS(842), + [anon_sym_throw] = ACTIONS(842), + [anon_sym_try] = ACTIONS(842), + [anon_sym_if] = ACTIONS(842), + [anon_sym_else] = ACTIONS(842), + [anon_sym_for] = ACTIONS(842), + [anon_sym_AT] = ACTIONS(842), + [anon_sym_open] = ACTIONS(842), + [anon_sym_module] = ACTIONS(842), + [anon_sym_static] = ACTIONS(842), + [anon_sym_package] = ACTIONS(842), + [anon_sym_import] = ACTIONS(842), + [anon_sym_enum] = ACTIONS(842), + [anon_sym_public] = ACTIONS(842), + [anon_sym_protected] = ACTIONS(842), + [anon_sym_private] = ACTIONS(842), + [anon_sym_abstract] = ACTIONS(842), + [anon_sym_strictfp] = ACTIONS(842), + [anon_sym_native] = ACTIONS(842), + [anon_sym_transient] = ACTIONS(842), + [anon_sym_volatile] = ACTIONS(842), + [anon_sym_sealed] = ACTIONS(842), + [anon_sym_non_DASHsealed] = ACTIONS(840), + [anon_sym_record] = ACTIONS(842), + [anon_sym_ATinterface] = ACTIONS(840), + [anon_sym_interface] = ACTIONS(842), + [anon_sym_byte] = ACTIONS(842), + [anon_sym_short] = ACTIONS(842), + [anon_sym_int] = ACTIONS(842), + [anon_sym_long] = ACTIONS(842), + [anon_sym_char] = ACTIONS(842), + [anon_sym_float] = ACTIONS(842), + [anon_sym_double] = ACTIONS(842), + [sym_boolean_type] = ACTIONS(842), + [sym_void_type] = ACTIONS(842), + [sym_this] = ACTIONS(842), + [sym_super] = ACTIONS(842), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [301] = { + [ts_builtin_sym_end] = ACTIONS(844), + [sym_identifier] = ACTIONS(846), + [sym_decimal_integer_literal] = ACTIONS(846), + [sym_hex_integer_literal] = ACTIONS(846), + [sym_octal_integer_literal] = ACTIONS(844), + [sym_binary_integer_literal] = ACTIONS(844), + [sym_decimal_floating_point_literal] = ACTIONS(844), + [sym_hex_floating_point_literal] = ACTIONS(846), + [sym_true] = ACTIONS(846), + [sym_false] = ACTIONS(846), + [sym_character_literal] = ACTIONS(844), + [anon_sym_DQUOTE] = ACTIONS(846), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [sym_null_literal] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(844), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_final] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(844), + [anon_sym_TILDE] = ACTIONS(844), + [anon_sym_PLUS_PLUS] = ACTIONS(844), + [anon_sym_DASH_DASH] = ACTIONS(844), + [anon_sym_new] = ACTIONS(846), + [anon_sym_class] = ACTIONS(846), + [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_SEMI] = ACTIONS(844), + [anon_sym_assert] = ACTIONS(846), + [anon_sym_do] = ACTIONS(846), + [anon_sym_while] = ACTIONS(846), + [anon_sym_break] = ACTIONS(846), + [anon_sym_continue] = ACTIONS(846), + [anon_sym_return] = ACTIONS(846), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_synchronized] = ACTIONS(846), + [anon_sym_throw] = ACTIONS(846), + [anon_sym_try] = ACTIONS(846), + [anon_sym_if] = ACTIONS(846), + [anon_sym_else] = ACTIONS(846), + [anon_sym_for] = ACTIONS(846), + [anon_sym_AT] = ACTIONS(846), + [anon_sym_open] = ACTIONS(846), + [anon_sym_module] = ACTIONS(846), + [anon_sym_static] = ACTIONS(846), + [anon_sym_package] = ACTIONS(846), + [anon_sym_import] = ACTIONS(846), + [anon_sym_enum] = ACTIONS(846), + [anon_sym_public] = ACTIONS(846), + [anon_sym_protected] = ACTIONS(846), + [anon_sym_private] = ACTIONS(846), + [anon_sym_abstract] = ACTIONS(846), + [anon_sym_strictfp] = ACTIONS(846), + [anon_sym_native] = ACTIONS(846), + [anon_sym_transient] = ACTIONS(846), + [anon_sym_volatile] = ACTIONS(846), + [anon_sym_sealed] = ACTIONS(846), + [anon_sym_non_DASHsealed] = ACTIONS(844), + [anon_sym_record] = ACTIONS(846), + [anon_sym_ATinterface] = ACTIONS(844), + [anon_sym_interface] = ACTIONS(846), + [anon_sym_byte] = ACTIONS(846), + [anon_sym_short] = ACTIONS(846), + [anon_sym_int] = ACTIONS(846), + [anon_sym_long] = ACTIONS(846), + [anon_sym_char] = ACTIONS(846), + [anon_sym_float] = ACTIONS(846), + [anon_sym_double] = ACTIONS(846), + [sym_boolean_type] = ACTIONS(846), + [sym_void_type] = ACTIONS(846), + [sym_this] = ACTIONS(846), + [sym_super] = ACTIONS(846), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [302] = { + [ts_builtin_sym_end] = ACTIONS(848), + [sym_identifier] = ACTIONS(850), + [sym_decimal_integer_literal] = ACTIONS(850), + [sym_hex_integer_literal] = ACTIONS(850), + [sym_octal_integer_literal] = ACTIONS(848), + [sym_binary_integer_literal] = ACTIONS(848), + [sym_decimal_floating_point_literal] = ACTIONS(848), + [sym_hex_floating_point_literal] = ACTIONS(850), + [sym_true] = ACTIONS(850), + [sym_false] = ACTIONS(850), + [sym_character_literal] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(850), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(848), + [sym_null_literal] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(850), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_final] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_PLUS_PLUS] = ACTIONS(848), + [anon_sym_DASH_DASH] = ACTIONS(848), + [anon_sym_new] = ACTIONS(850), + [anon_sym_class] = ACTIONS(850), + [anon_sym_switch] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(848), + [anon_sym_RBRACE] = ACTIONS(848), + [anon_sym_case] = ACTIONS(850), + [anon_sym_default] = ACTIONS(850), + [anon_sym_SEMI] = ACTIONS(848), + [anon_sym_assert] = ACTIONS(850), + [anon_sym_do] = ACTIONS(850), + [anon_sym_while] = ACTIONS(850), + [anon_sym_break] = ACTIONS(850), + [anon_sym_continue] = ACTIONS(850), + [anon_sym_return] = ACTIONS(850), + [anon_sym_yield] = ACTIONS(850), + [anon_sym_synchronized] = ACTIONS(850), + [anon_sym_throw] = ACTIONS(850), + [anon_sym_try] = ACTIONS(850), + [anon_sym_if] = ACTIONS(850), + [anon_sym_else] = ACTIONS(850), + [anon_sym_for] = ACTIONS(850), + [anon_sym_AT] = ACTIONS(850), + [anon_sym_open] = ACTIONS(850), + [anon_sym_module] = ACTIONS(850), + [anon_sym_static] = ACTIONS(850), + [anon_sym_package] = ACTIONS(850), + [anon_sym_import] = ACTIONS(850), + [anon_sym_enum] = ACTIONS(850), + [anon_sym_public] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(850), + [anon_sym_strictfp] = ACTIONS(850), + [anon_sym_native] = ACTIONS(850), + [anon_sym_transient] = ACTIONS(850), + [anon_sym_volatile] = ACTIONS(850), + [anon_sym_sealed] = ACTIONS(850), + [anon_sym_non_DASHsealed] = ACTIONS(848), + [anon_sym_record] = ACTIONS(850), + [anon_sym_ATinterface] = ACTIONS(848), + [anon_sym_interface] = ACTIONS(850), + [anon_sym_byte] = ACTIONS(850), + [anon_sym_short] = ACTIONS(850), + [anon_sym_int] = ACTIONS(850), + [anon_sym_long] = ACTIONS(850), + [anon_sym_char] = ACTIONS(850), + [anon_sym_float] = ACTIONS(850), + [anon_sym_double] = ACTIONS(850), + [sym_boolean_type] = ACTIONS(850), + [sym_void_type] = ACTIONS(850), + [sym_this] = ACTIONS(850), + [sym_super] = ACTIONS(850), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [303] = { + [ts_builtin_sym_end] = ACTIONS(852), + [sym_identifier] = ACTIONS(854), + [sym_decimal_integer_literal] = ACTIONS(854), + [sym_hex_integer_literal] = ACTIONS(854), + [sym_octal_integer_literal] = ACTIONS(852), + [sym_binary_integer_literal] = ACTIONS(852), + [sym_decimal_floating_point_literal] = ACTIONS(852), + [sym_hex_floating_point_literal] = ACTIONS(854), + [sym_true] = ACTIONS(854), + [sym_false] = ACTIONS(854), + [sym_character_literal] = ACTIONS(852), + [anon_sym_DQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(852), + [sym_null_literal] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(852), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_final] = ACTIONS(854), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_TILDE] = ACTIONS(852), + [anon_sym_PLUS_PLUS] = ACTIONS(852), + [anon_sym_DASH_DASH] = ACTIONS(852), + [anon_sym_new] = ACTIONS(854), + [anon_sym_class] = ACTIONS(854), + [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_SEMI] = ACTIONS(852), + [anon_sym_assert] = ACTIONS(854), + [anon_sym_do] = ACTIONS(854), + [anon_sym_while] = ACTIONS(854), + [anon_sym_break] = ACTIONS(854), + [anon_sym_continue] = ACTIONS(854), + [anon_sym_return] = ACTIONS(854), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_synchronized] = ACTIONS(854), + [anon_sym_throw] = ACTIONS(854), + [anon_sym_try] = ACTIONS(854), + [anon_sym_if] = ACTIONS(854), + [anon_sym_else] = ACTIONS(854), + [anon_sym_for] = ACTIONS(854), + [anon_sym_AT] = ACTIONS(854), + [anon_sym_open] = ACTIONS(854), + [anon_sym_module] = ACTIONS(854), + [anon_sym_static] = ACTIONS(854), + [anon_sym_package] = ACTIONS(854), + [anon_sym_import] = ACTIONS(854), + [anon_sym_enum] = ACTIONS(854), + [anon_sym_public] = ACTIONS(854), + [anon_sym_protected] = ACTIONS(854), + [anon_sym_private] = ACTIONS(854), + [anon_sym_abstract] = ACTIONS(854), + [anon_sym_strictfp] = ACTIONS(854), + [anon_sym_native] = ACTIONS(854), + [anon_sym_transient] = ACTIONS(854), + [anon_sym_volatile] = ACTIONS(854), + [anon_sym_sealed] = ACTIONS(854), + [anon_sym_non_DASHsealed] = ACTIONS(852), + [anon_sym_record] = ACTIONS(854), + [anon_sym_ATinterface] = ACTIONS(852), + [anon_sym_interface] = ACTIONS(854), + [anon_sym_byte] = ACTIONS(854), + [anon_sym_short] = ACTIONS(854), + [anon_sym_int] = ACTIONS(854), + [anon_sym_long] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), + [anon_sym_float] = ACTIONS(854), + [anon_sym_double] = ACTIONS(854), + [sym_boolean_type] = ACTIONS(854), + [sym_void_type] = ACTIONS(854), + [sym_this] = ACTIONS(854), + [sym_super] = ACTIONS(854), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [304] = { + [ts_builtin_sym_end] = ACTIONS(856), + [sym_identifier] = ACTIONS(858), + [sym_decimal_integer_literal] = ACTIONS(858), + [sym_hex_integer_literal] = ACTIONS(858), + [sym_octal_integer_literal] = ACTIONS(856), + [sym_binary_integer_literal] = ACTIONS(856), + [sym_decimal_floating_point_literal] = ACTIONS(856), + [sym_hex_floating_point_literal] = ACTIONS(858), + [sym_true] = ACTIONS(858), + [sym_false] = ACTIONS(858), + [sym_character_literal] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(858), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [sym_null_literal] = ACTIONS(858), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_final] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(856), + [anon_sym_TILDE] = ACTIONS(856), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_new] = ACTIONS(858), + [anon_sym_class] = ACTIONS(858), + [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_SEMI] = ACTIONS(856), + [anon_sym_assert] = ACTIONS(858), + [anon_sym_do] = ACTIONS(858), + [anon_sym_while] = ACTIONS(858), + [anon_sym_break] = ACTIONS(858), + [anon_sym_continue] = ACTIONS(858), + [anon_sym_return] = ACTIONS(858), + [anon_sym_yield] = ACTIONS(858), + [anon_sym_synchronized] = ACTIONS(858), + [anon_sym_throw] = ACTIONS(858), + [anon_sym_try] = ACTIONS(858), + [anon_sym_if] = ACTIONS(858), + [anon_sym_else] = ACTIONS(858), + [anon_sym_for] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(858), + [anon_sym_open] = ACTIONS(858), + [anon_sym_module] = ACTIONS(858), + [anon_sym_static] = ACTIONS(858), + [anon_sym_package] = ACTIONS(858), + [anon_sym_import] = ACTIONS(858), + [anon_sym_enum] = ACTIONS(858), + [anon_sym_public] = ACTIONS(858), + [anon_sym_protected] = ACTIONS(858), + [anon_sym_private] = ACTIONS(858), + [anon_sym_abstract] = ACTIONS(858), + [anon_sym_strictfp] = ACTIONS(858), + [anon_sym_native] = ACTIONS(858), + [anon_sym_transient] = ACTIONS(858), + [anon_sym_volatile] = ACTIONS(858), + [anon_sym_sealed] = ACTIONS(858), + [anon_sym_non_DASHsealed] = ACTIONS(856), + [anon_sym_record] = ACTIONS(858), + [anon_sym_ATinterface] = ACTIONS(856), + [anon_sym_interface] = ACTIONS(858), + [anon_sym_byte] = ACTIONS(858), + [anon_sym_short] = ACTIONS(858), + [anon_sym_int] = ACTIONS(858), + [anon_sym_long] = ACTIONS(858), + [anon_sym_char] = ACTIONS(858), + [anon_sym_float] = ACTIONS(858), + [anon_sym_double] = ACTIONS(858), + [sym_boolean_type] = ACTIONS(858), + [sym_void_type] = ACTIONS(858), + [sym_this] = ACTIONS(858), + [sym_super] = ACTIONS(858), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [305] = { + [ts_builtin_sym_end] = ACTIONS(860), + [sym_identifier] = ACTIONS(862), + [sym_decimal_integer_literal] = ACTIONS(862), + [sym_hex_integer_literal] = ACTIONS(862), + [sym_octal_integer_literal] = ACTIONS(860), + [sym_binary_integer_literal] = ACTIONS(860), + [sym_decimal_floating_point_literal] = ACTIONS(860), + [sym_hex_floating_point_literal] = ACTIONS(862), + [sym_true] = ACTIONS(862), + [sym_false] = ACTIONS(862), + [sym_character_literal] = ACTIONS(860), + [anon_sym_DQUOTE] = ACTIONS(862), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(860), + [sym_null_literal] = ACTIONS(862), + [anon_sym_LPAREN] = ACTIONS(860), + [anon_sym_PLUS] = ACTIONS(862), + [anon_sym_DASH] = ACTIONS(862), + [anon_sym_final] = ACTIONS(862), + [anon_sym_BANG] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(860), + [anon_sym_PLUS_PLUS] = ACTIONS(860), + [anon_sym_DASH_DASH] = ACTIONS(860), + [anon_sym_new] = ACTIONS(862), + [anon_sym_class] = ACTIONS(862), + [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_SEMI] = ACTIONS(860), + [anon_sym_assert] = ACTIONS(862), + [anon_sym_do] = ACTIONS(862), + [anon_sym_while] = ACTIONS(862), + [anon_sym_break] = ACTIONS(862), + [anon_sym_continue] = ACTIONS(862), + [anon_sym_return] = ACTIONS(862), + [anon_sym_yield] = ACTIONS(862), + [anon_sym_synchronized] = ACTIONS(862), + [anon_sym_throw] = ACTIONS(862), + [anon_sym_try] = ACTIONS(862), + [anon_sym_if] = ACTIONS(862), + [anon_sym_else] = ACTIONS(862), + [anon_sym_for] = ACTIONS(862), + [anon_sym_AT] = ACTIONS(862), + [anon_sym_open] = ACTIONS(862), + [anon_sym_module] = ACTIONS(862), + [anon_sym_static] = ACTIONS(862), + [anon_sym_package] = ACTIONS(862), + [anon_sym_import] = ACTIONS(862), + [anon_sym_enum] = ACTIONS(862), + [anon_sym_public] = ACTIONS(862), + [anon_sym_protected] = ACTIONS(862), + [anon_sym_private] = ACTIONS(862), + [anon_sym_abstract] = ACTIONS(862), + [anon_sym_strictfp] = ACTIONS(862), + [anon_sym_native] = ACTIONS(862), + [anon_sym_transient] = ACTIONS(862), + [anon_sym_volatile] = ACTIONS(862), + [anon_sym_sealed] = ACTIONS(862), + [anon_sym_non_DASHsealed] = ACTIONS(860), + [anon_sym_record] = ACTIONS(862), + [anon_sym_ATinterface] = ACTIONS(860), + [anon_sym_interface] = ACTIONS(862), + [anon_sym_byte] = ACTIONS(862), + [anon_sym_short] = ACTIONS(862), + [anon_sym_int] = ACTIONS(862), + [anon_sym_long] = ACTIONS(862), + [anon_sym_char] = ACTIONS(862), + [anon_sym_float] = ACTIONS(862), + [anon_sym_double] = ACTIONS(862), + [sym_boolean_type] = ACTIONS(862), + [sym_void_type] = ACTIONS(862), + [sym_this] = ACTIONS(862), + [sym_super] = ACTIONS(862), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [306] = { + [ts_builtin_sym_end] = ACTIONS(864), + [sym_identifier] = ACTIONS(866), + [sym_decimal_integer_literal] = ACTIONS(866), + [sym_hex_integer_literal] = ACTIONS(866), + [sym_octal_integer_literal] = ACTIONS(864), + [sym_binary_integer_literal] = ACTIONS(864), + [sym_decimal_floating_point_literal] = ACTIONS(864), + [sym_hex_floating_point_literal] = ACTIONS(866), + [sym_true] = ACTIONS(866), + [sym_false] = ACTIONS(866), + [sym_character_literal] = ACTIONS(864), + [anon_sym_DQUOTE] = ACTIONS(866), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(864), + [sym_null_literal] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(864), + [anon_sym_PLUS] = ACTIONS(866), + [anon_sym_DASH] = ACTIONS(866), + [anon_sym_final] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(864), + [anon_sym_TILDE] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(864), + [anon_sym_DASH_DASH] = ACTIONS(864), + [anon_sym_new] = ACTIONS(866), + [anon_sym_class] = ACTIONS(866), + [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_SEMI] = ACTIONS(864), + [anon_sym_assert] = ACTIONS(866), + [anon_sym_do] = ACTIONS(866), + [anon_sym_while] = ACTIONS(866), + [anon_sym_break] = ACTIONS(866), + [anon_sym_continue] = ACTIONS(866), + [anon_sym_return] = ACTIONS(866), + [anon_sym_yield] = ACTIONS(866), + [anon_sym_synchronized] = ACTIONS(866), + [anon_sym_throw] = ACTIONS(866), + [anon_sym_try] = ACTIONS(866), + [anon_sym_if] = ACTIONS(866), + [anon_sym_else] = ACTIONS(866), + [anon_sym_for] = ACTIONS(866), + [anon_sym_AT] = ACTIONS(866), + [anon_sym_open] = ACTIONS(866), + [anon_sym_module] = ACTIONS(866), + [anon_sym_static] = ACTIONS(866), + [anon_sym_package] = ACTIONS(866), + [anon_sym_import] = ACTIONS(866), + [anon_sym_enum] = ACTIONS(866), + [anon_sym_public] = ACTIONS(866), + [anon_sym_protected] = ACTIONS(866), + [anon_sym_private] = ACTIONS(866), + [anon_sym_abstract] = ACTIONS(866), + [anon_sym_strictfp] = ACTIONS(866), + [anon_sym_native] = ACTIONS(866), + [anon_sym_transient] = ACTIONS(866), + [anon_sym_volatile] = ACTIONS(866), + [anon_sym_sealed] = ACTIONS(866), + [anon_sym_non_DASHsealed] = ACTIONS(864), + [anon_sym_record] = ACTIONS(866), + [anon_sym_ATinterface] = ACTIONS(864), + [anon_sym_interface] = ACTIONS(866), + [anon_sym_byte] = ACTIONS(866), + [anon_sym_short] = ACTIONS(866), + [anon_sym_int] = ACTIONS(866), + [anon_sym_long] = ACTIONS(866), + [anon_sym_char] = ACTIONS(866), + [anon_sym_float] = ACTIONS(866), + [anon_sym_double] = ACTIONS(866), + [sym_boolean_type] = ACTIONS(866), + [sym_void_type] = ACTIONS(866), + [sym_this] = ACTIONS(866), + [sym_super] = ACTIONS(866), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [307] = { + [ts_builtin_sym_end] = ACTIONS(868), + [sym_identifier] = ACTIONS(870), + [sym_decimal_integer_literal] = ACTIONS(870), + [sym_hex_integer_literal] = ACTIONS(870), + [sym_octal_integer_literal] = ACTIONS(868), + [sym_binary_integer_literal] = ACTIONS(868), + [sym_decimal_floating_point_literal] = ACTIONS(868), + [sym_hex_floating_point_literal] = ACTIONS(870), + [sym_true] = ACTIONS(870), + [sym_false] = ACTIONS(870), + [sym_character_literal] = ACTIONS(868), + [anon_sym_DQUOTE] = ACTIONS(870), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(868), + [sym_null_literal] = ACTIONS(870), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_PLUS] = ACTIONS(870), + [anon_sym_DASH] = ACTIONS(870), + [anon_sym_final] = ACTIONS(870), + [anon_sym_BANG] = ACTIONS(868), + [anon_sym_TILDE] = ACTIONS(868), + [anon_sym_PLUS_PLUS] = ACTIONS(868), + [anon_sym_DASH_DASH] = ACTIONS(868), + [anon_sym_new] = ACTIONS(870), + [anon_sym_class] = ACTIONS(870), + [anon_sym_switch] = ACTIONS(870), + [anon_sym_LBRACE] = ACTIONS(868), + [anon_sym_RBRACE] = ACTIONS(868), + [anon_sym_case] = ACTIONS(870), + [anon_sym_default] = ACTIONS(870), + [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_assert] = ACTIONS(870), + [anon_sym_do] = ACTIONS(870), + [anon_sym_while] = ACTIONS(870), + [anon_sym_break] = ACTIONS(870), + [anon_sym_continue] = ACTIONS(870), + [anon_sym_return] = ACTIONS(870), + [anon_sym_yield] = ACTIONS(870), + [anon_sym_synchronized] = ACTIONS(870), + [anon_sym_throw] = ACTIONS(870), + [anon_sym_try] = ACTIONS(870), + [anon_sym_if] = ACTIONS(870), + [anon_sym_else] = ACTIONS(870), + [anon_sym_for] = ACTIONS(870), + [anon_sym_AT] = ACTIONS(870), + [anon_sym_open] = ACTIONS(870), + [anon_sym_module] = ACTIONS(870), + [anon_sym_static] = ACTIONS(870), + [anon_sym_package] = ACTIONS(870), + [anon_sym_import] = ACTIONS(870), + [anon_sym_enum] = ACTIONS(870), + [anon_sym_public] = ACTIONS(870), + [anon_sym_protected] = ACTIONS(870), + [anon_sym_private] = ACTIONS(870), + [anon_sym_abstract] = ACTIONS(870), + [anon_sym_strictfp] = ACTIONS(870), + [anon_sym_native] = ACTIONS(870), + [anon_sym_transient] = ACTIONS(870), + [anon_sym_volatile] = ACTIONS(870), + [anon_sym_sealed] = ACTIONS(870), + [anon_sym_non_DASHsealed] = ACTIONS(868), + [anon_sym_record] = ACTIONS(870), + [anon_sym_ATinterface] = ACTIONS(868), + [anon_sym_interface] = ACTIONS(870), + [anon_sym_byte] = ACTIONS(870), + [anon_sym_short] = ACTIONS(870), + [anon_sym_int] = ACTIONS(870), + [anon_sym_long] = ACTIONS(870), + [anon_sym_char] = ACTIONS(870), + [anon_sym_float] = ACTIONS(870), + [anon_sym_double] = ACTIONS(870), + [sym_boolean_type] = ACTIONS(870), + [sym_void_type] = ACTIONS(870), + [sym_this] = ACTIONS(870), + [sym_super] = ACTIONS(870), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [308] = { + [ts_builtin_sym_end] = ACTIONS(872), + [sym_identifier] = ACTIONS(874), + [sym_decimal_integer_literal] = ACTIONS(874), + [sym_hex_integer_literal] = ACTIONS(874), + [sym_octal_integer_literal] = ACTIONS(872), + [sym_binary_integer_literal] = ACTIONS(872), + [sym_decimal_floating_point_literal] = ACTIONS(872), + [sym_hex_floating_point_literal] = ACTIONS(874), + [sym_true] = ACTIONS(874), + [sym_false] = ACTIONS(874), + [sym_character_literal] = ACTIONS(872), + [anon_sym_DQUOTE] = ACTIONS(874), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(872), + [sym_null_literal] = ACTIONS(874), + [anon_sym_LPAREN] = ACTIONS(872), + [anon_sym_PLUS] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(874), + [anon_sym_final] = ACTIONS(874), + [anon_sym_BANG] = ACTIONS(872), + [anon_sym_TILDE] = ACTIONS(872), + [anon_sym_PLUS_PLUS] = ACTIONS(872), + [anon_sym_DASH_DASH] = ACTIONS(872), + [anon_sym_new] = ACTIONS(874), + [anon_sym_class] = ACTIONS(874), + [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_SEMI] = ACTIONS(872), + [anon_sym_assert] = ACTIONS(874), + [anon_sym_do] = ACTIONS(874), + [anon_sym_while] = ACTIONS(874), + [anon_sym_break] = ACTIONS(874), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_return] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(874), + [anon_sym_synchronized] = ACTIONS(874), + [anon_sym_throw] = ACTIONS(874), + [anon_sym_try] = ACTIONS(874), + [anon_sym_if] = ACTIONS(874), + [anon_sym_else] = ACTIONS(874), + [anon_sym_for] = ACTIONS(874), + [anon_sym_AT] = ACTIONS(874), + [anon_sym_open] = ACTIONS(874), + [anon_sym_module] = ACTIONS(874), + [anon_sym_static] = ACTIONS(874), + [anon_sym_package] = ACTIONS(874), + [anon_sym_import] = ACTIONS(874), + [anon_sym_enum] = ACTIONS(874), + [anon_sym_public] = ACTIONS(874), + [anon_sym_protected] = ACTIONS(874), + [anon_sym_private] = ACTIONS(874), + [anon_sym_abstract] = ACTIONS(874), + [anon_sym_strictfp] = ACTIONS(874), + [anon_sym_native] = ACTIONS(874), + [anon_sym_transient] = ACTIONS(874), + [anon_sym_volatile] = ACTIONS(874), + [anon_sym_sealed] = ACTIONS(874), + [anon_sym_non_DASHsealed] = ACTIONS(872), + [anon_sym_record] = ACTIONS(874), + [anon_sym_ATinterface] = ACTIONS(872), + [anon_sym_interface] = ACTIONS(874), + [anon_sym_byte] = ACTIONS(874), + [anon_sym_short] = ACTIONS(874), + [anon_sym_int] = ACTIONS(874), + [anon_sym_long] = ACTIONS(874), + [anon_sym_char] = ACTIONS(874), + [anon_sym_float] = ACTIONS(874), + [anon_sym_double] = ACTIONS(874), + [sym_boolean_type] = ACTIONS(874), + [sym_void_type] = ACTIONS(874), + [sym_this] = ACTIONS(874), + [sym_super] = ACTIONS(874), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [309] = { + [ts_builtin_sym_end] = ACTIONS(876), + [sym_identifier] = ACTIONS(878), + [sym_decimal_integer_literal] = ACTIONS(878), + [sym_hex_integer_literal] = ACTIONS(878), + [sym_octal_integer_literal] = ACTIONS(876), + [sym_binary_integer_literal] = ACTIONS(876), + [sym_decimal_floating_point_literal] = ACTIONS(876), + [sym_hex_floating_point_literal] = ACTIONS(878), + [sym_true] = ACTIONS(878), + [sym_false] = ACTIONS(878), + [sym_character_literal] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(876), + [sym_null_literal] = ACTIONS(878), + [anon_sym_LPAREN] = ACTIONS(876), + [anon_sym_PLUS] = ACTIONS(878), + [anon_sym_DASH] = ACTIONS(878), + [anon_sym_final] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(876), + [anon_sym_TILDE] = ACTIONS(876), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_new] = ACTIONS(878), + [anon_sym_class] = ACTIONS(878), + [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_SEMI] = ACTIONS(876), + [anon_sym_assert] = ACTIONS(878), + [anon_sym_do] = ACTIONS(878), + [anon_sym_while] = ACTIONS(878), + [anon_sym_break] = ACTIONS(878), + [anon_sym_continue] = ACTIONS(878), + [anon_sym_return] = ACTIONS(878), + [anon_sym_yield] = ACTIONS(878), + [anon_sym_synchronized] = ACTIONS(878), + [anon_sym_throw] = ACTIONS(878), + [anon_sym_try] = ACTIONS(878), + [anon_sym_if] = ACTIONS(878), + [anon_sym_else] = ACTIONS(878), + [anon_sym_for] = ACTIONS(878), + [anon_sym_AT] = ACTIONS(878), + [anon_sym_open] = ACTIONS(878), + [anon_sym_module] = ACTIONS(878), + [anon_sym_static] = ACTIONS(878), + [anon_sym_package] = ACTIONS(878), + [anon_sym_import] = ACTIONS(878), + [anon_sym_enum] = ACTIONS(878), + [anon_sym_public] = ACTIONS(878), + [anon_sym_protected] = ACTIONS(878), + [anon_sym_private] = ACTIONS(878), + [anon_sym_abstract] = ACTIONS(878), + [anon_sym_strictfp] = ACTIONS(878), + [anon_sym_native] = ACTIONS(878), + [anon_sym_transient] = ACTIONS(878), + [anon_sym_volatile] = ACTIONS(878), + [anon_sym_sealed] = ACTIONS(878), + [anon_sym_non_DASHsealed] = ACTIONS(876), + [anon_sym_record] = ACTIONS(878), + [anon_sym_ATinterface] = ACTIONS(876), + [anon_sym_interface] = ACTIONS(878), + [anon_sym_byte] = ACTIONS(878), + [anon_sym_short] = ACTIONS(878), + [anon_sym_int] = ACTIONS(878), + [anon_sym_long] = ACTIONS(878), + [anon_sym_char] = ACTIONS(878), + [anon_sym_float] = ACTIONS(878), + [anon_sym_double] = ACTIONS(878), + [sym_boolean_type] = ACTIONS(878), + [sym_void_type] = ACTIONS(878), + [sym_this] = ACTIONS(878), + [sym_super] = ACTIONS(878), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [310] = { + [ts_builtin_sym_end] = ACTIONS(880), + [sym_identifier] = ACTIONS(882), + [sym_decimal_integer_literal] = ACTIONS(882), + [sym_hex_integer_literal] = ACTIONS(882), + [sym_octal_integer_literal] = ACTIONS(880), + [sym_binary_integer_literal] = ACTIONS(880), + [sym_decimal_floating_point_literal] = ACTIONS(880), + [sym_hex_floating_point_literal] = ACTIONS(882), + [sym_true] = ACTIONS(882), + [sym_false] = ACTIONS(882), + [sym_character_literal] = ACTIONS(880), + [anon_sym_DQUOTE] = ACTIONS(882), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(880), + [sym_null_literal] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_final] = ACTIONS(882), + [anon_sym_BANG] = ACTIONS(880), + [anon_sym_TILDE] = ACTIONS(880), + [anon_sym_PLUS_PLUS] = ACTIONS(880), + [anon_sym_DASH_DASH] = ACTIONS(880), + [anon_sym_new] = ACTIONS(882), + [anon_sym_class] = ACTIONS(882), + [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_SEMI] = ACTIONS(880), + [anon_sym_assert] = ACTIONS(882), + [anon_sym_do] = ACTIONS(882), + [anon_sym_while] = ACTIONS(882), + [anon_sym_break] = ACTIONS(882), + [anon_sym_continue] = ACTIONS(882), + [anon_sym_return] = ACTIONS(882), + [anon_sym_yield] = ACTIONS(882), + [anon_sym_synchronized] = ACTIONS(882), + [anon_sym_throw] = ACTIONS(882), + [anon_sym_try] = ACTIONS(882), + [anon_sym_if] = ACTIONS(882), + [anon_sym_else] = ACTIONS(882), + [anon_sym_for] = ACTIONS(882), + [anon_sym_AT] = ACTIONS(882), + [anon_sym_open] = ACTIONS(882), + [anon_sym_module] = ACTIONS(882), + [anon_sym_static] = ACTIONS(882), + [anon_sym_package] = ACTIONS(882), + [anon_sym_import] = ACTIONS(882), + [anon_sym_enum] = ACTIONS(882), + [anon_sym_public] = ACTIONS(882), + [anon_sym_protected] = ACTIONS(882), + [anon_sym_private] = ACTIONS(882), + [anon_sym_abstract] = ACTIONS(882), + [anon_sym_strictfp] = ACTIONS(882), + [anon_sym_native] = ACTIONS(882), + [anon_sym_transient] = ACTIONS(882), + [anon_sym_volatile] = ACTIONS(882), + [anon_sym_sealed] = ACTIONS(882), + [anon_sym_non_DASHsealed] = ACTIONS(880), + [anon_sym_record] = ACTIONS(882), + [anon_sym_ATinterface] = ACTIONS(880), + [anon_sym_interface] = ACTIONS(882), + [anon_sym_byte] = ACTIONS(882), + [anon_sym_short] = ACTIONS(882), + [anon_sym_int] = ACTIONS(882), + [anon_sym_long] = ACTIONS(882), + [anon_sym_char] = ACTIONS(882), + [anon_sym_float] = ACTIONS(882), + [anon_sym_double] = ACTIONS(882), + [sym_boolean_type] = ACTIONS(882), + [sym_void_type] = ACTIONS(882), + [sym_this] = ACTIONS(882), + [sym_super] = ACTIONS(882), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [311] = { + [ts_builtin_sym_end] = ACTIONS(884), + [sym_identifier] = ACTIONS(886), + [sym_decimal_integer_literal] = ACTIONS(886), + [sym_hex_integer_literal] = ACTIONS(886), + [sym_octal_integer_literal] = ACTIONS(884), + [sym_binary_integer_literal] = ACTIONS(884), + [sym_decimal_floating_point_literal] = ACTIONS(884), + [sym_hex_floating_point_literal] = ACTIONS(886), + [sym_true] = ACTIONS(886), + [sym_false] = ACTIONS(886), + [sym_character_literal] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(886), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(884), + [sym_null_literal] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(886), + [anon_sym_DASH] = ACTIONS(886), + [anon_sym_final] = ACTIONS(886), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_TILDE] = ACTIONS(884), + [anon_sym_PLUS_PLUS] = ACTIONS(884), + [anon_sym_DASH_DASH] = ACTIONS(884), + [anon_sym_new] = ACTIONS(886), + [anon_sym_class] = ACTIONS(886), + [anon_sym_switch] = ACTIONS(886), + [anon_sym_LBRACE] = ACTIONS(884), + [anon_sym_RBRACE] = ACTIONS(884), + [anon_sym_case] = ACTIONS(886), + [anon_sym_default] = ACTIONS(886), + [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_assert] = ACTIONS(886), + [anon_sym_do] = ACTIONS(886), + [anon_sym_while] = ACTIONS(886), + [anon_sym_break] = ACTIONS(886), + [anon_sym_continue] = ACTIONS(886), + [anon_sym_return] = ACTIONS(886), + [anon_sym_yield] = ACTIONS(886), + [anon_sym_synchronized] = ACTIONS(886), + [anon_sym_throw] = ACTIONS(886), + [anon_sym_try] = ACTIONS(886), + [anon_sym_if] = ACTIONS(886), + [anon_sym_else] = ACTIONS(886), + [anon_sym_for] = ACTIONS(886), + [anon_sym_AT] = ACTIONS(886), + [anon_sym_open] = ACTIONS(886), + [anon_sym_module] = ACTIONS(886), + [anon_sym_static] = ACTIONS(886), + [anon_sym_package] = ACTIONS(886), + [anon_sym_import] = ACTIONS(886), + [anon_sym_enum] = ACTIONS(886), + [anon_sym_public] = ACTIONS(886), + [anon_sym_protected] = ACTIONS(886), + [anon_sym_private] = ACTIONS(886), + [anon_sym_abstract] = ACTIONS(886), + [anon_sym_strictfp] = ACTIONS(886), + [anon_sym_native] = ACTIONS(886), + [anon_sym_transient] = ACTIONS(886), + [anon_sym_volatile] = ACTIONS(886), + [anon_sym_sealed] = ACTIONS(886), + [anon_sym_non_DASHsealed] = ACTIONS(884), + [anon_sym_record] = ACTIONS(886), + [anon_sym_ATinterface] = ACTIONS(884), + [anon_sym_interface] = ACTIONS(886), + [anon_sym_byte] = ACTIONS(886), + [anon_sym_short] = ACTIONS(886), + [anon_sym_int] = ACTIONS(886), + [anon_sym_long] = ACTIONS(886), + [anon_sym_char] = ACTIONS(886), + [anon_sym_float] = ACTIONS(886), + [anon_sym_double] = ACTIONS(886), + [sym_boolean_type] = ACTIONS(886), + [sym_void_type] = ACTIONS(886), + [sym_this] = ACTIONS(886), + [sym_super] = ACTIONS(886), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [312] = { + [ts_builtin_sym_end] = ACTIONS(888), + [sym_identifier] = ACTIONS(890), + [sym_decimal_integer_literal] = ACTIONS(890), + [sym_hex_integer_literal] = ACTIONS(890), + [sym_octal_integer_literal] = ACTIONS(888), + [sym_binary_integer_literal] = ACTIONS(888), + [sym_decimal_floating_point_literal] = ACTIONS(888), + [sym_hex_floating_point_literal] = ACTIONS(890), + [sym_true] = ACTIONS(890), + [sym_false] = ACTIONS(890), + [sym_character_literal] = ACTIONS(888), + [anon_sym_DQUOTE] = ACTIONS(890), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(888), + [sym_null_literal] = ACTIONS(890), + [anon_sym_LPAREN] = ACTIONS(888), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_DASH] = ACTIONS(890), + [anon_sym_final] = ACTIONS(890), + [anon_sym_BANG] = ACTIONS(888), + [anon_sym_TILDE] = ACTIONS(888), + [anon_sym_PLUS_PLUS] = ACTIONS(888), + [anon_sym_DASH_DASH] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), + [anon_sym_class] = ACTIONS(890), + [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_SEMI] = ACTIONS(888), + [anon_sym_assert] = ACTIONS(890), + [anon_sym_do] = ACTIONS(890), + [anon_sym_while] = ACTIONS(890), + [anon_sym_break] = ACTIONS(890), + [anon_sym_continue] = ACTIONS(890), + [anon_sym_return] = ACTIONS(890), + [anon_sym_yield] = ACTIONS(890), + [anon_sym_synchronized] = ACTIONS(890), + [anon_sym_throw] = ACTIONS(890), + [anon_sym_try] = ACTIONS(890), + [anon_sym_if] = ACTIONS(890), + [anon_sym_else] = ACTIONS(890), + [anon_sym_for] = ACTIONS(890), + [anon_sym_AT] = ACTIONS(890), + [anon_sym_open] = ACTIONS(890), + [anon_sym_module] = ACTIONS(890), + [anon_sym_static] = ACTIONS(890), + [anon_sym_package] = ACTIONS(890), + [anon_sym_import] = ACTIONS(890), + [anon_sym_enum] = ACTIONS(890), + [anon_sym_public] = ACTIONS(890), + [anon_sym_protected] = ACTIONS(890), + [anon_sym_private] = ACTIONS(890), + [anon_sym_abstract] = ACTIONS(890), + [anon_sym_strictfp] = ACTIONS(890), + [anon_sym_native] = ACTIONS(890), + [anon_sym_transient] = ACTIONS(890), + [anon_sym_volatile] = ACTIONS(890), + [anon_sym_sealed] = ACTIONS(890), + [anon_sym_non_DASHsealed] = ACTIONS(888), + [anon_sym_record] = ACTIONS(890), + [anon_sym_ATinterface] = ACTIONS(888), + [anon_sym_interface] = ACTIONS(890), + [anon_sym_byte] = ACTIONS(890), + [anon_sym_short] = ACTIONS(890), + [anon_sym_int] = ACTIONS(890), + [anon_sym_long] = ACTIONS(890), + [anon_sym_char] = ACTIONS(890), + [anon_sym_float] = ACTIONS(890), + [anon_sym_double] = ACTIONS(890), + [sym_boolean_type] = ACTIONS(890), + [sym_void_type] = ACTIONS(890), + [sym_this] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [313] = { + [ts_builtin_sym_end] = ACTIONS(892), + [sym_identifier] = ACTIONS(894), + [sym_decimal_integer_literal] = ACTIONS(894), + [sym_hex_integer_literal] = ACTIONS(894), + [sym_octal_integer_literal] = ACTIONS(892), + [sym_binary_integer_literal] = ACTIONS(892), + [sym_decimal_floating_point_literal] = ACTIONS(892), + [sym_hex_floating_point_literal] = ACTIONS(894), + [sym_true] = ACTIONS(894), + [sym_false] = ACTIONS(894), + [sym_character_literal] = ACTIONS(892), + [anon_sym_DQUOTE] = ACTIONS(894), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(892), + [sym_null_literal] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_final] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(892), + [anon_sym_TILDE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(892), + [anon_sym_DASH_DASH] = ACTIONS(892), + [anon_sym_new] = ACTIONS(894), + [anon_sym_class] = ACTIONS(894), + [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_SEMI] = ACTIONS(892), + [anon_sym_assert] = ACTIONS(894), + [anon_sym_do] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_yield] = ACTIONS(894), + [anon_sym_synchronized] = ACTIONS(894), + [anon_sym_throw] = ACTIONS(894), + [anon_sym_try] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_else] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_AT] = ACTIONS(894), + [anon_sym_open] = ACTIONS(894), + [anon_sym_module] = ACTIONS(894), + [anon_sym_static] = ACTIONS(894), + [anon_sym_package] = ACTIONS(894), + [anon_sym_import] = ACTIONS(894), + [anon_sym_enum] = ACTIONS(894), + [anon_sym_public] = ACTIONS(894), + [anon_sym_protected] = ACTIONS(894), + [anon_sym_private] = ACTIONS(894), + [anon_sym_abstract] = ACTIONS(894), + [anon_sym_strictfp] = ACTIONS(894), + [anon_sym_native] = ACTIONS(894), + [anon_sym_transient] = ACTIONS(894), + [anon_sym_volatile] = ACTIONS(894), + [anon_sym_sealed] = ACTIONS(894), + [anon_sym_non_DASHsealed] = ACTIONS(892), + [anon_sym_record] = ACTIONS(894), + [anon_sym_ATinterface] = ACTIONS(892), + [anon_sym_interface] = ACTIONS(894), + [anon_sym_byte] = ACTIONS(894), + [anon_sym_short] = ACTIONS(894), + [anon_sym_int] = ACTIONS(894), + [anon_sym_long] = ACTIONS(894), + [anon_sym_char] = ACTIONS(894), + [anon_sym_float] = ACTIONS(894), + [anon_sym_double] = ACTIONS(894), + [sym_boolean_type] = ACTIONS(894), + [sym_void_type] = ACTIONS(894), + [sym_this] = ACTIONS(894), + [sym_super] = ACTIONS(894), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [314] = { + [ts_builtin_sym_end] = ACTIONS(896), + [sym_identifier] = ACTIONS(898), + [sym_decimal_integer_literal] = ACTIONS(898), + [sym_hex_integer_literal] = ACTIONS(898), + [sym_octal_integer_literal] = ACTIONS(896), + [sym_binary_integer_literal] = ACTIONS(896), + [sym_decimal_floating_point_literal] = ACTIONS(896), + [sym_hex_floating_point_literal] = ACTIONS(898), + [sym_true] = ACTIONS(898), + [sym_false] = ACTIONS(898), + [sym_character_literal] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(898), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(896), + [sym_null_literal] = ACTIONS(898), + [anon_sym_LPAREN] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_final] = ACTIONS(898), + [anon_sym_BANG] = ACTIONS(896), + [anon_sym_TILDE] = ACTIONS(896), + [anon_sym_PLUS_PLUS] = ACTIONS(896), + [anon_sym_DASH_DASH] = ACTIONS(896), + [anon_sym_new] = ACTIONS(898), + [anon_sym_class] = ACTIONS(898), + [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_SEMI] = ACTIONS(896), + [anon_sym_assert] = ACTIONS(898), + [anon_sym_do] = ACTIONS(898), + [anon_sym_while] = ACTIONS(898), + [anon_sym_break] = ACTIONS(898), + [anon_sym_continue] = ACTIONS(898), + [anon_sym_return] = ACTIONS(898), + [anon_sym_yield] = ACTIONS(898), + [anon_sym_synchronized] = ACTIONS(898), + [anon_sym_throw] = ACTIONS(898), + [anon_sym_try] = ACTIONS(898), + [anon_sym_if] = ACTIONS(898), + [anon_sym_else] = ACTIONS(898), + [anon_sym_for] = ACTIONS(898), + [anon_sym_AT] = ACTIONS(898), + [anon_sym_open] = ACTIONS(898), + [anon_sym_module] = ACTIONS(898), + [anon_sym_static] = ACTIONS(898), + [anon_sym_package] = ACTIONS(898), + [anon_sym_import] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(898), + [anon_sym_public] = ACTIONS(898), + [anon_sym_protected] = ACTIONS(898), + [anon_sym_private] = ACTIONS(898), + [anon_sym_abstract] = ACTIONS(898), + [anon_sym_strictfp] = ACTIONS(898), + [anon_sym_native] = ACTIONS(898), + [anon_sym_transient] = ACTIONS(898), + [anon_sym_volatile] = ACTIONS(898), + [anon_sym_sealed] = ACTIONS(898), + [anon_sym_non_DASHsealed] = ACTIONS(896), + [anon_sym_record] = ACTIONS(898), + [anon_sym_ATinterface] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_byte] = ACTIONS(898), + [anon_sym_short] = ACTIONS(898), + [anon_sym_int] = ACTIONS(898), + [anon_sym_long] = ACTIONS(898), + [anon_sym_char] = ACTIONS(898), + [anon_sym_float] = ACTIONS(898), + [anon_sym_double] = ACTIONS(898), + [sym_boolean_type] = ACTIONS(898), + [sym_void_type] = ACTIONS(898), + [sym_this] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [315] = { + [ts_builtin_sym_end] = ACTIONS(900), + [sym_identifier] = ACTIONS(902), + [sym_decimal_integer_literal] = ACTIONS(902), + [sym_hex_integer_literal] = ACTIONS(902), + [sym_octal_integer_literal] = ACTIONS(900), + [sym_binary_integer_literal] = ACTIONS(900), + [sym_decimal_floating_point_literal] = ACTIONS(900), + [sym_hex_floating_point_literal] = ACTIONS(902), + [sym_true] = ACTIONS(902), + [sym_false] = ACTIONS(902), + [sym_character_literal] = ACTIONS(900), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(900), + [sym_null_literal] = ACTIONS(902), + [anon_sym_LPAREN] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(902), + [anon_sym_final] = ACTIONS(902), + [anon_sym_BANG] = ACTIONS(900), + [anon_sym_TILDE] = ACTIONS(900), + [anon_sym_PLUS_PLUS] = ACTIONS(900), + [anon_sym_DASH_DASH] = ACTIONS(900), + [anon_sym_new] = ACTIONS(902), + [anon_sym_class] = ACTIONS(902), + [anon_sym_switch] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_RBRACE] = ACTIONS(900), + [anon_sym_case] = ACTIONS(902), + [anon_sym_default] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(900), + [anon_sym_assert] = ACTIONS(902), + [anon_sym_do] = ACTIONS(902), + [anon_sym_while] = ACTIONS(902), + [anon_sym_break] = ACTIONS(902), + [anon_sym_continue] = ACTIONS(902), + [anon_sym_return] = ACTIONS(902), + [anon_sym_yield] = ACTIONS(902), + [anon_sym_synchronized] = ACTIONS(902), + [anon_sym_throw] = ACTIONS(902), + [anon_sym_try] = ACTIONS(902), + [anon_sym_if] = ACTIONS(902), + [anon_sym_else] = ACTIONS(902), + [anon_sym_for] = ACTIONS(902), + [anon_sym_AT] = ACTIONS(902), + [anon_sym_open] = ACTIONS(902), + [anon_sym_module] = ACTIONS(902), + [anon_sym_static] = ACTIONS(902), + [anon_sym_package] = ACTIONS(902), + [anon_sym_import] = ACTIONS(902), + [anon_sym_enum] = ACTIONS(902), + [anon_sym_public] = ACTIONS(902), + [anon_sym_protected] = ACTIONS(902), + [anon_sym_private] = ACTIONS(902), + [anon_sym_abstract] = ACTIONS(902), + [anon_sym_strictfp] = ACTIONS(902), + [anon_sym_native] = ACTIONS(902), + [anon_sym_transient] = ACTIONS(902), + [anon_sym_volatile] = ACTIONS(902), + [anon_sym_sealed] = ACTIONS(902), + [anon_sym_non_DASHsealed] = ACTIONS(900), + [anon_sym_record] = ACTIONS(902), + [anon_sym_ATinterface] = ACTIONS(900), + [anon_sym_interface] = ACTIONS(902), + [anon_sym_byte] = ACTIONS(902), + [anon_sym_short] = ACTIONS(902), + [anon_sym_int] = ACTIONS(902), + [anon_sym_long] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [anon_sym_float] = ACTIONS(902), + [anon_sym_double] = ACTIONS(902), + [sym_boolean_type] = ACTIONS(902), + [sym_void_type] = ACTIONS(902), + [sym_this] = ACTIONS(902), + [sym_super] = ACTIONS(902), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [316] = { + [ts_builtin_sym_end] = ACTIONS(904), + [sym_identifier] = ACTIONS(906), + [sym_decimal_integer_literal] = ACTIONS(906), + [sym_hex_integer_literal] = ACTIONS(906), + [sym_octal_integer_literal] = ACTIONS(904), + [sym_binary_integer_literal] = ACTIONS(904), + [sym_decimal_floating_point_literal] = ACTIONS(904), + [sym_hex_floating_point_literal] = ACTIONS(906), + [sym_true] = ACTIONS(906), + [sym_false] = ACTIONS(906), + [sym_character_literal] = ACTIONS(904), + [anon_sym_DQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(904), + [sym_null_literal] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_final] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(904), + [anon_sym_TILDE] = ACTIONS(904), + [anon_sym_PLUS_PLUS] = ACTIONS(904), + [anon_sym_DASH_DASH] = ACTIONS(904), + [anon_sym_new] = ACTIONS(906), + [anon_sym_class] = ACTIONS(906), + [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_SEMI] = ACTIONS(904), + [anon_sym_assert] = ACTIONS(906), + [anon_sym_do] = ACTIONS(906), + [anon_sym_while] = ACTIONS(906), + [anon_sym_break] = ACTIONS(906), + [anon_sym_continue] = ACTIONS(906), + [anon_sym_return] = ACTIONS(906), + [anon_sym_yield] = ACTIONS(906), + [anon_sym_synchronized] = ACTIONS(906), + [anon_sym_throw] = ACTIONS(906), + [anon_sym_try] = ACTIONS(906), + [anon_sym_if] = ACTIONS(906), + [anon_sym_else] = ACTIONS(906), + [anon_sym_for] = ACTIONS(906), + [anon_sym_AT] = ACTIONS(906), + [anon_sym_open] = ACTIONS(906), + [anon_sym_module] = ACTIONS(906), + [anon_sym_static] = ACTIONS(906), + [anon_sym_package] = ACTIONS(906), + [anon_sym_import] = ACTIONS(906), + [anon_sym_enum] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_abstract] = ACTIONS(906), + [anon_sym_strictfp] = ACTIONS(906), + [anon_sym_native] = ACTIONS(906), + [anon_sym_transient] = ACTIONS(906), + [anon_sym_volatile] = ACTIONS(906), + [anon_sym_sealed] = ACTIONS(906), + [anon_sym_non_DASHsealed] = ACTIONS(904), + [anon_sym_record] = ACTIONS(906), + [anon_sym_ATinterface] = ACTIONS(904), + [anon_sym_interface] = ACTIONS(906), + [anon_sym_byte] = ACTIONS(906), + [anon_sym_short] = ACTIONS(906), + [anon_sym_int] = ACTIONS(906), + [anon_sym_long] = ACTIONS(906), + [anon_sym_char] = ACTIONS(906), + [anon_sym_float] = ACTIONS(906), + [anon_sym_double] = ACTIONS(906), + [sym_boolean_type] = ACTIONS(906), + [sym_void_type] = ACTIONS(906), + [sym_this] = ACTIONS(906), + [sym_super] = ACTIONS(906), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [317] = { + [ts_builtin_sym_end] = ACTIONS(908), + [sym_identifier] = ACTIONS(910), + [sym_decimal_integer_literal] = ACTIONS(910), + [sym_hex_integer_literal] = ACTIONS(910), + [sym_octal_integer_literal] = ACTIONS(908), + [sym_binary_integer_literal] = ACTIONS(908), + [sym_decimal_floating_point_literal] = ACTIONS(908), + [sym_hex_floating_point_literal] = ACTIONS(910), + [sym_true] = ACTIONS(910), + [sym_false] = ACTIONS(910), + [sym_character_literal] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(910), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [sym_null_literal] = ACTIONS(910), + [anon_sym_LPAREN] = ACTIONS(908), + [anon_sym_PLUS] = ACTIONS(910), + [anon_sym_DASH] = ACTIONS(910), + [anon_sym_final] = ACTIONS(910), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_PLUS_PLUS] = ACTIONS(908), + [anon_sym_DASH_DASH] = ACTIONS(908), + [anon_sym_new] = ACTIONS(910), + [anon_sym_class] = ACTIONS(910), + [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_SEMI] = ACTIONS(908), + [anon_sym_assert] = ACTIONS(910), + [anon_sym_do] = ACTIONS(910), + [anon_sym_while] = ACTIONS(910), + [anon_sym_break] = ACTIONS(910), + [anon_sym_continue] = ACTIONS(910), + [anon_sym_return] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(910), + [anon_sym_synchronized] = ACTIONS(910), + [anon_sym_throw] = ACTIONS(910), + [anon_sym_try] = ACTIONS(910), + [anon_sym_if] = ACTIONS(910), + [anon_sym_else] = ACTIONS(910), + [anon_sym_for] = ACTIONS(910), + [anon_sym_AT] = ACTIONS(910), + [anon_sym_open] = ACTIONS(910), + [anon_sym_module] = ACTIONS(910), + [anon_sym_static] = ACTIONS(910), + [anon_sym_package] = ACTIONS(910), + [anon_sym_import] = ACTIONS(910), + [anon_sym_enum] = ACTIONS(910), + [anon_sym_public] = ACTIONS(910), + [anon_sym_protected] = ACTIONS(910), + [anon_sym_private] = ACTIONS(910), + [anon_sym_abstract] = ACTIONS(910), + [anon_sym_strictfp] = ACTIONS(910), + [anon_sym_native] = ACTIONS(910), + [anon_sym_transient] = ACTIONS(910), + [anon_sym_volatile] = ACTIONS(910), + [anon_sym_sealed] = ACTIONS(910), + [anon_sym_non_DASHsealed] = ACTIONS(908), + [anon_sym_record] = ACTIONS(910), + [anon_sym_ATinterface] = ACTIONS(908), + [anon_sym_interface] = ACTIONS(910), + [anon_sym_byte] = ACTIONS(910), + [anon_sym_short] = ACTIONS(910), + [anon_sym_int] = ACTIONS(910), + [anon_sym_long] = ACTIONS(910), + [anon_sym_char] = ACTIONS(910), + [anon_sym_float] = ACTIONS(910), + [anon_sym_double] = ACTIONS(910), + [sym_boolean_type] = ACTIONS(910), + [sym_void_type] = ACTIONS(910), + [sym_this] = ACTIONS(910), + [sym_super] = ACTIONS(910), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [318] = { + [sym_switch_label] = STATE(1270), + [aux_sym_switch_block_statement_group_repeat1] = STATE(318), + [sym_identifier] = ACTIONS(912), + [sym_decimal_integer_literal] = ACTIONS(912), + [sym_hex_integer_literal] = ACTIONS(912), + [sym_octal_integer_literal] = ACTIONS(914), + [sym_binary_integer_literal] = ACTIONS(914), + [sym_decimal_floating_point_literal] = ACTIONS(914), + [sym_hex_floating_point_literal] = ACTIONS(912), + [sym_true] = ACTIONS(912), + [sym_false] = ACTIONS(912), + [sym_character_literal] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(912), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(914), + [sym_null_literal] = ACTIONS(912), + [anon_sym_LPAREN] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(912), + [anon_sym_final] = ACTIONS(912), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(914), + [anon_sym_DASH_DASH] = ACTIONS(914), + [anon_sym_new] = ACTIONS(912), + [anon_sym_class] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(914), + [anon_sym_RBRACE] = ACTIONS(914), + [anon_sym_case] = ACTIONS(916), + [anon_sym_default] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(914), + [anon_sym_assert] = ACTIONS(912), + [anon_sym_do] = ACTIONS(912), + [anon_sym_while] = ACTIONS(912), + [anon_sym_break] = ACTIONS(912), + [anon_sym_continue] = ACTIONS(912), + [anon_sym_return] = ACTIONS(912), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_synchronized] = ACTIONS(912), + [anon_sym_throw] = ACTIONS(912), + [anon_sym_try] = ACTIONS(912), + [anon_sym_if] = ACTIONS(912), + [anon_sym_for] = ACTIONS(912), + [anon_sym_AT] = ACTIONS(912), + [anon_sym_open] = ACTIONS(912), + [anon_sym_module] = ACTIONS(912), + [anon_sym_static] = ACTIONS(912), + [anon_sym_package] = ACTIONS(912), + [anon_sym_import] = ACTIONS(912), + [anon_sym_enum] = ACTIONS(912), + [anon_sym_public] = ACTIONS(912), + [anon_sym_protected] = ACTIONS(912), + [anon_sym_private] = ACTIONS(912), + [anon_sym_abstract] = ACTIONS(912), + [anon_sym_strictfp] = ACTIONS(912), + [anon_sym_native] = ACTIONS(912), + [anon_sym_transient] = ACTIONS(912), + [anon_sym_volatile] = ACTIONS(912), + [anon_sym_sealed] = ACTIONS(912), + [anon_sym_non_DASHsealed] = ACTIONS(914), + [anon_sym_record] = ACTIONS(912), + [anon_sym_ATinterface] = ACTIONS(914), + [anon_sym_interface] = ACTIONS(912), + [anon_sym_byte] = ACTIONS(912), + [anon_sym_short] = ACTIONS(912), + [anon_sym_int] = ACTIONS(912), + [anon_sym_long] = ACTIONS(912), + [anon_sym_char] = ACTIONS(912), + [anon_sym_float] = ACTIONS(912), + [anon_sym_double] = ACTIONS(912), + [sym_boolean_type] = ACTIONS(912), + [sym_void_type] = ACTIONS(912), + [sym_this] = ACTIONS(912), + [sym_super] = ACTIONS(912), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [319] = { + [ts_builtin_sym_end] = ACTIONS(922), + [sym_identifier] = ACTIONS(924), + [sym_decimal_integer_literal] = ACTIONS(924), + [sym_hex_integer_literal] = ACTIONS(924), + [sym_octal_integer_literal] = ACTIONS(922), + [sym_binary_integer_literal] = ACTIONS(922), + [sym_decimal_floating_point_literal] = ACTIONS(922), + [sym_hex_floating_point_literal] = ACTIONS(924), + [sym_true] = ACTIONS(924), + [sym_false] = ACTIONS(924), + [sym_character_literal] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(924), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(922), + [sym_null_literal] = ACTIONS(924), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(924), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_final] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [anon_sym_PLUS_PLUS] = ACTIONS(922), + [anon_sym_DASH_DASH] = ACTIONS(922), + [anon_sym_new] = ACTIONS(924), + [anon_sym_class] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym_case] = ACTIONS(924), + [anon_sym_default] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(922), + [anon_sym_assert] = ACTIONS(924), + [anon_sym_do] = ACTIONS(924), + [anon_sym_while] = ACTIONS(924), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_return] = ACTIONS(924), + [anon_sym_yield] = ACTIONS(924), + [anon_sym_synchronized] = ACTIONS(924), + [anon_sym_throw] = ACTIONS(924), + [anon_sym_try] = ACTIONS(924), + [anon_sym_if] = ACTIONS(924), + [anon_sym_else] = ACTIONS(924), + [anon_sym_for] = ACTIONS(924), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_open] = ACTIONS(924), + [anon_sym_module] = ACTIONS(924), + [anon_sym_static] = ACTIONS(924), + [anon_sym_package] = ACTIONS(924), + [anon_sym_import] = ACTIONS(924), + [anon_sym_enum] = ACTIONS(924), + [anon_sym_public] = ACTIONS(924), + [anon_sym_protected] = ACTIONS(924), + [anon_sym_private] = ACTIONS(924), + [anon_sym_abstract] = ACTIONS(924), + [anon_sym_strictfp] = ACTIONS(924), + [anon_sym_native] = ACTIONS(924), + [anon_sym_transient] = ACTIONS(924), + [anon_sym_volatile] = ACTIONS(924), + [anon_sym_sealed] = ACTIONS(924), + [anon_sym_non_DASHsealed] = ACTIONS(922), + [anon_sym_record] = ACTIONS(924), + [anon_sym_ATinterface] = ACTIONS(922), + [anon_sym_interface] = ACTIONS(924), + [anon_sym_byte] = ACTIONS(924), + [anon_sym_short] = ACTIONS(924), + [anon_sym_int] = ACTIONS(924), + [anon_sym_long] = ACTIONS(924), + [anon_sym_char] = ACTIONS(924), + [anon_sym_float] = ACTIONS(924), + [anon_sym_double] = ACTIONS(924), + [sym_boolean_type] = ACTIONS(924), + [sym_void_type] = ACTIONS(924), + [sym_this] = ACTIONS(924), + [sym_super] = ACTIONS(924), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [320] = { + [ts_builtin_sym_end] = ACTIONS(926), + [sym_identifier] = ACTIONS(928), + [sym_decimal_integer_literal] = ACTIONS(928), + [sym_hex_integer_literal] = ACTIONS(928), + [sym_octal_integer_literal] = ACTIONS(926), + [sym_binary_integer_literal] = ACTIONS(926), + [sym_decimal_floating_point_literal] = ACTIONS(926), + [sym_hex_floating_point_literal] = ACTIONS(928), + [sym_true] = ACTIONS(928), + [sym_false] = ACTIONS(928), + [sym_character_literal] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(928), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(926), + [sym_null_literal] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(926), + [anon_sym_PLUS] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_final] = ACTIONS(928), + [anon_sym_BANG] = ACTIONS(926), + [anon_sym_TILDE] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_new] = ACTIONS(928), + [anon_sym_class] = ACTIONS(928), + [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_SEMI] = ACTIONS(926), + [anon_sym_assert] = ACTIONS(928), + [anon_sym_do] = ACTIONS(928), + [anon_sym_while] = ACTIONS(928), + [anon_sym_break] = ACTIONS(928), + [anon_sym_continue] = ACTIONS(928), + [anon_sym_return] = ACTIONS(928), + [anon_sym_yield] = ACTIONS(928), + [anon_sym_synchronized] = ACTIONS(928), + [anon_sym_throw] = ACTIONS(928), + [anon_sym_try] = ACTIONS(928), + [anon_sym_if] = ACTIONS(928), + [anon_sym_else] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_AT] = ACTIONS(928), + [anon_sym_open] = ACTIONS(928), + [anon_sym_module] = ACTIONS(928), + [anon_sym_static] = ACTIONS(928), + [anon_sym_package] = ACTIONS(928), + [anon_sym_import] = ACTIONS(928), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_public] = ACTIONS(928), + [anon_sym_protected] = ACTIONS(928), + [anon_sym_private] = ACTIONS(928), + [anon_sym_abstract] = ACTIONS(928), + [anon_sym_strictfp] = ACTIONS(928), + [anon_sym_native] = ACTIONS(928), + [anon_sym_transient] = ACTIONS(928), + [anon_sym_volatile] = ACTIONS(928), + [anon_sym_sealed] = ACTIONS(928), + [anon_sym_non_DASHsealed] = ACTIONS(926), + [anon_sym_record] = ACTIONS(928), + [anon_sym_ATinterface] = ACTIONS(926), + [anon_sym_interface] = ACTIONS(928), + [anon_sym_byte] = ACTIONS(928), + [anon_sym_short] = ACTIONS(928), + [anon_sym_int] = ACTIONS(928), + [anon_sym_long] = ACTIONS(928), + [anon_sym_char] = ACTIONS(928), + [anon_sym_float] = ACTIONS(928), + [anon_sym_double] = ACTIONS(928), + [sym_boolean_type] = ACTIONS(928), + [sym_void_type] = ACTIONS(928), + [sym_this] = ACTIONS(928), + [sym_super] = ACTIONS(928), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [321] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_primary_expression] = STATE(1025), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(883), + [sym_array_access] = STATE(468), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_resource] = STATE(1115), + [sym__annotation] = STATE(610), + [sym_marker_annotation] = STATE(610), + [sym_annotation] = STATE(610), + [sym_modifiers] = STATE(700), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(721), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [aux_sym_modifiers_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(930), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_RPAREN] = ACTIONS(934), + [anon_sym_final] = ACTIONS(295), + [anon_sym_new] = ACTIONS(936), + [anon_sym_default] = ACTIONS(295), + [anon_sym_synchronized] = ACTIONS(295), + [anon_sym_AT] = ACTIONS(297), + [anon_sym_open] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_static] = ACTIONS(295), + [anon_sym_public] = ACTIONS(295), + [anon_sym_protected] = ACTIONS(295), + [anon_sym_private] = ACTIONS(295), + [anon_sym_abstract] = ACTIONS(295), + [anon_sym_strictfp] = ACTIONS(295), + [anon_sym_native] = ACTIONS(295), + [anon_sym_transient] = ACTIONS(295), + [anon_sym_volatile] = ACTIONS(295), + [anon_sym_sealed] = ACTIONS(295), + [anon_sym_non_DASHsealed] = ACTIONS(301), + [anon_sym_record] = ACTIONS(938), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [322] = { + [ts_builtin_sym_end] = ACTIONS(940), + [sym_identifier] = ACTIONS(942), + [sym_decimal_integer_literal] = ACTIONS(942), + [sym_hex_integer_literal] = ACTIONS(942), + [sym_octal_integer_literal] = ACTIONS(940), + [sym_binary_integer_literal] = ACTIONS(940), + [sym_decimal_floating_point_literal] = ACTIONS(940), + [sym_hex_floating_point_literal] = ACTIONS(942), + [sym_true] = ACTIONS(942), + [sym_false] = ACTIONS(942), + [sym_character_literal] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(942), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(940), + [sym_null_literal] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(940), + [anon_sym_PLUS] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_final] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(940), + [anon_sym_TILDE] = ACTIONS(940), + [anon_sym_PLUS_PLUS] = ACTIONS(940), + [anon_sym_DASH_DASH] = ACTIONS(940), + [anon_sym_new] = ACTIONS(942), + [anon_sym_class] = ACTIONS(942), + [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_SEMI] = ACTIONS(940), + [anon_sym_assert] = ACTIONS(942), + [anon_sym_do] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_yield] = ACTIONS(942), + [anon_sym_synchronized] = ACTIONS(942), + [anon_sym_throw] = ACTIONS(942), + [anon_sym_try] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_else] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_AT] = ACTIONS(942), + [anon_sym_open] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_static] = ACTIONS(942), + [anon_sym_package] = ACTIONS(942), + [anon_sym_import] = ACTIONS(942), + [anon_sym_enum] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_abstract] = ACTIONS(942), + [anon_sym_strictfp] = ACTIONS(942), + [anon_sym_native] = ACTIONS(942), + [anon_sym_transient] = ACTIONS(942), + [anon_sym_volatile] = ACTIONS(942), + [anon_sym_sealed] = ACTIONS(942), + [anon_sym_non_DASHsealed] = ACTIONS(940), + [anon_sym_record] = ACTIONS(942), + [anon_sym_ATinterface] = ACTIONS(940), + [anon_sym_interface] = ACTIONS(942), + [anon_sym_byte] = ACTIONS(942), + [anon_sym_short] = ACTIONS(942), + [anon_sym_int] = ACTIONS(942), + [anon_sym_long] = ACTIONS(942), + [anon_sym_char] = ACTIONS(942), + [anon_sym_float] = ACTIONS(942), + [anon_sym_double] = ACTIONS(942), + [sym_boolean_type] = ACTIONS(942), + [sym_void_type] = ACTIONS(942), + [sym_this] = ACTIONS(942), + [sym_super] = ACTIONS(942), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [323] = { + [ts_builtin_sym_end] = ACTIONS(944), + [sym_identifier] = ACTIONS(946), + [sym_decimal_integer_literal] = ACTIONS(946), + [sym_hex_integer_literal] = ACTIONS(946), + [sym_octal_integer_literal] = ACTIONS(944), + [sym_binary_integer_literal] = ACTIONS(944), + [sym_decimal_floating_point_literal] = ACTIONS(944), + [sym_hex_floating_point_literal] = ACTIONS(946), + [sym_true] = ACTIONS(946), + [sym_false] = ACTIONS(946), + [sym_character_literal] = ACTIONS(944), + [anon_sym_DQUOTE] = ACTIONS(946), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(944), + [sym_null_literal] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(946), + [anon_sym_final] = ACTIONS(946), + [anon_sym_BANG] = ACTIONS(944), + [anon_sym_TILDE] = ACTIONS(944), + [anon_sym_PLUS_PLUS] = ACTIONS(944), + [anon_sym_DASH_DASH] = ACTIONS(944), + [anon_sym_new] = ACTIONS(946), + [anon_sym_class] = ACTIONS(946), + [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_SEMI] = ACTIONS(944), + [anon_sym_assert] = ACTIONS(946), + [anon_sym_do] = ACTIONS(946), + [anon_sym_while] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_yield] = ACTIONS(946), + [anon_sym_synchronized] = ACTIONS(946), + [anon_sym_throw] = ACTIONS(946), + [anon_sym_try] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_else] = ACTIONS(946), + [anon_sym_for] = ACTIONS(946), + [anon_sym_AT] = ACTIONS(946), + [anon_sym_open] = ACTIONS(946), + [anon_sym_module] = ACTIONS(946), + [anon_sym_static] = ACTIONS(946), + [anon_sym_package] = ACTIONS(946), + [anon_sym_import] = ACTIONS(946), + [anon_sym_enum] = ACTIONS(946), + [anon_sym_public] = ACTIONS(946), + [anon_sym_protected] = ACTIONS(946), + [anon_sym_private] = ACTIONS(946), + [anon_sym_abstract] = ACTIONS(946), + [anon_sym_strictfp] = ACTIONS(946), + [anon_sym_native] = ACTIONS(946), + [anon_sym_transient] = ACTIONS(946), + [anon_sym_volatile] = ACTIONS(946), + [anon_sym_sealed] = ACTIONS(946), + [anon_sym_non_DASHsealed] = ACTIONS(944), + [anon_sym_record] = ACTIONS(946), + [anon_sym_ATinterface] = ACTIONS(944), + [anon_sym_interface] = ACTIONS(946), + [anon_sym_byte] = ACTIONS(946), + [anon_sym_short] = ACTIONS(946), + [anon_sym_int] = ACTIONS(946), + [anon_sym_long] = ACTIONS(946), + [anon_sym_char] = ACTIONS(946), + [anon_sym_float] = ACTIONS(946), + [anon_sym_double] = ACTIONS(946), + [sym_boolean_type] = ACTIONS(946), + [sym_void_type] = ACTIONS(946), + [sym_this] = ACTIONS(946), + [sym_super] = ACTIONS(946), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [324] = { + [ts_builtin_sym_end] = ACTIONS(948), + [sym_identifier] = ACTIONS(950), + [sym_decimal_integer_literal] = ACTIONS(950), + [sym_hex_integer_literal] = ACTIONS(950), + [sym_octal_integer_literal] = ACTIONS(948), + [sym_binary_integer_literal] = ACTIONS(948), + [sym_decimal_floating_point_literal] = ACTIONS(948), + [sym_hex_floating_point_literal] = ACTIONS(950), + [sym_true] = ACTIONS(950), + [sym_false] = ACTIONS(950), + [sym_character_literal] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(950), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(948), + [sym_null_literal] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_final] = ACTIONS(950), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS_PLUS] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(948), + [anon_sym_new] = ACTIONS(950), + [anon_sym_class] = ACTIONS(950), + [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_SEMI] = ACTIONS(948), + [anon_sym_assert] = ACTIONS(950), + [anon_sym_do] = ACTIONS(950), + [anon_sym_while] = ACTIONS(950), + [anon_sym_break] = ACTIONS(950), + [anon_sym_continue] = ACTIONS(950), + [anon_sym_return] = ACTIONS(950), + [anon_sym_yield] = ACTIONS(950), + [anon_sym_synchronized] = ACTIONS(950), + [anon_sym_throw] = ACTIONS(950), + [anon_sym_try] = ACTIONS(950), + [anon_sym_if] = ACTIONS(950), + [anon_sym_else] = ACTIONS(950), + [anon_sym_for] = ACTIONS(950), + [anon_sym_AT] = ACTIONS(950), + [anon_sym_open] = ACTIONS(950), + [anon_sym_module] = ACTIONS(950), + [anon_sym_static] = ACTIONS(950), + [anon_sym_package] = ACTIONS(950), + [anon_sym_import] = ACTIONS(950), + [anon_sym_enum] = ACTIONS(950), + [anon_sym_public] = ACTIONS(950), + [anon_sym_protected] = ACTIONS(950), + [anon_sym_private] = ACTIONS(950), + [anon_sym_abstract] = ACTIONS(950), + [anon_sym_strictfp] = ACTIONS(950), + [anon_sym_native] = ACTIONS(950), + [anon_sym_transient] = ACTIONS(950), + [anon_sym_volatile] = ACTIONS(950), + [anon_sym_sealed] = ACTIONS(950), + [anon_sym_non_DASHsealed] = ACTIONS(948), + [anon_sym_record] = ACTIONS(950), + [anon_sym_ATinterface] = ACTIONS(948), + [anon_sym_interface] = ACTIONS(950), + [anon_sym_byte] = ACTIONS(950), + [anon_sym_short] = ACTIONS(950), + [anon_sym_int] = ACTIONS(950), + [anon_sym_long] = ACTIONS(950), + [anon_sym_char] = ACTIONS(950), + [anon_sym_float] = ACTIONS(950), + [anon_sym_double] = ACTIONS(950), + [sym_boolean_type] = ACTIONS(950), + [sym_void_type] = ACTIONS(950), + [sym_this] = ACTIONS(950), + [sym_super] = ACTIONS(950), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [325] = { + [ts_builtin_sym_end] = ACTIONS(952), + [sym_identifier] = ACTIONS(954), + [sym_decimal_integer_literal] = ACTIONS(954), + [sym_hex_integer_literal] = ACTIONS(954), + [sym_octal_integer_literal] = ACTIONS(952), + [sym_binary_integer_literal] = ACTIONS(952), + [sym_decimal_floating_point_literal] = ACTIONS(952), + [sym_hex_floating_point_literal] = ACTIONS(954), + [sym_true] = ACTIONS(954), + [sym_false] = ACTIONS(954), + [sym_character_literal] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(954), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(952), + [sym_null_literal] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_PLUS] = ACTIONS(954), + [anon_sym_DASH] = ACTIONS(954), + [anon_sym_final] = ACTIONS(954), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_new] = ACTIONS(954), + [anon_sym_class] = ACTIONS(954), + [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_SEMI] = ACTIONS(952), + [anon_sym_assert] = ACTIONS(954), + [anon_sym_do] = ACTIONS(954), + [anon_sym_while] = ACTIONS(954), + [anon_sym_break] = ACTIONS(954), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_return] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_synchronized] = ACTIONS(954), + [anon_sym_throw] = ACTIONS(954), + [anon_sym_try] = ACTIONS(954), + [anon_sym_if] = ACTIONS(954), + [anon_sym_else] = ACTIONS(954), + [anon_sym_for] = ACTIONS(954), + [anon_sym_AT] = ACTIONS(954), + [anon_sym_open] = ACTIONS(954), + [anon_sym_module] = ACTIONS(954), + [anon_sym_static] = ACTIONS(954), + [anon_sym_package] = ACTIONS(954), + [anon_sym_import] = ACTIONS(954), + [anon_sym_enum] = ACTIONS(954), + [anon_sym_public] = ACTIONS(954), + [anon_sym_protected] = ACTIONS(954), + [anon_sym_private] = ACTIONS(954), + [anon_sym_abstract] = ACTIONS(954), + [anon_sym_strictfp] = ACTIONS(954), + [anon_sym_native] = ACTIONS(954), + [anon_sym_transient] = ACTIONS(954), + [anon_sym_volatile] = ACTIONS(954), + [anon_sym_sealed] = ACTIONS(954), + [anon_sym_non_DASHsealed] = ACTIONS(952), + [anon_sym_record] = ACTIONS(954), + [anon_sym_ATinterface] = ACTIONS(952), + [anon_sym_interface] = ACTIONS(954), + [anon_sym_byte] = ACTIONS(954), + [anon_sym_short] = ACTIONS(954), + [anon_sym_int] = ACTIONS(954), + [anon_sym_long] = ACTIONS(954), + [anon_sym_char] = ACTIONS(954), + [anon_sym_float] = ACTIONS(954), + [anon_sym_double] = ACTIONS(954), + [sym_boolean_type] = ACTIONS(954), + [sym_void_type] = ACTIONS(954), + [sym_this] = ACTIONS(954), + [sym_super] = ACTIONS(954), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [326] = { + [ts_builtin_sym_end] = ACTIONS(956), + [sym_identifier] = ACTIONS(958), + [sym_decimal_integer_literal] = ACTIONS(958), + [sym_hex_integer_literal] = ACTIONS(958), + [sym_octal_integer_literal] = ACTIONS(956), + [sym_binary_integer_literal] = ACTIONS(956), + [sym_decimal_floating_point_literal] = ACTIONS(956), + [sym_hex_floating_point_literal] = ACTIONS(958), + [sym_true] = ACTIONS(958), + [sym_false] = ACTIONS(958), + [sym_character_literal] = ACTIONS(956), + [anon_sym_DQUOTE] = ACTIONS(958), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(956), + [sym_null_literal] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_PLUS] = ACTIONS(958), + [anon_sym_DASH] = ACTIONS(958), + [anon_sym_final] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(956), + [anon_sym_TILDE] = ACTIONS(956), + [anon_sym_PLUS_PLUS] = ACTIONS(956), + [anon_sym_DASH_DASH] = ACTIONS(956), + [anon_sym_new] = ACTIONS(958), + [anon_sym_class] = ACTIONS(958), + [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_SEMI] = ACTIONS(956), + [anon_sym_assert] = ACTIONS(958), + [anon_sym_do] = ACTIONS(958), + [anon_sym_while] = ACTIONS(958), + [anon_sym_break] = ACTIONS(958), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_return] = ACTIONS(958), + [anon_sym_yield] = ACTIONS(958), + [anon_sym_synchronized] = ACTIONS(958), + [anon_sym_throw] = ACTIONS(958), + [anon_sym_try] = ACTIONS(958), + [anon_sym_if] = ACTIONS(958), + [anon_sym_else] = ACTIONS(958), + [anon_sym_for] = ACTIONS(958), + [anon_sym_AT] = ACTIONS(958), + [anon_sym_open] = ACTIONS(958), + [anon_sym_module] = ACTIONS(958), + [anon_sym_static] = ACTIONS(958), + [anon_sym_package] = ACTIONS(958), + [anon_sym_import] = ACTIONS(958), + [anon_sym_enum] = ACTIONS(958), + [anon_sym_public] = ACTIONS(958), + [anon_sym_protected] = ACTIONS(958), + [anon_sym_private] = ACTIONS(958), + [anon_sym_abstract] = ACTIONS(958), + [anon_sym_strictfp] = ACTIONS(958), + [anon_sym_native] = ACTIONS(958), + [anon_sym_transient] = ACTIONS(958), + [anon_sym_volatile] = ACTIONS(958), + [anon_sym_sealed] = ACTIONS(958), + [anon_sym_non_DASHsealed] = ACTIONS(956), + [anon_sym_record] = ACTIONS(958), + [anon_sym_ATinterface] = ACTIONS(956), + [anon_sym_interface] = ACTIONS(958), + [anon_sym_byte] = ACTIONS(958), + [anon_sym_short] = ACTIONS(958), + [anon_sym_int] = ACTIONS(958), + [anon_sym_long] = ACTIONS(958), + [anon_sym_char] = ACTIONS(958), + [anon_sym_float] = ACTIONS(958), + [anon_sym_double] = ACTIONS(958), + [sym_boolean_type] = ACTIONS(958), + [sym_void_type] = ACTIONS(958), + [sym_this] = ACTIONS(958), + [sym_super] = ACTIONS(958), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [327] = { + [ts_builtin_sym_end] = ACTIONS(960), + [sym_identifier] = ACTIONS(962), + [sym_decimal_integer_literal] = ACTIONS(962), + [sym_hex_integer_literal] = ACTIONS(962), + [sym_octal_integer_literal] = ACTIONS(960), + [sym_binary_integer_literal] = ACTIONS(960), + [sym_decimal_floating_point_literal] = ACTIONS(960), + [sym_hex_floating_point_literal] = ACTIONS(962), + [sym_true] = ACTIONS(962), + [sym_false] = ACTIONS(962), + [sym_character_literal] = ACTIONS(960), + [anon_sym_DQUOTE] = ACTIONS(962), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(960), + [sym_null_literal] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(962), + [anon_sym_final] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(960), + [anon_sym_TILDE] = ACTIONS(960), + [anon_sym_PLUS_PLUS] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_new] = ACTIONS(962), + [anon_sym_class] = ACTIONS(962), + [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_SEMI] = ACTIONS(960), + [anon_sym_assert] = ACTIONS(962), + [anon_sym_do] = ACTIONS(962), + [anon_sym_while] = ACTIONS(962), + [anon_sym_break] = ACTIONS(962), + [anon_sym_continue] = ACTIONS(962), + [anon_sym_return] = ACTIONS(962), + [anon_sym_yield] = ACTIONS(962), + [anon_sym_synchronized] = ACTIONS(962), + [anon_sym_throw] = ACTIONS(962), + [anon_sym_try] = ACTIONS(962), + [anon_sym_if] = ACTIONS(962), + [anon_sym_else] = ACTIONS(962), + [anon_sym_for] = ACTIONS(962), + [anon_sym_AT] = ACTIONS(962), + [anon_sym_open] = ACTIONS(962), + [anon_sym_module] = ACTIONS(962), + [anon_sym_static] = ACTIONS(962), + [anon_sym_package] = ACTIONS(962), + [anon_sym_import] = ACTIONS(962), + [anon_sym_enum] = ACTIONS(962), + [anon_sym_public] = ACTIONS(962), + [anon_sym_protected] = ACTIONS(962), + [anon_sym_private] = ACTIONS(962), + [anon_sym_abstract] = ACTIONS(962), + [anon_sym_strictfp] = ACTIONS(962), + [anon_sym_native] = ACTIONS(962), + [anon_sym_transient] = ACTIONS(962), + [anon_sym_volatile] = ACTIONS(962), + [anon_sym_sealed] = ACTIONS(962), + [anon_sym_non_DASHsealed] = ACTIONS(960), + [anon_sym_record] = ACTIONS(962), + [anon_sym_ATinterface] = ACTIONS(960), + [anon_sym_interface] = ACTIONS(962), + [anon_sym_byte] = ACTIONS(962), + [anon_sym_short] = ACTIONS(962), + [anon_sym_int] = ACTIONS(962), + [anon_sym_long] = ACTIONS(962), + [anon_sym_char] = ACTIONS(962), + [anon_sym_float] = ACTIONS(962), + [anon_sym_double] = ACTIONS(962), + [sym_boolean_type] = ACTIONS(962), + [sym_void_type] = ACTIONS(962), + [sym_this] = ACTIONS(962), + [sym_super] = ACTIONS(962), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [328] = { + [ts_builtin_sym_end] = ACTIONS(964), + [sym_identifier] = ACTIONS(966), + [sym_decimal_integer_literal] = ACTIONS(966), + [sym_hex_integer_literal] = ACTIONS(966), + [sym_octal_integer_literal] = ACTIONS(964), + [sym_binary_integer_literal] = ACTIONS(964), + [sym_decimal_floating_point_literal] = ACTIONS(964), + [sym_hex_floating_point_literal] = ACTIONS(966), + [sym_true] = ACTIONS(966), + [sym_false] = ACTIONS(966), + [sym_character_literal] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(966), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(964), + [sym_null_literal] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_final] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_PLUS_PLUS] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(964), + [anon_sym_new] = ACTIONS(966), + [anon_sym_class] = ACTIONS(966), + [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_SEMI] = ACTIONS(964), + [anon_sym_assert] = ACTIONS(966), + [anon_sym_do] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_yield] = ACTIONS(966), + [anon_sym_synchronized] = ACTIONS(966), + [anon_sym_throw] = ACTIONS(966), + [anon_sym_try] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_else] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_AT] = ACTIONS(966), + [anon_sym_open] = ACTIONS(966), + [anon_sym_module] = ACTIONS(966), + [anon_sym_static] = ACTIONS(966), + [anon_sym_package] = ACTIONS(966), + [anon_sym_import] = ACTIONS(966), + [anon_sym_enum] = ACTIONS(966), + [anon_sym_public] = ACTIONS(966), + [anon_sym_protected] = ACTIONS(966), + [anon_sym_private] = ACTIONS(966), + [anon_sym_abstract] = ACTIONS(966), + [anon_sym_strictfp] = ACTIONS(966), + [anon_sym_native] = ACTIONS(966), + [anon_sym_transient] = ACTIONS(966), + [anon_sym_volatile] = ACTIONS(966), + [anon_sym_sealed] = ACTIONS(966), + [anon_sym_non_DASHsealed] = ACTIONS(964), + [anon_sym_record] = ACTIONS(966), + [anon_sym_ATinterface] = ACTIONS(964), + [anon_sym_interface] = ACTIONS(966), + [anon_sym_byte] = ACTIONS(966), + [anon_sym_short] = ACTIONS(966), + [anon_sym_int] = ACTIONS(966), + [anon_sym_long] = ACTIONS(966), + [anon_sym_char] = ACTIONS(966), + [anon_sym_float] = ACTIONS(966), + [anon_sym_double] = ACTIONS(966), + [sym_boolean_type] = ACTIONS(966), + [sym_void_type] = ACTIONS(966), + [sym_this] = ACTIONS(966), + [sym_super] = ACTIONS(966), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [329] = { + [ts_builtin_sym_end] = ACTIONS(968), + [sym_identifier] = ACTIONS(970), + [sym_decimal_integer_literal] = ACTIONS(970), + [sym_hex_integer_literal] = ACTIONS(970), + [sym_octal_integer_literal] = ACTIONS(968), + [sym_binary_integer_literal] = ACTIONS(968), + [sym_decimal_floating_point_literal] = ACTIONS(968), + [sym_hex_floating_point_literal] = ACTIONS(970), + [sym_true] = ACTIONS(970), + [sym_false] = ACTIONS(970), + [sym_character_literal] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(968), + [sym_null_literal] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_final] = ACTIONS(970), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_TILDE] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(968), + [anon_sym_new] = ACTIONS(970), + [anon_sym_class] = ACTIONS(970), + [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_SEMI] = ACTIONS(968), + [anon_sym_assert] = ACTIONS(970), + [anon_sym_do] = ACTIONS(970), + [anon_sym_while] = ACTIONS(970), + [anon_sym_break] = ACTIONS(970), + [anon_sym_continue] = ACTIONS(970), + [anon_sym_return] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_synchronized] = ACTIONS(970), + [anon_sym_throw] = ACTIONS(970), + [anon_sym_try] = ACTIONS(970), + [anon_sym_if] = ACTIONS(970), + [anon_sym_else] = ACTIONS(970), + [anon_sym_for] = ACTIONS(970), + [anon_sym_AT] = ACTIONS(970), + [anon_sym_open] = ACTIONS(970), + [anon_sym_module] = ACTIONS(970), + [anon_sym_static] = ACTIONS(970), + [anon_sym_package] = ACTIONS(970), + [anon_sym_import] = ACTIONS(970), + [anon_sym_enum] = ACTIONS(970), + [anon_sym_public] = ACTIONS(970), + [anon_sym_protected] = ACTIONS(970), + [anon_sym_private] = ACTIONS(970), + [anon_sym_abstract] = ACTIONS(970), + [anon_sym_strictfp] = ACTIONS(970), + [anon_sym_native] = ACTIONS(970), + [anon_sym_transient] = ACTIONS(970), + [anon_sym_volatile] = ACTIONS(970), + [anon_sym_sealed] = ACTIONS(970), + [anon_sym_non_DASHsealed] = ACTIONS(968), + [anon_sym_record] = ACTIONS(970), + [anon_sym_ATinterface] = ACTIONS(968), + [anon_sym_interface] = ACTIONS(970), + [anon_sym_byte] = ACTIONS(970), + [anon_sym_short] = ACTIONS(970), + [anon_sym_int] = ACTIONS(970), + [anon_sym_long] = ACTIONS(970), + [anon_sym_char] = ACTIONS(970), + [anon_sym_float] = ACTIONS(970), + [anon_sym_double] = ACTIONS(970), + [sym_boolean_type] = ACTIONS(970), + [sym_void_type] = ACTIONS(970), + [sym_this] = ACTIONS(970), + [sym_super] = ACTIONS(970), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [330] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_primary_expression] = STATE(1025), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(883), + [sym_array_access] = STATE(468), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_resource] = STATE(1115), + [sym__annotation] = STATE(610), + [sym_marker_annotation] = STATE(610), + [sym_annotation] = STATE(610), + [sym_modifiers] = STATE(700), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(721), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [aux_sym_modifiers_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(930), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_RPAREN] = ACTIONS(972), + [anon_sym_final] = ACTIONS(295), + [anon_sym_new] = ACTIONS(936), + [anon_sym_default] = ACTIONS(295), + [anon_sym_synchronized] = ACTIONS(295), + [anon_sym_AT] = ACTIONS(297), + [anon_sym_open] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_static] = ACTIONS(295), + [anon_sym_public] = ACTIONS(295), + [anon_sym_protected] = ACTIONS(295), + [anon_sym_private] = ACTIONS(295), + [anon_sym_abstract] = ACTIONS(295), + [anon_sym_strictfp] = ACTIONS(295), + [anon_sym_native] = ACTIONS(295), + [anon_sym_transient] = ACTIONS(295), + [anon_sym_volatile] = ACTIONS(295), + [anon_sym_sealed] = ACTIONS(295), + [anon_sym_non_DASHsealed] = ACTIONS(301), + [anon_sym_record] = ACTIONS(938), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [331] = { + [ts_builtin_sym_end] = ACTIONS(974), + [sym_identifier] = ACTIONS(976), + [sym_decimal_integer_literal] = ACTIONS(976), + [sym_hex_integer_literal] = ACTIONS(976), + [sym_octal_integer_literal] = ACTIONS(974), + [sym_binary_integer_literal] = ACTIONS(974), + [sym_decimal_floating_point_literal] = ACTIONS(974), + [sym_hex_floating_point_literal] = ACTIONS(976), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), + [sym_character_literal] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(976), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(974), + [sym_null_literal] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(974), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_final] = ACTIONS(976), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_new] = ACTIONS(976), + [anon_sym_class] = ACTIONS(976), + [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_SEMI] = ACTIONS(974), + [anon_sym_assert] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_yield] = ACTIONS(976), + [anon_sym_synchronized] = ACTIONS(976), + [anon_sym_throw] = ACTIONS(976), + [anon_sym_try] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_AT] = ACTIONS(976), + [anon_sym_open] = ACTIONS(976), + [anon_sym_module] = ACTIONS(976), + [anon_sym_static] = ACTIONS(976), + [anon_sym_package] = ACTIONS(976), + [anon_sym_import] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_public] = ACTIONS(976), + [anon_sym_protected] = ACTIONS(976), + [anon_sym_private] = ACTIONS(976), + [anon_sym_abstract] = ACTIONS(976), + [anon_sym_strictfp] = ACTIONS(976), + [anon_sym_native] = ACTIONS(976), + [anon_sym_transient] = ACTIONS(976), + [anon_sym_volatile] = ACTIONS(976), + [anon_sym_sealed] = ACTIONS(976), + [anon_sym_non_DASHsealed] = ACTIONS(974), + [anon_sym_record] = ACTIONS(976), + [anon_sym_ATinterface] = ACTIONS(974), + [anon_sym_interface] = ACTIONS(976), + [anon_sym_byte] = ACTIONS(976), + [anon_sym_short] = ACTIONS(976), + [anon_sym_int] = ACTIONS(976), + [anon_sym_long] = ACTIONS(976), + [anon_sym_char] = ACTIONS(976), + [anon_sym_float] = ACTIONS(976), + [anon_sym_double] = ACTIONS(976), + [sym_boolean_type] = ACTIONS(976), + [sym_void_type] = ACTIONS(976), + [sym_this] = ACTIONS(976), + [sym_super] = ACTIONS(976), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [332] = { + [ts_builtin_sym_end] = ACTIONS(978), + [sym_identifier] = ACTIONS(980), + [sym_decimal_integer_literal] = ACTIONS(980), + [sym_hex_integer_literal] = ACTIONS(980), + [sym_octal_integer_literal] = ACTIONS(978), + [sym_binary_integer_literal] = ACTIONS(978), + [sym_decimal_floating_point_literal] = ACTIONS(978), + [sym_hex_floating_point_literal] = ACTIONS(980), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_character_literal] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(980), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(978), + [sym_null_literal] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_final] = ACTIONS(980), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_TILDE] = ACTIONS(978), + [anon_sym_PLUS_PLUS] = ACTIONS(978), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_new] = ACTIONS(980), + [anon_sym_class] = ACTIONS(980), + [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_SEMI] = ACTIONS(978), + [anon_sym_assert] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_yield] = ACTIONS(980), + [anon_sym_synchronized] = ACTIONS(980), + [anon_sym_throw] = ACTIONS(980), + [anon_sym_try] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_AT] = ACTIONS(980), + [anon_sym_open] = ACTIONS(980), + [anon_sym_module] = ACTIONS(980), + [anon_sym_static] = ACTIONS(980), + [anon_sym_package] = ACTIONS(980), + [anon_sym_import] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_public] = ACTIONS(980), + [anon_sym_protected] = ACTIONS(980), + [anon_sym_private] = ACTIONS(980), + [anon_sym_abstract] = ACTIONS(980), + [anon_sym_strictfp] = ACTIONS(980), + [anon_sym_native] = ACTIONS(980), + [anon_sym_transient] = ACTIONS(980), + [anon_sym_volatile] = ACTIONS(980), + [anon_sym_sealed] = ACTIONS(980), + [anon_sym_non_DASHsealed] = ACTIONS(978), + [anon_sym_record] = ACTIONS(980), + [anon_sym_ATinterface] = ACTIONS(978), + [anon_sym_interface] = ACTIONS(980), + [anon_sym_byte] = ACTIONS(980), + [anon_sym_short] = ACTIONS(980), + [anon_sym_int] = ACTIONS(980), + [anon_sym_long] = ACTIONS(980), + [anon_sym_char] = ACTIONS(980), + [anon_sym_float] = ACTIONS(980), + [anon_sym_double] = ACTIONS(980), + [sym_boolean_type] = ACTIONS(980), + [sym_void_type] = ACTIONS(980), + [sym_this] = ACTIONS(980), + [sym_super] = ACTIONS(980), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [333] = { + [ts_builtin_sym_end] = ACTIONS(982), + [sym_identifier] = ACTIONS(984), + [sym_decimal_integer_literal] = ACTIONS(984), + [sym_hex_integer_literal] = ACTIONS(984), + [sym_octal_integer_literal] = ACTIONS(982), + [sym_binary_integer_literal] = ACTIONS(982), + [sym_decimal_floating_point_literal] = ACTIONS(982), + [sym_hex_floating_point_literal] = ACTIONS(984), + [sym_true] = ACTIONS(984), + [sym_false] = ACTIONS(984), + [sym_character_literal] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(984), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(982), + [sym_null_literal] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_final] = ACTIONS(984), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_TILDE] = ACTIONS(982), + [anon_sym_PLUS_PLUS] = ACTIONS(982), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_new] = ACTIONS(984), + [anon_sym_class] = ACTIONS(984), + [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_SEMI] = ACTIONS(982), + [anon_sym_assert] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_yield] = ACTIONS(984), + [anon_sym_synchronized] = ACTIONS(984), + [anon_sym_throw] = ACTIONS(984), + [anon_sym_try] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_AT] = ACTIONS(984), + [anon_sym_open] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [anon_sym_static] = ACTIONS(984), + [anon_sym_package] = ACTIONS(984), + [anon_sym_import] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_public] = ACTIONS(984), + [anon_sym_protected] = ACTIONS(984), + [anon_sym_private] = ACTIONS(984), + [anon_sym_abstract] = ACTIONS(984), + [anon_sym_strictfp] = ACTIONS(984), + [anon_sym_native] = ACTIONS(984), + [anon_sym_transient] = ACTIONS(984), + [anon_sym_volatile] = ACTIONS(984), + [anon_sym_sealed] = ACTIONS(984), + [anon_sym_non_DASHsealed] = ACTIONS(982), + [anon_sym_record] = ACTIONS(984), + [anon_sym_ATinterface] = ACTIONS(982), + [anon_sym_interface] = ACTIONS(984), + [anon_sym_byte] = ACTIONS(984), + [anon_sym_short] = ACTIONS(984), + [anon_sym_int] = ACTIONS(984), + [anon_sym_long] = ACTIONS(984), + [anon_sym_char] = ACTIONS(984), + [anon_sym_float] = ACTIONS(984), + [anon_sym_double] = ACTIONS(984), + [sym_boolean_type] = ACTIONS(984), + [sym_void_type] = ACTIONS(984), + [sym_this] = ACTIONS(984), + [sym_super] = ACTIONS(984), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [334] = { + [ts_builtin_sym_end] = ACTIONS(986), + [sym_identifier] = ACTIONS(988), + [sym_decimal_integer_literal] = ACTIONS(988), + [sym_hex_integer_literal] = ACTIONS(988), + [sym_octal_integer_literal] = ACTIONS(986), + [sym_binary_integer_literal] = ACTIONS(986), + [sym_decimal_floating_point_literal] = ACTIONS(986), + [sym_hex_floating_point_literal] = ACTIONS(988), + [sym_true] = ACTIONS(988), + [sym_false] = ACTIONS(988), + [sym_character_literal] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(988), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(986), + [sym_null_literal] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_final] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_TILDE] = ACTIONS(986), + [anon_sym_PLUS_PLUS] = ACTIONS(986), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(988), + [anon_sym_class] = ACTIONS(988), + [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_SEMI] = ACTIONS(986), + [anon_sym_assert] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_yield] = ACTIONS(988), + [anon_sym_synchronized] = ACTIONS(988), + [anon_sym_throw] = ACTIONS(988), + [anon_sym_try] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_AT] = ACTIONS(988), + [anon_sym_open] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_static] = ACTIONS(988), + [anon_sym_package] = ACTIONS(988), + [anon_sym_import] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_abstract] = ACTIONS(988), + [anon_sym_strictfp] = ACTIONS(988), + [anon_sym_native] = ACTIONS(988), + [anon_sym_transient] = ACTIONS(988), + [anon_sym_volatile] = ACTIONS(988), + [anon_sym_sealed] = ACTIONS(988), + [anon_sym_non_DASHsealed] = ACTIONS(986), + [anon_sym_record] = ACTIONS(988), + [anon_sym_ATinterface] = ACTIONS(986), + [anon_sym_interface] = ACTIONS(988), + [anon_sym_byte] = ACTIONS(988), + [anon_sym_short] = ACTIONS(988), + [anon_sym_int] = ACTIONS(988), + [anon_sym_long] = ACTIONS(988), + [anon_sym_char] = ACTIONS(988), + [anon_sym_float] = ACTIONS(988), + [anon_sym_double] = ACTIONS(988), + [sym_boolean_type] = ACTIONS(988), + [sym_void_type] = ACTIONS(988), + [sym_this] = ACTIONS(988), + [sym_super] = ACTIONS(988), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [335] = { + [ts_builtin_sym_end] = ACTIONS(990), + [sym_identifier] = ACTIONS(992), + [sym_decimal_integer_literal] = ACTIONS(992), + [sym_hex_integer_literal] = ACTIONS(992), + [sym_octal_integer_literal] = ACTIONS(990), + [sym_binary_integer_literal] = ACTIONS(990), + [sym_decimal_floating_point_literal] = ACTIONS(990), + [sym_hex_floating_point_literal] = ACTIONS(992), + [sym_true] = ACTIONS(992), + [sym_false] = ACTIONS(992), + [sym_character_literal] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(992), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(990), + [sym_null_literal] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_final] = ACTIONS(992), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(990), + [anon_sym_PLUS_PLUS] = ACTIONS(990), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_new] = ACTIONS(992), + [anon_sym_class] = ACTIONS(992), + [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_SEMI] = ACTIONS(990), + [anon_sym_assert] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_yield] = ACTIONS(992), + [anon_sym_synchronized] = ACTIONS(992), + [anon_sym_throw] = ACTIONS(992), + [anon_sym_try] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_AT] = ACTIONS(992), + [anon_sym_open] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_static] = ACTIONS(992), + [anon_sym_package] = ACTIONS(992), + [anon_sym_import] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_public] = ACTIONS(992), + [anon_sym_protected] = ACTIONS(992), + [anon_sym_private] = ACTIONS(992), + [anon_sym_abstract] = ACTIONS(992), + [anon_sym_strictfp] = ACTIONS(992), + [anon_sym_native] = ACTIONS(992), + [anon_sym_transient] = ACTIONS(992), + [anon_sym_volatile] = ACTIONS(992), + [anon_sym_sealed] = ACTIONS(992), + [anon_sym_non_DASHsealed] = ACTIONS(990), + [anon_sym_record] = ACTIONS(992), + [anon_sym_ATinterface] = ACTIONS(990), + [anon_sym_interface] = ACTIONS(992), + [anon_sym_byte] = ACTIONS(992), + [anon_sym_short] = ACTIONS(992), + [anon_sym_int] = ACTIONS(992), + [anon_sym_long] = ACTIONS(992), + [anon_sym_char] = ACTIONS(992), + [anon_sym_float] = ACTIONS(992), + [anon_sym_double] = ACTIONS(992), + [sym_boolean_type] = ACTIONS(992), + [sym_void_type] = ACTIONS(992), + [sym_this] = ACTIONS(992), + [sym_super] = ACTIONS(992), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [336] = { + [ts_builtin_sym_end] = ACTIONS(994), + [sym_identifier] = ACTIONS(996), + [sym_decimal_integer_literal] = ACTIONS(996), + [sym_hex_integer_literal] = ACTIONS(996), + [sym_octal_integer_literal] = ACTIONS(994), + [sym_binary_integer_literal] = ACTIONS(994), + [sym_decimal_floating_point_literal] = ACTIONS(994), + [sym_hex_floating_point_literal] = ACTIONS(996), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_character_literal] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(996), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(994), + [sym_null_literal] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_final] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(994), + [anon_sym_new] = ACTIONS(996), + [anon_sym_class] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_case] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_assert] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_yield] = ACTIONS(996), + [anon_sym_synchronized] = ACTIONS(996), + [anon_sym_throw] = ACTIONS(996), + [anon_sym_try] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_else] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_AT] = ACTIONS(996), + [anon_sym_open] = ACTIONS(996), + [anon_sym_module] = ACTIONS(996), + [anon_sym_static] = ACTIONS(996), + [anon_sym_package] = ACTIONS(996), + [anon_sym_import] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_public] = ACTIONS(996), + [anon_sym_protected] = ACTIONS(996), + [anon_sym_private] = ACTIONS(996), + [anon_sym_abstract] = ACTIONS(996), + [anon_sym_strictfp] = ACTIONS(996), + [anon_sym_native] = ACTIONS(996), + [anon_sym_transient] = ACTIONS(996), + [anon_sym_volatile] = ACTIONS(996), + [anon_sym_sealed] = ACTIONS(996), + [anon_sym_non_DASHsealed] = ACTIONS(994), + [anon_sym_record] = ACTIONS(996), + [anon_sym_ATinterface] = ACTIONS(994), + [anon_sym_interface] = ACTIONS(996), + [anon_sym_byte] = ACTIONS(996), + [anon_sym_short] = ACTIONS(996), + [anon_sym_int] = ACTIONS(996), + [anon_sym_long] = ACTIONS(996), + [anon_sym_char] = ACTIONS(996), + [anon_sym_float] = ACTIONS(996), + [anon_sym_double] = ACTIONS(996), + [sym_boolean_type] = ACTIONS(996), + [sym_void_type] = ACTIONS(996), + [sym_this] = ACTIONS(996), + [sym_super] = ACTIONS(996), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [337] = { + [ts_builtin_sym_end] = ACTIONS(998), + [sym_identifier] = ACTIONS(1000), + [sym_decimal_integer_literal] = ACTIONS(1000), + [sym_hex_integer_literal] = ACTIONS(1000), + [sym_octal_integer_literal] = ACTIONS(998), + [sym_binary_integer_literal] = ACTIONS(998), + [sym_decimal_floating_point_literal] = ACTIONS(998), + [sym_hex_floating_point_literal] = ACTIONS(1000), + [sym_true] = ACTIONS(1000), + [sym_false] = ACTIONS(1000), + [sym_character_literal] = ACTIONS(998), + [anon_sym_DQUOTE] = ACTIONS(1000), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(998), + [sym_null_literal] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_final] = ACTIONS(1000), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_PLUS_PLUS] = ACTIONS(998), + [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_new] = ACTIONS(1000), + [anon_sym_class] = ACTIONS(1000), + [anon_sym_switch] = ACTIONS(1000), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_case] = ACTIONS(1000), + [anon_sym_default] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_assert] = ACTIONS(1000), + [anon_sym_do] = ACTIONS(1000), + [anon_sym_while] = ACTIONS(1000), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_return] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1000), + [anon_sym_synchronized] = ACTIONS(1000), + [anon_sym_throw] = ACTIONS(1000), + [anon_sym_try] = ACTIONS(1000), + [anon_sym_if] = ACTIONS(1000), + [anon_sym_else] = ACTIONS(1000), + [anon_sym_for] = ACTIONS(1000), + [anon_sym_AT] = ACTIONS(1000), + [anon_sym_open] = ACTIONS(1000), + [anon_sym_module] = ACTIONS(1000), + [anon_sym_static] = ACTIONS(1000), + [anon_sym_package] = ACTIONS(1000), + [anon_sym_import] = ACTIONS(1000), + [anon_sym_enum] = ACTIONS(1000), + [anon_sym_public] = ACTIONS(1000), + [anon_sym_protected] = ACTIONS(1000), + [anon_sym_private] = ACTIONS(1000), + [anon_sym_abstract] = ACTIONS(1000), + [anon_sym_strictfp] = ACTIONS(1000), + [anon_sym_native] = ACTIONS(1000), + [anon_sym_transient] = ACTIONS(1000), + [anon_sym_volatile] = ACTIONS(1000), + [anon_sym_sealed] = ACTIONS(1000), + [anon_sym_non_DASHsealed] = ACTIONS(998), + [anon_sym_record] = ACTIONS(1000), + [anon_sym_ATinterface] = ACTIONS(998), + [anon_sym_interface] = ACTIONS(1000), + [anon_sym_byte] = ACTIONS(1000), + [anon_sym_short] = ACTIONS(1000), + [anon_sym_int] = ACTIONS(1000), + [anon_sym_long] = ACTIONS(1000), + [anon_sym_char] = ACTIONS(1000), + [anon_sym_float] = ACTIONS(1000), + [anon_sym_double] = ACTIONS(1000), + [sym_boolean_type] = ACTIONS(1000), + [sym_void_type] = ACTIONS(1000), + [sym_this] = ACTIONS(1000), + [sym_super] = ACTIONS(1000), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [338] = { + [ts_builtin_sym_end] = ACTIONS(1002), + [sym_identifier] = ACTIONS(1004), + [sym_decimal_integer_literal] = ACTIONS(1004), + [sym_hex_integer_literal] = ACTIONS(1004), + [sym_octal_integer_literal] = ACTIONS(1002), + [sym_binary_integer_literal] = ACTIONS(1002), + [sym_decimal_floating_point_literal] = ACTIONS(1002), + [sym_hex_floating_point_literal] = ACTIONS(1004), + [sym_true] = ACTIONS(1004), + [sym_false] = ACTIONS(1004), + [sym_character_literal] = ACTIONS(1002), + [anon_sym_DQUOTE] = ACTIONS(1004), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1002), + [sym_null_literal] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_final] = ACTIONS(1004), + [anon_sym_BANG] = ACTIONS(1002), + [anon_sym_TILDE] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_new] = ACTIONS(1004), + [anon_sym_class] = ACTIONS(1004), + [anon_sym_switch] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_RBRACE] = ACTIONS(1002), + [anon_sym_case] = ACTIONS(1004), + [anon_sym_default] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1002), + [anon_sym_assert] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_yield] = ACTIONS(1004), + [anon_sym_synchronized] = ACTIONS(1004), + [anon_sym_throw] = ACTIONS(1004), + [anon_sym_try] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_AT] = ACTIONS(1004), + [anon_sym_open] = ACTIONS(1004), + [anon_sym_module] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(1004), + [anon_sym_package] = ACTIONS(1004), + [anon_sym_import] = ACTIONS(1004), + [anon_sym_enum] = ACTIONS(1004), + [anon_sym_public] = ACTIONS(1004), + [anon_sym_protected] = ACTIONS(1004), + [anon_sym_private] = ACTIONS(1004), + [anon_sym_abstract] = ACTIONS(1004), + [anon_sym_strictfp] = ACTIONS(1004), + [anon_sym_native] = ACTIONS(1004), + [anon_sym_transient] = ACTIONS(1004), + [anon_sym_volatile] = ACTIONS(1004), + [anon_sym_sealed] = ACTIONS(1004), + [anon_sym_non_DASHsealed] = ACTIONS(1002), + [anon_sym_record] = ACTIONS(1004), + [anon_sym_ATinterface] = ACTIONS(1002), + [anon_sym_interface] = ACTIONS(1004), + [anon_sym_byte] = ACTIONS(1004), + [anon_sym_short] = ACTIONS(1004), + [anon_sym_int] = ACTIONS(1004), + [anon_sym_long] = ACTIONS(1004), + [anon_sym_char] = ACTIONS(1004), + [anon_sym_float] = ACTIONS(1004), + [anon_sym_double] = ACTIONS(1004), + [sym_boolean_type] = ACTIONS(1004), + [sym_void_type] = ACTIONS(1004), + [sym_this] = ACTIONS(1004), + [sym_super] = ACTIONS(1004), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [339] = { + [ts_builtin_sym_end] = ACTIONS(1006), + [sym_identifier] = ACTIONS(1008), + [sym_decimal_integer_literal] = ACTIONS(1008), + [sym_hex_integer_literal] = ACTIONS(1008), + [sym_octal_integer_literal] = ACTIONS(1006), + [sym_binary_integer_literal] = ACTIONS(1006), + [sym_decimal_floating_point_literal] = ACTIONS(1006), + [sym_hex_floating_point_literal] = ACTIONS(1008), + [sym_true] = ACTIONS(1008), + [sym_false] = ACTIONS(1008), + [sym_character_literal] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(1008), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1006), + [sym_null_literal] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_final] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(1006), + [anon_sym_TILDE] = ACTIONS(1006), + [anon_sym_PLUS_PLUS] = ACTIONS(1006), + [anon_sym_DASH_DASH] = ACTIONS(1006), + [anon_sym_new] = ACTIONS(1008), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_LBRACE] = ACTIONS(1006), + [anon_sym_RBRACE] = ACTIONS(1006), + [anon_sym_case] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_assert] = ACTIONS(1008), + [anon_sym_do] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_yield] = ACTIONS(1008), + [anon_sym_synchronized] = ACTIONS(1008), + [anon_sym_throw] = ACTIONS(1008), + [anon_sym_try] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_AT] = ACTIONS(1008), + [anon_sym_open] = ACTIONS(1008), + [anon_sym_module] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1008), + [anon_sym_package] = ACTIONS(1008), + [anon_sym_import] = ACTIONS(1008), + [anon_sym_enum] = ACTIONS(1008), + [anon_sym_public] = ACTIONS(1008), + [anon_sym_protected] = ACTIONS(1008), + [anon_sym_private] = ACTIONS(1008), + [anon_sym_abstract] = ACTIONS(1008), + [anon_sym_strictfp] = ACTIONS(1008), + [anon_sym_native] = ACTIONS(1008), + [anon_sym_transient] = ACTIONS(1008), + [anon_sym_volatile] = ACTIONS(1008), + [anon_sym_sealed] = ACTIONS(1008), + [anon_sym_non_DASHsealed] = ACTIONS(1006), + [anon_sym_record] = ACTIONS(1008), + [anon_sym_ATinterface] = ACTIONS(1006), + [anon_sym_interface] = ACTIONS(1008), + [anon_sym_byte] = ACTIONS(1008), + [anon_sym_short] = ACTIONS(1008), + [anon_sym_int] = ACTIONS(1008), + [anon_sym_long] = ACTIONS(1008), + [anon_sym_char] = ACTIONS(1008), + [anon_sym_float] = ACTIONS(1008), + [anon_sym_double] = ACTIONS(1008), + [sym_boolean_type] = ACTIONS(1008), + [sym_void_type] = ACTIONS(1008), + [sym_this] = ACTIONS(1008), + [sym_super] = ACTIONS(1008), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [340] = { + [ts_builtin_sym_end] = ACTIONS(1010), + [sym_identifier] = ACTIONS(1012), + [sym_decimal_integer_literal] = ACTIONS(1012), + [sym_hex_integer_literal] = ACTIONS(1012), + [sym_octal_integer_literal] = ACTIONS(1010), + [sym_binary_integer_literal] = ACTIONS(1010), + [sym_decimal_floating_point_literal] = ACTIONS(1010), + [sym_hex_floating_point_literal] = ACTIONS(1012), + [sym_true] = ACTIONS(1012), + [sym_false] = ACTIONS(1012), + [sym_character_literal] = ACTIONS(1010), + [anon_sym_DQUOTE] = ACTIONS(1012), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1010), + [sym_null_literal] = ACTIONS(1012), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_final] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1010), + [anon_sym_PLUS_PLUS] = ACTIONS(1010), + [anon_sym_DASH_DASH] = ACTIONS(1010), + [anon_sym_new] = ACTIONS(1012), + [anon_sym_class] = ACTIONS(1012), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_assert] = ACTIONS(1012), + [anon_sym_do] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_yield] = ACTIONS(1012), + [anon_sym_synchronized] = ACTIONS(1012), + [anon_sym_throw] = ACTIONS(1012), + [anon_sym_try] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_else] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_AT] = ACTIONS(1012), + [anon_sym_open] = ACTIONS(1012), + [anon_sym_module] = ACTIONS(1012), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_package] = ACTIONS(1012), + [anon_sym_import] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_public] = ACTIONS(1012), + [anon_sym_protected] = ACTIONS(1012), + [anon_sym_private] = ACTIONS(1012), + [anon_sym_abstract] = ACTIONS(1012), + [anon_sym_strictfp] = ACTIONS(1012), + [anon_sym_native] = ACTIONS(1012), + [anon_sym_transient] = ACTIONS(1012), + [anon_sym_volatile] = ACTIONS(1012), + [anon_sym_sealed] = ACTIONS(1012), + [anon_sym_non_DASHsealed] = ACTIONS(1010), + [anon_sym_record] = ACTIONS(1012), + [anon_sym_ATinterface] = ACTIONS(1010), + [anon_sym_interface] = ACTIONS(1012), + [anon_sym_byte] = ACTIONS(1012), + [anon_sym_short] = ACTIONS(1012), + [anon_sym_int] = ACTIONS(1012), + [anon_sym_long] = ACTIONS(1012), + [anon_sym_char] = ACTIONS(1012), + [anon_sym_float] = ACTIONS(1012), + [anon_sym_double] = ACTIONS(1012), + [sym_boolean_type] = ACTIONS(1012), + [sym_void_type] = ACTIONS(1012), + [sym_this] = ACTIONS(1012), + [sym_super] = ACTIONS(1012), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [341] = { + [ts_builtin_sym_end] = ACTIONS(1014), + [sym_identifier] = ACTIONS(1016), + [sym_decimal_integer_literal] = ACTIONS(1016), + [sym_hex_integer_literal] = ACTIONS(1016), + [sym_octal_integer_literal] = ACTIONS(1014), + [sym_binary_integer_literal] = ACTIONS(1014), + [sym_decimal_floating_point_literal] = ACTIONS(1014), + [sym_hex_floating_point_literal] = ACTIONS(1016), + [sym_true] = ACTIONS(1016), + [sym_false] = ACTIONS(1016), + [sym_character_literal] = ACTIONS(1014), + [anon_sym_DQUOTE] = ACTIONS(1016), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1014), + [sym_null_literal] = ACTIONS(1016), + [anon_sym_LPAREN] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_final] = ACTIONS(1016), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_TILDE] = ACTIONS(1014), + [anon_sym_PLUS_PLUS] = ACTIONS(1014), + [anon_sym_DASH_DASH] = ACTIONS(1014), + [anon_sym_new] = ACTIONS(1016), + [anon_sym_class] = ACTIONS(1016), + [anon_sym_switch] = ACTIONS(1016), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_case] = ACTIONS(1016), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_assert] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_break] = ACTIONS(1016), + [anon_sym_continue] = ACTIONS(1016), + [anon_sym_return] = ACTIONS(1016), + [anon_sym_yield] = ACTIONS(1016), + [anon_sym_synchronized] = ACTIONS(1016), + [anon_sym_throw] = ACTIONS(1016), + [anon_sym_try] = ACTIONS(1016), + [anon_sym_if] = ACTIONS(1016), + [anon_sym_else] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1016), + [anon_sym_AT] = ACTIONS(1016), + [anon_sym_open] = ACTIONS(1016), + [anon_sym_module] = ACTIONS(1016), + [anon_sym_static] = ACTIONS(1016), + [anon_sym_package] = ACTIONS(1016), + [anon_sym_import] = ACTIONS(1016), + [anon_sym_enum] = ACTIONS(1016), + [anon_sym_public] = ACTIONS(1016), + [anon_sym_protected] = ACTIONS(1016), + [anon_sym_private] = ACTIONS(1016), + [anon_sym_abstract] = ACTIONS(1016), + [anon_sym_strictfp] = ACTIONS(1016), + [anon_sym_native] = ACTIONS(1016), + [anon_sym_transient] = ACTIONS(1016), + [anon_sym_volatile] = ACTIONS(1016), + [anon_sym_sealed] = ACTIONS(1016), + [anon_sym_non_DASHsealed] = ACTIONS(1014), + [anon_sym_record] = ACTIONS(1016), + [anon_sym_ATinterface] = ACTIONS(1014), + [anon_sym_interface] = ACTIONS(1016), + [anon_sym_byte] = ACTIONS(1016), + [anon_sym_short] = ACTIONS(1016), + [anon_sym_int] = ACTIONS(1016), + [anon_sym_long] = ACTIONS(1016), + [anon_sym_char] = ACTIONS(1016), + [anon_sym_float] = ACTIONS(1016), + [anon_sym_double] = ACTIONS(1016), + [sym_boolean_type] = ACTIONS(1016), + [sym_void_type] = ACTIONS(1016), + [sym_this] = ACTIONS(1016), + [sym_super] = ACTIONS(1016), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [342] = { + [ts_builtin_sym_end] = ACTIONS(1018), + [sym_identifier] = ACTIONS(1020), + [sym_decimal_integer_literal] = ACTIONS(1020), + [sym_hex_integer_literal] = ACTIONS(1020), + [sym_octal_integer_literal] = ACTIONS(1018), + [sym_binary_integer_literal] = ACTIONS(1018), + [sym_decimal_floating_point_literal] = ACTIONS(1018), + [sym_hex_floating_point_literal] = ACTIONS(1020), + [sym_true] = ACTIONS(1020), + [sym_false] = ACTIONS(1020), + [sym_character_literal] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1020), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1018), + [sym_null_literal] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_final] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1018), + [anon_sym_TILDE] = ACTIONS(1018), + [anon_sym_PLUS_PLUS] = ACTIONS(1018), + [anon_sym_DASH_DASH] = ACTIONS(1018), + [anon_sym_new] = ACTIONS(1020), + [anon_sym_class] = ACTIONS(1020), + [anon_sym_switch] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1018), + [anon_sym_case] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_assert] = ACTIONS(1020), + [anon_sym_do] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_yield] = ACTIONS(1020), + [anon_sym_synchronized] = ACTIONS(1020), + [anon_sym_throw] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_else] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_AT] = ACTIONS(1020), + [anon_sym_open] = ACTIONS(1020), + [anon_sym_module] = ACTIONS(1020), + [anon_sym_static] = ACTIONS(1020), + [anon_sym_package] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(1020), + [anon_sym_enum] = ACTIONS(1020), + [anon_sym_public] = ACTIONS(1020), + [anon_sym_protected] = ACTIONS(1020), + [anon_sym_private] = ACTIONS(1020), + [anon_sym_abstract] = ACTIONS(1020), + [anon_sym_strictfp] = ACTIONS(1020), + [anon_sym_native] = ACTIONS(1020), + [anon_sym_transient] = ACTIONS(1020), + [anon_sym_volatile] = ACTIONS(1020), + [anon_sym_sealed] = ACTIONS(1020), + [anon_sym_non_DASHsealed] = ACTIONS(1018), + [anon_sym_record] = ACTIONS(1020), + [anon_sym_ATinterface] = ACTIONS(1018), + [anon_sym_interface] = ACTIONS(1020), + [anon_sym_byte] = ACTIONS(1020), + [anon_sym_short] = ACTIONS(1020), + [anon_sym_int] = ACTIONS(1020), + [anon_sym_long] = ACTIONS(1020), + [anon_sym_char] = ACTIONS(1020), + [anon_sym_float] = ACTIONS(1020), + [anon_sym_double] = ACTIONS(1020), + [sym_boolean_type] = ACTIONS(1020), + [sym_void_type] = ACTIONS(1020), + [sym_this] = ACTIONS(1020), + [sym_super] = ACTIONS(1020), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [343] = { + [ts_builtin_sym_end] = ACTIONS(1022), + [sym_identifier] = ACTIONS(1024), + [sym_decimal_integer_literal] = ACTIONS(1024), + [sym_hex_integer_literal] = ACTIONS(1024), + [sym_octal_integer_literal] = ACTIONS(1022), + [sym_binary_integer_literal] = ACTIONS(1022), + [sym_decimal_floating_point_literal] = ACTIONS(1022), + [sym_hex_floating_point_literal] = ACTIONS(1024), + [sym_true] = ACTIONS(1024), + [sym_false] = ACTIONS(1024), + [sym_character_literal] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1022), + [sym_null_literal] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_final] = ACTIONS(1024), + [anon_sym_BANG] = ACTIONS(1022), + [anon_sym_TILDE] = ACTIONS(1022), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_new] = ACTIONS(1024), + [anon_sym_class] = ACTIONS(1024), + [anon_sym_switch] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_case] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_assert] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_yield] = ACTIONS(1024), + [anon_sym_synchronized] = ACTIONS(1024), + [anon_sym_throw] = ACTIONS(1024), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_AT] = ACTIONS(1024), + [anon_sym_open] = ACTIONS(1024), + [anon_sym_module] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(1024), + [anon_sym_package] = ACTIONS(1024), + [anon_sym_import] = ACTIONS(1024), + [anon_sym_enum] = ACTIONS(1024), + [anon_sym_public] = ACTIONS(1024), + [anon_sym_protected] = ACTIONS(1024), + [anon_sym_private] = ACTIONS(1024), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_strictfp] = ACTIONS(1024), + [anon_sym_native] = ACTIONS(1024), + [anon_sym_transient] = ACTIONS(1024), + [anon_sym_volatile] = ACTIONS(1024), + [anon_sym_sealed] = ACTIONS(1024), + [anon_sym_non_DASHsealed] = ACTIONS(1022), + [anon_sym_record] = ACTIONS(1024), + [anon_sym_ATinterface] = ACTIONS(1022), + [anon_sym_interface] = ACTIONS(1024), + [anon_sym_byte] = ACTIONS(1024), + [anon_sym_short] = ACTIONS(1024), + [anon_sym_int] = ACTIONS(1024), + [anon_sym_long] = ACTIONS(1024), + [anon_sym_char] = ACTIONS(1024), + [anon_sym_float] = ACTIONS(1024), + [anon_sym_double] = ACTIONS(1024), + [sym_boolean_type] = ACTIONS(1024), + [sym_void_type] = ACTIONS(1024), + [sym_this] = ACTIONS(1024), + [sym_super] = ACTIONS(1024), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [344] = { + [ts_builtin_sym_end] = ACTIONS(1026), + [sym_identifier] = ACTIONS(1028), + [sym_decimal_integer_literal] = ACTIONS(1028), + [sym_hex_integer_literal] = ACTIONS(1028), + [sym_octal_integer_literal] = ACTIONS(1026), + [sym_binary_integer_literal] = ACTIONS(1026), + [sym_decimal_floating_point_literal] = ACTIONS(1026), + [sym_hex_floating_point_literal] = ACTIONS(1028), + [sym_true] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), + [sym_character_literal] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1028), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1026), + [sym_null_literal] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_final] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_TILDE] = ACTIONS(1026), + [anon_sym_PLUS_PLUS] = ACTIONS(1026), + [anon_sym_DASH_DASH] = ACTIONS(1026), + [anon_sym_new] = ACTIONS(1028), + [anon_sym_class] = ACTIONS(1028), + [anon_sym_switch] = ACTIONS(1028), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_RBRACE] = ACTIONS(1026), + [anon_sym_case] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_assert] = ACTIONS(1028), + [anon_sym_do] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_yield] = ACTIONS(1028), + [anon_sym_synchronized] = ACTIONS(1028), + [anon_sym_throw] = ACTIONS(1028), + [anon_sym_try] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_else] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_AT] = ACTIONS(1028), + [anon_sym_open] = ACTIONS(1028), + [anon_sym_module] = ACTIONS(1028), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_package] = ACTIONS(1028), + [anon_sym_import] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [anon_sym_public] = ACTIONS(1028), + [anon_sym_protected] = ACTIONS(1028), + [anon_sym_private] = ACTIONS(1028), + [anon_sym_abstract] = ACTIONS(1028), + [anon_sym_strictfp] = ACTIONS(1028), + [anon_sym_native] = ACTIONS(1028), + [anon_sym_transient] = ACTIONS(1028), + [anon_sym_volatile] = ACTIONS(1028), + [anon_sym_sealed] = ACTIONS(1028), + [anon_sym_non_DASHsealed] = ACTIONS(1026), + [anon_sym_record] = ACTIONS(1028), + [anon_sym_ATinterface] = ACTIONS(1026), + [anon_sym_interface] = ACTIONS(1028), + [anon_sym_byte] = ACTIONS(1028), + [anon_sym_short] = ACTIONS(1028), + [anon_sym_int] = ACTIONS(1028), + [anon_sym_long] = ACTIONS(1028), + [anon_sym_char] = ACTIONS(1028), + [anon_sym_float] = ACTIONS(1028), + [anon_sym_double] = ACTIONS(1028), + [sym_boolean_type] = ACTIONS(1028), + [sym_void_type] = ACTIONS(1028), + [sym_this] = ACTIONS(1028), + [sym_super] = ACTIONS(1028), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [345] = { + [ts_builtin_sym_end] = ACTIONS(1030), + [sym_identifier] = ACTIONS(1032), + [sym_decimal_integer_literal] = ACTIONS(1032), + [sym_hex_integer_literal] = ACTIONS(1032), + [sym_octal_integer_literal] = ACTIONS(1030), + [sym_binary_integer_literal] = ACTIONS(1030), + [sym_decimal_floating_point_literal] = ACTIONS(1030), + [sym_hex_floating_point_literal] = ACTIONS(1032), + [sym_true] = ACTIONS(1032), + [sym_false] = ACTIONS(1032), + [sym_character_literal] = ACTIONS(1030), + [anon_sym_DQUOTE] = ACTIONS(1032), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1030), + [sym_null_literal] = ACTIONS(1032), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_final] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1030), + [anon_sym_TILDE] = ACTIONS(1030), + [anon_sym_PLUS_PLUS] = ACTIONS(1030), + [anon_sym_DASH_DASH] = ACTIONS(1030), + [anon_sym_new] = ACTIONS(1032), + [anon_sym_class] = ACTIONS(1032), + [anon_sym_switch] = ACTIONS(1032), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_case] = ACTIONS(1032), + [anon_sym_default] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_assert] = ACTIONS(1032), + [anon_sym_do] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_yield] = ACTIONS(1032), + [anon_sym_synchronized] = ACTIONS(1032), + [anon_sym_throw] = ACTIONS(1032), + [anon_sym_try] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_else] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(1032), + [anon_sym_open] = ACTIONS(1032), + [anon_sym_module] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_package] = ACTIONS(1032), + [anon_sym_import] = ACTIONS(1032), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_public] = ACTIONS(1032), + [anon_sym_protected] = ACTIONS(1032), + [anon_sym_private] = ACTIONS(1032), + [anon_sym_abstract] = ACTIONS(1032), + [anon_sym_strictfp] = ACTIONS(1032), + [anon_sym_native] = ACTIONS(1032), + [anon_sym_transient] = ACTIONS(1032), + [anon_sym_volatile] = ACTIONS(1032), + [anon_sym_sealed] = ACTIONS(1032), + [anon_sym_non_DASHsealed] = ACTIONS(1030), + [anon_sym_record] = ACTIONS(1032), + [anon_sym_ATinterface] = ACTIONS(1030), + [anon_sym_interface] = ACTIONS(1032), + [anon_sym_byte] = ACTIONS(1032), + [anon_sym_short] = ACTIONS(1032), + [anon_sym_int] = ACTIONS(1032), + [anon_sym_long] = ACTIONS(1032), + [anon_sym_char] = ACTIONS(1032), + [anon_sym_float] = ACTIONS(1032), + [anon_sym_double] = ACTIONS(1032), + [sym_boolean_type] = ACTIONS(1032), + [sym_void_type] = ACTIONS(1032), + [sym_this] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [346] = { + [ts_builtin_sym_end] = ACTIONS(1034), + [sym_identifier] = ACTIONS(1036), + [sym_decimal_integer_literal] = ACTIONS(1036), + [sym_hex_integer_literal] = ACTIONS(1036), + [sym_octal_integer_literal] = ACTIONS(1034), + [sym_binary_integer_literal] = ACTIONS(1034), + [sym_decimal_floating_point_literal] = ACTIONS(1034), + [sym_hex_floating_point_literal] = ACTIONS(1036), + [sym_true] = ACTIONS(1036), + [sym_false] = ACTIONS(1036), + [sym_character_literal] = ACTIONS(1034), + [anon_sym_DQUOTE] = ACTIONS(1036), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1034), + [sym_null_literal] = ACTIONS(1036), + [anon_sym_LPAREN] = ACTIONS(1034), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_final] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_TILDE] = ACTIONS(1034), + [anon_sym_PLUS_PLUS] = ACTIONS(1034), + [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1036), + [anon_sym_class] = ACTIONS(1036), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_case] = ACTIONS(1036), + [anon_sym_default] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1034), + [anon_sym_assert] = ACTIONS(1036), + [anon_sym_do] = ACTIONS(1036), + [anon_sym_while] = ACTIONS(1036), + [anon_sym_break] = ACTIONS(1036), + [anon_sym_continue] = ACTIONS(1036), + [anon_sym_return] = ACTIONS(1036), + [anon_sym_yield] = ACTIONS(1036), + [anon_sym_synchronized] = ACTIONS(1036), + [anon_sym_throw] = ACTIONS(1036), + [anon_sym_try] = ACTIONS(1036), + [anon_sym_if] = ACTIONS(1036), + [anon_sym_else] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1036), + [anon_sym_AT] = ACTIONS(1036), + [anon_sym_open] = ACTIONS(1036), + [anon_sym_module] = ACTIONS(1036), + [anon_sym_static] = ACTIONS(1036), + [anon_sym_package] = ACTIONS(1036), + [anon_sym_import] = ACTIONS(1036), + [anon_sym_enum] = ACTIONS(1036), + [anon_sym_public] = ACTIONS(1036), + [anon_sym_protected] = ACTIONS(1036), + [anon_sym_private] = ACTIONS(1036), + [anon_sym_abstract] = ACTIONS(1036), + [anon_sym_strictfp] = ACTIONS(1036), + [anon_sym_native] = ACTIONS(1036), + [anon_sym_transient] = ACTIONS(1036), + [anon_sym_volatile] = ACTIONS(1036), + [anon_sym_sealed] = ACTIONS(1036), + [anon_sym_non_DASHsealed] = ACTIONS(1034), + [anon_sym_record] = ACTIONS(1036), + [anon_sym_ATinterface] = ACTIONS(1034), + [anon_sym_interface] = ACTIONS(1036), + [anon_sym_byte] = ACTIONS(1036), + [anon_sym_short] = ACTIONS(1036), + [anon_sym_int] = ACTIONS(1036), + [anon_sym_long] = ACTIONS(1036), + [anon_sym_char] = ACTIONS(1036), + [anon_sym_float] = ACTIONS(1036), + [anon_sym_double] = ACTIONS(1036), + [sym_boolean_type] = ACTIONS(1036), + [sym_void_type] = ACTIONS(1036), + [sym_this] = ACTIONS(1036), + [sym_super] = ACTIONS(1036), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [347] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_primary_expression] = STATE(1025), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(883), + [sym_array_access] = STATE(468), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_resource] = STATE(1115), + [sym__annotation] = STATE(610), + [sym_marker_annotation] = STATE(610), + [sym_annotation] = STATE(610), + [sym_modifiers] = STATE(700), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(721), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [aux_sym_modifiers_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(930), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_final] = ACTIONS(295), + [anon_sym_new] = ACTIONS(936), + [anon_sym_default] = ACTIONS(295), + [anon_sym_synchronized] = ACTIONS(295), + [anon_sym_AT] = ACTIONS(297), + [anon_sym_open] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_static] = ACTIONS(295), + [anon_sym_public] = ACTIONS(295), + [anon_sym_protected] = ACTIONS(295), + [anon_sym_private] = ACTIONS(295), + [anon_sym_abstract] = ACTIONS(295), + [anon_sym_strictfp] = ACTIONS(295), + [anon_sym_native] = ACTIONS(295), + [anon_sym_transient] = ACTIONS(295), + [anon_sym_volatile] = ACTIONS(295), + [anon_sym_sealed] = ACTIONS(295), + [anon_sym_non_DASHsealed] = ACTIONS(301), + [anon_sym_record] = ACTIONS(938), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [348] = { + [sym__literal] = STATE(468), + [sym_string_literal] = STATE(463), + [sym__string_literal] = STATE(472), + [sym__multiline_string_literal] = STATE(472), + [sym_primary_expression] = STATE(1025), + [sym_array_creation_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_class_literal] = STATE(468), + [sym_object_creation_expression] = STATE(468), + [sym__unqualified_object_creation_expression] = STATE(475), + [sym_field_access] = STATE(883), + [sym_array_access] = STATE(468), + [sym_method_invocation] = STATE(468), + [sym_method_reference] = STATE(468), + [sym_resource] = STATE(1026), + [sym__annotation] = STATE(610), + [sym_marker_annotation] = STATE(610), + [sym_annotation] = STATE(610), + [sym_modifiers] = STATE(700), + [sym__type] = STATE(1240), + [sym__unannotated_type] = STATE(721), + [sym_annotated_type] = STATE(776), + [sym_scoped_type_identifier] = STATE(728), + [sym_generic_type] = STATE(752), + [sym_array_type] = STATE(687), + [sym_integral_type] = STATE(687), + [sym_floating_point_type] = STATE(687), + [aux_sym_array_creation_expression_repeat1] = STATE(674), + [aux_sym_modifiers_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(930), + [sym_decimal_integer_literal] = ACTIONS(9), + [sym_hex_integer_literal] = ACTIONS(9), + [sym_octal_integer_literal] = ACTIONS(11), + [sym_binary_integer_literal] = ACTIONS(11), + [sym_decimal_floating_point_literal] = ACTIONS(11), + [sym_hex_floating_point_literal] = ACTIONS(9), + [sym_true] = ACTIONS(9), + [sym_false] = ACTIONS(9), + [sym_character_literal] = ACTIONS(11), + [anon_sym_DQUOTE] = ACTIONS(13), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(15), + [sym_null_literal] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_final] = ACTIONS(295), + [anon_sym_new] = ACTIONS(936), + [anon_sym_default] = ACTIONS(295), + [anon_sym_synchronized] = ACTIONS(295), + [anon_sym_AT] = ACTIONS(297), + [anon_sym_open] = ACTIONS(938), + [anon_sym_module] = ACTIONS(938), + [anon_sym_static] = ACTIONS(295), + [anon_sym_public] = ACTIONS(295), + [anon_sym_protected] = ACTIONS(295), + [anon_sym_private] = ACTIONS(295), + [anon_sym_abstract] = ACTIONS(295), + [anon_sym_strictfp] = ACTIONS(295), + [anon_sym_native] = ACTIONS(295), + [anon_sym_transient] = ACTIONS(295), + [anon_sym_volatile] = ACTIONS(295), + [anon_sym_sealed] = ACTIONS(295), + [anon_sym_non_DASHsealed] = ACTIONS(301), + [anon_sym_record] = ACTIONS(938), + [anon_sym_byte] = ACTIONS(81), + [anon_sym_short] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_long] = ACTIONS(81), + [anon_sym_char] = ACTIONS(81), + [anon_sym_float] = ACTIONS(83), + [anon_sym_double] = ACTIONS(83), + [sym_boolean_type] = ACTIONS(85), + [sym_void_type] = ACTIONS(85), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [349] = { + [sym_identifier] = ACTIONS(912), + [sym_decimal_integer_literal] = ACTIONS(912), + [sym_hex_integer_literal] = ACTIONS(912), + [sym_octal_integer_literal] = ACTIONS(914), + [sym_binary_integer_literal] = ACTIONS(914), + [sym_decimal_floating_point_literal] = ACTIONS(914), + [sym_hex_floating_point_literal] = ACTIONS(912), + [sym_true] = ACTIONS(912), + [sym_false] = ACTIONS(912), + [sym_character_literal] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(912), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(914), + [sym_null_literal] = ACTIONS(912), + [anon_sym_LPAREN] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(912), + [anon_sym_final] = ACTIONS(912), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_PLUS_PLUS] = ACTIONS(914), + [anon_sym_DASH_DASH] = ACTIONS(914), + [anon_sym_new] = ACTIONS(912), + [anon_sym_class] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(914), + [anon_sym_RBRACE] = ACTIONS(914), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), + [anon_sym_SEMI] = ACTIONS(914), + [anon_sym_assert] = ACTIONS(912), + [anon_sym_do] = ACTIONS(912), + [anon_sym_while] = ACTIONS(912), + [anon_sym_break] = ACTIONS(912), + [anon_sym_continue] = ACTIONS(912), + [anon_sym_return] = ACTIONS(912), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_synchronized] = ACTIONS(912), + [anon_sym_throw] = ACTIONS(912), + [anon_sym_try] = ACTIONS(912), + [anon_sym_if] = ACTIONS(912), + [anon_sym_for] = ACTIONS(912), + [anon_sym_AT] = ACTIONS(912), + [anon_sym_open] = ACTIONS(912), + [anon_sym_module] = ACTIONS(912), + [anon_sym_static] = ACTIONS(912), + [anon_sym_package] = ACTIONS(912), + [anon_sym_import] = ACTIONS(912), + [anon_sym_enum] = ACTIONS(912), + [anon_sym_public] = ACTIONS(912), + [anon_sym_protected] = ACTIONS(912), + [anon_sym_private] = ACTIONS(912), + [anon_sym_abstract] = ACTIONS(912), + [anon_sym_strictfp] = ACTIONS(912), + [anon_sym_native] = ACTIONS(912), + [anon_sym_transient] = ACTIONS(912), + [anon_sym_volatile] = ACTIONS(912), + [anon_sym_sealed] = ACTIONS(912), + [anon_sym_non_DASHsealed] = ACTIONS(914), + [anon_sym_record] = ACTIONS(912), + [anon_sym_ATinterface] = ACTIONS(914), + [anon_sym_interface] = ACTIONS(912), + [anon_sym_byte] = ACTIONS(912), + [anon_sym_short] = ACTIONS(912), + [anon_sym_int] = ACTIONS(912), + [anon_sym_long] = ACTIONS(912), + [anon_sym_char] = ACTIONS(912), + [anon_sym_float] = ACTIONS(912), + [anon_sym_double] = ACTIONS(912), + [sym_boolean_type] = ACTIONS(912), + [sym_void_type] = ACTIONS(912), + [sym_this] = ACTIONS(912), + [sym_super] = ACTIONS(912), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [350] = { + [sym_identifier] = ACTIONS(1038), + [sym_decimal_integer_literal] = ACTIONS(1038), + [sym_hex_integer_literal] = ACTIONS(1038), + [sym_octal_integer_literal] = ACTIONS(1040), + [sym_binary_integer_literal] = ACTIONS(1040), + [sym_decimal_floating_point_literal] = ACTIONS(1040), + [sym_hex_floating_point_literal] = ACTIONS(1038), + [sym_true] = ACTIONS(1038), + [sym_false] = ACTIONS(1038), + [sym_character_literal] = ACTIONS(1040), + [anon_sym_DQUOTE] = ACTIONS(1038), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1040), + [sym_null_literal] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_final] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1040), + [anon_sym_TILDE] = ACTIONS(1040), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1040), + [anon_sym_new] = ACTIONS(1038), + [anon_sym_class] = ACTIONS(1038), + [anon_sym_switch] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_default] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_assert] = ACTIONS(1038), + [anon_sym_do] = ACTIONS(1038), + [anon_sym_while] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(1038), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_return] = ACTIONS(1038), + [anon_sym_yield] = ACTIONS(1038), + [anon_sym_synchronized] = ACTIONS(1038), + [anon_sym_throw] = ACTIONS(1038), + [anon_sym_try] = ACTIONS(1038), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_for] = ACTIONS(1038), + [anon_sym_AT] = ACTIONS(1038), + [anon_sym_open] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_package] = ACTIONS(1038), + [anon_sym_import] = ACTIONS(1038), + [anon_sym_enum] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_abstract] = ACTIONS(1038), + [anon_sym_strictfp] = ACTIONS(1038), + [anon_sym_native] = ACTIONS(1038), + [anon_sym_transient] = ACTIONS(1038), + [anon_sym_volatile] = ACTIONS(1038), + [anon_sym_sealed] = ACTIONS(1038), + [anon_sym_non_DASHsealed] = ACTIONS(1040), + [anon_sym_record] = ACTIONS(1038), + [anon_sym_ATinterface] = ACTIONS(1040), + [anon_sym_interface] = ACTIONS(1038), + [anon_sym_byte] = ACTIONS(1038), + [anon_sym_short] = ACTIONS(1038), + [anon_sym_int] = ACTIONS(1038), + [anon_sym_long] = ACTIONS(1038), + [anon_sym_char] = ACTIONS(1038), + [anon_sym_float] = ACTIONS(1038), + [anon_sym_double] = ACTIONS(1038), + [sym_boolean_type] = ACTIONS(1038), + [sym_void_type] = ACTIONS(1038), + [sym_this] = ACTIONS(1038), + [sym_super] = ACTIONS(1038), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [351] = { + [sym_identifier] = ACTIONS(1042), + [sym_decimal_integer_literal] = ACTIONS(1042), + [sym_hex_integer_literal] = ACTIONS(1042), + [sym_octal_integer_literal] = ACTIONS(1044), + [sym_binary_integer_literal] = ACTIONS(1044), + [sym_decimal_floating_point_literal] = ACTIONS(1044), + [sym_hex_floating_point_literal] = ACTIONS(1042), + [sym_true] = ACTIONS(1042), + [sym_false] = ACTIONS(1042), + [sym_character_literal] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1042), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1044), + [sym_null_literal] = ACTIONS(1042), + [anon_sym_LPAREN] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_final] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1044), + [anon_sym_TILDE] = ACTIONS(1044), + [anon_sym_PLUS_PLUS] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1044), + [anon_sym_new] = ACTIONS(1042), + [anon_sym_class] = ACTIONS(1042), + [anon_sym_switch] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_default] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1044), + [anon_sym_assert] = ACTIONS(1042), + [anon_sym_do] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [anon_sym_continue] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1042), + [anon_sym_yield] = ACTIONS(1042), + [anon_sym_synchronized] = ACTIONS(1042), + [anon_sym_throw] = ACTIONS(1042), + [anon_sym_try] = ACTIONS(1042), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_AT] = ACTIONS(1042), + [anon_sym_open] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1042), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_package] = ACTIONS(1042), + [anon_sym_import] = ACTIONS(1042), + [anon_sym_enum] = ACTIONS(1042), + [anon_sym_public] = ACTIONS(1042), + [anon_sym_protected] = ACTIONS(1042), + [anon_sym_private] = ACTIONS(1042), + [anon_sym_abstract] = ACTIONS(1042), + [anon_sym_strictfp] = ACTIONS(1042), + [anon_sym_native] = ACTIONS(1042), + [anon_sym_transient] = ACTIONS(1042), + [anon_sym_volatile] = ACTIONS(1042), + [anon_sym_sealed] = ACTIONS(1042), + [anon_sym_non_DASHsealed] = ACTIONS(1044), + [anon_sym_record] = ACTIONS(1042), + [anon_sym_ATinterface] = ACTIONS(1044), + [anon_sym_interface] = ACTIONS(1042), + [anon_sym_byte] = ACTIONS(1042), + [anon_sym_short] = ACTIONS(1042), + [anon_sym_int] = ACTIONS(1042), + [anon_sym_long] = ACTIONS(1042), + [anon_sym_char] = ACTIONS(1042), + [anon_sym_float] = ACTIONS(1042), + [anon_sym_double] = ACTIONS(1042), + [sym_boolean_type] = ACTIONS(1042), + [sym_void_type] = ACTIONS(1042), + [sym_this] = ACTIONS(1042), + [sym_super] = ACTIONS(1042), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [352] = { + [sym_identifier] = ACTIONS(1046), + [sym_decimal_integer_literal] = ACTIONS(1046), + [sym_hex_integer_literal] = ACTIONS(1046), + [sym_octal_integer_literal] = ACTIONS(1048), + [sym_binary_integer_literal] = ACTIONS(1048), + [sym_decimal_floating_point_literal] = ACTIONS(1048), + [sym_hex_floating_point_literal] = ACTIONS(1046), + [sym_true] = ACTIONS(1046), + [sym_false] = ACTIONS(1046), + [sym_character_literal] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1046), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1048), + [sym_null_literal] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1046), + [anon_sym_final] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1046), + [anon_sym_class] = ACTIONS(1046), + [anon_sym_switch] = ACTIONS(1046), + [anon_sym_LBRACE] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1048), + [anon_sym_default] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1048), + [anon_sym_assert] = ACTIONS(1046), + [anon_sym_do] = ACTIONS(1046), + [anon_sym_while] = ACTIONS(1046), + [anon_sym_break] = ACTIONS(1046), + [anon_sym_continue] = ACTIONS(1046), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_yield] = ACTIONS(1046), + [anon_sym_synchronized] = ACTIONS(1046), + [anon_sym_throw] = ACTIONS(1046), + [anon_sym_try] = ACTIONS(1046), + [anon_sym_if] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1046), + [anon_sym_AT] = ACTIONS(1046), + [anon_sym_open] = ACTIONS(1046), + [anon_sym_module] = ACTIONS(1046), + [anon_sym_static] = ACTIONS(1046), + [anon_sym_package] = ACTIONS(1046), + [anon_sym_import] = ACTIONS(1046), + [anon_sym_enum] = ACTIONS(1046), + [anon_sym_public] = ACTIONS(1046), + [anon_sym_protected] = ACTIONS(1046), + [anon_sym_private] = ACTIONS(1046), + [anon_sym_abstract] = ACTIONS(1046), + [anon_sym_strictfp] = ACTIONS(1046), + [anon_sym_native] = ACTIONS(1046), + [anon_sym_transient] = ACTIONS(1046), + [anon_sym_volatile] = ACTIONS(1046), + [anon_sym_sealed] = ACTIONS(1046), + [anon_sym_non_DASHsealed] = ACTIONS(1048), + [anon_sym_record] = ACTIONS(1046), + [anon_sym_ATinterface] = ACTIONS(1048), + [anon_sym_interface] = ACTIONS(1046), + [anon_sym_byte] = ACTIONS(1046), + [anon_sym_short] = ACTIONS(1046), + [anon_sym_int] = ACTIONS(1046), + [anon_sym_long] = ACTIONS(1046), + [anon_sym_char] = ACTIONS(1046), + [anon_sym_float] = ACTIONS(1046), + [anon_sym_double] = ACTIONS(1046), + [sym_boolean_type] = ACTIONS(1046), + [sym_void_type] = ACTIONS(1046), + [sym_this] = ACTIONS(1046), + [sym_super] = ACTIONS(1046), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, + [353] = { + [sym_identifier] = ACTIONS(1050), + [sym_decimal_integer_literal] = ACTIONS(1050), + [sym_hex_integer_literal] = ACTIONS(1050), + [sym_octal_integer_literal] = ACTIONS(1052), + [sym_binary_integer_literal] = ACTIONS(1052), + [sym_decimal_floating_point_literal] = ACTIONS(1052), + [sym_hex_floating_point_literal] = ACTIONS(1050), + [sym_true] = ACTIONS(1050), + [sym_false] = ACTIONS(1050), + [sym_character_literal] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1050), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1052), + [sym_null_literal] = ACTIONS(1050), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_final] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1052), + [anon_sym_PLUS_PLUS] = ACTIONS(1052), + [anon_sym_DASH_DASH] = ACTIONS(1052), + [anon_sym_new] = ACTIONS(1050), + [anon_sym_class] = ACTIONS(1050), + [anon_sym_switch] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1052), + [anon_sym_default] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_assert] = ACTIONS(1050), + [anon_sym_do] = ACTIONS(1050), + [anon_sym_while] = ACTIONS(1050), + [anon_sym_break] = ACTIONS(1050), + [anon_sym_continue] = ACTIONS(1050), + [anon_sym_return] = ACTIONS(1050), + [anon_sym_yield] = ACTIONS(1050), + [anon_sym_synchronized] = ACTIONS(1050), + [anon_sym_throw] = ACTIONS(1050), + [anon_sym_try] = ACTIONS(1050), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_AT] = ACTIONS(1050), + [anon_sym_open] = ACTIONS(1050), + [anon_sym_module] = ACTIONS(1050), + [anon_sym_static] = ACTIONS(1050), + [anon_sym_package] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(1050), + [anon_sym_enum] = ACTIONS(1050), + [anon_sym_public] = ACTIONS(1050), + [anon_sym_protected] = ACTIONS(1050), + [anon_sym_private] = ACTIONS(1050), + [anon_sym_abstract] = ACTIONS(1050), + [anon_sym_strictfp] = ACTIONS(1050), + [anon_sym_native] = ACTIONS(1050), + [anon_sym_transient] = ACTIONS(1050), + [anon_sym_volatile] = ACTIONS(1050), + [anon_sym_sealed] = ACTIONS(1050), + [anon_sym_non_DASHsealed] = ACTIONS(1052), + [anon_sym_record] = ACTIONS(1050), + [anon_sym_ATinterface] = ACTIONS(1052), + [anon_sym_interface] = ACTIONS(1050), + [anon_sym_byte] = ACTIONS(1050), + [anon_sym_short] = ACTIONS(1050), + [anon_sym_int] = ACTIONS(1050), + [anon_sym_long] = ACTIONS(1050), + [anon_sym_char] = ACTIONS(1050), + [anon_sym_float] = ACTIONS(1050), + [anon_sym_double] = ACTIONS(1050), + [sym_boolean_type] = ACTIONS(1050), + [sym_void_type] = ACTIONS(1050), + [sym_this] = ACTIONS(1050), + [sym_super] = ACTIONS(1050), + [sym_line_comment] = ACTIONS(3), + [sym_block_comment] = ACTIONS(3), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 28, + ACTIONS(1054), 1, + sym_identifier, + ACTIONS(1057), 1, + anon_sym_LT, + ACTIONS(1063), 1, + anon_sym_class, + ACTIONS(1066), 1, + anon_sym_LBRACE, + ACTIONS(1069), 1, + anon_sym_RBRACE, + ACTIONS(1071), 1, + anon_sym_SEMI, + ACTIONS(1074), 1, + anon_sym_AT, + ACTIONS(1077), 1, + anon_sym_static, + ACTIONS(1080), 1, + anon_sym_enum, + ACTIONS(1083), 1, + anon_sym_non_DASHsealed, + ACTIONS(1086), 1, + anon_sym_record, + ACTIONS(1089), 1, + anon_sym_ATinterface, + ACTIONS(1092), 1, + anon_sym_interface, + STATE(608), 1, + sym_modifiers, + STATE(661), 1, + sym_type_parameters, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, + sym_generic_type, + STATE(701), 1, + sym__unannotated_type, + STATE(962), 1, + sym__constructor_declarator, + STATE(1057), 1, + sym__method_header, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1098), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(1101), 2, + sym_boolean_type, + sym_void_type, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(428), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1095), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + ACTIONS(1060), 12, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + STATE(354), 12, + sym_block, + sym_enum_declaration, + sym_class_declaration, + sym_static_initializer, + sym_constructor_declaration, + sym_field_declaration, + sym_record_declaration, + sym_annotation_type_declaration, + sym_interface_declaration, + sym_method_declaration, + sym_compact_constructor_declaration, + aux_sym_enum_body_declarations_repeat1, + [119] = 28, + ACTIONS(29), 1, + anon_sym_class, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(61), 1, + anon_sym_AT, + ACTIONS(71), 1, + anon_sym_enum, + ACTIONS(73), 1, + anon_sym_non_DASHsealed, + ACTIONS(77), 1, + anon_sym_ATinterface, + ACTIONS(79), 1, + anon_sym_interface, + ACTIONS(1104), 1, + sym_identifier, + ACTIONS(1106), 1, + anon_sym_LT, + ACTIONS(1108), 1, + anon_sym_RBRACE, + ACTIONS(1110), 1, + anon_sym_SEMI, + ACTIONS(1112), 1, + anon_sym_static, + ACTIONS(1114), 1, + anon_sym_record, + STATE(608), 1, + sym_modifiers, + STATE(661), 1, + sym_type_parameters, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, + sym_generic_type, + STATE(701), 1, + sym__unannotated_type, + STATE(962), 1, + sym__constructor_declarator, + STATE(1057), 1, + sym__method_header, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(85), 2, + sym_boolean_type, + sym_void_type, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(428), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(81), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + ACTIONS(21), 12, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + STATE(354), 12, + sym_block, + sym_enum_declaration, + sym_class_declaration, + sym_static_initializer, + sym_constructor_declaration, + sym_field_declaration, + sym_record_declaration, + sym_annotation_type_declaration, + sym_interface_declaration, + sym_method_declaration, + sym_compact_constructor_declaration, + aux_sym_enum_body_declarations_repeat1, + [238] = 28, + ACTIONS(29), 1, + anon_sym_class, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(61), 1, + anon_sym_AT, + ACTIONS(71), 1, + anon_sym_enum, + ACTIONS(73), 1, + anon_sym_non_DASHsealed, + ACTIONS(77), 1, + anon_sym_ATinterface, + ACTIONS(79), 1, + anon_sym_interface, + ACTIONS(1104), 1, + sym_identifier, + ACTIONS(1106), 1, + anon_sym_LT, + ACTIONS(1112), 1, + anon_sym_static, + ACTIONS(1114), 1, + anon_sym_record, + ACTIONS(1116), 1, + anon_sym_RBRACE, + ACTIONS(1118), 1, + anon_sym_SEMI, + STATE(608), 1, + sym_modifiers, + STATE(661), 1, + sym_type_parameters, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, + sym_generic_type, + STATE(701), 1, + sym__unannotated_type, + STATE(962), 1, + sym__constructor_declarator, + STATE(1057), 1, + sym__method_header, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(85), 2, + sym_boolean_type, + sym_void_type, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(428), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(81), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + ACTIONS(21), 12, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + STATE(355), 12, + sym_block, + sym_enum_declaration, + sym_class_declaration, + sym_static_initializer, + sym_constructor_declaration, + sym_field_declaration, + sym_record_declaration, + sym_annotation_type_declaration, + sym_interface_declaration, + sym_method_declaration, + sym_compact_constructor_declaration, + aux_sym_enum_body_declarations_repeat1, + [357] = 28, + ACTIONS(29), 1, + anon_sym_class, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(61), 1, + anon_sym_AT, + ACTIONS(71), 1, + anon_sym_enum, + ACTIONS(73), 1, + anon_sym_non_DASHsealed, + ACTIONS(77), 1, + anon_sym_ATinterface, + ACTIONS(79), 1, + anon_sym_interface, + ACTIONS(1104), 1, + sym_identifier, + ACTIONS(1106), 1, + anon_sym_LT, + ACTIONS(1110), 1, + anon_sym_SEMI, + ACTIONS(1112), 1, + anon_sym_static, + ACTIONS(1114), 1, + anon_sym_record, + ACTIONS(1120), 1, + anon_sym_RBRACE, + STATE(608), 1, + sym_modifiers, + STATE(661), 1, + sym_type_parameters, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, + sym_generic_type, + STATE(701), 1, + sym__unannotated_type, + STATE(962), 1, + sym__constructor_declarator, + STATE(1057), 1, + sym__method_header, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(85), 2, + sym_boolean_type, + sym_void_type, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(428), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(81), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + ACTIONS(21), 12, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + STATE(354), 12, + sym_block, + sym_enum_declaration, + sym_class_declaration, + sym_static_initializer, + sym_constructor_declaration, + sym_field_declaration, + sym_record_declaration, + sym_annotation_type_declaration, + sym_interface_declaration, + sym_method_declaration, + sym_compact_constructor_declaration, + aux_sym_enum_body_declarations_repeat1, + [476] = 28, + ACTIONS(29), 1, + anon_sym_class, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(61), 1, + anon_sym_AT, + ACTIONS(71), 1, + anon_sym_enum, + ACTIONS(73), 1, + anon_sym_non_DASHsealed, + ACTIONS(77), 1, + anon_sym_ATinterface, + ACTIONS(79), 1, + anon_sym_interface, + ACTIONS(1104), 1, + sym_identifier, + ACTIONS(1106), 1, + anon_sym_LT, + ACTIONS(1112), 1, + anon_sym_static, + ACTIONS(1114), 1, + anon_sym_record, + ACTIONS(1122), 1, + anon_sym_RBRACE, + ACTIONS(1124), 1, + anon_sym_SEMI, + STATE(608), 1, + sym_modifiers, + STATE(661), 1, + sym_type_parameters, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, + sym_generic_type, + STATE(701), 1, + sym__unannotated_type, + STATE(962), 1, + sym__constructor_declarator, + STATE(1057), 1, + sym__method_header, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(85), 2, + sym_boolean_type, + sym_void_type, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(428), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(81), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + ACTIONS(21), 12, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + STATE(357), 12, + sym_block, + sym_enum_declaration, + sym_class_declaration, + sym_static_initializer, + sym_constructor_declaration, + sym_field_declaration, + sym_record_declaration, + sym_annotation_type_declaration, + sym_interface_declaration, + sym_method_declaration, + sym_compact_constructor_declaration, + aux_sym_enum_body_declarations_repeat1, + [595] = 25, + ACTIONS(1126), 1, + sym_identifier, + ACTIONS(1129), 1, + anon_sym_LT, + ACTIONS(1135), 1, + anon_sym_class, + ACTIONS(1138), 1, + anon_sym_RBRACE, + ACTIONS(1140), 1, + anon_sym_SEMI, + ACTIONS(1143), 1, + anon_sym_AT, + ACTIONS(1146), 1, + anon_sym_enum, + ACTIONS(1149), 1, + anon_sym_non_DASHsealed, + ACTIONS(1152), 1, + anon_sym_record, + ACTIONS(1155), 1, + anon_sym_ATinterface, + ACTIONS(1158), 1, + anon_sym_interface, + STATE(619), 1, + sym_modifiers, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(672), 1, + sym_type_parameters, + STATE(681), 1, + sym_generic_type, + STATE(703), 1, + sym__unannotated_type, + STATE(1057), 1, + sym__method_header, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1164), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(1167), 2, + sym_boolean_type, + sym_void_type, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(428), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1161), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + STATE(359), 8, + sym_enum_declaration, + sym_class_declaration, + sym_record_declaration, + sym_annotation_type_declaration, + sym_interface_declaration, + sym_constant_declaration, + sym_method_declaration, + aux_sym_interface_body_repeat1, + ACTIONS(1132), 13, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [702] = 25, + ACTIONS(29), 1, + anon_sym_class, + ACTIONS(61), 1, + anon_sym_AT, + ACTIONS(71), 1, + anon_sym_enum, + ACTIONS(73), 1, + anon_sym_non_DASHsealed, + ACTIONS(77), 1, + anon_sym_ATinterface, + ACTIONS(79), 1, + anon_sym_interface, + ACTIONS(1106), 1, + anon_sym_LT, + ACTIONS(1114), 1, + anon_sym_record, + ACTIONS(1170), 1, + sym_identifier, + ACTIONS(1172), 1, + anon_sym_RBRACE, + ACTIONS(1174), 1, + anon_sym_SEMI, + STATE(619), 1, + sym_modifiers, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(672), 1, + sym_type_parameters, + STATE(681), 1, + sym_generic_type, + STATE(703), 1, + sym__unannotated_type, + STATE(1057), 1, + sym__method_header, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(85), 2, + sym_boolean_type, + sym_void_type, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(428), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(81), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + STATE(361), 8, + sym_enum_declaration, + sym_class_declaration, + sym_record_declaration, + sym_annotation_type_declaration, + sym_interface_declaration, + sym_constant_declaration, + sym_method_declaration, + aux_sym_interface_body_repeat1, + ACTIONS(21), 13, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [809] = 25, + ACTIONS(29), 1, + anon_sym_class, + ACTIONS(61), 1, + anon_sym_AT, + ACTIONS(71), 1, + anon_sym_enum, + ACTIONS(73), 1, + anon_sym_non_DASHsealed, + ACTIONS(77), 1, + anon_sym_ATinterface, + ACTIONS(79), 1, + anon_sym_interface, + ACTIONS(1106), 1, + anon_sym_LT, + ACTIONS(1114), 1, + anon_sym_record, + ACTIONS(1170), 1, + sym_identifier, + ACTIONS(1176), 1, + anon_sym_RBRACE, + ACTIONS(1178), 1, + anon_sym_SEMI, + STATE(619), 1, + sym_modifiers, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(672), 1, + sym_type_parameters, + STATE(681), 1, + sym_generic_type, + STATE(703), 1, + sym__unannotated_type, + STATE(1057), 1, + sym__method_header, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(85), 2, + sym_boolean_type, + sym_void_type, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(428), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(81), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + STATE(359), 8, + sym_enum_declaration, + sym_class_declaration, + sym_record_declaration, + sym_annotation_type_declaration, + sym_interface_declaration, + sym_constant_declaration, + sym_method_declaration, + aux_sym_interface_body_repeat1, + ACTIONS(21), 13, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [916] = 14, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(1188), 1, + anon_sym_EQ, + ACTIONS(1192), 1, + anon_sym_LT, + ACTIONS(1195), 1, + anon_sym_DASH_GT, + ACTIONS(1200), 1, + anon_sym_DOT, + ACTIONS(1204), 1, + anon_sym_AT, + STATE(477), 1, + sym_argument_list, + STATE(678), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1197), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(1180), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1190), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + ACTIONS(1184), 14, + anon_sym_AMP, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + anon_sym_COLON, + ACTIONS(1186), 14, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + [1000] = 18, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(1188), 1, + anon_sym_EQ, + ACTIONS(1192), 1, + anon_sym_LT, + ACTIONS(1195), 1, + anon_sym_DASH_GT, + ACTIONS(1206), 1, + anon_sym_AMP, + ACTIONS(1209), 1, + anon_sym_RPAREN, + ACTIONS(1213), 1, + anon_sym_COMMA, + ACTIONS(1215), 1, + anon_sym_DOT, + STATE(477), 1, + sym_argument_list, + STATE(678), 1, + sym_type_arguments, + STATE(994), 1, + aux_sym_inferred_parameters_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1197), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(1204), 2, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + ACTIONS(1180), 5, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_this, + sym_identifier, + ACTIONS(1186), 9, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1190), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + ACTIONS(1184), 12, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + [1091] = 15, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(1188), 1, + anon_sym_EQ, + ACTIONS(1192), 1, + anon_sym_LT, + ACTIONS(1195), 1, + anon_sym_DASH_GT, + ACTIONS(1200), 1, + anon_sym_DOT, + ACTIONS(1204), 1, + anon_sym_AT, + ACTIONS(1219), 1, + anon_sym_COLON, + STATE(477), 1, + sym_argument_list, + STATE(678), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1197), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(1180), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1186), 10, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_SEMI, + ACTIONS(1190), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + ACTIONS(1184), 13, + anon_sym_AMP, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + [1173] = 15, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(1188), 1, + anon_sym_EQ, + ACTIONS(1192), 1, + anon_sym_LT, + ACTIONS(1195), 1, + anon_sym_DASH_GT, + ACTIONS(1200), 1, + anon_sym_DOT, + ACTIONS(1204), 1, + anon_sym_AT, + ACTIONS(1221), 1, + anon_sym_COLON, + STATE(477), 1, + sym_argument_list, + STATE(678), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1197), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(1180), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1186), 10, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_SEMI, + ACTIONS(1190), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + ACTIONS(1184), 13, + anon_sym_AMP, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + [1255] = 20, + ACTIONS(1223), 1, + sym_identifier, + ACTIONS(1229), 1, + anon_sym_class, + ACTIONS(1232), 1, + anon_sym_RBRACE, + ACTIONS(1234), 1, + anon_sym_AT, + ACTIONS(1237), 1, + anon_sym_enum, + ACTIONS(1240), 1, + anon_sym_non_DASHsealed, + ACTIONS(1243), 1, + anon_sym_ATinterface, + ACTIONS(1246), 1, + anon_sym_interface, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(679), 1, + sym_modifiers, + STATE(681), 1, + sym_generic_type, + STATE(711), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1252), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(1255), 2, + sym_boolean_type, + sym_void_type, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(428), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1249), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + STATE(366), 7, + sym_enum_declaration, + sym_class_declaration, + sym_annotation_type_declaration, + sym_annotation_type_element_declaration, + sym_interface_declaration, + sym_constant_declaration, + aux_sym_annotation_type_body_repeat1, + ACTIONS(1226), 13, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [1346] = 20, + ACTIONS(29), 1, + anon_sym_class, + ACTIONS(61), 1, + anon_sym_AT, + ACTIONS(71), 1, + anon_sym_enum, + ACTIONS(73), 1, + anon_sym_non_DASHsealed, + ACTIONS(77), 1, + anon_sym_ATinterface, + ACTIONS(79), 1, + anon_sym_interface, + ACTIONS(1170), 1, + sym_identifier, + ACTIONS(1258), 1, + anon_sym_RBRACE, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(679), 1, + sym_modifiers, + STATE(681), 1, + sym_generic_type, + STATE(711), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(85), 2, + sym_boolean_type, + sym_void_type, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(428), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(81), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + STATE(368), 7, + sym_enum_declaration, + sym_class_declaration, + sym_annotation_type_declaration, + sym_annotation_type_element_declaration, + sym_interface_declaration, + sym_constant_declaration, + aux_sym_annotation_type_body_repeat1, + ACTIONS(21), 13, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [1437] = 20, + ACTIONS(29), 1, + anon_sym_class, + ACTIONS(61), 1, + anon_sym_AT, + ACTIONS(71), 1, + anon_sym_enum, + ACTIONS(73), 1, + anon_sym_non_DASHsealed, + ACTIONS(77), 1, + anon_sym_ATinterface, + ACTIONS(79), 1, + anon_sym_interface, + ACTIONS(1170), 1, + sym_identifier, + ACTIONS(1260), 1, + anon_sym_RBRACE, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(679), 1, + sym_modifiers, + STATE(681), 1, + sym_generic_type, + STATE(711), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(85), 2, + sym_boolean_type, + sym_void_type, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(428), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(81), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + STATE(366), 7, + sym_enum_declaration, + sym_class_declaration, + sym_annotation_type_declaration, + sym_annotation_type_element_declaration, + sym_interface_declaration, + sym_constant_declaration, + aux_sym_annotation_type_body_repeat1, + ACTIONS(21), 13, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [1528] = 5, + ACTIONS(1182), 1, + anon_sym_LPAREN, + STATE(500), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1262), 15, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_COLON, + ACTIONS(1264), 30, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, + [1588] = 5, + ACTIONS(1182), 1, + anon_sym_LPAREN, + STATE(499), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1266), 15, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_COLON, + ACTIONS(1268), 30, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, + [1648] = 11, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(1270), 1, + sym_identifier, + ACTIONS(1274), 1, + anon_sym_EQ, + ACTIONS(1280), 1, + anon_sym_DASH_GT, + STATE(473), 1, + sym_argument_list, + STATE(1081), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1282), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + ACTIONS(1276), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + ACTIONS(1278), 13, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_SEMI, + ACTIONS(1272), 14, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + [1720] = 8, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(1274), 1, + anon_sym_EQ, + ACTIONS(1280), 1, + anon_sym_DASH_GT, + STATE(473), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1276), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + ACTIONS(1272), 14, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_COLON, + ACTIONS(1278), 18, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_instanceof, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, + [1786] = 5, + ACTIONS(1182), 1, + anon_sym_LPAREN, + STATE(479), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1284), 15, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_COLON, + ACTIONS(1286), 30, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, + [1846] = 5, + ACTIONS(1182), 1, + anon_sym_LPAREN, + STATE(467), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(348), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - STATE(300), 11, - sym_block, - sym_enum_declaration, - sym_class_declaration, - sym_static_initializer, - sym_constructor_declaration, - sym_field_declaration, - sym_record_declaration, - sym_annotation_type_declaration, - sym_interface_declaration, - sym_method_declaration, - aux_sym_enum_body_declarations_repeat1, - ACTIONS(29), 12, - anon_sym_default, - anon_sym_synchronized, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [354] = 28, - ACTIONS(23), 1, - anon_sym_class, - ACTIONS(27), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_AT, - ACTIONS(67), 1, - anon_sym_enum, - ACTIONS(69), 1, - anon_sym_non_DASHsealed, - ACTIONS(71), 1, - anon_sym_ATinterface, - ACTIONS(73), 1, - anon_sym_interface, - ACTIONS(1015), 1, - sym_identifier, - ACTIONS(1017), 1, + ACTIONS(1288), 15, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - ACTIONS(1021), 1, - anon_sym_SEMI, - ACTIONS(1023), 1, - anon_sym_static, - ACTIONS(1025), 1, - anon_sym_record, - ACTIONS(1031), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_COLON, + ACTIONS(1290), 30, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_RBRACE, - STATE(520), 1, - sym_modifiers, - STATE(569), 1, - sym_type_parameters, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(608), 1, - sym__unannotated_type, - STATE(777), 1, - sym__constructor_declarator, - STATE(873), 1, - sym__method_header, + anon_sym_SEMI, + [1906] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(348), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - STATE(299), 11, - sym_block, - sym_enum_declaration, - sym_class_declaration, - sym_static_initializer, - sym_constructor_declaration, - sym_field_declaration, - sym_record_declaration, - sym_annotation_type_declaration, - sym_interface_declaration, - sym_method_declaration, - aux_sym_enum_body_declarations_repeat1, - ACTIONS(29), 12, - anon_sym_default, - anon_sym_synchronized, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [472] = 28, - ACTIONS(23), 1, - anon_sym_class, - ACTIONS(27), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_AT, - ACTIONS(67), 1, - anon_sym_enum, - ACTIONS(69), 1, - anon_sym_non_DASHsealed, - ACTIONS(71), 1, - anon_sym_ATinterface, - ACTIONS(73), 1, - anon_sym_interface, - ACTIONS(1015), 1, - sym_identifier, - ACTIONS(1017), 1, + ACTIONS(1266), 15, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - ACTIONS(1023), 1, - anon_sym_static, - ACTIONS(1025), 1, - anon_sym_record, - ACTIONS(1033), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_COLON, + ACTIONS(1268), 30, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_RBRACE, - ACTIONS(1035), 1, anon_sym_SEMI, - STATE(520), 1, - sym_modifiers, - STATE(569), 1, - sym_type_parameters, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(608), 1, - sym__unannotated_type, - STATE(777), 1, - sym__constructor_declarator, - STATE(873), 1, - sym__method_header, + [1960] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1292), 15, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_COLON, + ACTIONS(1294), 30, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, + [2014] = 13, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(1192), 1, + anon_sym_LT, + ACTIONS(1200), 1, + anon_sym_DOT, + ACTIONS(1204), 1, + anon_sym_AT, + ACTIONS(1296), 1, + anon_sym_EQ, + ACTIONS(1300), 1, + anon_sym_DASH_GT, + STATE(477), 1, + sym_argument_list, + STATE(678), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(348), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - STATE(302), 11, - sym_block, - sym_enum_declaration, - sym_class_declaration, - sym_static_initializer, - sym_constructor_declaration, - sym_field_declaration, - sym_record_declaration, - sym_annotation_type_declaration, - sym_interface_declaration, - sym_method_declaration, - aux_sym_enum_body_declarations_repeat1, - ACTIONS(29), 12, - anon_sym_default, - anon_sym_synchronized, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [590] = 24, - ACTIONS(23), 1, - anon_sym_class, - ACTIONS(57), 1, - anon_sym_AT, - ACTIONS(67), 1, - anon_sym_enum, - ACTIONS(69), 1, - anon_sym_non_DASHsealed, - ACTIONS(71), 1, - anon_sym_ATinterface, - ACTIONS(73), 1, - anon_sym_interface, - ACTIONS(1017), 1, + ACTIONS(1197), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(1186), 11, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_instanceof, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1298), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + ACTIONS(1184), 13, + anon_sym_AMP, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_COLON, + [2088] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1288), 15, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - ACTIONS(1037), 1, - sym_identifier, - ACTIONS(1039), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_COLON, + ACTIONS(1290), 30, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_RBRACE, - ACTIONS(1041), 1, anon_sym_SEMI, - STATE(552), 1, - sym_modifiers, - STATE(567), 1, - sym_type_parameters, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(614), 1, - sym__unannotated_type, - STATE(873), 1, - sym__method_header, + [2142] = 13, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(1192), 1, + anon_sym_LT, + ACTIONS(1195), 1, + anon_sym_DASH_GT, + ACTIONS(1200), 1, + anon_sym_DOT, + ACTIONS(1204), 1, + anon_sym_AT, + ACTIONS(1303), 1, + anon_sym_EQ, + STATE(477), 1, + sym_argument_list, + STATE(678), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(348), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - STATE(307), 7, - sym_enum_declaration, - sym_class_declaration, - sym_annotation_type_declaration, - sym_interface_declaration, - sym_constant_declaration, - sym_method_declaration, - aux_sym_interface_body_repeat1, - ACTIONS(29), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [693] = 14, - ACTIONS(1045), 1, + ACTIONS(1197), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(1186), 11, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_instanceof, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1190), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + ACTIONS(1184), 12, + anon_sym_AMP, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + [2215] = 11, + ACTIONS(1182), 1, anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1213), 1, + anon_sym_COMMA, + ACTIONS(1274), 1, anon_sym_EQ, - ACTIONS(1055), 1, + ACTIONS(1280), 1, + anon_sym_DASH_GT, + ACTIONS(1305), 1, + anon_sym_RPAREN, + STATE(473), 1, + sym_argument_list, + STATE(987), 1, + aux_sym_inferred_parameters_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1276), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + ACTIONS(1272), 13, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, - ACTIONS(1058), 1, - anon_sym_DASH_GT, - ACTIONS(1063), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + ACTIONS(1278), 13, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_instanceof, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(1067), 1, - anon_sym_AT, - STATE(401), 1, - sym_argument_list, - STATE(591), 1, - sym_type_arguments, + anon_sym_COLON_COLON, + [2284] = 5, + ACTIONS(1188), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1060), 2, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(1043), 3, - anon_sym_open, - anon_sym_module, - sym_identifier, - ACTIONS(1053), 11, + ACTIONS(1190), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34520,9 +45234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1047), 14, + ACTIONS(1184), 14, anon_sym_AMP, anon_sym_GT, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -34533,9 +45248,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, - anon_sym_instanceof, anon_sym_COLON, - ACTIONS(1049), 14, + ACTIONS(1186), 18, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -34543,219 +45257,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_instanceof, anon_sym_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [776] = 24, - ACTIONS(23), 1, - anon_sym_class, - ACTIONS(57), 1, - anon_sym_AT, - ACTIONS(67), 1, - anon_sym_enum, - ACTIONS(69), 1, - anon_sym_non_DASHsealed, - ACTIONS(71), 1, - anon_sym_ATinterface, - ACTIONS(73), 1, - anon_sym_interface, - ACTIONS(1017), 1, - anon_sym_LT, - ACTIONS(1037), 1, - sym_identifier, - ACTIONS(1069), 1, - anon_sym_RBRACE, - ACTIONS(1071), 1, - anon_sym_SEMI, - STATE(552), 1, - sym_modifiers, - STATE(567), 1, - sym_type_parameters, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(614), 1, - sym__unannotated_type, - STATE(873), 1, - sym__method_header, + [2341] = 8, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(1308), 1, + anon_sym_EQ, + ACTIONS(1312), 1, + anon_sym_DASH_GT, + STATE(473), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(348), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - STATE(304), 7, - sym_enum_declaration, - sym_class_declaration, - sym_annotation_type_declaration, - sym_interface_declaration, - sym_constant_declaration, - sym_method_declaration, - aux_sym_interface_body_repeat1, - ACTIONS(29), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [879] = 24, - ACTIONS(1073), 1, - sym_identifier, - ACTIONS(1076), 1, + ACTIONS(1310), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + ACTIONS(1272), 14, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, - ACTIONS(1079), 1, - anon_sym_class, - ACTIONS(1082), 1, - anon_sym_RBRACE, - ACTIONS(1087), 1, - anon_sym_SEMI, - ACTIONS(1090), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_COLON, + ACTIONS(1278), 14, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_instanceof, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + [2403] = 7, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1322), 1, anon_sym_AT, - ACTIONS(1093), 1, - anon_sym_enum, - ACTIONS(1096), 1, - anon_sym_non_DASHsealed, - ACTIONS(1099), 1, - anon_sym_ATinterface, - ACTIONS(1102), 1, - anon_sym_interface, - STATE(552), 1, - sym_modifiers, - STATE(567), 1, - sym_type_parameters, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(614), 1, - sym__unannotated_type, - STATE(873), 1, - sym__method_header, + STATE(383), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1108), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(1111), 2, - sym_boolean_type, - sym_void_type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(348), 4, + STATE(863), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(1105), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - STATE(307), 7, - sym_enum_declaration, - sym_class_declaration, - sym_annotation_type_declaration, - sym_interface_declaration, - sym_constant_declaration, - sym_method_declaration, - aux_sym_interface_body_repeat1, - ACTIONS(1084), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [982] = 18, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_EQ, - ACTIONS(1055), 1, - anon_sym_LT, - ACTIONS(1058), 1, - anon_sym_DASH_GT, - ACTIONS(1114), 1, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1315), 14, anon_sym_AMP, - ACTIONS(1117), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_instanceof, + anon_sym_COLON, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1317), 22, anon_sym_RPAREN, - ACTIONS(1121), 1, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DASH_GT, anon_sym_COMMA, - ACTIONS(1123), 1, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, anon_sym_DOT, - STATE(401), 1, + anon_sym_COLON_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, + [2463] = 9, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(1274), 1, + anon_sym_EQ, + ACTIONS(1280), 1, + anon_sym_DASH_GT, + ACTIONS(1325), 1, + anon_sym_module, + STATE(473), 1, sym_argument_list, - STATE(591), 1, - sym_type_arguments, - STATE(899), 1, - aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1060), 2, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(1067), 2, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - ACTIONS(1043), 4, - anon_sym_open, - anon_sym_module, - sym_this, - sym_identifier, - ACTIONS(1049), 9, + ACTIONS(1276), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + ACTIONS(1272), 13, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + ACTIONS(1278), 14, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_instanceof, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1053), 11, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_SEMI, + [2527] = 9, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(1274), 1, + anon_sym_EQ, + ACTIONS(1280), 1, + anon_sym_DASH_GT, + ACTIONS(1327), 1, + sym_identifier, + STATE(473), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1276), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -34767,8 +45456,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1047), 12, + ACTIONS(1278), 13, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_SEMI, + ACTIONS(1272), 14, + anon_sym_AMP, anon_sym_GT, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -34780,303 +45485,435 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_instanceof, - [1072] = 15, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, - anon_sym_EQ, - ACTIONS(1055), 1, - anon_sym_LT, - ACTIONS(1058), 1, - anon_sym_DASH_GT, - ACTIONS(1063), 1, - anon_sym_DOT, - ACTIONS(1067), 1, + [2591] = 7, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1127), 1, - anon_sym_COLON, - STATE(401), 1, - sym_argument_list, - STATE(591), 1, - sym_type_arguments, + ACTIONS(1333), 1, + anon_sym_LBRACK, + STATE(383), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1060), 2, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(1043), 3, + STATE(863), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1329), 14, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_instanceof, + anon_sym_COLON, anon_sym_open, anon_sym_module, + anon_sym_record, sym_identifier, - ACTIONS(1049), 10, + ACTIONS(1331), 22, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DASH_GT, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(1053), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - ACTIONS(1047), 13, + [2651] = 9, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1339), 1, + anon_sym_LBRACK, + STATE(386), 1, + aux_sym_dimensions_repeat1, + STATE(481), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(397), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(798), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1335), 9, anon_sym_AMP, anon_sym_GT, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_COLON, + ACTIONS(1337), 23, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_CARET, anon_sym_PERCENT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_instanceof, - [1153] = 5, - ACTIONS(1045), 1, - anon_sym_LPAREN, - STATE(419), 1, - sym_argument_list, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, + [2714] = 9, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1339), 1, + anon_sym_LBRACK, + STATE(386), 1, + aux_sym_dimensions_repeat1, + STATE(487), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1129), 15, + STATE(397), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(798), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1341), 9, anon_sym_AMP, - anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1131), 30, + ACTIONS(1343), 23, anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1213] = 5, - ACTIONS(1045), 1, - anon_sym_LPAREN, - STATE(408), 1, - sym_argument_list, + [2777] = 8, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1333), 1, + anon_sym_LBRACK, + STATE(386), 1, + aux_sym_dimensions_repeat1, + STATE(419), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1133), 15, + STATE(863), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1345), 13, anon_sym_AMP, - anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1347), 21, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_CARET, anon_sym_PERCENT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + [2838] = 9, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1339), 1, + anon_sym_LBRACK, + STATE(386), 1, + aux_sym_dimensions_repeat1, + STATE(489), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(397), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(798), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1349), 9, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1135), 30, + ACTIONS(1351), 23, anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1273] = 5, - ACTIONS(1045), 1, - anon_sym_LPAREN, - STATE(411), 1, - sym_argument_list, + [2901] = 9, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1339), 1, + anon_sym_LBRACK, + STATE(386), 1, + aux_sym_dimensions_repeat1, + STATE(491), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1137), 15, + STATE(397), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(798), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1353), 9, anon_sym_AMP, - anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1139), 30, + ACTIONS(1355), 23, anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1333] = 5, - ACTIONS(1045), 1, - anon_sym_LPAREN, - STATE(417), 1, - sym_argument_list, + [2964] = 8, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1333), 1, + anon_sym_LBRACK, + STATE(386), 1, + aux_sym_dimensions_repeat1, + STATE(419), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1141), 15, + STATE(863), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1357), 13, anon_sym_AMP, - anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_COLON, - ACTIONS(1143), 30, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1359), 21, anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_instanceof, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [1393] = 7, - ACTIONS(1045), 1, + [3025] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1363), 8, anon_sym_LPAREN, - ACTIONS(1149), 1, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1361), 33, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_open, + anon_sym_module, + anon_sym_static, + anon_sym_to, + anon_sym_with, + anon_sym_package, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_record, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [3075] = 5, + ACTIONS(1296), 1, anon_sym_EQ, - STATE(402), 1, - sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1151), 11, + ACTIONS(1298), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -35088,7 +45925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, - ACTIONS(1145), 14, + ACTIONS(1184), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -35103,8 +45940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_COLON, - ACTIONS(1147), 18, - anon_sym_RPAREN, + ACTIONS(1186), 15, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -35112,71 +45948,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_instanceof, + anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, - anon_sym_RBRACE, - anon_sym_SEMI, - [1456] = 19, - ACTIONS(23), 1, - anon_sym_class, - ACTIONS(57), 1, + [3129] = 19, + ACTIONS(293), 1, + anon_sym_RPAREN, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(69), 1, + ACTIONS(301), 1, anon_sym_non_DASHsealed, - ACTIONS(71), 1, - anon_sym_ATinterface, - ACTIONS(73), 1, - anon_sym_interface, - ACTIONS(1037), 1, + ACTIONS(1170), 1, sym_identifier, - ACTIONS(1153), 1, - anon_sym_RBRACE, - STATE(579), 1, + STATE(398), 1, + sym_receiver_parameter, + STATE(539), 1, + aux_sym_modifiers_repeat1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(589), 1, - sym_modifiers, - STATE(595), 1, + STATE(665), 1, + aux_sym_array_creation_expression_repeat1, + STATE(681), 1, sym_generic_type, - STATE(624), 1, + STATE(704), 1, + sym_modifiers, + STATE(722), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(348), 4, + STATE(984), 2, + sym_formal_parameter, + sym_spread_parameter, + STATE(610), 3, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(75), 5, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(316), 6, - sym_class_declaration, - sym_annotation_type_declaration, - sym_annotation_type_element_declaration, - sym_interface_declaration, - sym_constant_declaration, - aux_sym_annotation_type_body_repeat1, - ACTIONS(29), 13, + ACTIONS(295), 13, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -35184,67 +46014,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [1543] = 19, - ACTIONS(23), 1, - anon_sym_class, - ACTIONS(57), 1, - anon_sym_AT, - ACTIONS(69), 1, + [3211] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1367), 8, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_non_DASHsealed, - ACTIONS(71), 1, anon_sym_ATinterface, - ACTIONS(73), 1, + ACTIONS(1365), 33, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_open, + anon_sym_module, + anon_sym_static, + anon_sym_to, + anon_sym_with, + anon_sym_package, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_record, anon_sym_interface, - ACTIONS(1037), 1, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, sym_identifier, - ACTIONS(1155), 1, + [3261] = 7, + ACTIONS(1373), 1, + anon_sym_LBRACK, + ACTIONS(1376), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(397), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(866), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1369), 9, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_COLON, + ACTIONS(1371), 23, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_RBRACE, - STATE(579), 1, + anon_sym_SEMI, + [3318] = 16, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(301), 1, + anon_sym_non_DASHsealed, + ACTIONS(1170), 1, + sym_identifier, + ACTIONS(1379), 1, + anon_sym_RPAREN, + STATE(663), 1, sym_scoped_type_identifier, - STATE(589), 1, - sym_modifiers, - STATE(595), 1, + STATE(681), 1, sym_generic_type, - STATE(624), 1, + STATE(704), 1, + sym_modifiers, + STATE(724), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(1002), 2, + sym_formal_parameter, + sym_spread_parameter, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(348), 4, + STATE(539), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(75), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(317), 6, - sym_class_declaration, - sym_annotation_type_declaration, - sym_annotation_type_element_declaration, - sym_interface_declaration, - sym_constant_declaration, - aux_sym_annotation_type_body_repeat1, - ACTIONS(29), 13, + ACTIONS(295), 13, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -35252,67 +46169,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [1630] = 19, - ACTIONS(1157), 1, - sym_identifier, - ACTIONS(1160), 1, - anon_sym_class, - ACTIONS(1163), 1, - anon_sym_RBRACE, - ACTIONS(1168), 1, + [3392] = 15, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1171), 1, + ACTIONS(301), 1, anon_sym_non_DASHsealed, - ACTIONS(1174), 1, - anon_sym_ATinterface, - ACTIONS(1177), 1, - anon_sym_interface, - STATE(579), 1, + ACTIONS(1170), 1, + sym_identifier, + STATE(663), 1, sym_scoped_type_identifier, - STATE(589), 1, - sym_modifiers, - STATE(595), 1, + STATE(681), 1, sym_generic_type, - STATE(624), 1, + STATE(704), 1, + sym_modifiers, + STATE(724), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1183), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(1186), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(1202), 2, + sym_formal_parameter, + sym_spread_parameter, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(348), 4, + STATE(539), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1180), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - STATE(317), 6, - sym_class_declaration, - sym_annotation_type_declaration, - sym_annotation_type_element_declaration, - sym_interface_declaration, - sym_constant_declaration, - aux_sym_annotation_type_body_repeat1, - ACTIONS(1165), 13, + ACTIONS(295), 13, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -35320,318 +46225,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [1717] = 13, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1055), 1, - anon_sym_LT, - ACTIONS(1063), 1, - anon_sym_DOT, - ACTIONS(1067), 1, - anon_sym_AT, - ACTIONS(1189), 1, - anon_sym_EQ, - ACTIONS(1193), 1, - anon_sym_DASH_GT, - STATE(401), 1, - sym_argument_list, - STATE(591), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1060), 2, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(1049), 11, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_instanceof, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1191), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - ACTIONS(1047), 13, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_COLON, - [1791] = 3, + [3463] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1141), 15, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_COLON, - ACTIONS(1143), 30, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, + ACTIONS(880), 12, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + sym_character_literal, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_LPAREN, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_RBRACE, anon_sym_SEMI, - [1845] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1137), 15, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, + anon_sym_AT, + ACTIONS(882), 26, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + sym_true, + sym_false, + anon_sym_DQUOTE, + sym_null_literal, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_COLON, - ACTIONS(1139), 30, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_RBRACE, - anon_sym_SEMI, - [1899] = 10, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1149), 1, - anon_sym_EQ, - ACTIONS(1196), 1, + anon_sym_new, + anon_sym_switch, + anon_sym_open, + anon_sym_module, + anon_sym_record, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_this, + sym_super, sym_identifier, - STATE(402), 1, - sym_argument_list, - STATE(904), 1, - sym_scoped_identifier, + [3510] = 16, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(301), 1, + anon_sym_non_DASHsealed, + ACTIONS(1170), 1, + sym_identifier, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, + sym_generic_type, + STATE(696), 1, + sym_modifiers, + STATE(725), 1, + sym__unannotated_type, + STATE(876), 1, + sym_catch_type, + STATE(1277), 1, + sym_catch_formal_parameter, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1198), 2, - anon_sym_open, - anon_sym_module, - ACTIONS(1151), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - ACTIONS(1147), 13, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_SEMI, - ACTIONS(1145), 14, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - [1967] = 3, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(85), 2, + sym_boolean_type, + sym_void_type, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(539), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(81), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + ACTIONS(295), 13, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [3583] = 6, + ACTIONS(1381), 1, + anon_sym_LT, + ACTIONS(1384), 1, + anon_sym_DOT, + STATE(407), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1200), 15, + ACTIONS(1180), 12, anon_sym_AMP, - anon_sym_EQ, anon_sym_GT, - anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_COLON, - ACTIONS(1202), 30, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1204), 23, anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_instanceof, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2021] = 5, - ACTIONS(1051), 1, - anon_sym_EQ, + anon_sym_AT, + [3636] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1053), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - ACTIONS(1047), 14, + ACTIONS(1315), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, + anon_sym_instanceof, anon_sym_COLON, - ACTIONS(1049), 18, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1317), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -35639,7 +46405,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_instanceof, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, @@ -35650,150 +46421,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2078] = 13, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1055), 1, - anon_sym_LT, - ACTIONS(1058), 1, - anon_sym_DASH_GT, - ACTIONS(1063), 1, - anon_sym_DOT, - ACTIONS(1067), 1, anon_sym_AT, - ACTIONS(1204), 1, - anon_sym_EQ, - STATE(401), 1, - sym_argument_list, - STATE(591), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1060), 2, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(1049), 11, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_instanceof, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1053), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - ACTIONS(1047), 12, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - [2151] = 7, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1206), 1, - anon_sym_EQ, - STATE(402), 1, - sym_argument_list, + [3683] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1208), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - ACTIONS(1145), 14, + ACTIONS(1386), 14, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, + anon_sym_instanceof, anon_sym_COLON, - ACTIONS(1147), 15, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1388), 24, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_instanceof, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, - [2211] = 9, - ACTIONS(282), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AT, - ACTIONS(1214), 1, - anon_sym_LBRACK, - STATE(334), 1, - aux_sym_dimensions_repeat1, - STATE(413), 1, - sym_dimensions, + [3730] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(333), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(702), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1210), 9, + ACTIONS(1014), 12, + sym_octal_integer_literal, + sym_binary_integer_literal, + sym_decimal_floating_point_literal, + sym_character_literal, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_LPAREN, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(1016), 26, + sym_decimal_integer_literal, + sym_hex_integer_literal, + sym_hex_floating_point_literal, + sym_true, + sym_false, + anon_sym_DQUOTE, + sym_null_literal, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_new, + anon_sym_switch, + anon_sym_open, + anon_sym_module, + anon_sym_record, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_this, + sym_super, + sym_identifier, + [3777] = 6, + ACTIONS(1394), 1, + anon_sym_LT, + ACTIONS(1397), 1, + anon_sym_DOT, + STATE(416), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1390), 12, anon_sym_AMP, anon_sym_GT, - anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1212), 23, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1392), 23, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -35806,38 +46546,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2274] = 9, - ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1214), 1, - anon_sym_LBRACK, - STATE(334), 1, - aux_sym_dimensions_repeat1, - STATE(385), 1, - sym_dimensions, + [3830] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(333), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(702), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1216), 9, + ACTIONS(1399), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -35846,8 +46570,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1218), 23, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1401), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -35860,133 +46588,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2337] = 8, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1149), 1, - anon_sym_EQ, - ACTIONS(1220), 1, - anon_sym_module, - STATE(402), 1, - sym_argument_list, + anon_sym_AT, + [3876] = 3, ACTIONS(3), 2, sym_line_comment, - sym_block_comment, - ACTIONS(1151), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - ACTIONS(1145), 13, + sym_block_comment, + ACTIONS(1403), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - ACTIONS(1147), 14, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1405), 24, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_instanceof, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DASH_GT, + anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, - anon_sym_COLON_COLON, + anon_sym_RBRACE, anon_sym_SEMI, - [2398] = 5, - ACTIONS(1189), 1, - anon_sym_EQ, + anon_sym_AT, + [3922] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1191), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - ACTIONS(1047), 14, + ACTIONS(1407), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_COLON, - ACTIONS(1049), 15, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1409), 24, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_instanceof, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, - anon_sym_COLON_COLON, - [2452] = 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + [3968] = 6, + ACTIONS(1413), 1, + anon_sym_LPAREN, + ACTIONS(1417), 1, + anon_sym_DOT, + STATE(431), 1, + sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1224), 8, - anon_sym_LPAREN, + ACTIONS(1415), 3, anon_sym_LT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1222), 33, + ACTIONS(1411), 31, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -35994,15 +46709,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_open, anon_sym_module, anon_sym_static, - anon_sym_to, - anon_sym_with, anon_sym_package, anon_sym_enum, anon_sym_public, anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -36020,133 +46732,54 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [2502] = 3, + [4020] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1228), 8, - anon_sym_LPAREN, + ACTIONS(1419), 13, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, - anon_sym_COMMA, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1226), 33, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_instanceof, anon_sym_open, anon_sym_module, - anon_sym_static, - anon_sym_to, - anon_sym_with, - anon_sym_package, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, anon_sym_record, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, sym_identifier, - [2552] = 19, - ACTIONS(278), 1, + ACTIONS(1421), 24, anon_sym_RPAREN, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(286), 1, - anon_sym_non_DASHsealed, - ACTIONS(1037), 1, - sym_identifier, - STATE(335), 1, - sym_receiver_parameter, - STATE(461), 1, - aux_sym_modifiers_repeat1, - STATE(571), 1, - aux_sym_dimensions_expr_repeat1, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(601), 1, - sym_modifiers, - STATE(625), 1, - sym__unannotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(950), 2, - sym_formal_parameter, - sym_spread_parameter, - STATE(526), 3, - sym__annotation, - sym_marker_annotation, - sym_annotation, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - ACTIONS(280), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [2634] = 7, - ACTIONS(1234), 1, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_LBRACK, - ACTIONS(1237), 1, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AT, + [4066] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(333), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(727), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1230), 9, + ACTIONS(1423), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36155,8 +46788,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1232), 23, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1425), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36169,33 +46806,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2691] = 7, - ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1244), 1, - anon_sym_LBRACK, - STATE(336), 1, - aux_sym_dimensions_repeat1, + [4112] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(719), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1240), 9, + ACTIONS(1427), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36204,8 +46831,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1242), 23, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1429), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36218,91 +46849,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2747] = 16, - ACTIONS(282), 1, anon_sym_AT, - ACTIONS(286), 1, - anon_sym_non_DASHsealed, - ACTIONS(1037), 1, - sym_identifier, - ACTIONS(1246), 1, - anon_sym_RPAREN, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(601), 1, - sym_modifiers, - STATE(632), 1, - sym__unannotated_type, + [4158] = 6, + ACTIONS(1413), 1, + anon_sym_LPAREN, + ACTIONS(1435), 1, + anon_sym_DOT, + STATE(433), 1, + sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(885), 2, - sym_formal_parameter, - sym_spread_parameter, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(461), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - ACTIONS(280), 13, + ACTIONS(1433), 3, + anon_sym_LT, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1431), 31, + anon_sym_final, + anon_sym_class, anon_sym_default, anon_sym_synchronized, + anon_sym_AT, + anon_sym_open, + anon_sym_module, anon_sym_static, + anon_sym_package, + anon_sym_enum, anon_sym_public, anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [2821] = 7, - ACTIONS(1252), 1, - anon_sym_LBRACK, - ACTIONS(1255), 1, - anon_sym_AT, - STATE(336), 1, - aux_sym_dimensions_repeat1, + anon_sym_record, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [4210] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(719), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1248), 9, + ACTIONS(1437), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36311,8 +46920,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1250), 23, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1439), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36325,35 +46938,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [2877] = 8, - ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1244), 1, - anon_sym_LBRACK, - STATE(334), 1, - aux_sym_dimensions_repeat1, - STATE(428), 1, - sym_dimensions, + [4256] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(719), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1258), 8, + ACTIONS(1441), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36362,7 +46963,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1260), 22, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1443), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36375,90 +46981,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_RBRACE, anon_sym_SEMI, - [2934] = 15, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(286), 1, - anon_sym_non_DASHsealed, - ACTIONS(1037), 1, - sym_identifier, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(601), 1, - sym_modifiers, - STATE(632), 1, - sym__unannotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(1059), 2, - sym_formal_parameter, - sym_spread_parameter, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(461), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - ACTIONS(280), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [3005] = 8, - ACTIONS(282), 1, anon_sym_AT, - ACTIONS(1244), 1, - anon_sym_LBRACK, - STATE(334), 1, - aux_sym_dimensions_repeat1, - STATE(428), 1, - sym_dimensions, + [4302] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(719), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1262), 8, + ACTIONS(1445), 13, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36467,7 +47006,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1264), 22, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1447), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36480,260 +47024,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_RBRACE, anon_sym_SEMI, - [3062] = 16, - ACTIONS(282), 1, anon_sym_AT, - ACTIONS(286), 1, - anon_sym_non_DASHsealed, - ACTIONS(1037), 1, - sym_identifier, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(597), 1, - sym_modifiers, - STATE(627), 1, - sym__unannotated_type, - STATE(843), 1, - sym_catch_type, - STATE(1079), 1, - sym_catch_formal_parameter, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(461), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - ACTIONS(280), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [3135] = 6, - ACTIONS(1268), 1, - anon_sym_LPAREN, - ACTIONS(1272), 1, + [4348] = 4, + ACTIONS(1397), 1, anon_sym_DOT, - STATE(361), 1, - sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1270), 3, + ACTIONS(1390), 13, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1266), 31, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_instanceof, anon_sym_open, anon_sym_module, - anon_sym_static, - anon_sym_package, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, anon_sym_record, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, sym_identifier, - [3187] = 6, - ACTIONS(1268), 1, - anon_sym_LPAREN, - ACTIONS(1278), 1, - anon_sym_DOT, - STATE(360), 1, - sym_annotation_argument_list, + ACTIONS(1392), 23, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + [4396] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1276), 3, + ACTIONS(1449), 13, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1274), 31, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_instanceof, anon_sym_open, anon_sym_module, - anon_sym_static, - anon_sym_package, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, anon_sym_record, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, sym_identifier, - [3239] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(759), 12, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - sym_character_literal, - sym_text_block, - anon_sym_LPAREN, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1451), 23, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(761), 25, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - sym_true, - sym_false, - sym_string_literal, - sym_null_literal, + [4441] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1453), 13, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_new, - anon_sym_switch, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_instanceof, anon_sym_open, anon_sym_module, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_this, - sym_super, + anon_sym_record, sym_identifier, - [3285] = 3, + ACTIONS(1455), 23, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + [4486] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(735), 12, - sym_octal_integer_literal, - sym_binary_integer_literal, - sym_decimal_floating_point_literal, - sym_character_literal, - sym_text_block, - anon_sym_LPAREN, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1457), 13, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + ACTIONS(1459), 23, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(737), 25, - sym_decimal_integer_literal, - sym_hex_integer_literal, - sym_hex_floating_point_literal, - sym_true, - sym_false, - sym_string_literal, - sym_null_literal, + [4531] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1390), 13, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_new, - anon_sym_switch, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_instanceof, anon_sym_open, anon_sym_module, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_this, - sym_super, + anon_sym_record, sym_identifier, - [3331] = 5, - ACTIONS(1284), 1, + ACTIONS(1392), 23, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + [4576] = 5, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(396), 1, + STATE(483), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1280), 9, + ACTIONS(1461), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36743,7 +47266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1282), 24, + ACTIONS(1463), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36768,15 +47291,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [3379] = 5, - ACTIONS(1284), 1, + [4624] = 5, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(395), 1, + STATE(476), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1286), 9, + ACTIONS(1467), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36786,7 +47309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1288), 24, + ACTIONS(1469), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36811,15 +47334,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [3427] = 5, - ACTIONS(1284), 1, + [4672] = 5, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(405), 1, + STATE(495), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1290), 9, + ACTIONS(1471), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36829,7 +47352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1292), 24, + ACTIONS(1473), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36854,60 +47377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [3475] = 7, - ACTIONS(57), 1, - anon_sym_AT, - ACTIONS(1300), 1, - anon_sym_non_DASHsealed, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1296), 2, - anon_sym_LT, - anon_sym_ATinterface, - STATE(350), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(1298), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - ACTIONS(1294), 14, - anon_sym_class, - anon_sym_enum, - anon_sym_record, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [3527] = 5, - ACTIONS(1284), 1, + [4720] = 5, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(418), 1, + STATE(494), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1302), 9, + ACTIONS(1475), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -36917,7 +47395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1304), 24, + ACTIONS(1477), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -36940,121 +47418,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, - anon_sym_RBRACE, - anon_sym_SEMI, - [3575] = 7, - ACTIONS(1313), 1, - anon_sym_AT, - ACTIONS(1316), 1, - anon_sym_non_DASHsealed, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1308), 2, - anon_sym_LT, - anon_sym_ATinterface, - STATE(350), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(1310), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - ACTIONS(1306), 14, - anon_sym_class, - anon_sym_enum, - anon_sym_record, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [3627] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1321), 6, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1319), 28, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, + anon_sym_RBRACE, + anon_sym_SEMI, + [4768] = 7, + ACTIONS(1486), 1, anon_sym_AT, - anon_sym_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_record, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [3670] = 3, + ACTIONS(1489), 1, + anon_sym_non_DASHsealed, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1325), 6, + ACTIONS(1481), 2, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1323), 28, - anon_sym_class, + STATE(427), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1483), 13, + anon_sym_final, anon_sym_default, anon_sym_synchronized, - anon_sym_AT, anon_sym_static, - anon_sym_enum, anon_sym_public, anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, + ACTIONS(1479), 14, + anon_sym_class, + anon_sym_enum, anon_sym_record, anon_sym_interface, anon_sym_byte, @@ -37067,34 +47465,39 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [3713] = 3, + [4820] = 7, + ACTIONS(61), 1, + anon_sym_AT, + ACTIONS(1498), 1, + anon_sym_non_DASHsealed, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1329), 6, + ACTIONS(1494), 2, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1327), 28, - anon_sym_class, + STATE(427), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1496), 13, + anon_sym_final, anon_sym_default, anon_sym_synchronized, - anon_sym_AT, anon_sym_static, - anon_sym_enum, anon_sym_public, anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, + ACTIONS(1492), 14, + anon_sym_class, + anon_sym_enum, anon_sym_record, anon_sym_interface, anon_sym_byte, @@ -37107,18 +47510,19 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [3756] = 3, + [4872] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1333), 6, + ACTIONS(1502), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1331), 28, + ACTIONS(1500), 28, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37129,7 +47533,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -37147,18 +47550,19 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [3799] = 3, + [4915] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1337), 6, + ACTIONS(1506), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1335), 28, + ACTIONS(1504), 28, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37169,7 +47573,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -37187,29 +47590,29 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [3842] = 3, + [4958] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1341), 6, + ACTIONS(1510), 3, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1339), 28, + ACTIONS(1508), 31, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, anon_sym_AT, + anon_sym_open, + anon_sym_module, anon_sym_static, + anon_sym_package, anon_sym_enum, anon_sym_public, anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -37227,69 +47630,69 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [3885] = 3, + [5001] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1345), 6, + ACTIONS(1357), 13, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1343), 28, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_instanceof, + anon_sym_open, + anon_sym_module, anon_sym_record, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, sym_identifier, - [3928] = 3, + ACTIONS(1359), 21, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + [5044] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1349), 6, + ACTIONS(1514), 3, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1347), 28, + ACTIONS(1512), 31, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, anon_sym_AT, + anon_sym_open, + anon_sym_module, anon_sym_static, + anon_sym_package, anon_sym_enum, anon_sym_public, anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -37307,11 +47710,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [3971] = 3, + [5087] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1351), 9, + ACTIONS(1516), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -37321,7 +47724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1353), 25, + ACTIONS(1518), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -37344,32 +47747,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - [4014] = 3, + anon_sym_AT, + [5130] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 3, + ACTIONS(1522), 6, anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1355), 31, + ACTIONS(1520), 28, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, anon_sym_AT, - anon_sym_open, - anon_sym_module, anon_sym_static, - anon_sym_package, anon_sym_enum, anon_sym_public, anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -37387,29 +47790,29 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4057] = 3, + [5173] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1361), 3, + ACTIONS(1526), 6, anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1359), 31, + ACTIONS(1524), 28, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, anon_sym_AT, - anon_sym_open, - anon_sym_module, anon_sym_static, - anon_sym_package, anon_sym_enum, anon_sym_public, anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -37427,109 +47830,69 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4100] = 3, + [5216] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1363), 9, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(1530), 6, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1365), 25, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - [4143] = 3, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1528), 28, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_record, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [5259] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1248), 9, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(1534), 6, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1250), 25, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [4186] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1369), 3, - anon_sym_LT, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1367), 31, + ACTIONS(1532), 28, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, anon_sym_AT, - anon_sym_open, - anon_sym_module, anon_sym_static, - anon_sym_package, anon_sym_enum, anon_sym_public, anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -37547,15 +47910,16 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4229] = 3, + [5302] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1373), 3, + ACTIONS(1538), 3, anon_sym_LT, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1371), 31, + ACTIONS(1536), 31, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37569,7 +47933,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -37587,11 +47950,17 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4272] = 3, + [5345] = 5, + ACTIONS(1540), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1375), 9, + ACTIONS(1546), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + ACTIONS(1542), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -37600,52 +47969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1377), 25, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - [4315] = 6, - ACTIONS(1379), 1, - anon_sym_LT, - ACTIONS(1382), 1, - anon_sym_DOT, - STATE(414), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1043), 7, - anon_sym_AMP, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1067), 24, + ACTIONS(1544), 21, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -37658,81 +47983,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [4364] = 3, + [5392] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1384), 9, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(1550), 6, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1386), 25, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - [4407] = 3, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1548), 28, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_record, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [5435] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1390), 3, + ACTIONS(1554), 6, anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1388), 31, + ACTIONS(1552), 28, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, anon_sym_AT, - anon_sym_open, - anon_sym_module, anon_sym_static, - anon_sym_package, anon_sym_enum, anon_sym_public, anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -37750,18 +48072,19 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4450] = 3, + [5478] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1394), 6, + ACTIONS(1558), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1392), 28, + ACTIONS(1556), 28, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37772,7 +48095,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -37790,18 +48112,59 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4493] = 3, + [5521] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1560), 9, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_COLON, + ACTIONS(1562), 25, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + [5564] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1398), 6, + ACTIONS(1566), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1396), 28, + ACTIONS(1564), 28, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37812,7 +48175,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -37830,18 +48192,19 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4536] = 3, + [5607] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1402), 6, + ACTIONS(1570), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1400), 28, + ACTIONS(1568), 28, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37852,7 +48215,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -37870,25 +48232,21 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4579] = 6, - ACTIONS(1408), 1, - anon_sym_LT, - ACTIONS(1411), 1, - anon_sym_DOT, - STATE(392), 1, - sym_type_arguments, + [5650] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1404), 7, + ACTIONS(1572), 9, anon_sym_AMP, anon_sym_GT, + anon_sym_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1406), 24, + anon_sym_COLON, + ACTIONS(1574), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -37905,26 +48263,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [4628] = 3, + [5693] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1415), 6, + ACTIONS(1578), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1413), 28, + ACTIONS(1576), 28, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37935,7 +48295,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -37953,18 +48312,19 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4671] = 3, + [5736] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1419), 6, + ACTIONS(1582), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1417), 28, + ACTIONS(1580), 28, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -37975,7 +48335,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -37993,29 +48352,71 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4714] = 3, + [5779] = 5, + ACTIONS(1584), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1423), 6, + ACTIONS(1590), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + ACTIONS(1586), 9, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, - anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_instanceof, + ACTIONS(1588), 21, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, + [5826] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1594), 3, + anon_sym_LT, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1421), 28, + ACTIONS(1592), 31, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, anon_sym_AT, + anon_sym_open, + anon_sym_module, anon_sym_static, + anon_sym_package, anon_sym_enum, anon_sym_public, anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -38033,29 +48434,69 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4757] = 3, + [5869] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1596), 9, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_COLON, + ACTIONS(1598), 25, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + [5912] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1427), 6, + ACTIONS(1602), 3, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1425), 28, + ACTIONS(1600), 31, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, anon_sym_AT, + anon_sym_open, + anon_sym_module, anon_sym_static, + anon_sym_package, anon_sym_enum, anon_sym_public, anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -38073,11 +48514,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4800] = 3, + [5955] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 9, + ACTIONS(1604), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38087,7 +48528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1431), 25, + ACTIONS(1606), 25, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38110,21 +48551,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT, anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [4843] = 3, + [5998] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1435), 6, + ACTIONS(1610), 6, anon_sym_LT, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1433), 28, + ACTIONS(1608), 28, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -38135,7 +48577,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -38153,90 +48594,91 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [4886] = 3, + [6041] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1437), 9, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(1614), 6, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1439), 25, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1612), 28, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, anon_sym_AT, - [4929] = 3, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_record, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [6084] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1047), 9, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(1618), 6, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1049), 24, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - [4971] = 3, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1616), 28, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_record, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [6127] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1441), 9, + ACTIONS(1620), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38246,7 +48688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1443), 24, + ACTIONS(1622), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38271,11 +48713,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5013] = 3, + [6169] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1445), 9, + ACTIONS(1624), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38285,7 +48727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1447), 24, + ACTIONS(1626), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38310,11 +48752,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5055] = 3, + [6211] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 9, + ACTIONS(1628), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38324,7 +48766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1451), 24, + ACTIONS(1630), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38349,11 +48791,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5097] = 3, + [6253] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1453), 9, + ACTIONS(1632), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38363,7 +48805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1455), 24, + ACTIONS(1634), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38388,11 +48830,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5139] = 3, + [6295] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1457), 9, + ACTIONS(1636), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38402,7 +48844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1459), 24, + ACTIONS(1638), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38427,11 +48869,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5181] = 3, + [6337] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1461), 8, + ACTIONS(1640), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38440,7 +48882,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1463), 25, + anon_sym_COLON, + ACTIONS(1642), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38457,20 +48900,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [5223] = 3, + [6379] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1465), 8, + ACTIONS(1644), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38479,7 +48921,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1467), 25, + anon_sym_COLON, + ACTIONS(1646), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38496,20 +48939,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [5265] = 3, + [6421] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1469), 8, + ACTIONS(1648), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38518,7 +48960,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1471), 25, + anon_sym_COLON, + ACTIONS(1650), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38535,20 +48978,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [5307] = 3, + [6463] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 9, + ACTIONS(1652), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38558,7 +49000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1475), 24, + ACTIONS(1654), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38583,13 +49025,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5349] = 4, - ACTIONS(1411), 1, - anon_sym_DOT, + [6505] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1404), 8, + ACTIONS(1656), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38598,7 +49038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1406), 24, + anon_sym_COLON, + ACTIONS(1658), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38615,19 +49056,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [5393] = 3, + [6547] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1477), 8, + ACTIONS(1184), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38636,7 +49077,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1479), 25, + anon_sym_COLON, + ACTIONS(1186), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38653,20 +49095,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [5435] = 3, + [6589] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1481), 9, + ACTIONS(1660), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38676,7 +49117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1483), 24, + ACTIONS(1662), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38701,11 +49142,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5477] = 3, + [6631] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1485), 9, + ACTIONS(1664), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38715,7 +49156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1487), 24, + ACTIONS(1666), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38740,50 +49181,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5519] = 3, + [6673] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1489), 9, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(1670), 5, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1491), 24, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5561] = 3, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1668), 28, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_record, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [6715] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1493), 9, + ACTIONS(1672), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38793,7 +49234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1495), 24, + ACTIONS(1674), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38818,11 +49259,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5603] = 3, + [6757] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1497), 9, + ACTIONS(1676), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38832,7 +49273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1499), 24, + ACTIONS(1678), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38857,50 +49298,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5645] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1501), 9, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - anon_sym_COLON, - ACTIONS(1503), 24, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [6799] = 6, + ACTIONS(1680), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1682), 1, anon_sym_DOT, + ACTIONS(1684), 1, anon_sym_COLON_COLON, - anon_sym_RBRACE, - anon_sym_SEMI, - [5687] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1505), 9, + ACTIONS(313), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38910,7 +49318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1507), 24, + ACTIONS(315), 21, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38929,17 +49337,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5729] = 3, + [6847] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1509), 9, + ACTIONS(1686), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38949,7 +49354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1511), 24, + ACTIONS(1688), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -38974,11 +49379,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5771] = 3, + [6889] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1513), 9, + ACTIONS(1690), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -38988,7 +49393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1515), 24, + ACTIONS(1692), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39013,11 +49418,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5813] = 3, + [6931] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1517), 9, + ACTIONS(1694), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39027,7 +49432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1519), 24, + ACTIONS(1696), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39052,11 +49457,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5855] = 3, + [6973] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1521), 8, + ACTIONS(1698), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39065,7 +49470,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1523), 25, + anon_sym_COLON, + ACTIONS(1700), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39082,20 +49488,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [5897] = 3, + [7015] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1525), 9, + ACTIONS(1702), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39105,7 +49510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1527), 24, + ACTIONS(1704), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39130,11 +49535,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5939] = 3, + [7057] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1529), 9, + ACTIONS(1706), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39144,7 +49549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1531), 24, + ACTIONS(1708), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39169,11 +49574,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [5981] = 3, + [7099] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1533), 8, + ACTIONS(1710), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39182,7 +49587,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1535), 25, + anon_sym_COLON, + ACTIONS(1712), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39199,26 +49605,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [6023] = 6, - ACTIONS(1537), 1, - anon_sym_LBRACK, - ACTIONS(1539), 1, - anon_sym_DOT, - ACTIONS(1541), 1, - anon_sym_COLON_COLON, + [7141] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(272), 9, + ACTIONS(1714), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39228,7 +49627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(274), 21, + ACTIONS(1716), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39247,14 +49646,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6071] = 3, + [7183] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1543), 9, + ACTIONS(1718), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39264,7 +49666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1545), 24, + ACTIONS(1720), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39289,11 +49691,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6113] = 3, + [7225] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1547), 9, + ACTIONS(1722), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39303,7 +49705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1549), 24, + ACTIONS(1724), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39328,11 +49730,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6155] = 3, + [7267] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1551), 9, + ACTIONS(1726), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39342,7 +49744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1553), 24, + ACTIONS(1728), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39367,11 +49769,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6197] = 3, + [7309] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1555), 9, + ACTIONS(1730), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39381,7 +49783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1557), 24, + ACTIONS(1732), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39406,11 +49808,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6239] = 3, + [7351] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1559), 8, + ACTIONS(1734), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39419,7 +49821,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1561), 25, + anon_sym_COLON, + ACTIONS(1736), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39436,20 +49839,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, + [7393] = 5, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1745), 2, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1743), 3, + anon_sym_open, + anon_sym_module, + anon_sym_package, + ACTIONS(1738), 11, anon_sym_AT, - [6281] = 3, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + ACTIONS(1741), 17, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_record, + anon_sym_interface, + [7439] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1563), 9, + ACTIONS(1747), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39459,7 +49902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1565), 24, + ACTIONS(1749), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39484,11 +49927,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6323] = 3, + [7481] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1567), 8, + ACTIONS(1751), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39497,7 +49940,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1569), 25, + anon_sym_COLON, + ACTIONS(1753), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39514,20 +49958,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [6365] = 3, + [7523] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1571), 9, + ACTIONS(1755), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39537,7 +49980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1573), 24, + ACTIONS(1757), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39562,11 +50005,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6407] = 3, + [7565] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1575), 9, + ACTIONS(1759), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39576,7 +50019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1577), 24, + ACTIONS(1761), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39601,11 +50044,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6449] = 3, + [7607] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1579), 9, + ACTIONS(1763), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39615,7 +50058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1581), 24, + ACTIONS(1765), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39640,11 +50083,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6491] = 3, + [7649] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1583), 9, + ACTIONS(1767), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39654,7 +50097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1585), 24, + ACTIONS(1769), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39679,11 +50122,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6533] = 3, + [7691] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1587), 9, + ACTIONS(1771), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39693,7 +50136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(1589), 24, + ACTIONS(1773), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39718,11 +50161,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - [6575] = 3, + [7733] = 5, + ACTIONS(33), 1, + anon_sym_LBRACE, + STATE(449), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1591), 8, + ACTIONS(1745), 3, + anon_sym_LT, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1741), 28, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_record, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [7779] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1775), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39731,7 +50215,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1593), 25, + anon_sym_COLON, + ACTIONS(1777), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39748,28 +50233,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [6617] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(375), 1, - sym_block, + [7821] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1597), 3, + ACTIONS(1781), 5, anon_sym_LT, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1595), 28, + ACTIONS(1779), 28, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -39780,7 +50263,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -39798,11 +50280,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [6663] = 3, + [7863] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1599), 8, + ACTIONS(1783), 9, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39811,7 +50293,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1601), 24, + anon_sym_COLON, + ACTIONS(1785), 24, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39828,25 +50311,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_QMARK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [6704] = 3, + [7905] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1605), 5, + ACTIONS(1787), 9, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + anon_sym_COLON, + ACTIONS(1789), 24, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_RBRACE, anon_sym_SEMI, + [7947] = 5, + ACTIONS(932), 1, + anon_sym_LPAREN, + STATE(1120), 1, + sym_parenthesized_expression, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1745), 2, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1603), 27, + ACTIONS(1741), 28, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -39857,12 +50381,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, + anon_sym_record, anon_sym_interface, anon_sym_byte, anon_sym_short, @@ -39874,17 +50398,127 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [6745] = 3, + [7992] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1609), 5, - anon_sym_LT, - anon_sym_RBRACE, + ACTIONS(1421), 12, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + ACTIONS(1419), 19, + anon_sym_new, + anon_sym_DOT, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_this, + sym_super, + sym_identifier, + [8032] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1405), 12, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + ACTIONS(1403), 19, + anon_sym_new, + anon_sym_DOT, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_this, + sym_super, + sym_identifier, + [8072] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1429), 12, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_SEMI, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + ACTIONS(1427), 19, + anon_sym_new, + anon_sym_DOT, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_this, + sym_super, + sym_identifier, + [8112] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1793), 3, + anon_sym_RBRACE, anon_sym_non_DASHsealed, anon_sym_ATinterface, - ACTIONS(1607), 27, + ACTIONS(1791), 27, + anon_sym_final, anon_sym_class, anon_sym_default, anon_sym_synchronized, @@ -39895,7 +50529,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -39912,11 +50545,11 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [6786] = 3, + [8151] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1611), 8, + ACTIONS(1795), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39925,7 +50558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1613), 24, + ACTIONS(1797), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39945,16 +50578,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [6827] = 3, + [8190] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1404), 8, + ACTIONS(1799), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -39963,7 +50594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1406), 24, + ACTIONS(1801), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -39983,56 +50614,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [6868] = 5, + [8229] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1597), 2, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1618), 3, - anon_sym_open, - anon_sym_module, - anon_sym_package, - ACTIONS(1615), 11, - anon_sym_AT, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - ACTIONS(1595), 16, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_interface, - [6913] = 3, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1803), 8, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1805), 20, + anon_sym_RPAREN, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + [8270] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1620), 8, + ACTIONS(1809), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40041,7 +50667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1622), 24, + ACTIONS(1811), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40061,55 +50687,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AT, - [6954] = 5, - ACTIONS(939), 1, - anon_sym_LPAREN, - STATE(1024), 1, - sym_parenthesized_expression, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1597), 2, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1595), 27, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_enum, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [6998] = 3, + [8309] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1624), 8, + ACTIONS(1813), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40118,7 +50703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1626), 22, + ACTIONS(1815), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40141,14 +50726,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7037] = 4, + [8348] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1628), 8, + ACTIONS(1817), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40157,7 +50739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1630), 20, + ACTIONS(1819), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40175,14 +50757,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7078] = 3, + [8387] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1823), 3, + anon_sym_RBRACE, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1821), 27, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [8426] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1827), 3, + anon_sym_RBRACE, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1825), 27, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [8465] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1831), 3, + anon_sym_RBRACE, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1829), 27, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [8504] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1835), 3, + anon_sym_RBRACE, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1833), 27, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [8543] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1839), 3, + anon_sym_RBRACE, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1837), 27, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, + anon_sym_AT, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_interface, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [8582] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1624), 8, + ACTIONS(1841), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40191,7 +50955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1626), 22, + ACTIONS(1843), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40214,11 +50978,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7117] = 3, + [8621] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1634), 8, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1845), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40227,7 +50994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1636), 22, + ACTIONS(1847), 20, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40245,55 +51012,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7156] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1471), 12, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - ACTIONS(1469), 18, - anon_sym_new, - anon_sym_DOT, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_this, - sym_super, - sym_identifier, - [7195] = 4, + [8662] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1638), 8, + ACTIONS(313), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40302,7 +51028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1640), 20, + ACTIONS(315), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40320,33 +51046,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7236] = 3, + [8701] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1463), 12, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(1851), 3, + anon_sym_RBRACE, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1849), 27, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, anon_sym_AT, - anon_sym_DOT_DOT_DOT, - ACTIONS(1461), 18, - anon_sym_new, - anon_sym_DOT, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_interface, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -40356,50 +51086,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_double, sym_boolean_type, sym_void_type, - sym_this, - sym_super, sym_identifier, - [7275] = 3, + [8740] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(272), 8, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(274), 22, - anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_SEMI, - [7314] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1258), 8, + ACTIONS(1853), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40408,7 +51103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1260), 22, + ACTIONS(1855), 20, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40426,19 +51121,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7353] = 4, + [8781] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1642), 8, + ACTIONS(1799), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40447,7 +51137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1644), 20, + ACTIONS(1801), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40465,14 +51155,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7394] = 3, + [8820] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1646), 8, + ACTIONS(1857), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40481,7 +51173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1648), 22, + ACTIONS(1859), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40504,11 +51196,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7433] = 3, + [8859] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(272), 8, + ACTIONS(1861), 8, anon_sym_AMP, anon_sym_GT, anon_sym_LT, @@ -40517,7 +51209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(274), 22, + ACTIONS(1863), 22, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40540,30 +51232,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7472] = 3, + [8898] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1523), 12, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(1867), 3, + anon_sym_RBRACE, + anon_sym_non_DASHsealed, + anon_sym_ATinterface, + ACTIONS(1865), 27, + anon_sym_final, + anon_sym_class, + anon_sym_default, + anon_sym_synchronized, anon_sym_AT, - anon_sym_DOT_DOT_DOT, - ACTIONS(1521), 18, - anon_sym_new, - anon_sym_DOT, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, + anon_sym_static, + anon_sym_enum, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_interface, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -40573,71 +51267,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_double, sym_boolean_type, sym_void_type, - sym_this, - sym_super, sym_identifier, - [7511] = 3, + [8937] = 13, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1650), 8, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1853), 2, anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1652), 22, - anon_sym_RPAREN, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, anon_sym_STAR, - anon_sym_CARET, anon_sym_PERCENT, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_DASH_GT, + ACTIONS(1855), 10, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7550] = 9, - ACTIONS(1658), 1, + [8995] = 9, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1642), 4, + ACTIONS(1853), 4, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_PIPE, - ACTIONS(1644), 15, + ACTIONS(1855), 15, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40653,41 +51354,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7600] = 12, - ACTIONS(1658), 1, + [9045] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1642), 2, - anon_sym_AMP, + ACTIONS(1869), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1871), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1873), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1819), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + [9113] = 14, + ACTIONS(1853), 1, anon_sym_PIPE, - ACTIONS(1654), 2, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1869), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1871), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1873), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1644), 12, + ACTIONS(1855), 10, anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -40697,116 +51450,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7656] = 18, - ACTIONS(1658), 1, + [9173] = 15, + ACTIONS(1853), 1, + anon_sym_PIPE, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1672), 6, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1855), 9, anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COMMA, + anon_sym_QMARK, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7724] = 6, - ACTIONS(1689), 1, - anon_sym_AT, - ACTIONS(1692), 1, - anon_sym_non_DASHsealed, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(447), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(1306), 10, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - ACTIONS(1686), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [7768] = 7, - ACTIONS(1658), 1, + [9235] = 6, + ACTIONS(1879), 1, anon_sym_SLASH, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1642), 5, + ACTIONS(1853), 7, anon_sym_AMP, anon_sym_GT, anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, anon_sym_GT_GT, - ACTIONS(1644), 17, + ACTIONS(1855), 17, anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -40824,114 +51535,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7814] = 5, - ACTIONS(1045), 1, + [9279] = 6, + ACTIONS(1899), 1, anon_sym_LPAREN, - STATE(1118), 1, - sym_argument_list, + ACTIONS(1901), 1, + anon_sym_DOT, + STATE(578), 1, + sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1047), 8, + ACTIONS(1433), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1431), 23, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [9323] = 18, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1049), 19, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, anon_sym_STAR, - anon_sym_CARET, anon_sym_PERCENT, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, + ACTIONS(1903), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_SEMI, - [7856] = 14, - ACTIONS(1642), 1, - anon_sym_PIPE, - ACTIONS(1658), 1, + [9391] = 16, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1644), 10, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1855), 8, anon_sym_RPAREN, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [7916] = 3, + [9455] = 6, + ACTIONS(1899), 1, + anon_sym_LPAREN, + ACTIONS(1905), 1, + anon_sym_DOT, + STATE(579), 1, + sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1697), 3, - anon_sym_RBRACE, + ACTIONS(1415), 3, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1695), 26, - anon_sym_class, + ACTIONS(1411), 23, + anon_sym_final, anon_sym_default, anon_sym_synchronized, - anon_sym_AT, anon_sym_static, anon_sym_public, anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - anon_sym_interface, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -40942,222 +51709,215 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [7954] = 15, - ACTIONS(1642), 1, - anon_sym_PIPE, - ACTIONS(1658), 1, + [9499] = 15, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1682), 1, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, anon_sym_CARET, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1644), 9, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_SEMI, - [8016] = 6, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1642), 7, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1644), 17, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1855), 9, anon_sym_RPAREN, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_instanceof, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8060] = 16, - ACTIONS(1658), 1, + [9561] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1680), 1, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, + ACTIONS(1897), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + anon_sym_DASH_DASH, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1644), 8, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1907), 6, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, anon_sym_COMMA, - anon_sym_QMARK, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8124] = 15, - ACTIONS(1658), 1, + [9629] = 7, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1853), 5, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1855), 17, + anon_sym_RPAREN, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1644), 9, - anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, anon_sym_COMMA, anon_sym_QMARK, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8186] = 13, - ACTIONS(1658), 1, + [9675] = 6, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1911), 1, + anon_sym_non_DASHsealed, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(544), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(1492), 10, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + ACTIONS(1909), 13, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [9719] = 12, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1642), 2, + ACTIONS(1853), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1654), 2, + ACTIONS(1869), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1871), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1855), 12, + anon_sym_RPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1644), 10, - anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -41167,196 +51927,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8244] = 18, - ACTIONS(1658), 1, + [9775] = 5, + ACTIONS(1182), 1, + anon_sym_LPAREN, + STATE(1275), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1184), 8, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1186), 19, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_SEMI, + [9817] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1652), 6, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1811), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8312] = 6, - ACTIONS(1699), 1, - anon_sym_LPAREN, - ACTIONS(1701), 1, - anon_sym_DOT, - STATE(511), 1, - sym_annotation_argument_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1270), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1266), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [8356] = 6, - ACTIONS(1699), 1, - anon_sym_LPAREN, - ACTIONS(1703), 1, - anon_sym_DOT, - STATE(477), 1, - sym_annotation_argument_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1276), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1274), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [8400] = 18, - ACTIONS(1658), 1, + [9885] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1705), 6, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1913), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_SEMI, - [8468] = 6, - ACTIONS(282), 1, + [9953] = 6, + ACTIONS(1918), 1, anon_sym_AT, - ACTIONS(1709), 1, + ACTIONS(1921), 1, anon_sym_non_DASHsealed, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(447), 4, + STATE(544), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(1294), 10, + ACTIONS(1479), 10, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -41367,7 +52088,8 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - ACTIONS(1707), 13, + ACTIONS(1915), 13, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -41375,37 +52097,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [8512] = 3, + [9997] = 7, + ACTIONS(1322), 1, + anon_sym_AT, + ACTIONS(1924), 1, + anon_sym_LBRACK, + STATE(545), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1713), 3, - anon_sym_RBRACE, + STATE(865), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1317), 10, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + ACTIONS(1315), 11, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_default, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + anon_sym_throws, + sym_this, + sym_identifier, + [10042] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1363), 5, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AT, anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1711), 26, - anon_sym_class, + ACTIONS(1361), 23, + anon_sym_final, anon_sym_default, anon_sym_synchronized, - anon_sym_AT, anon_sym_static, anon_sym_public, anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - anon_sym_interface, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -41416,66 +52174,68 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8550] = 3, + [10079] = 7, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1927), 1, + anon_sym_LBRACK, + STATE(545), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1717), 3, - anon_sym_RBRACE, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1715), 26, - anon_sym_class, + STATE(865), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1331), 10, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + ACTIONS(1329), 11, + anon_sym_COLON, + anon_sym_DOT, anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + anon_sym_throws, + sym_this, sym_identifier, - [8588] = 3, + [10124] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1721), 3, - anon_sym_RBRACE, + ACTIONS(1367), 5, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_AT, anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1719), 26, - anon_sym_class, + ACTIONS(1365), 23, + anon_sym_final, anon_sym_default, anon_sym_synchronized, - anon_sym_AT, anon_sym_static, anon_sym_public, anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - anon_sym_interface, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -41486,116 +52246,349 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8626] = 3, + [10161] = 18, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1725), 3, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1869), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1871), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1873), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1929), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1723), 26, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, + anon_sym_SEMI, + [10227] = 6, + ACTIONS(1680), 1, + anon_sym_LBRACK, + ACTIONS(1684), 1, + anon_sym_COLON_COLON, + ACTIONS(1931), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(313), 8, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(315), 16, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_SEMI, + [10269] = 20, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1933), 1, + anon_sym_AMP, + ACTIONS(1941), 1, + anon_sym_AMP_AMP, + ACTIONS(1943), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1949), 1, + anon_sym_SLASH, + ACTIONS(1951), 1, + anon_sym_PIPE, + ACTIONS(1953), 1, + anon_sym_CARET, + ACTIONS(1957), 1, + anon_sym_GT_GT, + ACTIONS(1961), 1, + anon_sym_COMMA, + ACTIONS(1963), 1, + anon_sym_QMARK, + STATE(969), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1935), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1937), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1939), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1955), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1959), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [10339] = 18, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1933), 1, + anon_sym_AMP, + ACTIONS(1941), 1, + anon_sym_AMP_AMP, + ACTIONS(1943), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1949), 1, + anon_sym_SLASH, + ACTIONS(1951), 1, + anon_sym_PIPE, + ACTIONS(1953), 1, + anon_sym_CARET, + ACTIONS(1957), 1, + anon_sym_GT_GT, + ACTIONS(1963), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1935), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1937), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1939), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1955), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1819), 3, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + [10404] = 15, + ACTIONS(331), 1, anon_sym_AT, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_interface, + ACTIONS(1170), 1, + sym_identifier, + ACTIONS(1965), 1, + anon_sym_GT, + ACTIONS(1967), 1, + anon_sym_QMARK, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, + sym_generic_type, + STATE(699), 1, + sym__unannotated_type, + STATE(776), 1, + sym_annotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(85), 2, + sym_boolean_type, + sym_void_type, + STATE(1011), 2, + sym_wildcard, + sym__type, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(654), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [8664] = 18, - ACTIONS(1658), 1, + [10463] = 20, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, + ACTIONS(1969), 1, + anon_sym_RPAREN, + ACTIONS(1971), 1, + anon_sym_COMMA, + STATE(1018), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1869), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1871), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1873), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + [10532] = 18, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1727), 6, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1973), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_SEMI, - [8732] = 3, + [10597] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1731), 3, - anon_sym_RBRACE, + ACTIONS(1538), 3, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1729), 26, - anon_sym_class, + ACTIONS(1536), 23, + anon_sym_final, anon_sym_default, anon_sym_synchronized, - anon_sym_AT, anon_sym_static, anon_sym_public, anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - anon_sym_interface, anon_sym_byte, anon_sym_short, anon_sym_int, @@ -41606,87 +52599,159 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8770] = 3, + [10632] = 18, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1933), 1, + anon_sym_AMP, + ACTIONS(1941), 1, + anon_sym_AMP_AMP, + ACTIONS(1943), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1949), 1, + anon_sym_SLASH, + ACTIONS(1951), 1, + anon_sym_PIPE, + ACTIONS(1953), 1, + anon_sym_CARET, + ACTIONS(1957), 1, + anon_sym_GT_GT, + ACTIONS(1963), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1735), 3, - anon_sym_RBRACE, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1733), 26, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [8808] = 3, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1935), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1937), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1939), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1955), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1913), 3, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + [10697] = 20, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, + anon_sym_QMARK, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(1975), 1, + anon_sym_RPAREN, + STATE(1004), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1739), 3, - anon_sym_RBRACE, - anon_sym_non_DASHsealed, - anon_sym_ATinterface, - ACTIONS(1737), 26, - anon_sym_class, - anon_sym_default, - anon_sym_synchronized, - anon_sym_AT, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_interface, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [8846] = 3, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1869), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1871), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1873), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [10766] = 18, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1933), 1, + anon_sym_AMP, + ACTIONS(1941), 1, + anon_sym_AMP_AMP, + ACTIONS(1943), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1949), 1, + anon_sym_SLASH, + ACTIONS(1951), 1, + anon_sym_PIPE, + ACTIONS(1953), 1, + anon_sym_CARET, + ACTIONS(1957), 1, + anon_sym_GT_GT, + ACTIONS(1963), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1228), 5, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1935), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1937), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1939), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1955), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1977), 3, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + [10831] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1981), 3, + anon_sym_RPAREN, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1226), 23, + ACTIONS(1979), 23, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -41694,7 +52759,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -41710,17 +52774,65 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8883] = 3, + [10866] = 20, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, + anon_sym_QMARK, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(1983), 1, + anon_sym_RPAREN, + STATE(1024), 1, + aux_sym_for_statement_repeat2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1869), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1871), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1873), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [10935] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1224), 5, - anon_sym_LPAREN, + ACTIONS(1594), 3, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1222), 23, + ACTIONS(1592), 23, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -41728,7 +52840,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -41744,908 +52855,968 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [8920] = 6, - ACTIONS(1537), 1, - anon_sym_LBRACK, - ACTIONS(1541), 1, - anon_sym_COLON_COLON, - ACTIONS(1741), 1, - anon_sym_DOT, + [10970] = 20, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, + anon_sym_QMARK, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(1985), 1, + anon_sym_RPAREN, + STATE(1027), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(272), 8, - anon_sym_AMP, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(274), 16, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, anon_sym_STAR, - anon_sym_CARET, anon_sym_PERCENT, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_SEMI, - [8962] = 7, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(1743), 1, - anon_sym_LBRACK, - STATE(476), 1, - aux_sym_dimensions_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(721), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1240), 10, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_default, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_throws, - sym_this, - sym_identifier, - ACTIONS(1242), 10, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, - [9006] = 18, - ACTIONS(1658), 1, + [11039] = 20, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, + ACTIONS(1987), 1, + anon_sym_RPAREN, + ACTIONS(1989), 1, + anon_sym_COMMA, + STATE(1065), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1745), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [9072] = 20, - ACTIONS(1668), 1, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [11108] = 20, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1747), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1755), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1757), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1763), 1, - anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1767), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1771), 1, - anon_sym_GT_GT, - ACTIONS(1775), 1, - anon_sym_COMMA, - ACTIONS(1777), 1, + ACTIONS(1897), 1, anon_sym_QMARK, - STATE(770), 1, - aux_sym_argument_list_repeat1, + ACTIONS(1991), 1, + anon_sym_COMMA, + ACTIONS(1993), 1, + anon_sym_RBRACE, + STATE(1082), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1773), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [9142] = 7, - ACTIONS(1255), 1, - anon_sym_AT, - ACTIONS(1779), 1, - anon_sym_LBRACK, - STATE(476), 1, - aux_sym_dimensions_repeat1, + [11177] = 4, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1248), 10, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_default, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_throws, - sym_this, - sym_identifier, - ACTIONS(1250), 10, + ACTIONS(309), 2, + anon_sym_while, + anon_sym_else, + ACTIONS(313), 8, anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_EQ, anon_sym_GT, + anon_sym_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, - [9186] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1357), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1355), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [9221] = 12, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(286), 1, - anon_sym_non_DASHsealed, - ACTIONS(1782), 1, - sym_identifier, - ACTIONS(1784), 1, - anon_sym_COMMA, - ACTIONS(1786), 1, - anon_sym_RBRACE, - ACTIONS(1788), 1, - anon_sym_SEMI, - STATE(761), 1, - sym_enum_constant, - STATE(1141), 1, - sym_modifiers, - STATE(1142), 1, - sym_enum_body_declarations, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(461), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(280), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [9274] = 12, - ACTIONS(1668), 1, + anon_sym_GT_GT, + ACTIONS(315), 16, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_instanceof, - ACTIONS(1763), 1, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_SEMI, + [11214] = 20, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1771), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, + anon_sym_QMARK, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(1995), 1, + anon_sym_RPAREN, + STATE(1031), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1642), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1749), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1759), 2, + ACTIONS(1873), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1644), 9, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - [9327] = 20, - ACTIONS(1658), 1, + [11283] = 20, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1790), 1, + ACTIONS(1997), 1, anon_sym_COMMA, - ACTIONS(1792), 1, + ACTIONS(1999), 1, anon_sym_SEMI, - STATE(931), 1, + STATE(983), 1, aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1869), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1871), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1873), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + [11352] = 20, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, + anon_sym_QMARK, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(2001), 1, + anon_sym_RPAREN, + STATE(1016), 1, + aux_sym_for_statement_repeat2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [9396] = 15, - ACTIONS(1668), 1, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [11421] = 20, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1747), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1767), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1771), 1, - anon_sym_GT_GT, + ACTIONS(1897), 1, + anon_sym_QMARK, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(2003), 1, + anon_sym_RPAREN, + STATE(1005), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1644), 6, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - [9455] = 16, - ACTIONS(1668), 1, + [11490] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2007), 3, + anon_sym_RPAREN, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(2005), 23, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [11525] = 18, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1747), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1755), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1763), 1, - anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1767), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1771), 1, - anon_sym_GT_GT, + ACTIONS(1897), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1644), 5, - anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, + ACTIONS(1977), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_QMARK, anon_sym_COLON, - [9516] = 6, - ACTIONS(1763), 1, + [11590] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1602), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1600), 23, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [11625] = 20, + ACTIONS(1879), 1, anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, + anon_sym_QMARK, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(2009), 1, + anon_sym_RPAREN, + STATE(1059), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1642), 7, - anon_sym_AMP, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1644), 14, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + [11694] = 20, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - [9557] = 18, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1747), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1755), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1757), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1763), 1, - anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1767), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1771), 1, - anon_sym_GT_GT, - ACTIONS(1777), 1, + ACTIONS(1897), 1, anon_sym_QMARK, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(2011), 1, + anon_sym_RPAREN, + STATE(1064), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1652), 3, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_COLON, - [9622] = 15, - ACTIONS(1642), 1, - anon_sym_PIPE, - ACTIONS(1668), 1, + [11763] = 20, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1747), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_SLASH, - ACTIONS(1767), 1, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1771), 1, - anon_sym_GT_GT, + ACTIONS(1897), 1, + anon_sym_QMARK, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(2013), 1, + anon_sym_RPAREN, + STATE(1007), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1644), 6, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_DASH_GT, + [11832] = 12, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(301), 1, + anon_sym_non_DASHsealed, + ACTIONS(2015), 1, + sym_identifier, + ACTIONS(2017), 1, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - [9681] = 14, - ACTIONS(1642), 1, - anon_sym_PIPE, - ACTIONS(1668), 1, + ACTIONS(2019), 1, + anon_sym_RBRACE, + ACTIONS(2021), 1, + anon_sym_SEMI, + STATE(891), 1, + sym_enum_constant, + STATE(1263), 1, + sym_enum_body_declarations, + STATE(1264), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(539), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(295), 13, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [11885] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1514), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1512), 23, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [11920] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1510), 3, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(1508), 23, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [11955] = 18, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1747), 1, + ACTIONS(1933), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(1941), 1, + anon_sym_AMP_AMP, + ACTIONS(1943), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1771), 1, + ACTIONS(1951), 1, + anon_sym_PIPE, + ACTIONS(1953), 1, + anon_sym_CARET, + ACTIONS(1957), 1, anon_sym_GT_GT, + ACTIONS(1963), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1935), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1937), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1939), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1955), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1644), 7, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(1907), 3, anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_QMARK, anon_sym_COLON, - [9738] = 20, - ACTIONS(1658), 1, + [12020] = 20, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1794), 1, - anon_sym_RPAREN, - ACTIONS(1796), 1, + ACTIONS(1971), 1, anon_sym_COMMA, - STATE(948), 1, - aux_sym_argument_list_repeat1, + ACTIONS(2023), 1, + anon_sym_RPAREN, + STATE(1015), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [9807] = 20, - ACTIONS(1658), 1, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [12089] = 7, + ACTIONS(1949), 1, anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(1798), 1, - anon_sym_RPAREN, - ACTIONS(1800), 1, - anon_sym_COMMA, - STATE(907), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1853), 5, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1855), 14, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [9876] = 20, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(1800), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + anon_sym_DASH_GT, anon_sym_COMMA, - ACTIONS(1802), 1, - anon_sym_RPAREN, - STATE(910), 1, - aux_sym_for_statement_repeat2, + anon_sym_QMARK, + anon_sym_COLON, + [12132] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [9945] = 20, - ACTIONS(1658), 1, + ACTIONS(2027), 3, + anon_sym_RPAREN, + anon_sym_AT, + anon_sym_non_DASHsealed, + ACTIONS(2025), 23, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [12167] = 20, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1800), 1, + ACTIONS(1971), 1, anon_sym_COMMA, - ACTIONS(1804), 1, + ACTIONS(2029), 1, anon_sym_RPAREN, - STATE(872), 1, + STATE(1019), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [10014] = 7, - ACTIONS(1763), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1759), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1877), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1642), 5, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_GT_GT, - ACTIONS(1644), 14, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + anon_sym_PERCENT, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - [10057] = 3, + [12236] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1808), 3, + ACTIONS(2033), 3, anon_sym_RPAREN, anon_sym_AT, anon_sym_non_DASHsealed, - ACTIONS(1806), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, + ACTIONS(2031), 23, anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [10092] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1373), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1371), 23, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -42653,7 +53824,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, @@ -42669,755 +53839,885 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [10127] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, + [12271] = 14, + ACTIONS(1853), 1, + anon_sym_PIPE, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1933), 1, anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, + ACTIONS(1949), 1, + anon_sym_SLASH, + ACTIONS(1957), 1, + anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1935), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1937), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1939), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1810), 3, - anon_sym_RPAREN, + ACTIONS(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1955), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1855), 7, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_DASH_GT, anon_sym_COMMA, + anon_sym_QMARK, anon_sym_COLON, - [10192] = 18, - ACTIONS(1668), 1, + [12328] = 20, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1747), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1755), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1757), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1763), 1, - anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1767), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1771), 1, - anon_sym_GT_GT, - ACTIONS(1777), 1, + ACTIONS(1897), 1, anon_sym_QMARK, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(2035), 1, + anon_sym_RPAREN, + STATE(1023), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1705), 3, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_COLON, - [10257] = 18, - ACTIONS(1658), 1, + [12397] = 20, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(2037), 1, + anon_sym_RPAREN, + STATE(1021), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1812), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - [10322] = 13, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1763), 1, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [12466] = 20, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1771), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, + anon_sym_QMARK, + ACTIONS(1959), 1, + anon_sym_COLON, + ACTIONS(1989), 1, + anon_sym_COMMA, + STATE(1070), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1642), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1749), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1644), 7, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - [10377] = 15, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(1037), 1, - sym_identifier, - ACTIONS(1814), 1, - anon_sym_GT, - ACTIONS(1816), 1, - anon_sym_QMARK, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(602), 1, - sym__unannotated_type, - STATE(666), 1, - sym_annotated_type, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(861), 2, - sym_wildcard, - sym__type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(564), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [10436] = 20, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, + [12535] = 18, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1933), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1941), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1943), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1949), 1, + anon_sym_SLASH, + ACTIONS(1951), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1957), 1, + anon_sym_GT_GT, + ACTIONS(1963), 1, anon_sym_QMARK, - ACTIONS(1800), 1, - anon_sym_COMMA, - ACTIONS(1818), 1, - anon_sym_RPAREN, - STATE(918), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1935), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1937), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1939), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [10505] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1822), 3, - anon_sym_RPAREN, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1820), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [10540] = 20, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1955), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1903), 3, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + [12600] = 18, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1933), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1941), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1943), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1949), 1, + anon_sym_SLASH, + ACTIONS(1951), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1957), 1, + anon_sym_GT_GT, + ACTIONS(1963), 1, anon_sym_QMARK, - ACTIONS(1800), 1, - anon_sym_COMMA, - ACTIONS(1824), 1, - anon_sym_RPAREN, - STATE(858), 1, - aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1935), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1937), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1939), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [10609] = 15, - ACTIONS(321), 1, + ACTIONS(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1955), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1811), 3, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_COLON, + [12665] = 15, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1170), 1, sym_identifier, - ACTIONS(1816), 1, + ACTIONS(1967), 1, anon_sym_QMARK, - ACTIONS(1826), 1, + ACTIONS(2039), 1, anon_sym_GT, - STATE(579), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(681), 1, sym_generic_type, - STATE(602), 1, + STATE(699), 1, sym__unannotated_type, - STATE(666), 1, + STATE(776), 1, sym_annotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(921), 2, + STATE(1060), 2, sym_wildcard, sym__type, - STATE(593), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(564), 4, + STATE(654), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [10668] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1830), 3, - anon_sym_RPAREN, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1828), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [10703] = 20, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, + [12724] = 15, + ACTIONS(1853), 1, + anon_sym_PIPE, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1933), 1, anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1949), 1, + anon_sym_SLASH, + ACTIONS(1953), 1, anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(1800), 1, - anon_sym_COMMA, - ACTIONS(1832), 1, - anon_sym_RPAREN, - STATE(927), 1, - aux_sym_for_statement_repeat2, + ACTIONS(1957), 1, + anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1935), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1937), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1939), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1955), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1855), 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + [12783] = 6, + ACTIONS(1949), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1853), 7, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_GT_GT, + ACTIONS(1855), 14, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [10772] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + [12824] = 13, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1949), 1, + anon_sym_SLASH, + ACTIONS(1957), 1, + anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1369), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1367), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [10807] = 20, - ACTIONS(1658), 1, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1853), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1935), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1937), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1939), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1955), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1855), 7, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + [12879] = 20, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1773), 1, - anon_sym_COLON, - ACTIONS(1796), 1, + ACTIONS(1971), 1, anon_sym_COMMA, - STATE(952), 1, - aux_sym_argument_list_repeat1, + ACTIONS(2041), 1, + anon_sym_RPAREN, + STATE(985), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1869), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1871), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1873), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + [12948] = 16, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1933), 1, + anon_sym_AMP, + ACTIONS(1941), 1, + anon_sym_AMP_AMP, + ACTIONS(1949), 1, + anon_sym_SLASH, + ACTIONS(1951), 1, + anon_sym_PIPE, + ACTIONS(1953), 1, + anon_sym_CARET, + ACTIONS(1957), 1, + anon_sym_GT_GT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1935), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1937), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1939), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [10876] = 3, + ACTIONS(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1955), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1855), 5, + anon_sym_PIPE_PIPE, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + [13009] = 20, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, + anon_sym_QMARK, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(2043), 1, + anon_sym_RPAREN, + STATE(988), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1390), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1388), 23, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [10911] = 20, - ACTIONS(1658), 1, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1869), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1871), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1873), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [13078] = 20, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1800), 1, + ACTIONS(1997), 1, anon_sym_COMMA, - ACTIONS(1834), 1, - anon_sym_RPAREN, - STATE(864), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2045), 1, + anon_sym_SEMI, + STATE(1062), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1869), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1871), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1873), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + [13147] = 15, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1933), 1, + anon_sym_AMP, + ACTIONS(1949), 1, + anon_sym_SLASH, + ACTIONS(1951), 1, + anon_sym_PIPE, + ACTIONS(1953), 1, + anon_sym_CARET, + ACTIONS(1957), 1, + anon_sym_GT_GT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1935), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1937), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1939), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [10980] = 20, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1955), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1855), 6, anon_sym_AMP_AMP, - ACTIONS(1678), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(1800), 1, + anon_sym_DASH_GT, anon_sym_COMMA, - ACTIONS(1836), 1, - anon_sym_RPAREN, - STATE(857), 1, - aux_sym_for_statement_repeat2, + anon_sym_QMARK, + anon_sym_COLON, + [13206] = 9, + ACTIONS(1949), 1, + anon_sym_SLASH, + ACTIONS(1957), 1, + anon_sym_GT_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1945), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1947), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1955), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1853), 4, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + anon_sym_PIPE, + ACTIONS(1855), 12, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [11049] = 18, - ACTIONS(1668), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_instanceof, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + [13253] = 12, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1747), 1, + ACTIONS(1949), 1, + anon_sym_SLASH, + ACTIONS(1957), 1, + anon_sym_GT_GT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1853), 2, anon_sym_AMP, - ACTIONS(1755), 1, + anon_sym_PIPE, + ACTIONS(1935), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1937), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1945), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1947), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1955), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(1855), 9, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, - ACTIONS(1757), 1, anon_sym_PIPE_PIPE, - ACTIONS(1763), 1, + anon_sym_CARET, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_COLON, + [13306] = 14, + ACTIONS(331), 1, + anon_sym_AT, + ACTIONS(1170), 1, + sym_identifier, + ACTIONS(1967), 1, + anon_sym_QMARK, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, + sym_generic_type, + STATE(699), 1, + sym__unannotated_type, + STATE(776), 1, + sym_annotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(85), 2, + sym_boolean_type, + sym_void_type, + STATE(1135), 2, + sym_wildcard, + sym__type, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(654), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [13362] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1767), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1771), 1, - anon_sym_GT_GT, - ACTIONS(1777), 1, + ACTIONS(1897), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1727), 3, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_COLON, - [11114] = 3, + ACTIONS(2047), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [13426] = 11, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(301), 1, + anon_sym_non_DASHsealed, + ACTIONS(2015), 1, + sym_identifier, + ACTIONS(2021), 1, + anon_sym_SEMI, + ACTIONS(2049), 1, + anon_sym_RBRACE, + STATE(1038), 1, + sym_enum_constant, + STATE(1257), 1, + sym_enum_body_declarations, + STATE(1264), 1, + sym_modifiers, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1361), 3, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_non_DASHsealed, - ACTIONS(1359), 23, + STATE(539), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(295), 13, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -43425,165 +54725,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [11149] = 9, - ACTIONS(1763), 1, + [13476] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1771), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1759), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1761), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1769), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1642), 4, - anon_sym_AMP, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - anon_sym_PIPE, - ACTIONS(1644), 12, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_instanceof, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_COLON, - [11196] = 18, - ACTIONS(1668), 1, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2051), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [13540] = 18, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1747), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1755), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1757), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1763), 1, - anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1767), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1771), 1, - anon_sym_GT_GT, - ACTIONS(1777), 1, + ACTIONS(1897), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1810), 3, - anon_sym_DASH_GT, + ACTIONS(1929), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [11261] = 20, - ACTIONS(1658), 1, + [13604] = 18, + ACTIONS(1106), 1, + anon_sym_LT, + ACTIONS(2053), 1, + sym_identifier, + ACTIONS(2055), 1, + anon_sym_class, + ACTIONS(2057), 1, + anon_sym_enum, + ACTIONS(2059), 1, + anon_sym_record, + ACTIONS(2061), 1, + anon_sym_ATinterface, + ACTIONS(2063), 1, + anon_sym_interface, + STATE(661), 1, + sym_type_parameters, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, + sym_generic_type, + STATE(698), 1, + sym__unannotated_type, + STATE(947), 1, + sym__constructor_declarator, + STATE(1079), 1, + sym__method_header, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(85), 2, + sym_boolean_type, + sym_void_type, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(81), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [13668] = 19, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1838), 1, - anon_sym_COMMA, - ACTIONS(1840), 1, - anon_sym_RBRACE, - STATE(949), 1, - aux_sym_array_initializer_repeat1, + ACTIONS(2065), 1, + anon_sym_COLON, + ACTIONS(2067), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [11330] = 3, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [13734] = 5, + ACTIONS(1745), 1, + anon_sym_non_DASHsealed, + ACTIONS(2069), 1, + anon_sym_AT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1844), 3, - anon_sym_RPAREN, + ACTIONS(1738), 10, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + ACTIONS(1741), 13, + anon_sym_final, + anon_sym_default, + anon_sym_synchronized, + anon_sym_static, + anon_sym_public, + anon_sym_protected, + anon_sym_private, + anon_sym_abstract, + anon_sym_strictfp, + anon_sym_native, + anon_sym_transient, + anon_sym_volatile, + anon_sym_sealed, + [13772] = 11, + ACTIONS(297), 1, anon_sym_AT, + ACTIONS(301), 1, anon_sym_non_DASHsealed, - ACTIONS(1842), 23, + ACTIONS(2015), 1, + sym_identifier, + ACTIONS(2021), 1, + anon_sym_SEMI, + ACTIONS(2072), 1, + anon_sym_RBRACE, + STATE(1038), 1, + sym_enum_constant, + STATE(1237), 1, + sym_enum_body_declarations, + STATE(1264), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(539), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_modifiers_repeat1, + ACTIONS(295), 13, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -43591,1894 +54982,1892 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [11365] = 18, - ACTIONS(1668), 1, + [13822] = 18, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1747), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1755), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1757), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1763), 1, - anon_sym_SLASH, - ACTIONS(1765), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1767), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1771), 1, - anon_sym_GT_GT, - ACTIONS(1777), 1, + ACTIONS(1897), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1751), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1753), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1759), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1761), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1769), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1672), 3, - anon_sym_DASH_GT, + ACTIONS(2074), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [11430] = 18, - ACTIONS(1658), 1, + [13886] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1846), 2, - anon_sym_RPAREN, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2076), 2, anon_sym_COMMA, - [11494] = 19, - ACTIONS(1658), 1, + anon_sym_RBRACE, + [13950] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1848), 1, - anon_sym_COLON, - ACTIONS(1850), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [11560] = 18, - ACTIONS(1658), 1, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(2078), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [14014] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, + ACTIONS(2080), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1852), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [11624] = 18, - ACTIONS(1015), 1, - sym_identifier, - ACTIONS(1017), 1, - anon_sym_LT, - ACTIONS(1854), 1, - anon_sym_class, - ACTIONS(1856), 1, - anon_sym_enum, - ACTIONS(1858), 1, - anon_sym_record, - ACTIONS(1860), 1, - anon_sym_ATinterface, - ACTIONS(1862), 1, - anon_sym_interface, - STATE(569), 1, - sym_type_parameters, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(615), 1, - sym__unannotated_type, - STATE(826), 1, - sym__constructor_declarator, - STATE(940), 1, - sym__method_header, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [11688] = 18, - ACTIONS(1658), 1, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [14077] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, + ACTIONS(2082), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1864), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [11752] = 18, - ACTIONS(1658), 1, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [14140] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, + ACTIONS(2084), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1866), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [11816] = 18, - ACTIONS(1658), 1, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [14203] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, + ACTIONS(2086), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1869), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1871), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1873), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, + [14266] = 17, + ACTIONS(1106), 1, anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1868), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [11880] = 14, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1170), 1, sym_identifier, - ACTIONS(1816), 1, - anon_sym_QMARK, - STATE(579), 1, + ACTIONS(2055), 1, + anon_sym_class, + ACTIONS(2057), 1, + anon_sym_enum, + ACTIONS(2059), 1, + anon_sym_record, + ACTIONS(2061), 1, + anon_sym_ATinterface, + ACTIONS(2063), 1, + anon_sym_interface, + STATE(663), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(672), 1, + sym_type_parameters, + STATE(681), 1, sym_generic_type, - STATE(602), 1, + STATE(702), 1, sym__unannotated_type, - STATE(666), 1, - sym_annotated_type, + STATE(1079), 1, + sym__method_header, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(988), 2, - sym_wildcard, - sym__type, - STATE(593), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(564), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [11936] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1745), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [12000] = 5, - ACTIONS(1597), 1, - anon_sym_non_DASHsealed, - ACTIONS(1870), 1, + [14327] = 14, + ACTIONS(331), 1, anon_sym_AT, + ACTIONS(1170), 1, + sym_identifier, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, + sym_generic_type, + STATE(699), 1, + sym__unannotated_type, + STATE(776), 1, + sym_annotated_type, + STATE(973), 1, + sym__type, + STATE(1155), 1, + sym_type_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1615), 10, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - sym_identifier, - ACTIONS(1595), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [12038] = 11, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(286), 1, - anon_sym_non_DASHsealed, - ACTIONS(1782), 1, - sym_identifier, - ACTIONS(1788), 1, - anon_sym_SEMI, - ACTIONS(1873), 1, - anon_sym_RBRACE, - STATE(898), 1, - sym_enum_constant, - STATE(1121), 1, - sym_enum_body_declarations, - STATE(1141), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(461), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(280), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [12088] = 11, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(286), 1, - anon_sym_non_DASHsealed, - ACTIONS(1782), 1, - sym_identifier, - ACTIONS(1788), 1, - anon_sym_SEMI, - ACTIONS(1875), 1, - anon_sym_RBRACE, - STATE(898), 1, - sym_enum_constant, - STATE(1094), 1, - sym_enum_body_declarations, - STATE(1141), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(461), 4, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(674), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_modifiers_repeat1, - ACTIONS(280), 13, - anon_sym_default, - anon_sym_synchronized, - anon_sym_static, - anon_sym_public, - anon_sym_protected, - anon_sym_private, - anon_sym_abstract, - anon_sym_final, - anon_sym_strictfp, - anon_sym_native, - anon_sym_transient, - anon_sym_volatile, - anon_sym_sealed, - [12138] = 18, - ACTIONS(1658), 1, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [14382] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1877), 1, + ACTIONS(2088), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [12201] = 18, - ACTIONS(1658), 1, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [14445] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1879), 1, + ACTIONS(2090), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [12264] = 18, - ACTIONS(1658), 1, - anon_sym_SLASH, - ACTIONS(1662), 1, - anon_sym_GT_GT, - ACTIONS(1668), 1, - anon_sym_instanceof, - ACTIONS(1670), 1, - anon_sym_AMP, - ACTIONS(1676), 1, - anon_sym_AMP_AMP, - ACTIONS(1678), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, - anon_sym_PIPE, - ACTIONS(1682), 1, - anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, - ACTIONS(1881), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1632), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1666), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(1674), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [12327] = 18, - ACTIONS(1658), 1, + [14508] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1883), 1, - anon_sym_SEMI, + ACTIONS(2092), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [12390] = 14, - ACTIONS(321), 1, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [14571] = 14, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(2094), 1, sym_identifier, - STATE(579), 1, + ACTIONS(2096), 1, + anon_sym_final, + STATE(392), 1, + sym__unannotated_type, + STATE(406), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(418), 1, sym_generic_type, - STATE(602), 1, - sym__unannotated_type, - STATE(666), 1, + STATE(432), 1, sym_annotated_type, - STATE(846), 1, + STATE(450), 1, sym__type, - STATE(1027), 1, - sym_type_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(2100), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(2102), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(422), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(572), 4, + STATE(666), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + aux_sym_array_creation_expression_repeat1, + ACTIONS(2098), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [12445] = 18, - ACTIONS(1658), 1, + [14626] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1885), 1, + ACTIONS(2104), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [12508] = 18, - ACTIONS(1658), 1, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [14689] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1887), 1, - anon_sym_RPAREN, + ACTIONS(2106), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [12571] = 18, - ACTIONS(1658), 1, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [14752] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1889), 1, + ACTIONS(2108), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1869), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1871), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1873), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + [14815] = 18, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, + anon_sym_QMARK, + ACTIONS(2110), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [12634] = 14, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(1037), 1, - sym_identifier, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [14878] = 18, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, ACTIONS(1891), 1, - anon_sym_open, + anon_sym_PIPE_PIPE, ACTIONS(1893), 1, - anon_sym_module, + anon_sym_PIPE, ACTIONS(1895), 1, - anon_sym_package, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(596), 1, - sym__unannotated_type, + anon_sym_CARET, + ACTIONS(1897), 1, + anon_sym_QMARK, + ACTIONS(2112), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(588), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [12689] = 18, - ACTIONS(1658), 1, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1869), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1871), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1873), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [14941] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, - anon_sym_QMARK, ACTIONS(1897), 1, - anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(2114), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, + ACTIONS(1869), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(1871), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(1873), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1875), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1656), 2, + ACTIONS(1877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(1660), 2, + ACTIONS(1881), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + [15004] = 18, + ACTIONS(1879), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_GT_GT, + ACTIONS(1885), 1, + anon_sym_instanceof, + ACTIONS(1887), 1, + anon_sym_AMP, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, + anon_sym_PIPE, + ACTIONS(1895), 1, + anon_sym_CARET, + ACTIONS(1897), 1, + anon_sym_QMARK, + ACTIONS(2116), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1807), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [12752] = 14, - ACTIONS(321), 1, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [15067] = 14, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1170), 1, sym_identifier, - STATE(579), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(681), 1, sym_generic_type, - STATE(602), 1, + STATE(699), 1, sym__unannotated_type, - STATE(666), 1, + STATE(776), 1, sym_annotated_type, - STATE(846), 1, + STATE(973), 1, sym__type, - STATE(1086), 1, + STATE(1235), 1, sym_type_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(572), 4, + STATE(674), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [12807] = 18, - ACTIONS(1658), 1, + [15122] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1899), 1, + ACTIONS(2118), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [12870] = 18, - ACTIONS(1658), 1, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [15185] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1901), 1, - anon_sym_COLON, + ACTIONS(2120), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [12933] = 18, - ACTIONS(1658), 1, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [15248] = 14, + ACTIONS(331), 1, + anon_sym_AT, + ACTIONS(1170), 1, + sym_identifier, + ACTIONS(2122), 1, + anon_sym_open, + ACTIONS(2124), 1, + anon_sym_module, + ACTIONS(2126), 1, + anon_sym_package, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, + sym_generic_type, + STATE(695), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(85), 2, + sym_boolean_type, + sym_void_type, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(685), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [15303] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1903), 1, - anon_sym_RBRACK, + ACTIONS(2128), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [12996] = 18, - ACTIONS(1658), 1, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [15366] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1905), 1, - anon_sym_SEMI, + ACTIONS(2130), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [13059] = 18, - ACTIONS(1658), 1, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [15429] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1907), 1, + ACTIONS(2132), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [13122] = 14, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(1037), 1, - sym_identifier, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(602), 1, - sym__unannotated_type, - STATE(666), 1, - sym_annotated_type, - STATE(846), 1, - sym__type, - STATE(956), 1, - sym_type_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - STATE(572), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [13177] = 18, - ACTIONS(1658), 1, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [15492] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1909), 1, + ACTIONS(2134), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [13240] = 18, - ACTIONS(1658), 1, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [15555] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1911), 1, + ACTIONS(2136), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [13303] = 18, - ACTIONS(1658), 1, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [15618] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1913), 1, - anon_sym_RBRACK, + ACTIONS(2138), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [13366] = 18, - ACTIONS(1658), 1, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [15681] = 18, + ACTIONS(1879), 1, anon_sym_SLASH, - ACTIONS(1662), 1, + ACTIONS(1883), 1, anon_sym_GT_GT, - ACTIONS(1668), 1, + ACTIONS(1885), 1, anon_sym_instanceof, - ACTIONS(1670), 1, + ACTIONS(1887), 1, anon_sym_AMP, - ACTIONS(1676), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1678), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1680), 1, + ACTIONS(1893), 1, anon_sym_PIPE, - ACTIONS(1682), 1, + ACTIONS(1895), 1, anon_sym_CARET, - ACTIONS(1684), 1, + ACTIONS(1897), 1, anon_sym_QMARK, - ACTIONS(1915), 1, - anon_sym_SEMI, + ACTIONS(2140), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1632), 2, + ACTIONS(1807), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1654), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1656), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(1660), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(1664), 2, + ACTIONS(1869), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(1666), 2, + ACTIONS(1871), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(1674), 2, + ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [13429] = 13, - ACTIONS(321), 1, + ACTIONS(1875), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1877), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1881), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + [15744] = 14, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1170), 1, sym_identifier, - STATE(579), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(681), 1, sym_generic_type, - STATE(602), 1, + STATE(699), 1, sym__unannotated_type, - STATE(666), 1, + STATE(776), 1, sym_annotated_type, - STATE(823), 1, + STATE(973), 1, sym__type, + STATE(1192), 1, + sym_type_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(572), 4, + STATE(674), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13481] = 13, - ACTIONS(321), 1, + [15799] = 13, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1170), 1, sym_identifier, - STATE(579), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(681), 1, sym_generic_type, - STATE(602), 1, + STATE(699), 1, sym__unannotated_type, - STATE(666), 1, + STATE(776), 1, sym_annotated_type, - STATE(1056), 1, + STATE(965), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(572), 4, + STATE(674), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13533] = 16, - ACTIONS(1017), 1, - anon_sym_LT, - ACTIONS(1037), 1, + [15851] = 13, + ACTIONS(331), 1, + anon_sym_AT, + ACTIONS(1170), 1, sym_identifier, - ACTIONS(1854), 1, - anon_sym_class, - ACTIONS(1856), 1, - anon_sym_enum, - ACTIONS(1860), 1, - anon_sym_ATinterface, - ACTIONS(1862), 1, - anon_sym_interface, - STATE(567), 1, - sym_type_parameters, - STATE(579), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(681), 1, sym_generic_type, - STATE(612), 1, + STATE(699), 1, sym__unannotated_type, - STATE(940), 1, - sym__method_header, + STATE(776), 1, + sym_annotated_type, + STATE(1055), 1, + sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - ACTIONS(75), 5, + STATE(674), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13591] = 13, - ACTIONS(321), 1, + [15903] = 13, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1170), 1, sym_identifier, - STATE(579), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(681), 1, sym_generic_type, - STATE(602), 1, + STATE(699), 1, sym__unannotated_type, - STATE(666), 1, + STATE(776), 1, sym_annotated_type, - STATE(982), 1, + STATE(1136), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(572), 4, + STATE(674), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13643] = 13, - ACTIONS(321), 1, + [15955] = 13, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1170), 1, sym_identifier, - STATE(579), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(681), 1, sym_generic_type, - STATE(602), 1, + STATE(699), 1, sym__unannotated_type, - STATE(666), 1, + STATE(776), 1, sym_annotated_type, - STATE(829), 1, + STATE(966), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(572), 4, + STATE(674), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13695] = 13, - ACTIONS(321), 1, + [16007] = 13, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(2094), 1, sym_identifier, - STATE(579), 1, + STATE(392), 1, + sym__unannotated_type, + STATE(406), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(418), 1, sym_generic_type, - STATE(602), 1, - sym__unannotated_type, - STATE(666), 1, + STATE(432), 1, sym_annotated_type, - STATE(837), 1, + STATE(440), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(2100), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(2102), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(422), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(572), 4, + STATE(666), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + aux_sym_array_creation_expression_repeat1, + ACTIONS(2098), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13747] = 13, - ACTIONS(321), 1, + [16059] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1386), 11, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_default, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + anon_sym_throws, + sym_this, + sym_identifier, + ACTIONS(1388), 12, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_AT, - ACTIONS(1917), 1, + anon_sym_DOT_DOT_DOT, + [16091] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1315), 11, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_default, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + anon_sym_throws, + sym_this, sym_identifier, - STATE(337), 1, - sym__unannotated_type, - STATE(373), 1, + ACTIONS(1317), 12, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + [16123] = 13, + ACTIONS(331), 1, + anon_sym_AT, + ACTIONS(1170), 1, + sym_identifier, + STATE(663), 1, sym_scoped_type_identifier, - STATE(391), 1, + STATE(681), 1, sym_generic_type, - STATE(438), 1, + STATE(699), 1, + sym__unannotated_type, + STATE(776), 1, sym_annotated_type, - STATE(440), 1, + STATE(951), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1921), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(1923), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(426), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(570), 4, + STATE(674), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1919), 5, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13799] = 13, - ACTIONS(321), 1, + [16175] = 13, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1170), 1, sym_identifier, - STATE(579), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(681), 1, sym_generic_type, - STATE(602), 1, + STATE(699), 1, sym__unannotated_type, - STATE(666), 1, + STATE(776), 1, sym_annotated_type, - STATE(887), 1, + STATE(1205), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(572), 4, + STATE(674), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13851] = 13, - ACTIONS(321), 1, + [16227] = 13, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1170), 1, sym_identifier, - STATE(579), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(681), 1, sym_generic_type, - STATE(602), 1, + STATE(699), 1, sym__unannotated_type, - STATE(666), 1, + STATE(776), 1, sym_annotated_type, - STATE(896), 1, + STATE(990), 1, sym__type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(85), 2, + sym_boolean_type, + sym_void_type, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(674), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [16279] = 12, + ACTIONS(331), 1, + anon_sym_AT, + ACTIONS(1170), 1, + sym_identifier, + ACTIONS(2142), 1, + anon_sym_QMARK, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, + sym_generic_type, + STATE(695), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(572), 4, + STATE(685), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [16328] = 6, + ACTIONS(2144), 1, + anon_sym_LPAREN, + ACTIONS(2146), 1, + anon_sym_DOT, + STATE(689), 1, + sym_annotation_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1415), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(1411), 13, + anon_sym_open, + anon_sym_module, + anon_sym_package, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [13903] = 8, - ACTIONS(282), 1, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [16365] = 8, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(286), 1, + ACTIONS(301), 1, anon_sym_non_DASHsealed, - ACTIONS(1782), 1, + ACTIONS(2015), 1, sym_identifier, - STATE(898), 1, + STATE(1038), 1, sym_enum_constant, - STATE(1141), 1, + STATE(1264), 1, sym_modifiers, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(461), 4, + STATE(539), 4, sym__annotation, sym_marker_annotation, sym_annotation, aux_sym_modifiers_repeat1, - ACTIONS(280), 13, + ACTIONS(295), 13, + anon_sym_final, anon_sym_default, anon_sym_synchronized, anon_sym_static, @@ -45486,58 +56875,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_private, anon_sym_abstract, - anon_sym_final, anon_sym_strictfp, anon_sym_native, anon_sym_transient, anon_sym_volatile, anon_sym_sealed, - [13944] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1429), 10, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_default, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - anon_sym_throws, - sym_this, - sym_identifier, - ACTIONS(1431), 12, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [13975] = 6, - ACTIONS(1925), 1, + [16406] = 6, + ACTIONS(2144), 1, anon_sym_LPAREN, - ACTIONS(1927), 1, + ACTIONS(2148), 1, anon_sym_DOT, - STATE(582), 1, + STATE(686), 1, sym_annotation_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1270), 6, + ACTIONS(1433), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1266), 13, + ACTIONS(1431), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -45546,62 +56906,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_long, anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [14012] = 6, - ACTIONS(1925), 1, - anon_sym_LPAREN, - ACTIONS(1929), 1, - anon_sym_DOT, - STATE(581), 1, - sym_annotation_argument_list, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [16443] = 11, + ACTIONS(331), 1, + anon_sym_AT, + ACTIONS(1170), 1, + sym_identifier, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, + sym_generic_type, + STATE(745), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(85), 2, + sym_boolean_type, + sym_void_type, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + STATE(685), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [16489] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1276), 6, + ACTIONS(1423), 8, + anon_sym_DOT, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, + sym_identifier, + ACTIONS(1425), 13, + anon_sym_LPAREN, + anon_sym_AMP, anon_sym_RPAREN, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1274), 13, - anon_sym_open, - anon_sym_module, - anon_sym_package, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [14049] = 3, + anon_sym_DOT_DOT_DOT, + [16519] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1248), 10, - anon_sym_COLON, + ACTIONS(1407), 8, anon_sym_DOT, - anon_sym_default, anon_sym_open, anon_sym_module, anon_sym_implements, anon_sym_permits, - anon_sym_throws, + anon_sym_record, sym_this, sym_identifier, - ACTIONS(1250), 12, + ACTIONS(1409), 13, + anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, - anon_sym_EQ, anon_sym_GT, + anon_sym_LT, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LBRACK, @@ -45610,360 +57000,512 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [14080] = 12, - ACTIONS(321), 1, + [16549] = 11, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(2150), 1, sym_identifier, - ACTIONS(1931), 1, - anon_sym_QMARK, - STATE(579), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(681), 1, sym_generic_type, - STATE(596), 1, + STATE(739), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(588), 4, + STATE(658), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14129] = 3, + [16595] = 12, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(331), 1, + anon_sym_AT, + ACTIONS(2152), 1, + sym_identifier, + STATE(716), 1, + sym_scoped_type_identifier, + STATE(723), 1, + sym_type_arguments, + STATE(743), 1, + sym_generic_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1228), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_DOT, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(1226), 13, - anon_sym_open, - anon_sym_module, - anon_sym_package, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(2154), 2, + sym_boolean_type, + sym_void_type, + STATE(754), 2, + sym_integral_type, + sym_floating_point_type, + STATE(690), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [14159] = 3, + [16643] = 6, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(2156), 1, + anon_sym_DOT, + STATE(677), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1224), 8, - anon_sym_LPAREN, + ACTIONS(1390), 7, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, + sym_identifier, + ACTIONS(1392), 11, + anon_sym_AMP, anon_sym_RPAREN, + anon_sym_GT, + anon_sym_PIPE, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_DOT, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1222), 13, + anon_sym_DOT_DOT_DOT, + [16679] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1445), 8, + anon_sym_DOT, anon_sym_open, anon_sym_module, - anon_sym_package, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, sym_identifier, - [14189] = 11, - ACTIONS(321), 1, + ACTIONS(1447), 13, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + [16709] = 11, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1170), 1, sym_identifier, - STATE(579), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(681), 1, sym_generic_type, - STATE(646), 1, + STATE(772), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(568), 4, + STATE(685), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14235] = 11, - ACTIONS(321), 1, + [16755] = 11, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(2094), 1, sym_identifier, - STATE(579), 1, + STATE(389), 1, + sym__unannotated_type, + STATE(406), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(418), 1, sym_generic_type, - STATE(647), 1, - sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(2100), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(2102), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(422), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(588), 4, + STATE(685), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + aux_sym_array_creation_expression_repeat1, + ACTIONS(2098), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14281] = 11, - ACTIONS(321), 1, + [16801] = 12, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1933), 1, + ACTIONS(2158), 1, sym_identifier, - STATE(579), 1, + STATE(720), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(723), 1, + sym_type_arguments, + STATE(730), 1, sym_generic_type, - STATE(646), 1, - sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(2160), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, - sym_array_type, + STATE(756), 2, sym_integral_type, sym_floating_point_type, - STATE(568), 4, + STATE(684), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14327] = 11, - ACTIONS(321), 1, + [16849] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1363), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AT, - ACTIONS(1917), 1, + ACTIONS(1361), 13, + anon_sym_open, + anon_sym_module, + anon_sym_package, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, sym_identifier, - STATE(339), 1, - sym__unannotated_type, - STATE(373), 1, + [16879] = 6, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(2162), 1, + anon_sym_DOT, + STATE(678), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1180), 7, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, + sym_identifier, + ACTIONS(1204), 11, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + [16915] = 11, + ACTIONS(331), 1, + anon_sym_AT, + ACTIONS(1170), 1, + sym_identifier, + STATE(663), 1, sym_scoped_type_identifier, - STATE(391), 1, + STATE(681), 1, sym_generic_type, + STATE(747), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1921), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(1923), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(426), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(588), 4, + STATE(685), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1919), 5, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14373] = 11, - ACTIONS(321), 1, + [16961] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1437), 8, + anon_sym_DOT, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, + sym_identifier, + ACTIONS(1439), 13, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + [16991] = 11, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1170), 1, sym_identifier, - STATE(579), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(681), 1, sym_generic_type, - STATE(658), 1, + STATE(739), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(588), 4, + STATE(658), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [17037] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1367), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AT, + ACTIONS(1365), 13, + anon_sym_open, + anon_sym_module, + anon_sym_package, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14419] = 11, - ACTIONS(321), 1, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [17067] = 11, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(1037), 1, + ACTIONS(1170), 1, sym_identifier, - STATE(579), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(681), 1, sym_generic_type, - STATE(596), 1, + STATE(695), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(588), 4, + STATE(685), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14465] = 11, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(1037), 1, + [17113] = 14, + ACTIONS(1170), 1, sym_identifier, - STATE(579), 1, + ACTIONS(2055), 1, + anon_sym_class, + ACTIONS(2057), 1, + anon_sym_enum, + ACTIONS(2059), 1, + anon_sym_record, + ACTIONS(2061), 1, + anon_sym_ATinterface, + ACTIONS(2063), 1, + anon_sym_interface, + STATE(663), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(681), 1, sym_generic_type, - STATE(628), 1, + STATE(713), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - STATE(588), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(75), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14511] = 3, + [17165] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1533), 7, + ACTIONS(1453), 8, anon_sym_DOT, anon_sym_open, anon_sym_module, anon_sym_implements, anon_sym_permits, + anon_sym_record, sym_this, sym_identifier, - ACTIONS(1535), 13, + ACTIONS(1455), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, - anon_sym_LT, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LBRACK, @@ -45972,50 +57514,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [14540] = 3, + [17194] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1559), 7, + ACTIONS(1441), 8, anon_sym_DOT, anon_sym_open, anon_sym_module, anon_sym_implements, anon_sym_permits, + anon_sym_record, sym_this, sym_identifier, - ACTIONS(1561), 13, + ACTIONS(1443), 12, anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [14569] = 6, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1935), 1, - anon_sym_DOT, - STATE(591), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1043), 6, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - sym_this, - sym_identifier, - ACTIONS(1067), 11, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -46027,24 +57540,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [14604] = 3, + [17223] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1591), 7, + ACTIONS(1399), 8, anon_sym_DOT, anon_sym_open, anon_sym_module, anon_sym_implements, anon_sym_permits, + anon_sym_record, sym_this, sym_identifier, - ACTIONS(1593), 13, + ACTIONS(1401), 12, anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, - anon_sym_LT, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LBRACK, @@ -46053,60 +57566,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [14633] = 13, - ACTIONS(1037), 1, + [17252] = 13, + ACTIONS(1170), 1, sym_identifier, - ACTIONS(1854), 1, + ACTIONS(2055), 1, anon_sym_class, - ACTIONS(1856), 1, + ACTIONS(2057), 1, anon_sym_enum, - ACTIONS(1860), 1, + ACTIONS(2061), 1, anon_sym_ATinterface, - ACTIONS(1862), 1, + ACTIONS(2063), 1, anon_sym_interface, - STATE(579), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(681), 1, sym_generic_type, - STATE(621), 1, + STATE(714), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - ACTIONS(75), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [14682] = 6, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1937), 1, - anon_sym_DOT, - STATE(587), 1, - sym_type_arguments, + [17301] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1404), 6, + ACTIONS(1457), 8, + anon_sym_DOT, anon_sym_open, anon_sym_module, anon_sym_implements, anon_sym_permits, + anon_sym_record, sym_this, sym_identifier, - ACTIONS(1406), 11, + ACTIONS(1459), 12, + anon_sym_LPAREN, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -46118,24 +57628,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [14717] = 3, + [17330] = 4, + ACTIONS(2156), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1465), 7, - anon_sym_DOT, + ACTIONS(1390), 7, anon_sym_open, anon_sym_module, anon_sym_implements, anon_sym_permits, + anon_sym_record, sym_this, sym_identifier, - ACTIONS(1467), 13, - anon_sym_LPAREN, + ACTIONS(1392), 11, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, - anon_sym_LT, anon_sym_PIPE, anon_sym_COMMA, anon_sym_LBRACK, @@ -46144,43 +57654,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [14746] = 3, + [17360] = 13, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1927), 1, + anon_sym_LBRACK, + ACTIONS(2164), 1, + sym_identifier, + ACTIONS(2166), 1, + anon_sym_DOT, + ACTIONS(2170), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2172), 1, + sym_this, + STATE(547), 1, + aux_sym_dimensions_repeat1, + STATE(683), 1, + sym_dimensions, + STATE(1102), 1, + sym__variable_declarator_id, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1359), 3, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + ACTIONS(2168), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(865), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [17408] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 6, + ACTIONS(1449), 8, + anon_sym_DOT, + anon_sym_open, + anon_sym_module, + anon_sym_implements, + anon_sym_permits, + anon_sym_record, + sym_this, + sym_identifier, + ACTIONS(1451), 11, + anon_sym_AMP, anon_sym_RPAREN, + anon_sym_GT, + anon_sym_PIPE, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1355), 13, - anon_sym_open, - anon_sym_module, - anon_sym_package, + anon_sym_DOT_DOT_DOT, + [17436] = 10, + ACTIONS(331), 1, + anon_sym_AT, + ACTIONS(2174), 1, + sym_identifier, + STATE(729), 1, + sym_scoped_type_identifier, + STATE(760), 1, + sym_generic_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(2176), 2, + sym_boolean_type, + sym_void_type, + STATE(773), 2, + sym_integral_type, + sym_floating_point_type, + STATE(685), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [14774] = 3, + [17478] = 5, + ACTIONS(2180), 1, + anon_sym_QMARK, + ACTIONS(2182), 1, + anon_sym_AT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1361), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AT, - ACTIONS(1359), 13, + STATE(685), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(2178), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -46194,18 +57773,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [14802] = 3, + [17510] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1373), 6, + ACTIONS(1514), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1371), 13, + ACTIONS(1512), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -46219,20 +57798,20 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [14830] = 3, + [17538] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1599), 7, + ACTIONS(1390), 8, anon_sym_DOT, anon_sym_open, anon_sym_module, anon_sym_implements, anon_sym_permits, + anon_sym_record, sym_this, sym_identifier, - ACTIONS(1601), 12, - anon_sym_LPAREN, + ACTIONS(1392), 11, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -46244,18 +57823,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AT, anon_sym_DOT_DOT_DOT, - [14858] = 3, + [17566] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1390), 6, + ACTIONS(1538), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1388), 13, + ACTIONS(1536), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -46269,70 +57848,18 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [14886] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1611), 7, - anon_sym_DOT, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - sym_this, - sym_identifier, - ACTIONS(1613), 12, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [14914] = 3, + [17594] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1477), 7, - anon_sym_DOT, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - sym_this, - sym_identifier, - ACTIONS(1479), 12, - anon_sym_LPAREN, - anon_sym_AMP, + ACTIONS(1510), 6, anon_sym_RPAREN, - anon_sym_GT, - anon_sym_PIPE, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [14942] = 5, - ACTIONS(1941), 1, anon_sym_QMARK, - ACTIONS(1943), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(588), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1939), 13, + ACTIONS(1508), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -46346,52 +57873,50 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [14974] = 12, - ACTIONS(1037), 1, + [17622] = 10, + ACTIONS(331), 1, + anon_sym_AT, + ACTIONS(2185), 1, sym_identifier, - ACTIONS(1854), 1, - anon_sym_class, - ACTIONS(1860), 1, - anon_sym_ATinterface, - ACTIONS(1862), 1, - anon_sym_interface, - STATE(579), 1, + STATE(733), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(759), 1, sym_generic_type, - STATE(623), 1, - sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(2187), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, - sym_array_type, + STATE(770), 2, sym_integral_type, sym_floating_point_type, - ACTIONS(75), 5, + STATE(685), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15020] = 3, + [17664] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1369), 6, + ACTIONS(1602), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_QMARK, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - ACTIONS(1367), 13, + ACTIONS(1600), 13, anon_sym_open, anon_sym_module, anon_sym_package, @@ -46405,156 +57930,115 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [15048] = 3, + [17692] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1567), 7, - anon_sym_DOT, - anon_sym_open, - anon_sym_module, - anon_sym_implements, - anon_sym_permits, - sym_this, - sym_identifier, - ACTIONS(1569), 12, - anon_sym_LPAREN, - anon_sym_AMP, + ACTIONS(1594), 6, anon_sym_RPAREN, - anon_sym_GT, - anon_sym_PIPE, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [15076] = 13, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(1743), 1, - anon_sym_LBRACK, - ACTIONS(1946), 1, - sym_identifier, - ACTIONS(1948), 1, - anon_sym_DOT, - ACTIONS(1952), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1954), 1, - sym_this, - STATE(473), 1, - aux_sym_dimensions_repeat1, - STATE(594), 1, - sym_dimensions, - STATE(970), 1, - sym__variable_declarator_id, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1950), 2, - anon_sym_open, - anon_sym_module, - ACTIONS(1260), 3, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - STATE(721), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [15123] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1404), 7, - anon_sym_DOT, + ACTIONS(1592), 13, anon_sym_open, anon_sym_module, - anon_sym_implements, - anon_sym_permits, - sym_this, - sym_identifier, - ACTIONS(1406), 11, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, + anon_sym_package, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [17720] = 13, + ACTIONS(297), 1, anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [15150] = 3, + ACTIONS(1359), 1, + anon_sym_COLON_COLON, + ACTIONS(1927), 1, + anon_sym_LBRACK, + ACTIONS(2189), 1, + sym_identifier, + ACTIONS(2191), 1, + anon_sym_DOT, + STATE(547), 1, + aux_sym_dimensions_repeat1, + STATE(683), 1, + sym_dimensions, + STATE(942), 1, + sym__variable_declarator_id, + STATE(986), 1, + sym_variable_declarator, + STATE(1243), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1620), 7, - anon_sym_DOT, + ACTIONS(2168), 3, anon_sym_open, anon_sym_module, - anon_sym_implements, - anon_sym_permits, - sym_this, - sym_identifier, - ACTIONS(1622), 11, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, + anon_sym_record, + STATE(865), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [17766] = 13, + ACTIONS(297), 1, anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [15177] = 4, - ACTIONS(1937), 1, + ACTIONS(1359), 1, + anon_sym_COLON_COLON, + ACTIONS(1927), 1, + anon_sym_LBRACK, + ACTIONS(2189), 1, + sym_identifier, + ACTIONS(2191), 1, anon_sym_DOT, + STATE(547), 1, + aux_sym_dimensions_repeat1, + STATE(683), 1, + sym_dimensions, + STATE(950), 1, + sym__variable_declarator_id, + STATE(986), 1, + sym_variable_declarator, + STATE(1288), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1404), 6, + ACTIONS(2168), 3, anon_sym_open, anon_sym_module, - anon_sym_implements, - anon_sym_permits, - sym_this, - sym_identifier, - ACTIONS(1406), 11, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [15206] = 7, - ACTIONS(282), 1, + anon_sym_record, + STATE(865), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [17812] = 7, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - STATE(473), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(683), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1264), 9, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1347), 9, anon_sym_AMP, anon_sym_RPAREN, anon_sym_GT, @@ -46564,385 +58048,419 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_implements, anon_sym_permits, - [15240] = 10, - ACTIONS(1037), 1, + [17846] = 10, + ACTIONS(1170), 1, sym_identifier, - STATE(579), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(681), 1, sym_generic_type, - STATE(627), 1, + STATE(725), 1, sym__unannotated_type, - STATE(806), 1, + STATE(892), 1, sym_catch_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - ACTIONS(75), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15280] = 13, - ACTIONS(282), 1, + [17886] = 13, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1260), 1, + ACTIONS(1359), 1, anon_sym_COLON_COLON, - ACTIONS(1743), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(1956), 1, + ACTIONS(2189), 1, sym_identifier, - ACTIONS(1958), 1, + ACTIONS(2191), 1, anon_sym_DOT, - STATE(473), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(683), 1, sym_dimensions, - STATE(791), 1, + STATE(963), 1, sym__variable_declarator_id, - STATE(913), 1, + STATE(986), 1, sym_variable_declarator, - STATE(1126), 1, + STATE(1243), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(2168), 3, anon_sym_open, anon_sym_module, - STATE(721), 4, + anon_sym_record, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [15325] = 10, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1960), 1, + aux_sym_array_creation_expression_repeat1, + [17932] = 12, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1927), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, sym_identifier, - STATE(611), 1, - sym_scoped_type_identifier, - STATE(622), 1, - sym_type_arguments, - STATE(637), 1, - sym_generic_type, + STATE(547), 1, + aux_sym_dimensions_repeat1, + STATE(683), 1, + sym_dimensions, + STATE(943), 1, + sym__method_declarator, + STATE(950), 1, + sym__variable_declarator_id, + STATE(986), 1, + sym_variable_declarator, + STATE(1265), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(1962), 2, - sym_boolean_type, - sym_void_type, - STATE(645), 2, - sym_integral_type, - sym_floating_point_type, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [15364] = 10, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1964), 1, - sym_identifier, - STATE(618), 1, - sym_scoped_type_identifier, - STATE(622), 1, - sym_type_arguments, - STATE(629), 1, - sym_generic_type, + ACTIONS(2195), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(865), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [17975] = 7, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1927), 1, + anon_sym_LBRACK, + STATE(547), 1, + aux_sym_dimensions_repeat1, + STATE(683), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(1966), 2, - sym_boolean_type, - sym_void_type, - STATE(642), 2, - sym_integral_type, - sym_floating_point_type, - ACTIONS(75), 5, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - [15403] = 9, - ACTIONS(1037), 1, + STATE(865), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(1359), 8, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_implements, + anon_sym_permits, + [18008] = 9, + ACTIONS(1170), 1, sym_identifier, - STATE(579), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(681), 1, sym_generic_type, - STATE(636), 1, + STATE(748), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - ACTIONS(75), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15440] = 7, - ACTIONS(282), 1, + [18045] = 12, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - STATE(473), 1, + ACTIONS(2193), 1, + sym_identifier, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(683), 1, sym_dimensions, + STATE(943), 1, + sym__method_declarator, + STATE(950), 1, + sym__variable_declarator_id, + STATE(986), 1, + sym_variable_declarator, + STATE(1268), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + ACTIONS(2195), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(1260), 8, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_implements, - anon_sym_permits, - [15473] = 13, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [18088] = 12, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1260), 1, - anon_sym_COLON_COLON, - ACTIONS(1743), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(1956), 1, + ACTIONS(2193), 1, sym_identifier, - ACTIONS(1958), 1, - anon_sym_DOT, - STATE(473), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(683), 1, sym_dimensions, - STATE(776), 1, + STATE(943), 1, + sym__method_declarator, + STATE(950), 1, sym__variable_declarator_id, - STATE(913), 1, + STATE(986), 1, sym_variable_declarator, - STATE(1110), 1, + STATE(1245), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(2195), 3, anon_sym_open, anon_sym_module, - STATE(721), 4, + anon_sym_record, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [15518] = 9, - ACTIONS(1037), 1, + aux_sym_array_creation_expression_repeat1, + [18131] = 12, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1927), 1, + anon_sym_LBRACK, + ACTIONS(2193), 1, sym_identifier, - STATE(579), 1, + STATE(547), 1, + aux_sym_dimensions_repeat1, + STATE(683), 1, + sym_dimensions, + STATE(943), 1, + sym__method_declarator, + STATE(950), 1, + sym__variable_declarator_id, + STATE(986), 1, + sym_variable_declarator, + STATE(1227), 1, + sym__variable_declarator_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2195), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(865), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [18174] = 9, + ACTIONS(1170), 1, + sym_identifier, + STATE(663), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(681), 1, sym_generic_type, - STATE(619), 1, + STATE(726), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - ACTIONS(75), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15555] = 9, - ACTIONS(1037), 1, + [18211] = 9, + ACTIONS(1170), 1, sym_identifier, - STATE(579), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(595), 1, + STATE(681), 1, sym_generic_type, - STATE(649), 1, + STATE(742), 1, sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(79), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(593), 3, + STATE(687), 3, sym_array_type, sym_integral_type, sym_floating_point_type, - ACTIONS(75), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15592] = 10, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1968), 1, + [18248] = 9, + ACTIONS(1170), 1, sym_identifier, - STATE(622), 1, - sym_type_arguments, - STATE(747), 1, + STATE(663), 1, sym_scoped_type_identifier, - STATE(892), 1, + STATE(681), 1, sym_generic_type, + STATE(712), 1, + sym__unannotated_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(1970), 2, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - STATE(964), 2, + STATE(687), 3, + sym_array_type, sym_integral_type, sym_floating_point_type, - ACTIONS(75), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15631] = 9, - ACTIONS(1037), 1, - sym_identifier, - STATE(579), 1, - sym_scoped_type_identifier, - STATE(595), 1, - sym_generic_type, - STATE(643), 1, - sym__unannotated_type, + [18285] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, - anon_sym_float, - anon_sym_double, - ACTIONS(79), 2, - sym_boolean_type, - sym_void_type, - STATE(593), 3, - sym_array_type, - sym_integral_type, - sym_floating_point_type, - ACTIONS(75), 5, + ACTIONS(2199), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AT, + ACTIONS(2197), 13, + anon_sym_extends, + anon_sym_implements, + anon_sym_permits, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [15668] = 12, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(1743), 1, - anon_sym_LBRACK, - ACTIONS(1972), 1, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, sym_identifier, - STATE(473), 1, - aux_sym_dimensions_repeat1, - STATE(594), 1, - sym_dimensions, - STATE(791), 1, - sym__variable_declarator_id, - STATE(832), 1, - sym__method_declarator, - STATE(913), 1, - sym_variable_declarator, - STATE(1097), 1, - sym__variable_declarator_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1974), 2, - anon_sym_open, - anon_sym_module, - STATE(721), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [15710] = 4, - ACTIONS(1976), 1, - anon_sym_AT, + [18310] = 10, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(2201), 1, + sym_identifier, + STATE(723), 1, + sym_type_arguments, + STATE(909), 1, + sym_scoped_type_identifier, + STATE(1071), 1, + sym_generic_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1745), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1618), 10, + ACTIONS(83), 2, + anon_sym_float, + anon_sym_double, + ACTIONS(2203), 2, + sym_boolean_type, + sym_void_type, + STATE(1149), 2, + sym_integral_type, + sym_floating_point_type, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, + [18349] = 9, + ACTIONS(1170), 1, + sym_identifier, + STATE(663), 1, + sym_scoped_type_identifier, + STATE(681), 1, + sym_generic_type, + STATE(719), 1, + sym__unannotated_type, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, + ACTIONS(85), 2, sym_boolean_type, sym_void_type, - sym_identifier, - [15736] = 3, + STATE(687), 3, + sym_array_type, + sym_integral_type, + sym_floating_point_type, + ACTIONS(81), 5, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + [18386] = 3, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1980), 2, + ACTIONS(2207), 3, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AT, - ACTIONS(1978), 13, + ACTIONS(2205), 13, anon_sym_extends, anon_sym_implements, anon_sym_permits, @@ -46956,6810 +58474,7603 @@ static const uint16_t ts_small_parse_table[] = { sym_boolean_type, sym_void_type, sym_identifier, - [15760] = 12, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(282), 1, + [18411] = 11, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1982), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(1984), 1, - anon_sym_DOT, - STATE(349), 1, - sym_argument_list, - STATE(473), 1, + ACTIONS(2209), 1, + sym_identifier, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(587), 1, - sym_type_arguments, - STATE(976), 1, + STATE(683), 1, sym_dimensions, + STATE(950), 1, + sym__variable_declarator_id, + STATE(986), 1, + sym_variable_declarator, + STATE(1227), 1, + sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(326), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + ACTIONS(2168), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [15802] = 12, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [18451] = 11, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(1972), 1, + ACTIONS(2189), 1, sym_identifier, - STATE(473), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(683), 1, sym_dimensions, - STATE(791), 1, + STATE(964), 1, sym__variable_declarator_id, - STATE(832), 1, - sym__method_declarator, - STATE(913), 1, + STATE(986), 1, sym_variable_declarator, - STATE(1095), 1, + STATE(1231), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1974), 2, + ACTIONS(2168), 3, anon_sym_open, anon_sym_module, - STATE(721), 4, + anon_sym_record, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [15844] = 3, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1988), 2, - anon_sym_LBRACE, - anon_sym_AT, - ACTIONS(1986), 13, - anon_sym_extends, - anon_sym_implements, - anon_sym_permits, - anon_sym_byte, - anon_sym_short, - anon_sym_int, - anon_sym_long, - anon_sym_char, - anon_sym_float, - anon_sym_double, - sym_boolean_type, - sym_void_type, - sym_identifier, - [15868] = 12, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [18491] = 11, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(1972), 1, + ACTIONS(2189), 1, sym_identifier, - STATE(473), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(683), 1, sym_dimensions, - STATE(791), 1, + STATE(950), 1, sym__variable_declarator_id, - STATE(832), 1, - sym__method_declarator, - STATE(913), 1, + STATE(986), 1, sym_variable_declarator, - STATE(1065), 1, + STATE(1238), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1974), 2, + ACTIONS(2168), 3, anon_sym_open, anon_sym_module, - STATE(721), 4, + anon_sym_record, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [15910] = 12, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [18531] = 11, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(1972), 1, + ACTIONS(2211), 1, sym_identifier, - STATE(473), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(683), 1, sym_dimensions, - STATE(791), 1, + STATE(950), 1, sym__variable_declarator_id, - STATE(832), 1, - sym__method_declarator, - STATE(913), 1, + STATE(986), 1, sym_variable_declarator, - STATE(1074), 1, + STATE(1245), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1974), 2, + ACTIONS(2168), 3, anon_sym_open, anon_sym_module, - STATE(721), 4, + anon_sym_record, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [15952] = 12, - ACTIONS(85), 1, + aux_sym_array_creation_expression_repeat1, + [18571] = 12, + ACTIONS(95), 1, anon_sym_LT, - ACTIONS(282), 1, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1045), 1, + ACTIONS(1182), 1, anon_sym_LPAREN, - ACTIONS(1982), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, - ACTIONS(1990), 1, + ACTIONS(2215), 1, anon_sym_DOT, - STATE(347), 1, + STATE(423), 1, sym_argument_list, - STATE(473), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(591), 1, + STATE(678), 1, sym_type_arguments, - STATE(977), 1, + STATE(1113), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(650), 2, + STATE(753), 2, sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [15994] = 12, - ACTIONS(85), 1, + aux_sym_array_creation_expression_repeat1, + [18613] = 12, + ACTIONS(95), 1, anon_sym_LT, - ACTIONS(282), 1, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1045), 1, + ACTIONS(1182), 1, anon_sym_LPAREN, - ACTIONS(1982), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, - ACTIONS(1990), 1, + ACTIONS(2217), 1, anon_sym_DOT, - STATE(347), 1, + STATE(424), 1, sym_argument_list, - STATE(473), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(591), 1, + STATE(677), 1, sym_type_arguments, - STATE(977), 1, + STATE(1112), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(327), 2, + STATE(387), 2, sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16036] = 12, - ACTIONS(85), 1, + aux_sym_array_creation_expression_repeat1, + [18655] = 4, + ACTIONS(2219), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1929), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(1743), 10, + anon_sym_byte, + anon_sym_short, + anon_sym_int, + anon_sym_long, + anon_sym_char, + anon_sym_float, + anon_sym_double, + sym_boolean_type, + sym_void_type, + sym_identifier, + [18681] = 12, + ACTIONS(95), 1, anon_sym_LT, - ACTIONS(282), 1, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1045), 1, + ACTIONS(1182), 1, anon_sym_LPAREN, - ACTIONS(1982), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, - ACTIONS(1984), 1, + ACTIONS(2215), 1, anon_sym_DOT, - STATE(349), 1, + STATE(423), 1, sym_argument_list, - STATE(473), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(587), 1, + STATE(678), 1, sym_type_arguments, - STATE(976), 1, + STATE(1113), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(641), 2, + STATE(388), 2, sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16078] = 11, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [18723] = 11, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(1956), 1, + ACTIONS(2189), 1, sym_identifier, - STATE(473), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(683), 1, sym_dimensions, - STATE(839), 1, + STATE(916), 1, sym__variable_declarator_id, - STATE(913), 1, + STATE(986), 1, sym_variable_declarator, - STATE(1123), 1, + STATE(1231), 1, sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(2168), 3, anon_sym_open, anon_sym_module, - STATE(721), 4, + anon_sym_record, + STATE(865), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [18763] = 12, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(2213), 1, + anon_sym_LBRACK, + ACTIONS(2217), 1, + anon_sym_DOT, + STATE(424), 1, + sym_argument_list, + STATE(547), 1, + aux_sym_dimensions_repeat1, + STATE(677), 1, + sym_type_arguments, + STATE(1112), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(750), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16117] = 11, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [18805] = 11, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1260), 1, + ACTIONS(1359), 1, anon_sym_COLON_COLON, - ACTIONS(1743), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(1956), 1, + ACTIONS(2189), 1, sym_identifier, - ACTIONS(1958), 1, + ACTIONS(2191), 1, anon_sym_DOT, - STATE(473), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(683), 1, sym_dimensions, - STATE(1111), 1, + STATE(1250), 1, sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(2168), 3, anon_sym_open, anon_sym_module, - STATE(721), 4, + anon_sym_record, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16156] = 11, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [18845] = 11, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(1956), 1, + ACTIONS(2164), 1, sym_identifier, - STATE(473), 1, + ACTIONS(2170), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2172), 1, + sym_this, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(683), 1, sym_dimensions, - STATE(791), 1, + STATE(1102), 1, sym__variable_declarator_id, - STATE(913), 1, - sym_variable_declarator, - STATE(1072), 1, - sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(2168), 3, anon_sym_open, anon_sym_module, - STATE(721), 4, + anon_sym_record, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16195] = 8, - ACTIONS(1992), 1, + aux_sym_array_creation_expression_repeat1, + [18885] = 8, + ACTIONS(2221), 1, sym_identifier, - STATE(760), 1, + STATE(904), 1, sym_scoped_type_identifier, - STATE(863), 1, + STATE(1020), 1, sym_generic_type, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(77), 2, + ACTIONS(83), 2, anon_sym_float, anon_sym_double, - ACTIONS(1994), 2, + ACTIONS(2223), 2, sym_boolean_type, sym_void_type, - STATE(978), 2, + STATE(1117), 2, sym_integral_type, sym_floating_point_type, - ACTIONS(75), 5, + ACTIONS(81), 5, anon_sym_byte, anon_sym_short, anon_sym_int, anon_sym_long, anon_sym_char, - [16228] = 11, - ACTIONS(282), 1, + [18918] = 10, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(1996), 1, + ACTIONS(2170), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2189), 1, sym_identifier, - STATE(473), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(683), 1, sym_dimensions, - STATE(791), 1, + STATE(1102), 1, sym__variable_declarator_id, - STATE(913), 1, - sym_variable_declarator, - STATE(1095), 1, - sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(2168), 3, anon_sym_open, anon_sym_module, - STATE(721), 4, + anon_sym_record, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16267] = 11, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [18955] = 9, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(1998), 1, + ACTIONS(2227), 1, + anon_sym_PIPE, + STATE(547), 1, + aux_sym_dimensions_repeat1, + STATE(683), 1, + sym_dimensions, + STATE(836), 1, + aux_sym_catch_type_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2225), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, sym_identifier, - STATE(473), 1, + STATE(865), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [18990] = 10, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1927), 1, + anon_sym_LBRACK, + ACTIONS(2189), 1, + sym_identifier, + ACTIONS(2229), 1, + anon_sym_DOT_DOT_DOT, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(683), 1, sym_dimensions, - STATE(791), 1, + STATE(1206), 1, sym__variable_declarator_id, - STATE(913), 1, - sym_variable_declarator, - STATE(1065), 1, - sym__variable_declarator_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, - anon_sym_open, - anon_sym_module, - STATE(721), 4, + ACTIONS(2168), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(865), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [19027] = 10, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(1200), 1, + anon_sym_DOT, + ACTIONS(1204), 1, + anon_sym_AT, + STATE(477), 1, + sym_argument_list, + STATE(678), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1197), 2, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + ACTIONS(2231), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(1180), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + [19064] = 6, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(2233), 1, + anon_sym_DOT, + STATE(677), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1390), 5, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_this, + sym_identifier, + ACTIONS(1392), 6, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + [19093] = 10, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(2213), 1, + anon_sym_LBRACK, + ACTIONS(2217), 1, + anon_sym_DOT, + STATE(547), 1, + aux_sym_dimensions_repeat1, + STATE(677), 1, + sym_type_arguments, + STATE(1196), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(751), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16306] = 11, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [19129] = 10, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(2213), 1, anon_sym_LBRACK, - ACTIONS(1946), 1, - sym_identifier, - ACTIONS(1952), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1954), 1, - sym_this, - STATE(473), 1, + ACTIONS(2217), 1, + anon_sym_DOT, + STATE(424), 1, + sym_argument_list, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(1112), 1, sym_dimensions, - STATE(970), 1, - sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, - anon_sym_open, - anon_sym_module, - STATE(721), 4, + STATE(750), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16345] = 6, - ACTIONS(85), 1, + aux_sym_array_creation_expression_repeat1, + [19165] = 10, + ACTIONS(95), 1, anon_sym_LT, - ACTIONS(2000), 1, - anon_sym_DOT, - STATE(587), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1404), 4, - anon_sym_open, - anon_sym_module, - sym_this, - sym_identifier, - ACTIONS(1406), 6, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_COLON_COLON, + ACTIONS(297), 1, anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [16373] = 9, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, - ACTIONS(2005), 1, - anon_sym_PIPE, - STATE(473), 1, + ACTIONS(2215), 1, + anon_sym_DOT, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(678), 1, + sym_type_arguments, + STATE(1195), 1, sym_dimensions, - STATE(750), 1, - aux_sym_catch_type_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2003), 3, - anon_sym_open, - anon_sym_module, - sym_identifier, - STATE(721), 4, + STATE(390), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16407] = 9, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [19201] = 7, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2007), 1, - sym_identifier, - ACTIONS(2009), 1, - sym_this, - STATE(473), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(882), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1264), 3, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_COLON_COLON, - STATE(721), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16441] = 10, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + ACTIONS(2236), 5, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_SEMI, + [19231] = 10, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1982), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, - ACTIONS(1984), 1, + ACTIONS(2217), 1, anon_sym_DOT, - STATE(349), 1, - sym_argument_list, - STATE(473), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(976), 1, + STATE(677), 1, + sym_type_arguments, + STATE(1196), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(641), 2, + STATE(391), 2, sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16477] = 9, - ACTIONS(2011), 1, + aux_sym_array_creation_expression_repeat1, + [19267] = 10, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(2215), 1, + anon_sym_DOT, + ACTIONS(2238), 1, + anon_sym_LPAREN, + STATE(430), 1, + sym_block, + STATE(678), 1, + sym_type_arguments, + STATE(1128), 1, + sym_formal_parameters, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1204), 2, + anon_sym_LBRACK, + anon_sym_AT, + ACTIONS(1180), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + [19303] = 9, + ACTIONS(2240), 1, anon_sym_RBRACE, - ACTIONS(2013), 1, + ACTIONS(2242), 1, anon_sym_requires, - ACTIONS(2015), 1, + ACTIONS(2244), 1, anon_sym_exports, - ACTIONS(2017), 1, + ACTIONS(2246), 1, anon_sym_opens, - ACTIONS(2019), 1, + ACTIONS(2248), 1, anon_sym_uses, - ACTIONS(2021), 1, + ACTIONS(2250), 1, anon_sym_provides, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(640), 2, + STATE(741), 2, sym_module_directive, aux_sym_module_body_repeat1, - STATE(701), 5, + STATE(862), 5, sym_requires_module_directive, sym_exports_module_directive, sym_opens_module_directive, sym_uses_module_directive, sym_provides_module_directive, - [16511] = 10, - ACTIONS(85), 1, + [19337] = 7, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1927), 1, + anon_sym_LBRACK, + STATE(547), 1, + aux_sym_dimensions_repeat1, + STATE(880), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(865), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + ACTIONS(2252), 5, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_SEMI, + [19367] = 10, + ACTIONS(95), 1, anon_sym_LT, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1063), 1, - anon_sym_DOT, - ACTIONS(1067), 1, + ACTIONS(297), 1, anon_sym_AT, - STATE(401), 1, - sym_argument_list, - STATE(591), 1, + ACTIONS(2213), 1, + anon_sym_LBRACK, + ACTIONS(2215), 1, + anon_sym_DOT, + STATE(547), 1, + aux_sym_dimensions_repeat1, + STATE(678), 1, sym_type_arguments, + STATE(1195), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1060), 2, + STATE(757), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [19403] = 9, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1927), 1, anon_sym_LBRACK, - anon_sym_COLON_COLON, - ACTIONS(2023), 2, - anon_sym_RPAREN, + ACTIONS(2238), 1, + anon_sym_LPAREN, + STATE(547), 1, + aux_sym_dimensions_repeat1, + STATE(758), 1, + sym_formal_parameters, + STATE(882), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2236), 3, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(1043), 3, - anon_sym_open, - anon_sym_module, - sym_identifier, - [16547] = 10, - ACTIONS(282), 1, + STATE(865), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [19437] = 9, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(1952), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1956), 1, + ACTIONS(2254), 1, sym_identifier, - STATE(473), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(683), 1, sym_dimensions, - STATE(970), 1, - sym__variable_declarator_id, + STATE(956), 1, + sym__method_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(2256), 3, anon_sym_open, anon_sym_module, - STATE(721), 4, + anon_sym_record, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16583] = 9, - ACTIONS(2025), 1, + aux_sym_array_creation_expression_repeat1, + [19471] = 9, + ACTIONS(2242), 1, + anon_sym_requires, + ACTIONS(2244), 1, + anon_sym_exports, + ACTIONS(2246), 1, + anon_sym_opens, + ACTIONS(2248), 1, + anon_sym_uses, + ACTIONS(2250), 1, + anon_sym_provides, + ACTIONS(2258), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(735), 2, + sym_module_directive, + aux_sym_module_body_repeat1, + STATE(862), 5, + sym_requires_module_directive, + sym_exports_module_directive, + sym_opens_module_directive, + sym_uses_module_directive, + sym_provides_module_directive, + [19505] = 9, + ACTIONS(2260), 1, anon_sym_RBRACE, - ACTIONS(2027), 1, + ACTIONS(2262), 1, anon_sym_requires, - ACTIONS(2030), 1, + ACTIONS(2265), 1, anon_sym_exports, - ACTIONS(2033), 1, + ACTIONS(2268), 1, anon_sym_opens, - ACTIONS(2036), 1, + ACTIONS(2271), 1, anon_sym_uses, - ACTIONS(2039), 1, + ACTIONS(2274), 1, anon_sym_provides, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(633), 2, + STATE(741), 2, sym_module_directive, aux_sym_module_body_repeat1, - STATE(701), 5, + STATE(862), 5, sym_requires_module_directive, sym_exports_module_directive, sym_opens_module_directive, sym_uses_module_directive, sym_provides_module_directive, - [16617] = 9, - ACTIONS(282), 1, + [19539] = 8, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2042), 1, + ACTIONS(2279), 1, + anon_sym_PIPE, + STATE(547), 1, + aux_sym_dimensions_repeat1, + STATE(683), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2277), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + STATE(865), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [19571] = 10, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1182), 1, anon_sym_LPAREN, - STATE(473), 1, + ACTIONS(2213), 1, + anon_sym_LBRACK, + ACTIONS(2217), 1, + anon_sym_DOT, + STATE(424), 1, + sym_argument_list, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(653), 1, - sym_formal_parameters, - STATE(768), 1, + STATE(1112), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2044), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(721), 4, + STATE(387), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16651] = 9, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [19607] = 9, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2042), 1, + ACTIONS(2238), 1, anon_sym_LPAREN, - STATE(473), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(654), 1, + STATE(765), 1, sym_formal_parameters, - STATE(766), 1, + STATE(880), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2046), 3, + ACTIONS(2252), 3, anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - STATE(721), 4, + STATE(865), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [19641] = 9, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1927), 1, + anon_sym_LBRACK, + ACTIONS(2254), 1, + sym_identifier, + STATE(547), 1, + aux_sym_dimensions_repeat1, + STATE(683), 1, + sym_dimensions, + STATE(928), 1, + sym__method_declarator, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2256), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + STATE(865), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [19675] = 10, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(2215), 1, + anon_sym_DOT, + ACTIONS(2238), 1, + anon_sym_LPAREN, + STATE(441), 1, + sym_block, + STATE(678), 1, + sym_type_arguments, + STATE(1128), 1, + sym_formal_parameters, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1204), 2, + anon_sym_LBRACK, + anon_sym_AT, + ACTIONS(1180), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + [19711] = 9, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1927), 1, + anon_sym_LBRACK, + ACTIONS(2281), 1, + sym_identifier, + ACTIONS(2283), 1, + sym_this, + STATE(547), 1, + aux_sym_dimensions_repeat1, + STATE(683), 1, + sym_dimensions, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1347), 3, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16685] = 10, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [19745] = 9, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(1956), 1, + ACTIONS(2189), 1, sym_identifier, - ACTIONS(2048), 1, - anon_sym_DOT_DOT_DOT, - STATE(473), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(683), 1, sym_dimensions, - STATE(1055), 1, + STATE(1276), 1, sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(2168), 3, anon_sym_open, anon_sym_module, - STATE(721), 4, + anon_sym_record, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16721] = 10, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [19779] = 8, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1982), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(1984), 1, - anon_sym_DOT, - STATE(349), 1, - sym_argument_list, - STATE(473), 1, + ACTIONS(2285), 1, + anon_sym_LPAREN, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(976), 1, + STATE(882), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(326), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + ACTIONS(2236), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16757] = 7, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [19810] = 8, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, - STATE(473), 1, - aux_sym_dimensions_repeat1, - STATE(766), 1, + STATE(481), 1, sym_dimensions, + STATE(547), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + ACTIONS(1337), 2, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(397), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(2046), 5, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_SEMI, - [16787] = 7, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [19841] = 8, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, - STATE(473), 1, - aux_sym_dimensions_repeat1, - STATE(768), 1, + STATE(491), 1, sym_dimensions, + STATE(547), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + ACTIONS(1355), 2, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(397), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - ACTIONS(2044), 5, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_SEMI, - [16817] = 9, - ACTIONS(2013), 1, - anon_sym_requires, - ACTIONS(2015), 1, - anon_sym_exports, - ACTIONS(2017), 1, - anon_sym_opens, - ACTIONS(2019), 1, - anon_sym_uses, - ACTIONS(2021), 1, - anon_sym_provides, - ACTIONS(2050), 1, - anon_sym_RBRACE, + aux_sym_array_creation_expression_repeat1, + [19872] = 4, + ACTIONS(2233), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(633), 2, - sym_module_directive, - aux_sym_module_body_repeat1, - STATE(701), 5, - sym_requires_module_directive, - sym_exports_module_directive, - sym_opens_module_directive, - sym_uses_module_directive, - sym_provides_module_directive, - [16851] = 8, - ACTIONS(282), 1, + ACTIONS(1390), 5, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_this, + sym_identifier, + ACTIONS(1392), 6, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + [19895] = 8, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1982), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, - STATE(413), 1, + STATE(487), 1, sym_dimensions, - STATE(473), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1212), 2, + ACTIONS(1343), 2, anon_sym_DOT, anon_sym_COLON_COLON, - STATE(333), 2, + STATE(397), 2, sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16882] = 9, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [19926] = 9, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1045), 1, + ACTIONS(1182), 1, anon_sym_LPAREN, - ACTIONS(1982), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, - STATE(349), 1, + STATE(424), 1, sym_argument_list, - STATE(473), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(976), 1, + STATE(1112), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(641), 2, + STATE(387), 2, sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16915] = 8, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [19959] = 8, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2054), 1, - anon_sym_PIPE, - STATE(473), 1, + ACTIONS(2287), 1, + anon_sym_LPAREN, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(882), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2052), 3, - anon_sym_open, - anon_sym_module, - sym_identifier, - STATE(721), 4, + ACTIONS(2236), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16946] = 8, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [19990] = 9, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1743), 1, - anon_sym_LBRACK, - ACTIONS(2056), 1, + ACTIONS(1182), 1, anon_sym_LPAREN, - STATE(473), 1, + ACTIONS(2213), 1, + anon_sym_LBRACK, + STATE(424), 1, + sym_argument_list, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(768), 1, + STATE(1112), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2044), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(721), 4, + STATE(750), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [16977] = 9, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [20023] = 8, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1982), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, - STATE(349), 1, - sym_argument_list, - STATE(473), 1, - aux_sym_dimensions_repeat1, - STATE(976), 1, + STATE(489), 1, sym_dimensions, + STATE(547), 1, + aux_sym_dimensions_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(326), 2, + ACTIONS(1351), 2, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(397), 2, sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17010] = 9, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [20054] = 7, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2058), 1, - sym_identifier, - STATE(473), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(1013), 1, sym_dimensions, - STATE(831), 1, - sym__method_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2060), 2, - anon_sym_open, - anon_sym_module, - STATE(721), 4, + ACTIONS(2289), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_throws, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17043] = 9, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [20082] = 8, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, - ACTIONS(2058), 1, - sym_identifier, - STATE(473), 1, + ACTIONS(2217), 1, + anon_sym_DOT, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(1196), 1, sym_dimensions, - STATE(822), 1, - sym__method_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2060), 2, - anon_sym_open, - anon_sym_module, - STATE(721), 4, + STATE(391), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17076] = 8, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [20112] = 8, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, - ACTIONS(2062), 1, - anon_sym_LPAREN, - STATE(473), 1, + ACTIONS(2217), 1, + anon_sym_DOT, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(768), 1, + STATE(1196), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2044), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(721), 4, + STATE(751), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17107] = 9, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [20142] = 9, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(1956), 1, - sym_identifier, - STATE(473), 1, + ACTIONS(2291), 1, + anon_sym_default, + ACTIONS(2293), 1, + anon_sym_SEMI, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(1053), 1, sym_dimensions, - STATE(1076), 1, - sym__variable_declarator_id, + STATE(1217), 1, + sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, - anon_sym_open, - anon_sym_module, - STATE(721), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17140] = 8, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [20174] = 8, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1982), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - STATE(385), 1, - sym_dimensions, - STATE(473), 1, + ACTIONS(2295), 1, + anon_sym_DOT, + STATE(547), 1, aux_sym_dimensions_repeat1, + STATE(882), 1, + sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1218), 2, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(333), 2, - sym_dimensions_expr, - aux_sym_array_creation_expression_repeat1, - STATE(691), 4, + ACTIONS(2236), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17171] = 9, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [20204] = 9, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2064), 1, + ACTIONS(2291), 1, anon_sym_default, - ACTIONS(2066), 1, + ACTIONS(2297), 1, anon_sym_SEMI, - STATE(473), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(947), 1, + STATE(1017), 1, sym_dimensions, - STATE(1140), 1, + STATE(1273), 1, sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17203] = 8, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(1743), 1, - anon_sym_LBRACK, - ACTIONS(2068), 1, + aux_sym_array_creation_expression_repeat1, + [20236] = 8, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(2215), 1, anon_sym_DOT, - STATE(473), 1, - aux_sym_dimensions_repeat1, - STATE(768), 1, - sym_dimensions, + ACTIONS(2238), 1, + anon_sym_LPAREN, + STATE(678), 1, + sym_type_arguments, + STATE(1139), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2044), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(721), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17233] = 7, - ACTIONS(282), 1, + ACTIONS(1204), 2, + anon_sym_LBRACK, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1180), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + [20266] = 7, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(1927), 1, anon_sym_LBRACK, - STATE(473), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(866), 1, + STATE(1014), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2070), 3, + ACTIONS(2299), 3, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_throws, - STATE(721), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17261] = 7, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [20294] = 9, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(2301), 1, + sym_identifier, + ACTIONS(2303), 1, + anon_sym_new, + ACTIONS(2307), 1, + sym_this, + ACTIONS(2309), 1, + sym_super, + STATE(464), 1, + sym__unqualified_object_creation_expression, + STATE(922), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2305), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [20325] = 11, + ACTIONS(1106), 1, + anon_sym_LT, + ACTIONS(1465), 1, + anon_sym_LBRACE, + ACTIONS(2311), 1, + anon_sym_extends, + ACTIONS(2313), 1, + anon_sym_implements, + ACTIONS(2315), 1, + anon_sym_permits, + STATE(250), 1, + sym_class_body, + STATE(780), 1, + sym_type_parameters, + STATE(822), 1, + sym_superclass, + STATE(977), 1, + sym_super_interfaces, + STATE(1147), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [20360] = 11, + ACTIONS(1106), 1, + anon_sym_LT, + ACTIONS(1465), 1, + anon_sym_LBRACE, + ACTIONS(2311), 1, + anon_sym_extends, + ACTIONS(2313), 1, + anon_sym_implements, + ACTIONS(2315), 1, + anon_sym_permits, + STATE(236), 1, + sym_class_body, + STATE(782), 1, + sym_type_parameters, + STATE(802), 1, + sym_superclass, + STATE(978), 1, + sym_super_interfaces, + STATE(1125), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [20395] = 9, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(2301), 1, + sym_identifier, + ACTIONS(2303), 1, + anon_sym_new, + ACTIONS(2307), 1, + sym_this, + ACTIONS(2317), 1, + sym_super, + STATE(464), 1, + sym__unqualified_object_creation_expression, + STATE(875), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2305), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [20426] = 7, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, - STATE(473), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(865), 1, + STATE(1196), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2072), 3, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_throws, - STATE(721), 4, + STATE(391), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17289] = 9, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [20453] = 8, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(1359), 1, + anon_sym_COLON_COLON, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(2064), 1, - anon_sym_default, - ACTIONS(2074), 1, - anon_sym_SEMI, - STATE(473), 1, + ACTIONS(2191), 1, + anon_sym_DOT, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(890), 1, + STATE(683), 1, sym_dimensions, - STATE(1113), 1, - sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17321] = 4, - ACTIONS(2000), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1404), 4, - anon_sym_open, - anon_sym_module, - sym_this, - sym_identifier, - ACTIONS(1406), 6, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_COLON_COLON, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - [17343] = 8, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [20482] = 8, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1260), 1, - anon_sym_COLON_COLON, - ACTIONS(1743), 1, + ACTIONS(1927), 1, anon_sym_LBRACK, - ACTIONS(1958), 1, - anon_sym_DOT, - STATE(473), 1, + ACTIONS(2281), 1, + sym_identifier, + ACTIONS(2283), 1, + sym_this, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(683), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + STATE(865), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17372] = 8, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [20511] = 7, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(1743), 1, + ACTIONS(2213), 1, anon_sym_LBRACK, - ACTIONS(2007), 1, - sym_identifier, - ACTIONS(2009), 1, - sym_this, - STATE(473), 1, + STATE(547), 1, aux_sym_dimensions_repeat1, - STATE(594), 1, + STATE(1196), 1, sym_dimensions, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(721), 4, + STATE(751), 2, + sym_dimensions_expr, + aux_sym_array_creation_expression_repeat2, + STATE(856), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17401] = 8, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1990), 1, - anon_sym_DOT, - ACTIONS(2042), 1, - anon_sym_LPAREN, - STATE(591), 1, - sym_type_arguments, - STATE(999), 1, - sym_formal_parameters, + aux_sym_array_creation_expression_repeat1, + [20538] = 7, + ACTIONS(2319), 1, + sym_identifier, + STATE(775), 1, + aux_sym_requires_module_directive_repeat1, + STATE(850), 1, + sym_requires_modifier, + STATE(1106), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1067), 2, - anon_sym_LBRACK, - anon_sym_AT, - ACTIONS(1043), 3, + ACTIONS(2323), 2, + anon_sym_transitive, + anon_sym_static, + ACTIONS(2321), 3, anon_sym_open, anon_sym_module, + anon_sym_record, + [20564] = 9, + ACTIONS(2325), 1, sym_identifier, - [17430] = 8, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1990), 1, - anon_sym_DOT, - ACTIONS(2042), 1, - anon_sym_LPAREN, - STATE(591), 1, - sym_type_arguments, - STATE(1036), 1, - sym_formal_parameters, + ACTIONS(2327), 1, + anon_sym_open, + ACTIONS(2329), 1, + anon_sym_module, + ACTIONS(2331), 1, + anon_sym_record, + STATE(779), 1, + aux_sym_requires_module_directive_repeat1, + STATE(850), 1, + sym_requires_modifier, + STATE(1101), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1067), 2, - anon_sym_LBRACK, - anon_sym_AT, - ACTIONS(1043), 3, - anon_sym_open, - anon_sym_module, - sym_identifier, - [17459] = 11, - ACTIONS(1017), 1, - anon_sym_LT, - ACTIONS(1284), 1, - anon_sym_LBRACE, - ACTIONS(2076), 1, - anon_sym_extends, - ACTIONS(2078), 1, - anon_sym_implements, - ACTIONS(2080), 1, - anon_sym_permits, - STATE(134), 1, - sym_class_body, - STATE(672), 1, - sym_type_parameters, - STATE(714), 1, - sym_superclass, - STATE(787), 1, - sym_super_interfaces, - STATE(965), 1, - sym_permits, + ACTIONS(2323), 2, + anon_sym_transitive, + anon_sym_static, + [20594] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [17494] = 11, - ACTIONS(1017), 1, - anon_sym_LT, - ACTIONS(1284), 1, + ACTIONS(1359), 9, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_LBRACE, - ACTIONS(2076), 1, - anon_sym_extends, - ACTIONS(2078), 1, + anon_sym_SEMI, anon_sym_implements, - ACTIONS(2080), 1, anon_sym_permits, - STATE(104), 1, - sym_class_body, - STATE(667), 1, - sym_type_parameters, - STATE(708), 1, - sym_superclass, - STATE(828), 1, - sym_super_interfaces, - STATE(980), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [17529] = 9, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(2082), 1, - sym_identifier, - ACTIONS(2084), 1, - anon_sym_new, - ACTIONS(2088), 1, - sym_this, - ACTIONS(2090), 1, - sym_super, - STATE(394), 1, - sym__unqualified_object_creation_expression, - STATE(778), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2086), 2, - anon_sym_open, - anon_sym_module, - [17559] = 8, - ACTIONS(2092), 1, + [20610] = 8, + ACTIONS(2333), 1, anon_sym_RBRACE, - ACTIONS(2094), 1, + ACTIONS(2335), 1, anon_sym_case, - ACTIONS(2096), 1, + ACTIONS(2337), 1, anon_sym_default, - STATE(3), 1, + STATE(2), 1, aux_sym_switch_block_statement_group_repeat1, - STATE(1004), 1, + STATE(1178), 1, sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(673), 2, + STATE(792), 2, sym_switch_block_statement_group, aux_sym_switch_block_repeat1, - STATE(706), 2, + STATE(844), 2, sym_switch_rule, aux_sym_switch_block_repeat2, - [17587] = 9, - ACTIONS(85), 1, + [20638] = 7, + ACTIONS(95), 1, anon_sym_LT, - ACTIONS(2082), 1, + ACTIONS(2301), 1, sym_identifier, - ACTIONS(2084), 1, - anon_sym_new, - ACTIONS(2088), 1, + ACTIONS(2307), 1, sym_this, - ACTIONS(2098), 1, + ACTIONS(2309), 1, sym_super, - STATE(394), 1, - sym__unqualified_object_creation_expression, - STATE(929), 1, + STATE(922), 1, sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 2, + ACTIONS(2305), 3, anon_sym_open, anon_sym_module, - [17617] = 2, + anon_sym_record, + [20663] = 5, + STATE(779), 1, + aux_sym_requires_module_directive_repeat1, + STATE(850), 1, + sym_requires_modifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1260), 9, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_implements, - anon_sym_permits, - [17633] = 9, - ACTIONS(1284), 1, + ACTIONS(2341), 2, + anon_sym_transitive, + anon_sym_static, + ACTIONS(2339), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + [20684] = 9, + ACTIONS(1465), 1, anon_sym_LBRACE, - ACTIONS(2076), 1, + ACTIONS(2311), 1, anon_sym_extends, - ACTIONS(2078), 1, + ACTIONS(2313), 1, anon_sym_implements, - ACTIONS(2080), 1, + ACTIONS(2315), 1, anon_sym_permits, - STATE(113), 1, + STATE(230), 1, sym_class_body, - STATE(696), 1, + STATE(830), 1, sym_superclass, - STATE(841), 1, + STATE(912), 1, sym_super_interfaces, - STATE(1026), 1, + STATE(1096), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [17662] = 7, - ACTIONS(2100), 1, - sym_identifier, - STATE(671), 1, - aux_sym_requires_module_directive_repeat1, - STATE(762), 1, - sym_requires_modifier, - STATE(1047), 1, - sym_scoped_identifier, + [20713] = 6, + ACTIONS(2344), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2346), 1, + aux_sym__multiline_string_fragment_token1, + ACTIONS(2348), 1, + aux_sym__multiline_string_fragment_token2, + ACTIONS(2350), 2, + aux_sym__escape_sequence_token1, + sym_escape_sequence, + ACTIONS(2352), 2, + sym_line_comment, + sym_block_comment, + STATE(785), 3, + sym__multiline_string_fragment, + sym__escape_sequence, + aux_sym__multiline_string_literal_repeat1, + [20736] = 9, + ACTIONS(1465), 1, + anon_sym_LBRACE, + ACTIONS(2311), 1, + anon_sym_extends, + ACTIONS(2313), 1, + anon_sym_implements, + ACTIONS(2315), 1, + anon_sym_permits, + STATE(234), 1, + sym_class_body, + STATE(852), 1, + sym_superclass, + STATE(976), 1, + sym_super_interfaces, + STATE(1188), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2102), 2, - anon_sym_open, - anon_sym_module, - ACTIONS(2104), 2, - anon_sym_transitive, - anon_sym_static, - [17687] = 9, - ACTIONS(1017), 1, + [20765] = 9, + ACTIONS(1106), 1, anon_sym_LT, - ACTIONS(2080), 1, + ACTIONS(2315), 1, anon_sym_permits, - ACTIONS(2106), 1, + ACTIONS(2354), 1, anon_sym_extends, - ACTIONS(2108), 1, + ACTIONS(2356), 1, anon_sym_LBRACE, - STATE(129), 1, + STATE(239), 1, sym_interface_body, - STATE(699), 1, + STATE(853), 1, sym_type_parameters, - STATE(782), 1, + STATE(926), 1, sym_extends_interfaces, - STATE(969), 1, + STATE(1177), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [17716] = 9, - ACTIONS(1017), 1, + [20794] = 9, + ACTIONS(1106), 1, anon_sym_LT, - ACTIONS(2080), 1, + ACTIONS(2315), 1, anon_sym_permits, - ACTIONS(2106), 1, + ACTIONS(2354), 1, anon_sym_extends, - ACTIONS(2108), 1, + ACTIONS(2356), 1, anon_sym_LBRACE, - STATE(73), 1, + STATE(227), 1, sym_interface_body, - STATE(738), 1, + STATE(841), 1, sym_type_parameters, - STATE(803), 1, + STATE(970), 1, sym_extends_interfaces, - STATE(1020), 1, + STATE(1144), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [17745] = 8, - ACTIONS(2110), 1, - sym_identifier, - ACTIONS(2112), 1, - anon_sym_open, - ACTIONS(2114), 1, - anon_sym_module, - STATE(676), 1, - aux_sym_requires_module_directive_repeat1, - STATE(762), 1, - sym_requires_modifier, - STATE(1010), 1, - sym_scoped_identifier, + [20823] = 6, + ACTIONS(2358), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2360), 1, + aux_sym__multiline_string_fragment_token1, + ACTIONS(2363), 1, + aux_sym__multiline_string_fragment_token2, + ACTIONS(2352), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2366), 2, + aux_sym__escape_sequence_token1, + sym_escape_sequence, + STATE(785), 3, + sym__multiline_string_fragment, + sym__escape_sequence, + aux_sym__multiline_string_literal_repeat1, + [20846] = 6, + ACTIONS(2346), 1, + aux_sym__multiline_string_fragment_token1, + ACTIONS(2348), 1, + aux_sym__multiline_string_fragment_token2, + ACTIONS(2369), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(2352), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2371), 2, + aux_sym__escape_sequence_token1, + sym_escape_sequence, + STATE(781), 3, + sym__multiline_string_fragment, + sym__escape_sequence, + aux_sym__multiline_string_literal_repeat1, + [20869] = 6, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(1465), 1, + anon_sym_LBRACE, + STATE(871), 1, + sym_argument_list, + STATE(1036), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2104), 2, - anon_sym_transitive, - anon_sym_static, - [17772] = 9, - ACTIONS(1284), 1, + ACTIONS(2373), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [20891] = 7, + ACTIONS(2375), 1, + anon_sym_RBRACE, + ACTIONS(2377), 1, + anon_sym_case, + ACTIONS(2380), 1, + anon_sym_default, + STATE(2), 1, + aux_sym_switch_block_statement_group_repeat1, + STATE(1270), 1, + sym_switch_label, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(788), 2, + sym_switch_block_statement_group, + aux_sym_switch_block_repeat1, + [20915] = 6, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(1465), 1, anon_sym_LBRACE, - ACTIONS(2076), 1, - anon_sym_extends, - ACTIONS(2078), 1, + STATE(872), 1, + sym_argument_list, + STATE(1092), 1, + sym_class_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2383), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [20937] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2385), 7, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, anon_sym_implements, - ACTIONS(2080), 1, - anon_sym_permits, - STATE(86), 1, - sym_class_body, - STATE(697), 1, - sym_superclass, - STATE(796), 1, - sym_super_interfaces, - STATE(1050), 1, - sym_permits, + anon_sym_throws, + [20951] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [17801] = 7, - ACTIONS(2096), 1, + ACTIONS(2387), 7, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_implements, + anon_sym_throws, + [20965] = 7, + ACTIONS(2337), 1, anon_sym_default, - ACTIONS(2116), 1, + ACTIONS(2389), 1, anon_sym_RBRACE, - ACTIONS(2118), 1, + ACTIONS(2391), 1, anon_sym_case, - STATE(3), 1, + STATE(2), 1, aux_sym_switch_block_statement_group_repeat1, - STATE(1084), 1, + STATE(1270), 1, sym_switch_label, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(680), 2, + STATE(788), 2, sym_switch_block_statement_group, aux_sym_switch_block_repeat1, - [17825] = 6, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(756), 1, - sym_argument_list, - STATE(895), 1, - sym_class_body, + [20989] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2120), 3, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2393), 7, + anon_sym_DASH_GT, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_SEMI, - [17847] = 7, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(2082), 1, + anon_sym_AT, + anon_sym_implements, + anon_sym_throws, + [21003] = 5, + ACTIONS(331), 1, + anon_sym_AT, + ACTIONS(2395), 1, sym_identifier, - ACTIONS(2088), 1, - sym_this, - ACTIONS(2098), 1, - sym_super, - STATE(929), 1, - sym_type_arguments, + STATE(1054), 1, + sym_type_parameter, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 2, - anon_sym_open, - anon_sym_module, - [17871] = 5, - STATE(676), 1, - aux_sym_requires_module_directive_repeat1, - STATE(762), 1, - sym_requires_modifier, + STATE(868), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21023] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2124), 2, - anon_sym_transitive, - anon_sym_static, - ACTIONS(2122), 3, - anon_sym_open, - anon_sym_module, - sym_identifier, - [17891] = 6, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1284), 1, + ACTIONS(2397), 7, + anon_sym_DASH_GT, + anon_sym_LBRACK, anon_sym_LBRACE, - STATE(764), 1, - sym_argument_list, - STATE(869), 1, - sym_class_body, + anon_sym_SEMI, + anon_sym_AT, + anon_sym_implements, + anon_sym_throws, + [21037] = 6, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(2399), 1, + sym_identifier, + ACTIONS(2403), 1, + sym_this, + STATE(915), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2127), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [17913] = 5, - ACTIONS(321), 1, + ACTIONS(2401), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [21059] = 5, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(2129), 1, + ACTIONS(2395), 1, sym_identifier, - STATE(1042), 1, + STATE(1127), 1, sym_type_parameter, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(740), 4, + STATE(868), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17933] = 5, - ACTIONS(321), 1, + aux_sym_array_creation_expression_repeat1, + [21079] = 4, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(2129), 1, - sym_identifier, - STATE(851), 1, - sym_type_parameter, + ACTIONS(2405), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(740), 4, + STATE(804), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [17953] = 7, - ACTIONS(2131), 1, + aux_sym_array_creation_expression_repeat1, + [21096] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2407), 6, anon_sym_RBRACE, - ACTIONS(2133), 1, - anon_sym_case, - ACTIONS(2136), 1, - anon_sym_default, - STATE(3), 1, - aux_sym_switch_block_statement_group_repeat1, - STATE(1084), 1, - sym_switch_label, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21109] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(680), 2, - sym_switch_block_statement_group, - aux_sym_switch_block_repeat1, - [17977] = 2, + ACTIONS(2409), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21122] = 4, + ACTIONS(2413), 1, + aux_sym__multiline_string_fragment_token1, + STATE(801), 1, + aux_sym__multiline_string_fragment_repeat1, + ACTIONS(2352), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2411), 4, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + aux_sym__multiline_string_fragment_token2, + aux_sym__escape_sequence_token1, + sym_escape_sequence, + [21139] = 7, + ACTIONS(1465), 1, + anon_sym_LBRACE, + ACTIONS(2313), 1, + anon_sym_implements, + ACTIONS(2315), 1, + anon_sym_permits, + STATE(254), 1, + sym_class_body, + STATE(979), 1, + sym_super_interfaces, + STATE(1169), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [21162] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2139), 6, + ACTIONS(2416), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [17990] = 4, - ACTIONS(321), 1, + [21175] = 4, + ACTIONS(2180), 1, + anon_sym_LBRACK, + ACTIONS(2418), 1, anon_sym_AT, - ACTIONS(2141), 1, - sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(588), 4, + STATE(804), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18007] = 4, - ACTIONS(321), 1, + aux_sym_array_creation_expression_repeat1, + [21192] = 4, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(2143), 1, + ACTIONS(2421), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(588), 4, + STATE(861), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18024] = 2, + aux_sym_array_creation_expression_repeat1, + [21209] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2139), 6, + ACTIONS(2423), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18037] = 2, + [21222] = 4, + ACTIONS(331), 1, + anon_sym_AT, + ACTIONS(2425), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2145), 6, + STATE(857), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21239] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2427), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18050] = 6, - ACTIONS(2147), 1, + [21252] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2429), 6, anon_sym_RBRACE, - ACTIONS(2149), 1, - anon_sym_case, - ACTIONS(2152), 1, - anon_sym_default, - STATE(1083), 1, - sym_switch_label, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21265] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(686), 2, - sym_switch_rule, - aux_sym_switch_block_repeat2, - [18071] = 2, + ACTIONS(2431), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21278] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2145), 6, + ACTIONS(2433), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18084] = 2, + [21291] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2155), 6, + ACTIONS(2435), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18097] = 4, - ACTIONS(321), 1, + [21304] = 4, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(2157), 1, + ACTIONS(2437), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(722), 4, + STATE(685), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18114] = 2, + aux_sym_array_creation_expression_repeat1, + [21321] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 6, + ACTIONS(2439), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18127] = 4, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(2161), 1, - anon_sym_LBRACK, + [21334] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(734), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18144] = 2, + ACTIONS(2441), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21347] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2163), 6, + ACTIONS(2443), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18157] = 2, + [21360] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2165), 6, + ACTIONS(2445), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18170] = 2, + [21373] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2167), 6, + ACTIONS(2447), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18183] = 2, + [21386] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2169), 6, + ACTIONS(2449), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18196] = 7, - ACTIONS(1284), 1, - anon_sym_LBRACE, - ACTIONS(2078), 1, - anon_sym_implements, - ACTIONS(2080), 1, - anon_sym_permits, - STATE(115), 1, - sym_class_body, - STATE(836), 1, - sym_super_interfaces, - STATE(1006), 1, - sym_permits, + [21399] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2451), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21412] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [18219] = 7, - ACTIONS(1284), 1, + ACTIONS(2453), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21425] = 7, + ACTIONS(1465), 1, anon_sym_LBRACE, - ACTIONS(2078), 1, + ACTIONS(2313), 1, anon_sym_implements, - ACTIONS(2080), 1, + ACTIONS(2315), 1, anon_sym_permits, - STATE(87), 1, + STATE(215), 1, sym_class_body, - STATE(795), 1, + STATE(914), 1, sym_super_interfaces, - STATE(995), 1, + STATE(1095), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [18242] = 2, + [21448] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2171), 6, + ACTIONS(2455), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18255] = 7, - ACTIONS(2080), 1, - anon_sym_permits, - ACTIONS(2106), 1, - anon_sym_extends, - ACTIONS(2108), 1, - anon_sym_LBRACE, - STATE(75), 1, - sym_interface_body, - STATE(842), 1, - sym_extends_interfaces, - STATE(1046), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [18278] = 4, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(2173), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(588), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18295] = 2, + [21461] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2175), 6, + ACTIONS(2457), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18308] = 4, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(2177), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(734), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18325] = 2, + [21474] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2179), 6, + ACTIONS(2459), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18338] = 2, + [21487] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2181), 6, + ACTIONS(2461), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18351] = 2, + [21500] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2183), 6, + ACTIONS(2463), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18364] = 6, - ACTIONS(2094), 1, - anon_sym_case, - ACTIONS(2096), 1, - anon_sym_default, - ACTIONS(2116), 1, - anon_sym_RBRACE, - STATE(1083), 1, - sym_switch_label, + [21513] = 4, + ACTIONS(331), 1, + anon_sym_AT, + ACTIONS(2465), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(686), 2, - sym_switch_rule, - aux_sym_switch_block_repeat2, - [18385] = 2, + STATE(685), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [21530] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2185), 6, + ACTIONS(2467), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18398] = 7, - ACTIONS(1284), 1, + [21543] = 7, + ACTIONS(1465), 1, anon_sym_LBRACE, - ACTIONS(2078), 1, + ACTIONS(2313), 1, anon_sym_implements, - ACTIONS(2080), 1, + ACTIONS(2315), 1, anon_sym_permits, - STATE(116), 1, + STATE(211), 1, sym_class_body, - STATE(840), 1, + STATE(968), 1, sym_super_interfaces, - STATE(1021), 1, + STATE(1164), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [18421] = 2, + [21566] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2469), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21579] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2471), 6, + anon_sym_RBRACE, + anon_sym_requires, + anon_sym_exports, + anon_sym_opens, + anon_sym_uses, + anon_sym_provides, + [21592] = 4, + ACTIONS(2475), 1, + aux_sym__multiline_string_fragment_token1, + STATE(801), 1, + aux_sym__multiline_string_fragment_repeat1, + ACTIONS(2352), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2473), 4, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + aux_sym__multiline_string_fragment_token2, + aux_sym__escape_sequence_token1, + sym_escape_sequence, + [21609] = 4, + ACTIONS(2477), 1, + anon_sym_PIPE, + STATE(834), 1, + aux_sym_catch_type_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2277), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + [21626] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2187), 6, + ACTIONS(2480), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18434] = 2, + [21639] = 4, + ACTIONS(2227), 1, + anon_sym_PIPE, + STATE(834), 1, + aux_sym_catch_type_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2189), 6, + ACTIONS(2482), 4, + anon_sym_open, + anon_sym_module, + anon_sym_record, + sym_identifier, + [21656] = 6, + ACTIONS(2484), 1, anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [18447] = 2, + ACTIONS(2486), 1, + anon_sym_case, + ACTIONS(2489), 1, + anon_sym_default, + STATE(1272), 1, + sym_switch_label, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(837), 2, + sym_switch_rule, + aux_sym_switch_block_repeat2, + [21677] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2191), 6, + ACTIONS(2492), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18460] = 2, + [21690] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2193), 6, + ACTIONS(2494), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18473] = 2, + [21703] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2195), 6, + ACTIONS(2496), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18486] = 7, - ACTIONS(1284), 1, - anon_sym_LBRACE, - ACTIONS(2078), 1, - anon_sym_implements, - ACTIONS(2080), 1, + [21716] = 7, + ACTIONS(2315), 1, anon_sym_permits, - STATE(82), 1, - sym_class_body, - STATE(779), 1, - sym_super_interfaces, - STATE(1049), 1, + ACTIONS(2354), 1, + anon_sym_extends, + ACTIONS(2356), 1, + anon_sym_LBRACE, + STATE(242), 1, + sym_interface_body, + STATE(925), 1, + sym_extends_interfaces, + STATE(1114), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [18509] = 2, + [21739] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2197), 6, + ACTIONS(2498), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18522] = 2, + [21752] = 5, + ACTIONS(2500), 1, + sym_identifier, + ACTIONS(2504), 1, + anon_sym_static, + STATE(1171), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2502), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [21771] = 6, + ACTIONS(2335), 1, + anon_sym_case, + ACTIONS(2337), 1, + anon_sym_default, + ACTIONS(2389), 1, + anon_sym_RBRACE, + STATE(1272), 1, + sym_switch_label, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(837), 2, + sym_switch_rule, + aux_sym_switch_block_repeat2, + [21792] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2199), 6, + ACTIONS(2506), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18535] = 4, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(2201), 1, - sym_identifier, + [21805] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(683), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18552] = 2, + ACTIONS(2508), 6, + anon_sym_open, + anon_sym_module, + anon_sym_transitive, + anon_sym_static, + anon_sym_record, + sym_identifier, + [21818] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2203), 6, + ACTIONS(2510), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18565] = 4, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(2205), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, + [21831] = 4, + ACTIONS(2514), 1, + aux_sym__multiline_string_fragment_token1, + STATE(833), 1, + aux_sym__multiline_string_fragment_repeat1, + ACTIONS(2352), 2, sym_line_comment, sym_block_comment, - STATE(734), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18582] = 2, + ACTIONS(2512), 4, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + aux_sym__multiline_string_fragment_token2, + aux_sym__escape_sequence_token1, + sym_escape_sequence, + [21848] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2207), 6, + ACTIONS(2510), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18595] = 4, - ACTIONS(282), 1, - anon_sym_AT, - ACTIONS(2209), 1, - anon_sym_LBRACK, + [21861] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(734), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18612] = 4, - ACTIONS(321), 1, - anon_sym_AT, - ACTIONS(2211), 1, + ACTIONS(2516), 6, + anon_sym_open, + anon_sym_module, + anon_sym_transitive, + anon_sym_static, + anon_sym_record, sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - STATE(588), 4, - sym__annotation, - sym_marker_annotation, - sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18629] = 6, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(2213), 1, + [21874] = 5, + ACTIONS(2189), 1, sym_identifier, - ACTIONS(2217), 1, - sym_this, - STATE(878), 1, - sym_type_arguments, + STATE(950), 1, + sym__variable_declarator_id, + STATE(1143), 1, + sym_variable_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2215), 2, + ACTIONS(2168), 3, anon_sym_open, anon_sym_module, - [18650] = 2, + anon_sym_record, + [21893] = 7, + ACTIONS(1465), 1, + anon_sym_LBRACE, + ACTIONS(2313), 1, + anon_sym_implements, + ACTIONS(2315), 1, + anon_sym_permits, + STATE(157), 1, + sym_class_body, + STATE(952), 1, + sym_super_interfaces, + STATE(1123), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [21916] = 7, + ACTIONS(2315), 1, + anon_sym_permits, + ACTIONS(2354), 1, + anon_sym_extends, + ACTIONS(2356), 1, + anon_sym_LBRACE, + STATE(266), 1, + sym_interface_body, + STATE(971), 1, + sym_extends_interfaces, + STATE(1154), 1, + sym_permits, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [21939] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2219), 6, + ACTIONS(2510), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18663] = 2, + [21952] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2221), 6, + ACTIONS(2407), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18676] = 4, - ACTIONS(321), 1, + [21965] = 4, + ACTIONS(297), 1, anon_sym_AT, - ACTIONS(2223), 1, - sym_identifier, + ACTIONS(2518), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(682), 4, + STATE(804), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18693] = 4, - ACTIONS(282), 1, + aux_sym_array_creation_expression_repeat1, + [21982] = 4, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(2225), 1, - anon_sym_LBRACK, + ACTIONS(2520), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(734), 4, + STATE(685), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18710] = 2, + aux_sym_array_creation_expression_repeat1, + [21999] = 4, + ACTIONS(331), 1, + anon_sym_AT, + ACTIONS(2522), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2227), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [18723] = 2, + STATE(813), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [22016] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 6, + ACTIONS(2524), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18736] = 2, + [22029] = 5, + ACTIONS(2189), 1, + sym_identifier, + STATE(950), 1, + sym__variable_declarator_id, + STATE(1093), 1, + sym_variable_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2231), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [18749] = 4, - ACTIONS(321), 1, + ACTIONS(2168), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [22048] = 4, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(2233), 1, + ACTIONS(2526), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(700), 4, + STATE(685), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18766] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2235), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [18779] = 2, + aux_sym_array_creation_expression_repeat1, + [22065] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2237), 6, + ACTIONS(2528), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, anon_sym_provides, - [18792] = 4, - ACTIONS(1941), 1, - anon_sym_LBRACK, - ACTIONS(2239), 1, + [22078] = 4, + ACTIONS(297), 1, anon_sym_AT, + ACTIONS(2530), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(734), 4, + STATE(804), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18809] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2242), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [18822] = 2, + aux_sym_array_creation_expression_repeat1, + [22095] = 4, + ACTIONS(331), 1, + anon_sym_AT, + ACTIONS(2532), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2244), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [18835] = 2, + STATE(828), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [22112] = 4, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(2534), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2246), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [18848] = 7, - ACTIONS(2080), 1, - anon_sym_permits, - ACTIONS(2106), 1, - anon_sym_extends, - ACTIONS(2108), 1, - anon_sym_LBRACE, - STATE(119), 1, - sym_interface_body, - STATE(814), 1, - sym_extends_interfaces, - STATE(957), 1, - sym_permits, + STATE(804), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [22129] = 4, + ACTIONS(297), 1, + anon_sym_AT, + ACTIONS(2536), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [18871] = 2, + STATE(804), 4, + sym__annotation, + sym_marker_annotation, + sym_annotation, + aux_sym_array_creation_expression_repeat1, + [22146] = 5, + ACTIONS(2189), 1, + sym_identifier, + STATE(950), 1, + sym__variable_declarator_id, + STATE(1203), 1, + sym_variable_declarator, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2248), 6, - anon_sym_RBRACE, - anon_sym_requires, - anon_sym_exports, - anon_sym_opens, - anon_sym_uses, - anon_sym_provides, - [18884] = 4, - ACTIONS(321), 1, + ACTIONS(2168), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [22165] = 4, + ACTIONS(331), 1, anon_sym_AT, - ACTIONS(2250), 1, + ACTIONS(2538), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(588), 4, + STATE(685), 4, sym__annotation, sym_marker_annotation, sym_annotation, - aux_sym_dimensions_expr_repeat1, - [18901] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2252), 6, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_throws, - [18914] = 2, + aux_sym_array_creation_expression_repeat1, + [22182] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2254), 6, + ACTIONS(2540), 6, anon_sym_RBRACE, anon_sym_requires, anon_sym_exports, anon_sym_opens, anon_sym_uses, - anon_sym_provides, - [18927] = 2, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2256), 6, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_throws, - [18940] = 2, + anon_sym_provides, + [22195] = 4, + STATE(1133), 1, + sym__wildcard_bounds, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2258), 6, - anon_sym_DASH_GT, - anon_sym_LBRACK, + ACTIONS(2542), 2, + anon_sym_GT, + anon_sym_COMMA, + ACTIONS(2544), 2, + anon_sym_extends, + sym_super, + [22211] = 4, + ACTIONS(1465), 1, anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_throws, - [18953] = 2, + STATE(992), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2260), 6, - anon_sym_DASH_GT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AT, - anon_sym_throws, - [18966] = 6, - ACTIONS(1788), 1, - anon_sym_SEMI, - ACTIONS(1875), 1, - anon_sym_RBRACE, - ACTIONS(2262), 1, + ACTIONS(2546), 3, anon_sym_COMMA, - STATE(783), 1, - aux_sym_enum_body_repeat1, - STATE(1094), 1, - sym_enum_body_declarations, + anon_sym_RBRACE, + anon_sym_SEMI, + [22227] = 4, + ACTIONS(1465), 1, + anon_sym_LBRACE, + STATE(1040), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [18986] = 6, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1984), 1, - anon_sym_DOT, - STATE(349), 1, - sym_argument_list, - STATE(587), 1, - sym_type_arguments, + ACTIONS(2548), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [22243] = 4, + ACTIONS(2550), 1, + sym_identifier, + STATE(1029), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19006] = 6, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1990), 1, - anon_sym_DOT, - STATE(347), 1, - sym_argument_list, - STATE(591), 1, - sym_type_arguments, + ACTIONS(2552), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [22259] = 4, + ACTIONS(2554), 1, + sym_identifier, + STATE(1181), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19026] = 5, - ACTIONS(2264), 1, + ACTIONS(2556), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [22275] = 4, + ACTIONS(2558), 1, sym_identifier, - ACTIONS(2268), 1, - anon_sym_static, - STATE(1001), 1, - sym_scoped_identifier, + ACTIONS(2562), 1, + sym_super, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2266), 2, + ACTIONS(2560), 3, anon_sym_open, anon_sym_module, - [19044] = 4, - ACTIONS(2005), 1, - anon_sym_PIPE, - STATE(759), 1, - aux_sym_catch_type_repeat1, + anon_sym_record, + [22291] = 4, + ACTIONS(2189), 1, + sym_identifier, + STATE(1252), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2270), 3, + ACTIONS(2168), 3, anon_sym_open, anon_sym_module, + anon_sym_record, + [22307] = 4, + ACTIONS(2564), 1, sym_identifier, - [19060] = 4, - STATE(1032), 1, + STATE(1103), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2566), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [22323] = 4, + STATE(1198), 1, sym__wildcard_bounds, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2272), 2, - anon_sym_GT, - anon_sym_COMMA, - ACTIONS(2274), 2, + ACTIONS(2544), 2, anon_sym_extends, sym_super, - [19076] = 3, + ACTIONS(2568), 2, + anon_sym_GT, + anon_sym_COMMA, + [22339] = 6, + ACTIONS(2021), 1, + anon_sym_SEMI, + ACTIONS(2072), 1, + anon_sym_RBRACE, + ACTIONS(2570), 1, + anon_sym_COMMA, + STATE(975), 1, + aux_sym_enum_body_repeat1, + STATE(1237), 1, + sym_enum_body_declarations, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2023), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(1049), 3, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - [19090] = 4, - ACTIONS(1045), 1, - anon_sym_LPAREN, - STATE(402), 1, - sym_argument_list, + [22359] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1147), 3, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_COLON_COLON, - [19106] = 4, - ACTIONS(2276), 1, + ACTIONS(2572), 5, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_SEMI, + [22371] = 4, + ACTIONS(2574), 1, anon_sym_COMMA, - STATE(754), 1, + STATE(881), 1, aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2279), 3, + ACTIONS(2577), 3, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_permits, - [19122] = 5, - ACTIONS(1956), 1, + [22387] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2579), 5, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_SEMI, + [22399] = 3, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2231), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(1186), 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + [22413] = 4, + ACTIONS(2581), 1, sym_identifier, - STATE(791), 1, - sym__variable_declarator_id, - STATE(1057), 1, - sym_variable_declarator, + STATE(982), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(2583), 3, anon_sym_open, anon_sym_module, - [19140] = 4, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(883), 1, - sym_class_body, + anon_sym_record, + [22429] = 4, + ACTIONS(1182), 1, + anon_sym_LPAREN, + STATE(473), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2281), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [19156] = 2, + ACTIONS(1278), 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_COLON_COLON, + [22445] = 6, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(2215), 1, + anon_sym_DOT, + STATE(426), 1, + sym_argument_list, + STATE(678), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [22465] = 4, + ACTIONS(2585), 1, + sym_identifier, + STATE(1191), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2283), 5, + ACTIONS(2587), 3, anon_sym_open, anon_sym_module, - anon_sym_transitive, - anon_sym_static, - sym_identifier, - [19168] = 5, - ACTIONS(1956), 1, + anon_sym_record, + [22481] = 4, + ACTIONS(2589), 1, sym_identifier, - STATE(791), 1, - sym__variable_declarator_id, - STATE(973), 1, - sym_variable_declarator, + STATE(1035), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(2591), 3, anon_sym_open, anon_sym_module, - [19186] = 4, - ACTIONS(2285), 1, - anon_sym_PIPE, - STATE(759), 1, - aux_sym_catch_type_repeat1, + anon_sym_record, + [22497] = 4, + ACTIONS(2593), 1, + sym_identifier, + STATE(1087), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2052), 3, + ACTIONS(2595), 3, anon_sym_open, anon_sym_module, + anon_sym_record, + [22513] = 4, + ACTIONS(2597), 1, sym_identifier, - [19202] = 6, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1984), 1, - anon_sym_DOT, - STATE(345), 1, - sym_argument_list, - STATE(587), 1, - sym_type_arguments, + STATE(1175), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19222] = 6, - ACTIONS(1788), 1, + ACTIONS(2599), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [22529] = 6, + ACTIONS(2021), 1, anon_sym_SEMI, - ACTIONS(2288), 1, + ACTIONS(2601), 1, anon_sym_COMMA, - ACTIONS(2290), 1, + ACTIONS(2603), 1, anon_sym_RBRACE, - STATE(746), 1, + STATE(879), 1, aux_sym_enum_body_repeat1, - STATE(1067), 1, + STATE(1287), 1, sym_enum_body_declarations, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19242] = 2, + [22549] = 4, + ACTIONS(2189), 1, + sym_identifier, + STATE(1278), 1, + sym__variable_declarator_id, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2292), 5, + ACTIONS(2168), 3, anon_sym_open, anon_sym_module, - anon_sym_transitive, - anon_sym_static, + anon_sym_record, + [22565] = 4, + ACTIONS(2605), 1, sym_identifier, - [19254] = 6, - ACTIONS(85), 1, - anon_sym_LT, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1990), 1, - anon_sym_DOT, - STATE(346), 1, - sym_argument_list, - STATE(591), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [19274] = 4, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(901), 1, - sym_class_body, + STATE(535), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2294), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [19290] = 4, - STATE(992), 1, - sym__wildcard_bounds, + ACTIONS(2607), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [22581] = 4, + ACTIONS(2609), 1, + sym_identifier, + STATE(940), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2274), 2, - anon_sym_extends, - sym_super, - ACTIONS(2296), 2, - anon_sym_GT, - anon_sym_COMMA, - [19306] = 2, + ACTIONS(2611), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [22597] = 4, + ACTIONS(2613), 1, + sym_identifier, + STATE(938), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2298), 5, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_SEMI, - [19318] = 5, - ACTIONS(2300), 1, - anon_sym_catch, - ACTIONS(2302), 1, - anon_sym_finally, - STATE(204), 1, - sym_finally_clause, + ACTIONS(2615), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [22613] = 4, + ACTIONS(2617), 1, + sym_identifier, + STATE(936), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - STATE(58), 2, - sym_catch_clause, - aux_sym_try_statement_repeat1, - [19336] = 2, + ACTIONS(2619), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [22629] = 4, + ACTIONS(2621), 1, + sym_identifier, + STATE(934), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2304), 5, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_SEMI, - [19348] = 5, - ACTIONS(1956), 1, + ACTIONS(2623), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [22645] = 4, + ACTIONS(2625), 1, sym_identifier, - STATE(791), 1, - sym__variable_declarator_id, - STATE(971), 1, - sym_variable_declarator, + STATE(932), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, + ACTIONS(2627), 3, anon_sym_open, anon_sym_module, - [19366] = 4, - ACTIONS(1775), 1, - anon_sym_COMMA, - STATE(847), 1, - aux_sym_argument_list_repeat1, + anon_sym_record, + [22661] = 4, + ACTIONS(2629), 1, + sym_identifier, + STATE(1074), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2306), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [19381] = 4, - ACTIONS(2308), 1, + ACTIONS(2631), 3, + anon_sym_open, + anon_sym_module, + anon_sym_record, + [22677] = 4, + ACTIONS(2633), 1, sym_identifier, - STATE(810), 1, + STATE(930), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2310), 2, + ACTIONS(2635), 3, anon_sym_open, anon_sym_module, - [19396] = 4, - ACTIONS(2312), 1, + anon_sym_record, + [22693] = 4, + ACTIONS(2637), 1, sym_identifier, - STATE(812), 1, + STATE(655), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2314), 2, + ACTIONS(2639), 3, anon_sym_open, anon_sym_module, - [19411] = 4, - ACTIONS(2316), 1, + anon_sym_record, + [22709] = 2, + ACTIONS(2352), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2512), 5, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + aux_sym__multiline_string_fragment_token1, + aux_sym__multiline_string_fragment_token2, + aux_sym__escape_sequence_token1, + sym_escape_sequence, + [22721] = 4, + ACTIONS(2641), 1, sym_identifier, - STATE(817), 1, + STATE(1046), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2318), 2, + ACTIONS(2643), 3, anon_sym_open, anon_sym_module, - [19426] = 4, - ACTIONS(2320), 1, + anon_sym_record, + [22737] = 6, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(2217), 1, + anon_sym_DOT, + STATE(425), 1, + sym_argument_list, + STATE(677), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [22757] = 6, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(2215), 1, + anon_sym_DOT, + STATE(423), 1, + sym_argument_list, + STATE(678), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [22777] = 5, + ACTIONS(2645), 1, + anon_sym_catch, + ACTIONS(2647), 1, + anon_sym_finally, + STATE(285), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + STATE(97), 2, + sym_catch_clause, + aux_sym_try_statement_repeat1, + [22795] = 4, + ACTIONS(2649), 1, sym_identifier, - STATE(805), 1, + STATE(410), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2322), 2, + ACTIONS(2651), 3, anon_sym_open, anon_sym_module, - [19441] = 4, - ACTIONS(2324), 1, + anon_sym_record, + [22811] = 4, + ACTIONS(2653), 1, sym_identifier, - STATE(800), 1, + STATE(1183), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2326), 2, + ACTIONS(2655), 3, anon_sym_open, anon_sym_module, - [19456] = 4, - ACTIONS(2328), 1, - anon_sym_EQ, - ACTIONS(2332), 1, - anon_sym_COLON, + anon_sym_record, + [22827] = 6, + ACTIONS(95), 1, + anon_sym_LT, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(2217), 1, + anon_sym_DOT, + STATE(424), 1, + sym_argument_list, + STATE(677), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2330), 2, + [22847] = 4, + ACTIONS(2657), 1, anon_sym_COMMA, + STATE(881), 1, + aux_sym_type_list_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2659), 2, + anon_sym_LBRACE, anon_sym_SEMI, - [19471] = 5, - ACTIONS(2334), 1, + [22862] = 4, + ACTIONS(2661), 1, + anon_sym_DQUOTE, + STATE(911), 1, + aux_sym__string_literal_repeat1, + ACTIONS(2352), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2663), 2, + sym_string_fragment, + sym_escape_sequence, + [22877] = 5, + ACTIONS(1465), 1, anon_sym_LBRACE, - ACTIONS(2336), 1, - anon_sym_throws, - STATE(379), 1, - sym_constructor_body, - STATE(1002), 1, - sym_throws, + ACTIONS(2315), 1, + anon_sym_permits, + STATE(210), 1, + sym_class_body, + STATE(1161), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19488] = 4, - ACTIONS(2338), 1, - sym_identifier, - ACTIONS(2342), 1, - sym_super, - ACTIONS(3), 2, + [22894] = 4, + ACTIONS(2666), 1, + anon_sym_DQUOTE, + STATE(911), 1, + aux_sym__string_literal_repeat1, + ACTIONS(2352), 2, sym_line_comment, sym_block_comment, - ACTIONS(2340), 2, - anon_sym_open, - anon_sym_module, - [19503] = 5, - ACTIONS(1284), 1, + ACTIONS(2668), 2, + sym_string_fragment, + sym_escape_sequence, + [22909] = 5, + ACTIONS(1465), 1, anon_sym_LBRACE, - ACTIONS(2080), 1, + ACTIONS(2315), 1, anon_sym_permits, - STATE(92), 1, + STATE(207), 1, sym_class_body, - STATE(990), 1, + STATE(1158), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19520] = 4, - ACTIONS(2344), 1, + [22926] = 3, + ACTIONS(2670), 1, sym_identifier, - STATE(809), 1, - sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2346), 2, + ACTIONS(2672), 3, anon_sym_open, anon_sym_module, - [19535] = 4, - ACTIONS(2348), 1, - anon_sym_AMP, - STATE(781), 1, - aux_sym_type_bound_repeat1, + anon_sym_record, + [22939] = 4, + ACTIONS(2674), 1, + anon_sym_EQ, + ACTIONS(2678), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2351), 2, - anon_sym_GT, + ACTIONS(2676), 2, anon_sym_COMMA, - [19550] = 5, - ACTIONS(2080), 1, - anon_sym_permits, - ACTIONS(2108), 1, - anon_sym_LBRACE, - STATE(103), 1, - sym_interface_body, - STATE(1045), 1, - sym_permits, + anon_sym_SEMI, + [22954] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19567] = 4, - ACTIONS(2353), 1, + ACTIONS(2680), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(783), 1, - aux_sym_enum_body_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2356), 2, anon_sym_RBRACE, anon_sym_SEMI, - [19582] = 4, - ACTIONS(2358), 1, - sym_identifier, - STATE(1052), 1, - sym_scoped_identifier, + [22965] = 5, + ACTIONS(2682), 1, + anon_sym_LPAREN, + ACTIONS(2684), 1, + anon_sym_LBRACE, + STATE(906), 1, + sym_block, + STATE(1110), 1, + sym_resource_specification, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2360), 2, - anon_sym_open, - anon_sym_module, - [19597] = 4, - ACTIONS(2362), 1, - sym_identifier, - STATE(1060), 1, - sym_scoped_identifier, + [22982] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2364), 2, - anon_sym_open, - anon_sym_module, - [19612] = 4, - ACTIONS(2366), 1, - sym_identifier, - STATE(914), 1, - sym_scoped_identifier, + ACTIONS(2686), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [22993] = 5, + ACTIONS(1684), 1, + anon_sym_COLON_COLON, + ACTIONS(2688), 1, + anon_sym_AMP, + ACTIONS(2690), 1, + anon_sym_RPAREN, + STATE(1061), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2368), 2, - anon_sym_open, - anon_sym_module, - [19627] = 5, - ACTIONS(1284), 1, - anon_sym_LBRACE, - ACTIONS(2080), 1, - anon_sym_permits, - STATE(81), 1, - sym_class_body, - STATE(1048), 1, - sym_permits, + [23010] = 4, + ACTIONS(2692), 1, + anon_sym_COMMA, + STATE(921), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19644] = 4, - ACTIONS(2370), 1, + ACTIONS(1977), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [23025] = 3, + ACTIONS(2558), 1, sym_identifier, - STATE(979), 1, - sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2372), 2, + ACTIONS(2560), 3, anon_sym_open, anon_sym_module, - [19659] = 4, - ACTIONS(2374), 1, - sym_identifier, - STATE(902), 1, - sym_scoped_identifier, + anon_sym_record, + [23038] = 5, + ACTIONS(1465), 1, + anon_sym_LBRACE, + ACTIONS(2313), 1, + anon_sym_implements, + STATE(241), 1, + sym_class_body, + STATE(1193), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2376), 2, - anon_sym_open, - anon_sym_module, - [19674] = 4, - ACTIONS(2378), 1, - sym_identifier, - STATE(1061), 1, - sym_scoped_identifier, + [23055] = 5, + ACTIONS(1465), 1, + anon_sym_LBRACE, + ACTIONS(2313), 1, + anon_sym_implements, + STATE(203), 1, + sym_class_body, + STATE(1157), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2380), 2, - anon_sym_open, - anon_sym_module, - [19689] = 3, - ACTIONS(2328), 1, - anon_sym_EQ, + [23072] = 5, + ACTIONS(2315), 1, + anon_sym_permits, + ACTIONS(2356), 1, + anon_sym_LBRACE, + STATE(197), 1, + sym_interface_body, + STATE(1137), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2330), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - [19702] = 5, - ACTIONS(2078), 1, - anon_sym_implements, - ACTIONS(2382), 1, + [23089] = 5, + ACTIONS(2315), 1, + anon_sym_permits, + ACTIONS(2356), 1, anon_sym_LBRACE, - STATE(77), 1, - sym_enum_body, - STATE(1058), 1, - sym_super_interfaces, + STATE(268), 1, + sym_interface_body, + STATE(1153), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19719] = 4, - ACTIONS(2384), 1, + [23106] = 3, + ACTIONS(2695), 1, sym_identifier, - STATE(915), 1, - sym_scoped_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2386), 2, + ACTIONS(2697), 3, anon_sym_open, anon_sym_module, - [19734] = 2, + anon_sym_record, + [23119] = 4, + ACTIONS(2701), 1, + anon_sym_throws, + STATE(1100), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2388), 4, - anon_sym_RPAREN, + ACTIONS(2699), 2, + anon_sym_LBRACE, + anon_sym_SEMI, + [23134] = 5, + ACTIONS(1435), 1, + anon_sym_DOT, + ACTIONS(2703), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2705), 1, anon_sym_SEMI, - [19745] = 5, - ACTIONS(1284), 1, - anon_sym_LBRACE, - ACTIONS(2080), 1, - anon_sym_permits, - STATE(123), 1, - sym_class_body, - STATE(972), 1, - sym_permits, + STATE(989), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19762] = 5, - ACTIONS(1284), 1, - anon_sym_LBRACE, - ACTIONS(2080), 1, - anon_sym_permits, - STATE(88), 1, - sym_class_body, + [23151] = 5, + ACTIONS(1417), 1, + anon_sym_DOT, + ACTIONS(2703), 1, + anon_sym_COMMA, + ACTIONS(2707), 1, + anon_sym_SEMI, STATE(991), 1, - sym_permits, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [19779] = 4, - ACTIONS(2390), 1, - sym_identifier, - STATE(944), 1, - sym_scoped_identifier, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2392), 2, - anon_sym_open, - anon_sym_module, - [19794] = 2, + [23168] = 5, + ACTIONS(1435), 1, + anon_sym_DOT, + ACTIONS(2703), 1, + anon_sym_COMMA, + ACTIONS(2709), 1, + anon_sym_SEMI, + STATE(993), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2394), 4, - anon_sym_RPAREN, + [23185] = 5, + ACTIONS(1417), 1, + anon_sym_DOT, + ACTIONS(2703), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2711), 1, anon_sym_SEMI, - [19805] = 4, - ACTIONS(2396), 1, - sym_identifier, - STATE(860), 1, - sym_scoped_identifier, + STATE(995), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2398), 2, - anon_sym_open, - anon_sym_module, - [19820] = 5, - ACTIONS(1272), 1, + [23202] = 5, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(2400), 1, + ACTIONS(2703), 1, anon_sym_COMMA, - ACTIONS(2402), 1, + ACTIONS(2713), 1, anon_sym_SEMI, - STATE(943), 1, - aux_sym_provides_module_directive_repeat1, + STATE(997), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19837] = 5, - ACTIONS(2404), 1, - anon_sym_LPAREN, - ACTIONS(2406), 1, - anon_sym_LBRACE, - STATE(767), 1, - sym_block, - STATE(1015), 1, - sym_resource_specification, + [23219] = 5, + ACTIONS(1417), 1, + anon_sym_DOT, + ACTIONS(2703), 1, + anon_sym_COMMA, + ACTIONS(2715), 1, + anon_sym_SEMI, + STATE(999), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19854] = 4, - ACTIONS(2408), 1, - sym_identifier, - STATE(561), 1, - sym_scoped_identifier, + [23236] = 5, + ACTIONS(1435), 1, + anon_sym_DOT, + ACTIONS(2703), 1, + anon_sym_COMMA, + ACTIONS(2717), 1, + anon_sym_SEMI, + STATE(1001), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2410), 2, - anon_sym_open, - anon_sym_module, - [19869] = 5, - ACTIONS(2080), 1, - anon_sym_permits, - ACTIONS(2108), 1, - anon_sym_LBRACE, - STATE(68), 1, - sym_interface_body, - STATE(959), 1, - sym_permits, + [23253] = 5, + ACTIONS(1417), 1, + anon_sym_DOT, + ACTIONS(2703), 1, + anon_sym_COMMA, + ACTIONS(2719), 1, + anon_sym_SEMI, + STATE(1003), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19886] = 5, - ACTIONS(1278), 1, + [23270] = 5, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(2400), 1, + ACTIONS(2721), 1, anon_sym_COMMA, - ACTIONS(2412), 1, + ACTIONS(2723), 1, anon_sym_SEMI, - STATE(941), 1, + STATE(1006), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19903] = 5, - ACTIONS(1272), 1, + [23287] = 5, + ACTIONS(1417), 1, anon_sym_DOT, - ACTIONS(2400), 1, + ACTIONS(2721), 1, anon_sym_COMMA, - ACTIONS(2414), 1, + ACTIONS(2725), 1, anon_sym_SEMI, - STATE(939), 1, + STATE(1008), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19920] = 4, - ACTIONS(1956), 1, - sym_identifier, - STATE(1125), 1, - sym__variable_declarator_id, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1950), 2, - anon_sym_open, - anon_sym_module, - [19935] = 4, - ACTIONS(2416), 1, - sym_identifier, - STATE(875), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2418), 2, - anon_sym_open, - anon_sym_module, - [19950] = 5, - ACTIONS(1278), 1, + [23304] = 5, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(2400), 1, + ACTIONS(2721), 1, anon_sym_COMMA, - ACTIONS(2420), 1, + ACTIONS(2727), 1, anon_sym_SEMI, - STATE(937), 1, + STATE(1010), 1, aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19967] = 5, - ACTIONS(1272), 1, + [23321] = 5, + ACTIONS(1417), 1, anon_sym_DOT, - ACTIONS(2422), 1, + ACTIONS(2721), 1, anon_sym_COMMA, - ACTIONS(2424), 1, + ACTIONS(2729), 1, anon_sym_SEMI, - STATE(922), 1, - aux_sym_exports_module_directive_repeat1, + STATE(1012), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [19984] = 5, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2422), 1, - anon_sym_COMMA, - ACTIONS(2426), 1, - anon_sym_SEMI, - STATE(934), 1, - aux_sym_exports_module_directive_repeat1, + [23338] = 5, + ACTIONS(2313), 1, + anon_sym_implements, + ACTIONS(2731), 1, + anon_sym_LBRACE, + STATE(248), 1, + sym_enum_body, + STATE(1185), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20001] = 5, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2422), 1, - anon_sym_COMMA, - ACTIONS(2428), 1, - anon_sym_SEMI, - STATE(932), 1, - aux_sym_exports_module_directive_repeat1, + [23355] = 4, + ACTIONS(2674), 1, + anon_sym_EQ, + ACTIONS(2733), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20018] = 5, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2422), 1, + ACTIONS(2676), 2, anon_sym_COMMA, - ACTIONS(2430), 1, anon_sym_SEMI, - STATE(930), 1, - aux_sym_exports_module_directive_repeat1, + [23370] = 4, + ACTIONS(2701), 1, + anon_sym_throws, + STATE(1150), 1, + sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20035] = 5, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2422), 1, - anon_sym_COMMA, - ACTIONS(2432), 1, + ACTIONS(2735), 2, + anon_sym_LBRACE, anon_sym_SEMI, - STATE(928), 1, - aux_sym_exports_module_directive_repeat1, + [23385] = 5, + ACTIONS(1106), 1, + anon_sym_LT, + ACTIONS(2238), 1, + anon_sym_LPAREN, + STATE(945), 1, + sym_formal_parameters, + STATE(1176), 1, + sym_type_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20052] = 5, - ACTIONS(2080), 1, - anon_sym_permits, - ACTIONS(2108), 1, + [23402] = 5, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(91), 1, - sym_interface_body, - STATE(1054), 1, - sym_permits, + ACTIONS(2313), 1, + anon_sym_implements, + STATE(225), 1, + sym_class_body, + STATE(1156), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20069] = 4, - ACTIONS(2434), 1, + [23419] = 4, + ACTIONS(2737), 1, anon_sym_AMP, - STATE(781), 1, + STATE(955), 1, aux_sym_type_bound_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2436), 2, + ACTIONS(2739), 2, anon_sym_GT, anon_sym_COMMA, - [20084] = 4, - ACTIONS(2438), 1, + [23434] = 5, + ACTIONS(2701), 1, + anon_sym_throws, + ACTIONS(2741), 1, + anon_sym_LBRACE, + STATE(443), 1, + sym_constructor_body, + STATE(1134), 1, + sym_throws, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [23451] = 5, + ACTIONS(1465), 1, + anon_sym_LBRACE, + ACTIONS(2313), 1, + anon_sym_implements, + STATE(213), 1, + sym_class_body, + STATE(1099), 1, + sym_super_interfaces, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [23468] = 4, + ACTIONS(2745), 1, + anon_sym_extends, + STATE(1131), 1, + sym_type_bound, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2743), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(816), 1, - aux_sym_argument_list_repeat1, + [23483] = 3, + ACTIONS(2674), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1810), 2, + ACTIONS(2676), 3, anon_sym_RPAREN, - anon_sym_COLON, - [20099] = 5, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2422), 1, anon_sym_COMMA, - ACTIONS(2441), 1, anon_sym_SEMI, - STATE(926), 1, - aux_sym_exports_module_directive_repeat1, + [23496] = 4, + ACTIONS(2737), 1, + anon_sym_AMP, + STATE(946), 1, + aux_sym_type_bound_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20116] = 5, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2422), 1, + ACTIONS(2747), 2, + anon_sym_GT, anon_sym_COMMA, - ACTIONS(2443), 1, - anon_sym_SEMI, - STATE(924), 1, - aux_sym_exports_module_directive_repeat1, + [23511] = 5, + ACTIONS(1465), 1, + anon_sym_LBRACE, + ACTIONS(2315), 1, + anon_sym_permits, + STATE(253), 1, + sym_class_body, + STATE(1159), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20133] = 4, - ACTIONS(2447), 1, + [23528] = 4, + ACTIONS(2745), 1, anon_sym_extends, - STATE(1041), 1, + STATE(1130), 1, sym_type_bound, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2445), 2, + ACTIONS(2749), 2, anon_sym_GT, anon_sym_COMMA, - [20148] = 5, - ACTIONS(1541), 1, - anon_sym_COLON_COLON, - ACTIONS(2449), 1, - anon_sym_AMP, - ACTIONS(2451), 1, - anon_sym_RPAREN, - STATE(923), 1, - aux_sym_cast_expression_repeat1, + [23543] = 4, + ACTIONS(95), 1, + anon_sym_LT, + STATE(1180), 1, + sym_type_arguments, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20165] = 4, - ACTIONS(2453), 1, + ACTIONS(2751), 2, + anon_sym_new, sym_identifier, - STATE(341), 1, - sym_scoped_identifier, + [23558] = 4, + ACTIONS(2753), 1, + anon_sym_AMP, + STATE(955), 1, + aux_sym_type_bound_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2455), 2, - anon_sym_open, - anon_sym_module, - [20180] = 4, - ACTIONS(2336), 1, + ACTIONS(2756), 2, + anon_sym_GT, + anon_sym_COMMA, + [23573] = 4, + ACTIONS(2701), 1, anon_sym_throws, - STATE(967), 1, + STATE(1116), 1, sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2457), 2, + ACTIONS(2758), 2, anon_sym_LBRACE, anon_sym_SEMI, - [20195] = 2, + [23588] = 5, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(1684), 1, + anon_sym_COLON_COLON, + ACTIONS(2760), 1, + anon_sym_DOT, + STATE(1275), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2279), 4, + [23605] = 4, + ACTIONS(2762), 1, + anon_sym_DQUOTE, + STATE(913), 1, + aux_sym__string_literal_repeat1, + ACTIONS(2352), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2764), 2, + sym_string_fragment, + sym_escape_sequence, + [23620] = 4, + ACTIONS(2657), 1, anon_sym_COMMA, + STATE(881), 1, + aux_sym_type_list_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2766), 2, anon_sym_LBRACE, - anon_sym_SEMI, anon_sym_permits, - [20206] = 4, - ACTIONS(2459), 1, - sym_identifier, - STATE(458), 1, - sym_scoped_identifier, + [23635] = 5, + ACTIONS(2313), 1, + anon_sym_implements, + ACTIONS(2731), 1, + anon_sym_LBRACE, + STATE(247), 1, + sym_enum_body, + STATE(1146), 1, + sym_super_interfaces, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2461), 2, - anon_sym_open, - anon_sym_module, - [20221] = 4, - ACTIONS(2463), 1, - sym_identifier, - STATE(1008), 1, - sym_scoped_identifier, + [23652] = 5, + ACTIONS(1106), 1, + anon_sym_LT, + ACTIONS(2238), 1, + anon_sym_LPAREN, + STATE(923), 1, + sym_formal_parameters, + STATE(1145), 1, + sym_type_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2465), 2, - anon_sym_open, - anon_sym_module, - [20236] = 5, - ACTIONS(2334), 1, - anon_sym_LBRACE, - ACTIONS(2336), 1, + [23669] = 5, + ACTIONS(2701), 1, anon_sym_throws, - STATE(352), 1, + ACTIONS(2741), 1, + anon_sym_LBRACE, + STATE(442), 1, sym_constructor_body, - STATE(1038), 1, + STATE(1126), 1, sym_throws, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20253] = 4, - ACTIONS(2467), 1, - anon_sym_COMMA, - STATE(754), 1, - aux_sym_type_list_repeat1, + [23686] = 4, + ACTIONS(2674), 1, + anon_sym_EQ, + ACTIONS(2768), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2469), 2, - anon_sym_LBRACE, + ACTIONS(2676), 2, + anon_sym_COMMA, anon_sym_SEMI, - [20268] = 5, - ACTIONS(1284), 1, - anon_sym_LBRACE, - ACTIONS(2080), 1, - anon_sym_permits, - STATE(117), 1, - sym_class_body, - STATE(955), 1, - sym_permits, + [23701] = 4, + ACTIONS(2674), 1, + anon_sym_EQ, + ACTIONS(2770), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20285] = 4, - ACTIONS(2467), 1, + ACTIONS(2676), 2, anon_sym_COMMA, - STATE(827), 1, + anon_sym_SEMI, + [23716] = 4, + ACTIONS(2657), 1, + anon_sym_COMMA, + STATE(910), 1, aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2471), 2, + ACTIONS(2772), 2, anon_sym_LBRACE, anon_sym_SEMI, - [20300] = 5, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1541), 1, - anon_sym_COLON_COLON, - ACTIONS(2473), 1, - anon_sym_DOT, - STATE(1118), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [20317] = 4, - ACTIONS(2336), 1, - anon_sym_throws, - STATE(983), 1, - sym_throws, + [23731] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2475), 2, + ACTIONS(2577), 4, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_SEMI, - [20332] = 4, - ACTIONS(2336), 1, - anon_sym_throws, - STATE(1019), 1, - sym_throws, + anon_sym_permits, + [23742] = 5, + ACTIONS(1684), 1, + anon_sym_COLON_COLON, + ACTIONS(2688), 1, + anon_sym_AMP, + ACTIONS(2774), 1, + anon_sym_RPAREN, + STATE(996), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2477), 2, + [23759] = 5, + ACTIONS(1465), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [20347] = 4, - ACTIONS(2447), 1, - anon_sym_extends, - STATE(993), 1, - sym_type_bound, + ACTIONS(2315), 1, + anon_sym_permits, + STATE(175), 1, + sym_class_body, + STATE(1098), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2479), 2, - anon_sym_GT, - anon_sym_COMMA, - [20362] = 4, - ACTIONS(2467), 1, + [23776] = 4, + ACTIONS(1961), 1, anon_sym_COMMA, - STATE(754), 1, - aux_sym_type_list_repeat1, + STATE(921), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2481), 2, - anon_sym_LBRACE, + ACTIONS(2776), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [23791] = 5, + ACTIONS(2315), 1, anon_sym_permits, - [20377] = 2, + ACTIONS(2356), 1, + anon_sym_LBRACE, + STATE(244), 1, + sym_interface_body, + STATE(1119), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2483), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [20388] = 5, - ACTIONS(1284), 1, - anon_sym_LBRACE, - ACTIONS(2080), 1, + [23808] = 5, + ACTIONS(2315), 1, anon_sym_permits, - STATE(69), 1, - sym_class_body, - STATE(1030), 1, + ACTIONS(2356), 1, + anon_sym_LBRACE, + STATE(224), 1, + sym_interface_body, + STATE(1097), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20405] = 4, - ACTIONS(2434), 1, - anon_sym_AMP, - STATE(815), 1, - aux_sym_type_bound_repeat1, + [23825] = 4, + ACTIONS(2778), 1, + anon_sym_COMMA, + STATE(972), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2485), 2, - anon_sym_GT, + ACTIONS(1977), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [23840] = 4, + ACTIONS(2657), 1, anon_sym_COMMA, - [20420] = 5, - ACTIONS(2078), 1, - anon_sym_implements, - ACTIONS(2382), 1, - anon_sym_LBRACE, - STATE(132), 1, - sym_enum_body, - STATE(968), 1, - sym_super_interfaces, + STATE(959), 1, + aux_sym_type_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20437] = 4, - ACTIONS(2328), 1, - anon_sym_EQ, - ACTIONS(2487), 1, - anon_sym_COLON, + ACTIONS(2781), 2, + anon_sym_LBRACE, + anon_sym_permits, + [23855] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2330), 2, + ACTIONS(2783), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [23866] = 4, + ACTIONS(2785), 1, anon_sym_COMMA, + STATE(975), 1, + aux_sym_enum_body_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2788), 2, + anon_sym_RBRACE, anon_sym_SEMI, - [20452] = 5, - ACTIONS(1284), 1, + [23881] = 5, + ACTIONS(1465), 1, anon_sym_LBRACE, - ACTIONS(2080), 1, + ACTIONS(2315), 1, anon_sym_permits, - STATE(111), 1, + STATE(158), 1, sym_class_body, - STATE(1023), 1, + STATE(1122), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20469] = 5, - ACTIONS(1284), 1, + [23898] = 5, + ACTIONS(1465), 1, anon_sym_LBRACE, - ACTIONS(2080), 1, + ACTIONS(2315), 1, anon_sym_permits, - STATE(114), 1, + STATE(257), 1, sym_class_body, - STATE(1017), 1, + STATE(1129), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20486] = 5, - ACTIONS(2080), 1, - anon_sym_permits, - ACTIONS(2108), 1, + [23915] = 5, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(97), 1, - sym_interface_body, - STATE(987), 1, + ACTIONS(2315), 1, + anon_sym_permits, + STATE(255), 1, + sym_class_body, + STATE(1184), 1, sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20503] = 4, - ACTIONS(1956), 1, - sym_identifier, - STATE(1091), 1, - sym__variable_declarator_id, + [23932] = 5, + ACTIONS(1465), 1, + anon_sym_LBRACE, + ACTIONS(2315), 1, + anon_sym_permits, + STATE(160), 1, + sym_class_body, + STATE(1121), 1, + sym_permits, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 2, - anon_sym_open, - anon_sym_module, - [20518] = 2, + [23949] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2489), 4, + ACTIONS(2790), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [20529] = 5, - ACTIONS(1541), 1, - anon_sym_COLON_COLON, - ACTIONS(2449), 1, - anon_sym_AMP, - ACTIONS(2491), 1, + [23960] = 4, + ACTIONS(934), 1, anon_sym_RPAREN, - STATE(894), 1, - aux_sym_cast_expression_repeat1, + ACTIONS(2792), 1, + anon_sym_SEMI, + STATE(1084), 1, + aux_sym_resource_specification_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20546] = 4, - ACTIONS(2467), 1, - anon_sym_COMMA, - STATE(834), 1, - aux_sym_type_list_repeat1, + [23974] = 4, + ACTIONS(1417), 1, + anon_sym_DOT, + ACTIONS(2794), 1, + anon_sym_SEMI, + ACTIONS(2796), 1, + anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2493), 2, - anon_sym_LBRACE, - anon_sym_permits, - [20561] = 4, - ACTIONS(2495), 1, + [23988] = 4, + ACTIONS(1997), 1, anon_sym_COMMA, - STATE(847), 1, - aux_sym_argument_list_repeat1, + ACTIONS(2798), 1, + anon_sym_SEMI, + STATE(1085), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1810), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [20576] = 4, - ACTIONS(85), 1, - anon_sym_LT, - STATE(1022), 1, - sym_type_arguments, + [24002] = 4, + ACTIONS(1379), 1, + anon_sym_RPAREN, + ACTIONS(2800), 1, + anon_sym_COMMA, + STATE(998), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2498), 2, - anon_sym_new, - sym_identifier, - [20591] = 5, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2422), 1, + [24016] = 4, + ACTIONS(1971), 1, anon_sym_COMMA, - ACTIONS(2500), 1, - anon_sym_SEMI, - STATE(920), 1, - aux_sym_exports_module_directive_repeat1, + ACTIONS(2802), 1, + anon_sym_RPAREN, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20608] = 4, - ACTIONS(2502), 1, - anon_sym_RPAREN, - ACTIONS(2504), 1, + [24030] = 4, + ACTIONS(2804), 1, + anon_sym_COMMA, + ACTIONS(2806), 1, anon_sym_SEMI, - STATE(850), 1, - aux_sym_resource_specification_repeat1, + STATE(1033), 1, + aux_sym__variable_declarator_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20622] = 4, - ACTIONS(2507), 1, - anon_sym_GT, - ACTIONS(2509), 1, + [24044] = 4, + ACTIONS(1213), 1, anon_sym_COMMA, - STATE(935), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(2808), 1, + anon_sym_RPAREN, + STATE(1042), 1, + aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20636] = 4, - ACTIONS(2511), 1, - anon_sym_RPAREN, - ACTIONS(2513), 1, + [24058] = 4, + ACTIONS(1971), 1, anon_sym_COMMA, - STATE(852), 1, + ACTIONS(2810), 1, + anon_sym_RPAREN, + STATE(1009), 1, aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20650] = 4, - ACTIONS(2516), 1, + [24072] = 4, + ACTIONS(2703), 1, anon_sym_COMMA, - ACTIONS(2519), 1, + ACTIONS(2812), 1, anon_sym_SEMI, - STATE(853), 1, + STATE(1037), 1, aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20664] = 4, - ACTIONS(2521), 1, - anon_sym_COMMA, - ACTIONS(2523), 1, - anon_sym_RBRACE, - STATE(912), 1, - aux_sym_element_value_array_initializer_repeat1, + [24086] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20678] = 4, - ACTIONS(2525), 1, - anon_sym_RPAREN, - ACTIONS(2527), 1, + ACTIONS(2756), 3, + anon_sym_AMP, + anon_sym_GT, anon_sym_COMMA, - STATE(855), 1, - aux_sym_inferred_parameters_repeat1, + [24096] = 4, + ACTIONS(2703), 1, + anon_sym_COMMA, + ACTIONS(2814), 1, + anon_sym_SEMI, + STATE(1037), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20692] = 4, - ACTIONS(1788), 1, - anon_sym_SEMI, - ACTIONS(2290), 1, + [24110] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2816), 3, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(1067), 1, - sym_enum_body_declarations, + anon_sym_SEMI, + [24120] = 4, + ACTIONS(2703), 1, + anon_sym_COMMA, + ACTIONS(2818), 1, + anon_sym_SEMI, + STATE(1037), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20706] = 4, - ACTIONS(1800), 1, + [24134] = 4, + ACTIONS(1213), 1, anon_sym_COMMA, - ACTIONS(2530), 1, + ACTIONS(2820), 1, anon_sym_RPAREN, - STATE(852), 1, - aux_sym_for_statement_repeat2, + STATE(1042), 1, + aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20720] = 4, - ACTIONS(1800), 1, + [24148] = 4, + ACTIONS(2703), 1, anon_sym_COMMA, - ACTIONS(2532), 1, - anon_sym_RPAREN, - STATE(852), 1, - aux_sym_for_statement_repeat2, + ACTIONS(2822), 1, + anon_sym_SEMI, + STATE(1037), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20734] = 4, - ACTIONS(2534), 1, + [24162] = 4, + ACTIONS(2688), 1, + anon_sym_AMP, + ACTIONS(2824), 1, anon_sym_RPAREN, - ACTIONS(2536), 1, + STATE(1043), 1, + aux_sym_cast_expression_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [24176] = 4, + ACTIONS(2703), 1, anon_sym_COMMA, - STATE(906), 1, - aux_sym_annotation_argument_list_repeat1, + ACTIONS(2826), 1, + anon_sym_SEMI, + STATE(1037), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20748] = 3, - ACTIONS(1272), 1, - anon_sym_DOT, + [24190] = 4, + ACTIONS(2800), 1, + anon_sym_COMMA, + ACTIONS(2828), 1, + anon_sym_RPAREN, + STATE(1044), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2538), 2, + [24204] = 4, + ACTIONS(2703), 1, anon_sym_COMMA, + ACTIONS(2830), 1, anon_sym_SEMI, - [20760] = 4, - ACTIONS(2540), 1, - anon_sym_GT, - ACTIONS(2542), 1, - anon_sym_COMMA, - STATE(889), 1, - aux_sym_type_arguments_repeat1, + STATE(1037), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20774] = 4, - ACTIONS(2544), 1, + [24218] = 4, + ACTIONS(2832), 1, anon_sym_COMMA, - ACTIONS(2547), 1, + ACTIONS(2835), 1, anon_sym_RBRACE, - STATE(862), 1, + STATE(1000), 1, aux_sym_element_value_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20788] = 4, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1984), 1, - anon_sym_DOT, - STATE(345), 1, - sym_argument_list, + [24232] = 4, + ACTIONS(2703), 1, + anon_sym_COMMA, + ACTIONS(2837), 1, + anon_sym_SEMI, + STATE(1037), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20802] = 4, - ACTIONS(1800), 1, + [24246] = 4, + ACTIONS(2800), 1, anon_sym_COMMA, - ACTIONS(2549), 1, + ACTIONS(2828), 1, anon_sym_RPAREN, - STATE(852), 1, - aux_sym_for_statement_repeat2, + STATE(1047), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20816] = 2, + [24260] = 4, + ACTIONS(2703), 1, + anon_sym_COMMA, + ACTIONS(2839), 1, + anon_sym_SEMI, + STATE(1037), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2551), 3, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_throws, - [20826] = 2, + [24274] = 4, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(2841), 1, + anon_sym_RPAREN, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2553), 3, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_throws, - [20836] = 4, - ACTIONS(2555), 1, + [24288] = 4, + ACTIONS(1971), 1, anon_sym_COMMA, - ACTIONS(2558), 1, - anon_sym_SEMI, - STATE(867), 1, - aux_sym_for_statement_repeat1, + ACTIONS(2843), 1, + anon_sym_RPAREN, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20850] = 4, - ACTIONS(2560), 1, - anon_sym_AMP, - ACTIONS(2563), 1, - anon_sym_RPAREN, - STATE(868), 1, - aux_sym_cast_expression_repeat1, + [24302] = 4, + ACTIONS(2721), 1, + anon_sym_COMMA, + ACTIONS(2845), 1, + anon_sym_SEMI, + STATE(1048), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20864] = 2, + [24316] = 4, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(2847), 1, + anon_sym_RPAREN, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2565), 3, + [24330] = 4, + ACTIONS(2721), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2849), 1, anon_sym_SEMI, - [20874] = 4, - ACTIONS(1866), 1, - anon_sym_RBRACE, - ACTIONS(2567), 1, - anon_sym_COMMA, - STATE(870), 1, - aux_sym_array_initializer_repeat1, + STATE(1048), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20888] = 3, - ACTIONS(1278), 1, - anon_sym_DOT, + [24344] = 4, + ACTIONS(2851), 1, + anon_sym_RPAREN, + ACTIONS(2853), 1, + anon_sym_COMMA, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2570), 2, + [24358] = 4, + ACTIONS(2721), 1, anon_sym_COMMA, + ACTIONS(2856), 1, anon_sym_SEMI, - [20900] = 4, - ACTIONS(1800), 1, + STATE(1048), 1, + aux_sym_provides_module_directive_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [24372] = 4, + ACTIONS(2858), 1, + anon_sym_GT, + ACTIONS(2860), 1, anon_sym_COMMA, - ACTIONS(2572), 1, - anon_sym_RPAREN, - STATE(852), 1, - aux_sym_for_statement_repeat2, + STATE(1050), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20914] = 4, - ACTIONS(27), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, + [24386] = 4, + ACTIONS(2721), 1, + anon_sym_COMMA, + ACTIONS(2862), 1, anon_sym_SEMI, - STATE(376), 1, - sym_block, + STATE(1048), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20928] = 4, - ACTIONS(1537), 1, - anon_sym_LBRACK, - ACTIONS(1539), 1, - anon_sym_DOT, - ACTIONS(1541), 1, - anon_sym_COLON_COLON, + [24400] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20942] = 3, - ACTIONS(1272), 1, - anon_sym_DOT, + ACTIONS(2864), 3, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_throws, + [24410] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2576), 2, - anon_sym_COMMA, + ACTIONS(2866), 3, + anon_sym_LBRACE, anon_sym_SEMI, - [20954] = 4, - ACTIONS(2536), 1, + anon_sym_throws, + [24420] = 4, + ACTIONS(1971), 1, anon_sym_COMMA, - ACTIONS(2578), 1, + ACTIONS(2868), 1, anon_sym_RPAREN, - STATE(942), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20968] = 4, - ACTIONS(2580), 1, + [24434] = 4, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(2870), 1, anon_sym_RPAREN, - ACTIONS(2582), 1, - anon_sym_SEMI, - STATE(938), 1, - aux_sym_resource_specification_repeat1, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [20982] = 3, - ACTIONS(2584), 1, - sym_identifier, + [24448] = 4, + ACTIONS(2291), 1, + anon_sym_default, + ACTIONS(2872), 1, + anon_sym_SEMI, + STATE(1226), 1, + sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2586), 2, - anon_sym_open, - anon_sym_module, - [20994] = 4, - ACTIONS(2588), 1, + [24462] = 4, + ACTIONS(1971), 1, anon_sym_COMMA, - ACTIONS(2591), 1, - anon_sym_SEMI, - STATE(879), 1, - aux_sym_provides_module_directive_repeat1, + ACTIONS(2874), 1, + anon_sym_RPAREN, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21008] = 4, - ACTIONS(2536), 1, + [24476] = 4, + ACTIONS(1971), 1, anon_sym_COMMA, - ACTIONS(2593), 1, + ACTIONS(2876), 1, anon_sym_RPAREN, - STATE(906), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21022] = 3, - ACTIONS(1278), 1, + [24490] = 4, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(2217), 1, anon_sym_DOT, + STATE(425), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2595), 2, + [24504] = 4, + ACTIONS(1971), 1, anon_sym_COMMA, - anon_sym_SEMI, - [21034] = 4, - ACTIONS(2597), 1, - sym_identifier, - ACTIONS(2599), 1, - anon_sym_STAR, - STATE(1063), 1, - sym_asterisk, + ACTIONS(2878), 1, + anon_sym_RPAREN, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21048] = 2, + [24518] = 4, + ACTIONS(2076), 1, + anon_sym_RBRACE, + ACTIONS(2880), 1, + anon_sym_COMMA, + STATE(1022), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2601), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [21058] = 4, - ACTIONS(2536), 1, + [24532] = 4, + ACTIONS(1971), 1, anon_sym_COMMA, - ACTIONS(2603), 1, + ACTIONS(2883), 1, anon_sym_RPAREN, - STATE(880), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21072] = 4, - ACTIONS(2605), 1, - anon_sym_RPAREN, - ACTIONS(2607), 1, + [24546] = 4, + ACTIONS(1971), 1, anon_sym_COMMA, - STATE(891), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(2885), 1, + anon_sym_RPAREN, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21086] = 4, - ACTIONS(2609), 1, + [24560] = 4, + ACTIONS(1680), 1, + anon_sym_LBRACK, + ACTIONS(1682), 1, + anon_sym_DOT, + ACTIONS(1684), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [24574] = 4, + ACTIONS(2887), 1, anon_sym_RPAREN, - ACTIONS(2611), 1, - anon_sym_COMMA, - STATE(886), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(2889), 1, + anon_sym_SEMI, + STATE(981), 1, + aux_sym_resource_specification_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21100] = 2, + [24588] = 4, + ACTIONS(1971), 1, + anon_sym_COMMA, + ACTIONS(2891), 1, + anon_sym_RPAREN, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2614), 3, + [24602] = 4, + ACTIONS(1435), 1, + anon_sym_DOT, + ACTIONS(2893), 1, anon_sym_LBRACE, - anon_sym_implements, - anon_sym_permits, - [21110] = 4, - ACTIONS(2599), 1, - anon_sym_STAR, - ACTIONS(2616), 1, - sym_identifier, - STATE(1064), 1, - sym_asterisk, + STATE(336), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21124] = 4, - ACTIONS(2542), 1, - anon_sym_COMMA, - ACTIONS(2618), 1, - anon_sym_GT, - STATE(925), 1, - aux_sym_type_arguments_repeat1, + [24616] = 4, + ACTIONS(1417), 1, + anon_sym_DOT, + ACTIONS(2893), 1, + anon_sym_LBRACE, + STATE(345), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21138] = 4, - ACTIONS(2064), 1, - anon_sym_default, - ACTIONS(2620), 1, - anon_sym_SEMI, - STATE(1096), 1, - sym__default_value, + [24630] = 4, + ACTIONS(2895), 1, + sym_identifier, + ACTIONS(2897), 1, + anon_sym_STAR, + STATE(1260), 1, + sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21152] = 4, - ACTIONS(2607), 1, + [24644] = 4, + ACTIONS(1971), 1, anon_sym_COMMA, - ACTIONS(2622), 1, + ACTIONS(2899), 1, anon_sym_RPAREN, - STATE(886), 1, - aux_sym_formal_parameters_repeat1, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21166] = 4, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(1984), 1, - anon_sym_DOT, - STATE(349), 1, - sym_argument_list, + [24658] = 4, + ACTIONS(2897), 1, + anon_sym_STAR, + ACTIONS(2901), 1, + sym_identifier, + STATE(1262), 1, + sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21180] = 4, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2624), 1, - anon_sym_LBRACE, - STATE(208), 1, - sym_module_body, + [24672] = 4, + ACTIONS(2804), 1, + anon_sym_COMMA, + ACTIONS(2903), 1, + anon_sym_SEMI, + STATE(1072), 1, + aux_sym__variable_declarator_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21194] = 4, - ACTIONS(2449), 1, - anon_sym_AMP, - ACTIONS(2626), 1, - anon_sym_RPAREN, - STATE(868), 1, - aux_sym_cast_expression_repeat1, + [24686] = 3, + ACTIONS(1435), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21208] = 2, + ACTIONS(2905), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [24698] = 3, + ACTIONS(1417), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2628), 3, + ACTIONS(2907), 2, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - [21218] = 2, + [24710] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2351), 3, - anon_sym_AMP, - anon_sym_GT, + ACTIONS(2909), 3, anon_sym_COMMA, - [21228] = 4, - ACTIONS(2542), 1, + anon_sym_RBRACE, + anon_sym_SEMI, + [24720] = 4, + ACTIONS(2911), 1, anon_sym_COMMA, - ACTIONS(2630), 1, - anon_sym_GT, - STATE(925), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(2914), 1, + anon_sym_SEMI, + STATE(1037), 1, + aux_sym_exports_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21242] = 2, + [24734] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2356), 3, + ACTIONS(2788), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [21252] = 4, - ACTIONS(1121), 1, - anon_sym_COMMA, - ACTIONS(2632), 1, + [24744] = 4, + ACTIONS(2916), 1, anon_sym_RPAREN, - STATE(855), 1, - aux_sym_inferred_parameters_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [21266] = 4, - ACTIONS(1045), 1, - anon_sym_LPAREN, - ACTIONS(2634), 1, - anon_sym_DOT, - STATE(1138), 1, - sym_argument_list, + ACTIONS(2918), 1, + anon_sym_COMMA, + STATE(1049), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21280] = 2, + [24758] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2636), 3, + ACTIONS(2920), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [21290] = 4, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2624), 1, - anon_sym_LBRACE, - STATE(209), 1, - sym_module_body, + [24768] = 4, + ACTIONS(2918), 1, + anon_sym_COMMA, + ACTIONS(2922), 1, + anon_sym_RPAREN, + STATE(1039), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21304] = 4, - ACTIONS(2605), 1, + [24782] = 4, + ACTIONS(2924), 1, anon_sym_RPAREN, - ACTIONS(2607), 1, + ACTIONS(2926), 1, anon_sym_COMMA, - STATE(886), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [21318] = 4, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2624), 1, - anon_sym_LBRACE, - STATE(171), 1, - sym_module_body, + STATE(1042), 1, + aux_sym_inferred_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21332] = 4, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2624), 1, - anon_sym_LBRACE, - STATE(172), 1, - sym_module_body, + [24796] = 4, + ACTIONS(2929), 1, + anon_sym_AMP, + ACTIONS(2932), 1, + anon_sym_RPAREN, + STATE(1043), 1, + aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21346] = 4, - ACTIONS(2638), 1, + [24810] = 4, + ACTIONS(2934), 1, anon_sym_RPAREN, - ACTIONS(2640), 1, + ACTIONS(2936), 1, anon_sym_COMMA, - STATE(906), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(1044), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21360] = 4, - ACTIONS(1800), 1, - anon_sym_COMMA, - ACTIONS(2643), 1, - anon_sym_RPAREN, - STATE(852), 1, - aux_sym_for_statement_repeat2, + [24824] = 3, + ACTIONS(1435), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21374] = 4, - ACTIONS(2645), 1, + ACTIONS(2939), 2, anon_sym_COMMA, - ACTIONS(2648), 1, anon_sym_SEMI, - STATE(908), 1, - aux_sym__variable_declarator_list_repeat1, + [24836] = 3, + ACTIONS(1417), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21388] = 2, + ACTIONS(2941), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [24848] = 4, + ACTIONS(2800), 1, + anon_sym_COMMA, + ACTIONS(2943), 1, + anon_sym_RPAREN, + STATE(1044), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1812), 3, - anon_sym_RPAREN, + [24862] = 4, + ACTIONS(2945), 1, anon_sym_COMMA, + ACTIONS(2948), 1, anon_sym_SEMI, - [21398] = 4, - ACTIONS(1800), 1, - anon_sym_COMMA, - ACTIONS(2650), 1, - anon_sym_RPAREN, - STATE(852), 1, - aux_sym_for_statement_repeat2, + STATE(1048), 1, + aux_sym_provides_module_directive_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21412] = 4, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2624), 1, - anon_sym_LBRACE, - STATE(143), 1, - sym_module_body, + [24876] = 4, + ACTIONS(2950), 1, + anon_sym_RPAREN, + ACTIONS(2952), 1, + anon_sym_COMMA, + STATE(1049), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21426] = 4, - ACTIONS(387), 1, - anon_sym_RBRACE, - ACTIONS(2652), 1, + [24890] = 4, + ACTIONS(2860), 1, anon_sym_COMMA, - STATE(862), 1, - aux_sym_element_value_array_initializer_repeat1, + ACTIONS(2955), 1, + anon_sym_GT, + STATE(1076), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21440] = 4, - ACTIONS(2654), 1, + [24904] = 4, + ACTIONS(2918), 1, anon_sym_COMMA, - ACTIONS(2656), 1, - anon_sym_SEMI, - STATE(953), 1, - aux_sym__variable_declarator_list_repeat1, + ACTIONS(2957), 1, + anon_sym_RPAREN, + STATE(1049), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21454] = 4, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2624), 1, - anon_sym_LBRACE, - STATE(144), 1, - sym_module_body, + [24918] = 4, + ACTIONS(2918), 1, + anon_sym_COMMA, + ACTIONS(2959), 1, + anon_sym_RPAREN, + STATE(1051), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21468] = 4, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2658), 1, + [24932] = 4, + ACTIONS(2291), 1, + anon_sym_default, + ACTIONS(2961), 1, anon_sym_SEMI, - ACTIONS(2660), 1, - anon_sym_to, + STATE(1279), 1, + sym__default_value, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21482] = 4, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2662), 1, - anon_sym_SEMI, - ACTIONS(2664), 1, - anon_sym_to, + [24946] = 4, + ACTIONS(2963), 1, + anon_sym_GT, + ACTIONS(2965), 1, + anon_sym_COMMA, + STATE(1078), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21496] = 4, - ACTIONS(2597), 1, - sym_identifier, - ACTIONS(2599), 1, - anon_sym_STAR, - STATE(1144), 1, - sym_asterisk, + [24960] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21510] = 4, - ACTIONS(1800), 1, + ACTIONS(2967), 3, + anon_sym_LBRACE, + anon_sym_implements, + anon_sym_permits, + [24970] = 4, + ACTIONS(349), 1, + anon_sym_RBRACE, + ACTIONS(2969), 1, anon_sym_COMMA, - ACTIONS(2666), 1, - anon_sym_RPAREN, - STATE(852), 1, - aux_sym_for_statement_repeat2, + STATE(1000), 1, + aux_sym_element_value_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21524] = 4, - ACTIONS(2599), 1, - anon_sym_STAR, - ACTIONS(2616), 1, - sym_identifier, - STATE(1145), 1, - sym_asterisk, + [24984] = 4, + ACTIONS(33), 1, + anon_sym_LBRACE, + ACTIONS(2971), 1, + anon_sym_SEMI, + STATE(429), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21538] = 4, - ACTIONS(2422), 1, + [24998] = 4, + ACTIONS(2860), 1, anon_sym_COMMA, - ACTIONS(2668), 1, - anon_sym_SEMI, - STATE(853), 1, - aux_sym_exports_module_directive_repeat1, + ACTIONS(2973), 1, + anon_sym_GT, + STATE(1076), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21552] = 4, - ACTIONS(2542), 1, + [25012] = 4, + ACTIONS(1971), 1, anon_sym_COMMA, - ACTIONS(2670), 1, - anon_sym_GT, - STATE(897), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(2975), 1, + anon_sym_RPAREN, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21566] = 4, - ACTIONS(2422), 1, + [25026] = 4, + ACTIONS(2860), 1, anon_sym_COMMA, - ACTIONS(2672), 1, - anon_sym_SEMI, - STATE(853), 1, - aux_sym_exports_module_directive_repeat1, + ACTIONS(2977), 1, + anon_sym_GT, + STATE(1058), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21580] = 4, - ACTIONS(2449), 1, + [25040] = 4, + ACTIONS(2688), 1, anon_sym_AMP, - ACTIONS(2674), 1, + ACTIONS(2979), 1, anon_sym_RPAREN, - STATE(868), 1, + STATE(1043), 1, aux_sym_cast_expression_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21594] = 4, - ACTIONS(2422), 1, + [25054] = 4, + ACTIONS(1997), 1, anon_sym_COMMA, - ACTIONS(2676), 1, + ACTIONS(2981), 1, anon_sym_SEMI, - STATE(853), 1, - aux_sym_exports_module_directive_repeat1, + STATE(1085), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21608] = 4, - ACTIONS(2678), 1, - anon_sym_GT, - ACTIONS(2680), 1, + [25068] = 4, + ACTIONS(2918), 1, anon_sym_COMMA, - STATE(925), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(2983), 1, + anon_sym_RPAREN, + STATE(1089), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21622] = 4, - ACTIONS(2422), 1, + [25082] = 4, + ACTIONS(1971), 1, anon_sym_COMMA, - ACTIONS(2683), 1, - anon_sym_SEMI, - STATE(853), 1, - aux_sym_exports_module_directive_repeat1, + ACTIONS(2985), 1, + anon_sym_RPAREN, + STATE(1009), 1, + aux_sym_for_statement_repeat2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21636] = 4, - ACTIONS(1800), 1, + [25096] = 4, + ACTIONS(1989), 1, anon_sym_COMMA, - ACTIONS(2685), 1, + ACTIONS(2987), 1, anon_sym_RPAREN, - STATE(852), 1, - aux_sym_for_statement_repeat2, + STATE(972), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21650] = 4, - ACTIONS(2422), 1, - anon_sym_COMMA, - ACTIONS(2687), 1, - anon_sym_SEMI, - STATE(853), 1, - aux_sym_exports_module_directive_repeat1, + [25110] = 4, + ACTIONS(2895), 1, + sym_identifier, + ACTIONS(2897), 1, + anon_sym_STAR, + STATE(1281), 1, + sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21664] = 3, - ACTIONS(2338), 1, + [25124] = 4, + ACTIONS(2897), 1, + anon_sym_STAR, + ACTIONS(2901), 1, sym_identifier, + STATE(1284), 1, + sym_asterisk, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2340), 2, - anon_sym_open, - anon_sym_module, - [21676] = 4, - ACTIONS(2422), 1, - anon_sym_COMMA, - ACTIONS(2689), 1, + [25138] = 4, + ACTIONS(2021), 1, anon_sym_SEMI, - STATE(853), 1, - aux_sym_exports_module_directive_repeat1, + ACTIONS(2603), 1, + anon_sym_RBRACE, + STATE(1287), 1, + sym_enum_body_declarations, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21690] = 4, - ACTIONS(1790), 1, - anon_sym_COMMA, - ACTIONS(2691), 1, - anon_sym_SEMI, - STATE(867), 1, - aux_sym_for_statement_repeat1, + [25152] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21704] = 4, - ACTIONS(2422), 1, + ACTIONS(2989), 3, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + [25162] = 4, + ACTIONS(1989), 1, anon_sym_COMMA, - ACTIONS(2693), 1, - anon_sym_SEMI, - STATE(853), 1, - aux_sym_exports_module_directive_repeat1, + ACTIONS(2776), 1, + anon_sym_COLON, + STATE(972), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21718] = 4, - ACTIONS(1838), 1, - anon_sym_COMMA, - ACTIONS(1840), 1, - anon_sym_RBRACE, - STATE(949), 1, - aux_sym_array_initializer_repeat1, + [25176] = 4, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(2217), 1, + anon_sym_DOT, + STATE(424), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21732] = 4, - ACTIONS(2422), 1, + [25190] = 4, + ACTIONS(2991), 1, anon_sym_COMMA, - ACTIONS(2695), 1, + ACTIONS(2994), 1, anon_sym_SEMI, - STATE(853), 1, - aux_sym_exports_module_directive_repeat1, + STATE(1072), 1, + aux_sym__variable_declarator_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21746] = 4, - ACTIONS(2509), 1, - anon_sym_COMMA, - ACTIONS(2697), 1, - anon_sym_GT, - STATE(946), 1, - aux_sym_type_parameters_repeat1, + [25204] = 4, + ACTIONS(1435), 1, + anon_sym_DOT, + ACTIONS(2893), 1, + anon_sym_LBRACE, + STATE(293), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21760] = 2, + [25218] = 4, + ACTIONS(1417), 1, + anon_sym_DOT, + ACTIONS(2893), 1, + anon_sym_LBRACE, + STATE(290), 1, + sym_module_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2699), 3, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [21770] = 4, - ACTIONS(2400), 1, + [25232] = 4, + ACTIONS(1182), 1, + anon_sym_LPAREN, + ACTIONS(2996), 1, + anon_sym_DOT, + STATE(1271), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [25246] = 4, + ACTIONS(2998), 1, + anon_sym_GT, + ACTIONS(3000), 1, anon_sym_COMMA, - ACTIONS(2701), 1, - anon_sym_SEMI, - STATE(879), 1, - aux_sym_provides_module_directive_repeat1, + STATE(1076), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21784] = 4, - ACTIONS(941), 1, - anon_sym_RPAREN, - ACTIONS(2703), 1, - anon_sym_SEMI, - STATE(850), 1, - aux_sym_resource_specification_repeat1, + [25260] = 4, + ACTIONS(1991), 1, + anon_sym_COMMA, + ACTIONS(1993), 1, + anon_sym_RBRACE, + STATE(1082), 1, + aux_sym_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21798] = 4, - ACTIONS(2400), 1, + [25274] = 4, + ACTIONS(2965), 1, anon_sym_COMMA, - ACTIONS(2705), 1, - anon_sym_SEMI, - STATE(879), 1, - aux_sym_provides_module_directive_repeat1, + ACTIONS(3003), 1, + anon_sym_GT, + STATE(1080), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21812] = 4, - ACTIONS(27), 1, + [25288] = 4, + ACTIONS(33), 1, anon_sym_LBRACE, - ACTIONS(2707), 1, + ACTIONS(3005), 1, anon_sym_SEMI, - STATE(372), 1, + STATE(455), 1, sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21826] = 4, - ACTIONS(2400), 1, + [25302] = 4, + ACTIONS(3007), 1, + anon_sym_GT, + ACTIONS(3009), 1, anon_sym_COMMA, - ACTIONS(2709), 1, - anon_sym_SEMI, - STATE(879), 1, - aux_sym_provides_module_directive_repeat1, + STATE(1080), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21840] = 4, - ACTIONS(2536), 1, + [25316] = 4, + ACTIONS(1417), 1, + anon_sym_DOT, + ACTIONS(2893), 1, + anon_sym_LBRACE, + STATE(279), 1, + sym_module_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [25330] = 4, + ACTIONS(376), 1, + anon_sym_RBRACE, + ACTIONS(3012), 1, anon_sym_COMMA, - ACTIONS(2711), 1, + STATE(1022), 1, + aux_sym_array_initializer_repeat1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [25344] = 4, + ACTIONS(1435), 1, + anon_sym_DOT, + ACTIONS(2893), 1, + anon_sym_LBRACE, + STATE(278), 1, + sym_module_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [25358] = 4, + ACTIONS(3014), 1, anon_sym_RPAREN, - STATE(906), 1, - aux_sym_annotation_argument_list_repeat1, + ACTIONS(3016), 1, + anon_sym_SEMI, + STATE(1084), 1, + aux_sym_resource_specification_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21854] = 4, - ACTIONS(2400), 1, + [25372] = 4, + ACTIONS(3019), 1, anon_sym_COMMA, - ACTIONS(2713), 1, + ACTIONS(3022), 1, anon_sym_SEMI, - STATE(879), 1, - aux_sym_provides_module_directive_repeat1, + STATE(1085), 1, + aux_sym_for_statement_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21868] = 4, - ACTIONS(1272), 1, + [25386] = 4, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(2715), 1, + ACTIONS(3024), 1, anon_sym_SEMI, - ACTIONS(2717), 1, + ACTIONS(3026), 1, anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21882] = 4, - ACTIONS(1278), 1, + [25400] = 4, + ACTIONS(1417), 1, anon_sym_DOT, - ACTIONS(2719), 1, + ACTIONS(3028), 1, anon_sym_SEMI, - ACTIONS(2721), 1, + ACTIONS(3030), 1, anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21896] = 4, - ACTIONS(2723), 1, - anon_sym_GT, - ACTIONS(2725), 1, - anon_sym_COMMA, - STATE(946), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [21910] = 4, - ACTIONS(2064), 1, - anon_sym_default, - ACTIONS(2728), 1, + [25414] = 4, + ACTIONS(1435), 1, + anon_sym_DOT, + ACTIONS(3032), 1, anon_sym_SEMI, - STATE(1107), 1, - sym__default_value, + ACTIONS(3034), 1, + anon_sym_to, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21924] = 4, - ACTIONS(1796), 1, + [25428] = 4, + ACTIONS(2918), 1, anon_sym_COMMA, - ACTIONS(2730), 1, + ACTIONS(3036), 1, anon_sym_RPAREN, - STATE(816), 1, - aux_sym_argument_list_repeat1, + STATE(1049), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21938] = 4, - ACTIONS(599), 1, - anon_sym_RBRACE, - ACTIONS(2732), 1, - anon_sym_COMMA, - STATE(870), 1, - aux_sym_array_initializer_repeat1, + [25442] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21952] = 4, - ACTIONS(1246), 1, + ACTIONS(1973), 3, anon_sym_RPAREN, - ACTIONS(2607), 1, anon_sym_COMMA, - STATE(903), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_SEMI, + [25452] = 4, + ACTIONS(3038), 1, + anon_sym_COMMA, + ACTIONS(3040), 1, + anon_sym_RBRACE, + STATE(1056), 1, + aux_sym_element_value_array_initializer_repeat1, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21966] = 4, - ACTIONS(2536), 1, - anon_sym_COMMA, - ACTIONS(2734), 1, - anon_sym_RPAREN, - STATE(859), 1, - aux_sym_annotation_argument_list_repeat1, + [25466] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21980] = 4, - ACTIONS(1796), 1, + ACTIONS(3042), 3, anon_sym_COMMA, - ACTIONS(2306), 1, - anon_sym_COLON, - STATE(816), 1, - aux_sym_argument_list_repeat1, + anon_sym_RBRACE, + anon_sym_SEMI, + [25476] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [21994] = 4, - ACTIONS(2654), 1, + ACTIONS(3044), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2736), 1, - anon_sym_SEMI, - STATE(908), 1, - aux_sym__variable_declarator_list_repeat1, + [25485] = 3, + ACTIONS(1182), 1, + anon_sym_LPAREN, + STATE(461), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22008] = 3, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2738), 1, - anon_sym_with, + [25496] = 3, + ACTIONS(1465), 1, + anon_sym_LBRACE, + STATE(206), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22019] = 3, - ACTIONS(1284), 1, + [25507] = 3, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(109), 1, + STATE(209), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22030] = 2, + [25518] = 3, + ACTIONS(2356), 1, + anon_sym_LBRACE, + STATE(217), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2740), 2, + [25529] = 3, + ACTIONS(1465), 1, anon_sym_LBRACE, - anon_sym_permits, - [22039] = 3, - ACTIONS(2108), 1, + STATE(191), 1, + sym_class_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [25540] = 3, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(98), 1, - sym_interface_body, + STATE(220), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22050] = 3, - ACTIONS(939), 1, - anon_sym_LPAREN, - STATE(1031), 1, - sym_parenthesized_expression, + [25551] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22061] = 3, - ACTIONS(2108), 1, + ACTIONS(3046), 2, anon_sym_LBRACE, - STATE(90), 1, - sym_interface_body, + anon_sym_SEMI, + [25560] = 3, + ACTIONS(1417), 1, + anon_sym_DOT, + ACTIONS(3048), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22072] = 3, - ACTIONS(1045), 1, - anon_sym_LPAREN, - STATE(1106), 1, - sym_argument_list, + [25571] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22083] = 3, - ACTIONS(1045), 1, - anon_sym_LPAREN, - STATE(383), 1, - sym_argument_list, + ACTIONS(3050), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [25580] = 3, + ACTIONS(1417), 1, + anon_sym_DOT, + ACTIONS(3052), 1, + anon_sym_with, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22094] = 3, - ACTIONS(939), 1, - anon_sym_LPAREN, - STATE(40), 1, - sym_parenthesized_expression, + [25591] = 3, + ACTIONS(1435), 1, + anon_sym_DOT, + ACTIONS(3054), 1, + anon_sym_with, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22105] = 3, - ACTIONS(1045), 1, - anon_sym_LPAREN, - STATE(398), 1, - sym_argument_list, + [25602] = 3, + ACTIONS(1435), 1, + anon_sym_DOT, + ACTIONS(3056), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22116] = 3, - ACTIONS(1045), 1, - anon_sym_LPAREN, - STATE(349), 1, - sym_argument_list, + [25613] = 3, + ACTIONS(1417), 1, + anon_sym_DOT, + ACTIONS(3058), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [25624] = 3, + ACTIONS(1435), 1, + anon_sym_DOT, + ACTIONS(3060), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [25635] = 3, + ACTIONS(3062), 1, + sym_identifier, + STATE(1199), 1, + sym_element_value_pair, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [25646] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22127] = 3, - ACTIONS(1284), 1, + ACTIONS(2835), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [25655] = 3, + ACTIONS(2684), 1, anon_sym_LBRACE, - STATE(79), 1, - sym_class_body, + STATE(93), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22138] = 3, - ACTIONS(2742), 1, - sym_identifier, - ACTIONS(2744), 1, - anon_sym_SEMI, + [25666] = 3, + ACTIONS(1182), 1, + anon_sym_LPAREN, + STATE(1290), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22149] = 2, + [25677] = 3, + ACTIONS(353), 1, + anon_sym_LBRACE, + STATE(478), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2746), 2, - anon_sym_LBRACE, - anon_sym_SEMI, - [22158] = 3, - ACTIONS(2382), 1, + [25688] = 3, + ACTIONS(353), 1, anon_sym_LBRACE, - STATE(78), 1, - sym_enum_body, + STATE(485), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22169] = 3, - ACTIONS(2108), 1, + [25699] = 3, + ACTIONS(2356), 1, anon_sym_LBRACE, - STATE(74), 1, + STATE(199), 1, sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22180] = 2, + [25710] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2748), 2, + ACTIONS(3014), 2, anon_sym_RPAREN, - anon_sym_COMMA, - [22189] = 2, + anon_sym_SEMI, + [25719] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2750), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [22198] = 3, - ACTIONS(1284), 1, + ACTIONS(3064), 2, anon_sym_LBRACE, - STATE(131), 1, - sym_class_body, + anon_sym_SEMI, + [25728] = 3, + ACTIONS(1182), 1, + anon_sym_LPAREN, + STATE(425), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22209] = 2, + [25739] = 3, + ACTIONS(1182), 1, + anon_sym_LPAREN, + STATE(1210), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2752), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [22218] = 3, - ACTIONS(2754), 1, - sym_identifier, - ACTIONS(2756), 1, - anon_sym_SEMI, + [25750] = 3, + ACTIONS(2356), 1, + anon_sym_LBRACE, + STATE(196), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22229] = 2, + [25761] = 3, + ACTIONS(33), 1, + anon_sym_LBRACE, + STATE(295), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2547), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [22238] = 3, - ACTIONS(491), 1, + [25772] = 3, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(416), 1, - sym_array_initializer, + STATE(249), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22249] = 3, - ACTIONS(491), 1, + [25783] = 3, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(400), 1, - sym_array_initializer, + STATE(251), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22260] = 3, - ACTIONS(1045), 1, - anon_sym_LPAREN, - STATE(345), 1, - sym_argument_list, + [25794] = 3, + ACTIONS(1465), 1, + anon_sym_LBRACE, + STATE(252), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22271] = 3, - ACTIONS(2758), 1, + [25805] = 3, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(2760), 1, + ACTIONS(3066), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22282] = 3, - ACTIONS(1284), 1, + [25816] = 3, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(120), 1, + STATE(208), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22293] = 3, - ACTIONS(1045), 1, - anon_sym_LPAREN, - STATE(1103), 1, - sym_argument_list, + [25827] = 3, + ACTIONS(2741), 1, + anon_sym_LBRACE, + STATE(437), 1, + sym_constructor_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22304] = 2, + [25838] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2762), 2, + ACTIONS(3007), 2, anon_sym_GT, anon_sym_COMMA, - [22313] = 2, + [25847] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2764), 2, + ACTIONS(3068), 2, anon_sym_LBRACE, - anon_sym_SEMI, - [22322] = 3, - ACTIONS(939), 1, - anon_sym_LPAREN, - STATE(1114), 1, - sym_parenthesized_expression, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [22333] = 3, - ACTIONS(1284), 1, + anon_sym_throws, + [25856] = 3, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(354), 1, + STATE(205), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22344] = 2, + [25867] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(1866), 2, + ACTIONS(3070), 2, + anon_sym_GT, anon_sym_COMMA, - anon_sym_RBRACE, - [22353] = 3, - ACTIONS(2108), 1, - anon_sym_LBRACE, - STATE(127), 1, - sym_interface_body, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [22364] = 2, + [25876] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2678), 2, + ACTIONS(3072), 2, anon_sym_GT, anon_sym_COMMA, - [22373] = 3, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(145), 1, - sym_block, + [25885] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22384] = 3, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(126), 1, - sym_class_body, + ACTIONS(2076), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [25894] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22395] = 3, - ACTIONS(1284), 1, + ACTIONS(3074), 2, + anon_sym_GT, + anon_sym_COMMA, + [25903] = 3, + ACTIONS(2741), 1, anon_sym_LBRACE, - STATE(125), 1, - sym_class_body, + STATE(445), 1, + sym_constructor_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22406] = 2, + [25914] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2766), 2, + ACTIONS(2998), 2, anon_sym_GT, anon_sym_COMMA, - [22415] = 2, + [25923] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2768), 2, + ACTIONS(3076), 2, anon_sym_GT, anon_sym_COMMA, - [22424] = 3, - ACTIONS(939), 1, - anon_sym_LPAREN, - STATE(42), 1, - sym_parenthesized_expression, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [22435] = 3, - ACTIONS(1284), 1, + [25932] = 3, + ACTIONS(2356), 1, anon_sym_LBRACE, - STATE(124), 1, - sym_class_body, + STATE(169), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22446] = 3, - ACTIONS(2042), 1, + [25943] = 3, + ACTIONS(932), 1, anon_sym_LPAREN, - STATE(1040), 1, - sym_formal_parameters, + STATE(1247), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22457] = 3, - ACTIONS(1045), 1, - anon_sym_LPAREN, - STATE(397), 1, - sym_argument_list, + [25954] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22468] = 3, - ACTIONS(2770), 1, + ACTIONS(3078), 2, anon_sym_LBRACE, - STATE(76), 1, - sym_annotation_type_body, + anon_sym_throws, + [25963] = 3, + ACTIONS(2238), 1, + anon_sym_LPAREN, + STATE(765), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22479] = 2, + [25974] = 3, + ACTIONS(3080), 1, + anon_sym_DOT, + ACTIONS(3082), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2772), 2, - anon_sym_LBRACE, - anon_sym_throws, - [22488] = 3, - ACTIONS(1045), 1, + [25985] = 3, + ACTIONS(2238), 1, anon_sym_LPAREN, - STATE(399), 1, - sym_argument_list, + STATE(758), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22499] = 3, - ACTIONS(2774), 1, - anon_sym_DOT, - ACTIONS(2776), 1, - anon_sym_SEMI, + [25996] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22510] = 3, - ACTIONS(2334), 1, + ACTIONS(3084), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [26005] = 3, + ACTIONS(2356), 1, anon_sym_LBRACE, - STATE(371), 1, - sym_constructor_body, + STATE(243), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22521] = 3, - ACTIONS(2778), 1, - anon_sym_DOT, - ACTIONS(2780), 1, - anon_sym_SEMI, + [26016] = 3, + ACTIONS(2238), 1, + anon_sym_LPAREN, + STATE(924), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22532] = 3, - ACTIONS(2782), 1, - anon_sym_DASH_GT, - ACTIONS(2784), 1, - anon_sym_COLON, + [26027] = 3, + ACTIONS(2731), 1, + anon_sym_LBRACE, + STATE(233), 1, + sym_enum_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22543] = 2, + [26038] = 3, + ACTIONS(1465), 1, + anon_sym_LBRACE, + STATE(231), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2786), 2, - anon_sym_DASH_GT, - anon_sym_COLON, - [22552] = 3, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(70), 1, - sym_class_body, + [26049] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22563] = 3, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2788), 1, - anon_sym_SEMI, + ACTIONS(3086), 2, + sym_this, + sym_super, + [26058] = 3, + ACTIONS(1182), 1, + anon_sym_LPAREN, + STATE(424), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22574] = 3, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2790), 1, - anon_sym_SEMI, + [26069] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22585] = 3, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2792), 1, + ACTIONS(3088), 2, + anon_sym_LBRACE, anon_sym_SEMI, + [26078] = 3, + ACTIONS(1182), 1, + anon_sym_LPAREN, + STATE(460), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22596] = 3, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2794), 1, - anon_sym_SEMI, + [26089] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22607] = 3, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2796), 1, - anon_sym_SEMI, + ACTIONS(3090), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [26098] = 3, + ACTIONS(2356), 1, + anon_sym_LBRACE, + STATE(226), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22618] = 3, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2798), 1, - anon_sym_SEMI, + [26109] = 3, + ACTIONS(2356), 1, + anon_sym_LBRACE, + STATE(223), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22629] = 3, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2800), 1, - anon_sym_SEMI, + [26120] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22640] = 3, - ACTIONS(2802), 1, - anon_sym_DOT, - ACTIONS(2804), 1, - anon_sym_SEMI, + ACTIONS(3092), 2, + anon_sym_LBRACE, + anon_sym_permits, + [26129] = 3, + ACTIONS(1465), 1, + anon_sym_LBRACE, + STATE(214), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22651] = 3, - ACTIONS(2406), 1, + [26140] = 3, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(59), 1, - sym_block, + STATE(170), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22662] = 2, + [26151] = 3, + ACTIONS(1465), 1, + anon_sym_LBRACE, + STATE(172), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2638), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [22671] = 3, - ACTIONS(1284), 1, + [26162] = 3, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(66), 1, + STATE(185), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22682] = 2, + [26173] = 3, + ACTIONS(932), 1, + anon_sym_LPAREN, + STATE(1194), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [22691] = 2, + [26184] = 3, + ACTIONS(1465), 1, + anon_sym_LBRACE, + STATE(173), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2808), 2, + [26195] = 3, + ACTIONS(2684), 1, anon_sym_LBRACE, - anon_sym_SEMI, - [22700] = 3, - ACTIONS(2108), 1, + STATE(130), 1, + sym_block, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [26206] = 3, + ACTIONS(33), 1, anon_sym_LBRACE, - STATE(105), 1, - sym_interface_body, + STATE(277), 1, + sym_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22711] = 3, - ACTIONS(1284), 1, + [26217] = 3, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(110), 1, + STATE(174), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22722] = 2, + [26228] = 3, + ACTIONS(932), 1, + anon_sym_LPAREN, + STATE(52), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2810), 2, - anon_sym_new, + [26239] = 3, + ACTIONS(3094), 1, sym_identifier, - [22731] = 3, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(71), 1, - sym_class_body, + ACTIONS(3096), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22742] = 3, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(212), 1, - sym_block, + [26250] = 3, + ACTIONS(1182), 1, + anon_sym_LPAREN, + STATE(469), 1, + sym_argument_list, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22753] = 3, - ACTIONS(2406), 1, - anon_sym_LBRACE, - STATE(107), 1, - sym_block, + [26261] = 3, + ACTIONS(3098), 1, + sym_identifier, + ACTIONS(3100), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22764] = 3, - ACTIONS(1284), 1, + [26272] = 3, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(112), 1, + STATE(161), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22775] = 2, + [26283] = 3, + ACTIONS(1182), 1, + anon_sym_LPAREN, + STATE(470), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [26294] = 3, + ACTIONS(3102), 1, + anon_sym_DOT, + ACTIONS(3104), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2812), 2, + [26305] = 3, + ACTIONS(3106), 1, anon_sym_LBRACE, - anon_sym_permits, - [22784] = 2, + STATE(245), 1, + sym_annotation_type_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2502), 2, - anon_sym_RPAREN, + [26316] = 3, + ACTIONS(782), 1, + anon_sym_while, + ACTIONS(3108), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [26327] = 3, + ACTIONS(3110), 1, + anon_sym_DOT, + ACTIONS(3112), 1, anon_sym_SEMI, - [22793] = 3, - ACTIONS(1541), 1, - anon_sym_COLON_COLON, - ACTIONS(2473), 1, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [26338] = 3, + ACTIONS(3114), 1, anon_sym_DOT, + ACTIONS(3116), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22804] = 3, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(106), 1, - sym_class_body, + [26349] = 3, + ACTIONS(2238), 1, + anon_sym_LPAREN, + STATE(948), 1, + sym_formal_parameters, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22815] = 3, - ACTIONS(2814), 1, + [26360] = 3, + ACTIONS(2356), 1, anon_sym_LBRACE, - STATE(49), 1, - sym_switch_block, + STATE(267), 1, + sym_interface_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22826] = 2, + [26371] = 3, + ACTIONS(3118), 1, + anon_sym_DASH_GT, + ACTIONS(3120), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2296), 2, - anon_sym_GT, - anon_sym_COMMA, - [22835] = 2, + [26382] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2816), 2, - sym_this, - sym_super, - [22844] = 3, - ACTIONS(2042), 1, - anon_sym_LPAREN, - STATE(653), 1, - sym_formal_parameters, + ACTIONS(3122), 2, + anon_sym_DASH_GT, + anon_sym_COLON, + [26391] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22855] = 3, - ACTIONS(2042), 1, - anon_sym_LPAREN, - STATE(654), 1, - sym_formal_parameters, + ACTIONS(3124), 2, + anon_sym_new, + sym_identifier, + [26400] = 3, + ACTIONS(1417), 1, + anon_sym_DOT, + ACTIONS(3126), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [26411] = 3, + ACTIONS(3106), 1, + anon_sym_LBRACE, + STATE(232), 1, + sym_annotation_type_body, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [26422] = 3, + ACTIONS(1417), 1, + anon_sym_DOT, + ACTIONS(3128), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22866] = 2, + [26433] = 3, + ACTIONS(1465), 1, + anon_sym_LBRACE, + STATE(162), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2818), 2, + [26444] = 3, + ACTIONS(2731), 1, anon_sym_LBRACE, - anon_sym_throws, - [22875] = 3, - ACTIONS(2820), 1, - sym_identifier, - STATE(1016), 1, - sym_element_value_pair, + STATE(216), 1, + sym_enum_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22886] = 3, - ACTIONS(2334), 1, - anon_sym_LBRACE, - STATE(357), 1, - sym_constructor_body, + [26455] = 3, + ACTIONS(932), 1, + anon_sym_LPAREN, + STATE(56), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22897] = 3, - ACTIONS(2042), 1, + [26466] = 3, + ACTIONS(932), 1, anon_sym_LPAREN, - STATE(985), 1, - sym_formal_parameters, + STATE(57), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22908] = 3, - ACTIONS(1284), 1, + [26477] = 3, + ACTIONS(1465), 1, anon_sym_LBRACE, - STATE(358), 1, + STATE(159), 1, sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22919] = 2, + [26488] = 3, + ACTIONS(1417), 1, + anon_sym_DOT, + ACTIONS(3130), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2822), 2, - anon_sym_GT, - anon_sym_COMMA, - [22928] = 2, + [26499] = 3, + ACTIONS(1435), 1, + anon_sym_DOT, + ACTIONS(3132), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2723), 2, - anon_sym_GT, - anon_sym_COMMA, - [22937] = 3, - ACTIONS(2770), 1, - anon_sym_LBRACE, - STATE(101), 1, - sym_annotation_type_body, + [26510] = 3, + ACTIONS(1417), 1, + anon_sym_DOT, + ACTIONS(3134), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22948] = 3, - ACTIONS(1278), 1, - anon_sym_DOT, - ACTIONS(2824), 1, - anon_sym_SEMI, + [26521] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22959] = 3, - ACTIONS(2108), 1, + ACTIONS(3136), 2, anon_sym_LBRACE, - STATE(100), 1, - sym_interface_body, + anon_sym_permits, + [26530] = 3, + ACTIONS(1465), 1, + anon_sym_LBRACE, + STATE(201), 1, + sym_class_body, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22970] = 3, - ACTIONS(2108), 1, + [26541] = 3, + ACTIONS(3138), 1, anon_sym_LBRACE, - STATE(96), 1, - sym_interface_body, + STATE(80), 1, + sym_switch_block, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22981] = 3, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2826), 1, - anon_sym_SEMI, + [26552] = 3, + ACTIONS(353), 1, + anon_sym_LBRACE, + STATE(490), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [22992] = 3, - ACTIONS(1284), 1, + [26563] = 3, + ACTIONS(353), 1, anon_sym_LBRACE, - STATE(95), 1, - sym_class_body, + STATE(492), 1, + sym_array_initializer, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23003] = 3, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(94), 1, - sym_class_body, + [26574] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23014] = 3, - ACTIONS(1284), 1, - anon_sym_LBRACE, - STATE(89), 1, - sym_class_body, + ACTIONS(3140), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [26583] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23025] = 3, - ACTIONS(1278), 1, + ACTIONS(2542), 2, + anon_sym_GT, + anon_sym_COMMA, + [26592] = 2, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2950), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [26601] = 3, + ACTIONS(1435), 1, anon_sym_DOT, - ACTIONS(2828), 1, + ACTIONS(3142), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23036] = 3, - ACTIONS(1272), 1, + [26612] = 3, + ACTIONS(1684), 1, + anon_sym_COLON_COLON, + ACTIONS(2760), 1, anon_sym_DOT, - ACTIONS(2830), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23047] = 2, + [26623] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2525), 2, + ACTIONS(2934), 2, anon_sym_RPAREN, anon_sym_COMMA, - [23056] = 3, - ACTIONS(2108), 1, - anon_sym_LBRACE, - STATE(84), 1, - sym_interface_body, + [26632] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23067] = 2, + ACTIONS(3144), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [26641] = 3, + ACTIONS(1435), 1, + anon_sym_DOT, + ACTIONS(3146), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2832), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [23076] = 2, + [26652] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2834), 2, + ACTIONS(3148), 2, anon_sym_AMP, anon_sym_RPAREN, - [23085] = 2, + [26661] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2836), 2, + ACTIONS(3150), 2, anon_sym_RPAREN, anon_sym_COMMA, - [23094] = 3, - ACTIONS(2382), 1, - anon_sym_LBRACE, - STATE(121), 1, - sym_enum_body, + [26670] = 3, + ACTIONS(1435), 1, + anon_sym_DOT, + ACTIONS(3152), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23105] = 2, + [26681] = 2, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - ACTIONS(2609), 2, + ACTIONS(2924), 2, anon_sym_RPAREN, anon_sym_COMMA, - [23114] = 3, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2838), 1, - anon_sym_with, + [26690] = 3, + ACTIONS(932), 1, + anon_sym_LPAREN, + STATE(20), 1, + sym_parenthesized_expression, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23125] = 3, - ACTIONS(1272), 1, - anon_sym_DOT, - ACTIONS(2840), 1, + [26701] = 2, + ACTIONS(3154), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23136] = 2, - ACTIONS(2597), 1, - sym_identifier, - ACTIONS(3), 2, - sym_line_comment, - sym_block_comment, - [23144] = 2, - ACTIONS(2842), 1, + [26709] = 2, + ACTIONS(3156), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23152] = 2, - ACTIONS(2844), 1, - anon_sym_SEMI, + [26717] = 2, + ACTIONS(3158), 1, + sym_this, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23160] = 2, - ACTIONS(2846), 1, - anon_sym_SEMI, + [26725] = 2, + ACTIONS(3160), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23168] = 2, - ACTIONS(2848), 1, + [26733] = 2, + ACTIONS(1195), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23176] = 2, - ACTIONS(1875), 1, - anon_sym_RBRACE, + [26741] = 2, + ACTIONS(3162), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23184] = 2, - ACTIONS(1541), 1, - anon_sym_COLON_COLON, + [26749] = 2, + ACTIONS(3164), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23192] = 2, - ACTIONS(2850), 1, - anon_sym_module, + [26757] = 2, + ACTIONS(3166), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23200] = 2, - ACTIONS(933), 1, - anon_sym_RBRACK, + [26765] = 2, + ACTIONS(3168), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23208] = 2, - ACTIONS(2852), 1, + [26773] = 2, + ACTIONS(3170), 1, anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23216] = 2, - ACTIONS(2854), 1, - anon_sym_SEMI, + [26781] = 2, + ACTIONS(3172), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23224] = 2, - ACTIONS(1058), 1, - anon_sym_DASH_GT, + [26789] = 2, + ACTIONS(2959), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23232] = 2, - ACTIONS(2856), 1, - anon_sym_SEMI, + [26797] = 2, + ACTIONS(3174), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23240] = 2, - ACTIONS(2858), 1, + [26805] = 2, + ACTIONS(3176), 1, ts_builtin_sym_end, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23248] = 2, - ACTIONS(2860), 1, - anon_sym_EQ, + [26813] = 2, + ACTIONS(3178), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23256] = 2, - ACTIONS(2523), 1, - anon_sym_RBRACE, + [26821] = 2, + ACTIONS(3180), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23264] = 2, - ACTIONS(2862), 1, - sym_identifier, + [26829] = 2, + ACTIONS(3182), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23272] = 2, - ACTIONS(2864), 1, - anon_sym_RPAREN, + [26837] = 2, + ACTIONS(3184), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23280] = 2, - ACTIONS(2734), 1, - anon_sym_RPAREN, + [26845] = 2, + ACTIONS(408), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23288] = 2, - ACTIONS(2866), 1, - anon_sym_while, + [26853] = 2, + ACTIONS(3186), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23296] = 2, - ACTIONS(2868), 1, - anon_sym_LBRACE, + [26861] = 2, + ACTIONS(3188), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23304] = 2, - ACTIONS(2782), 1, - anon_sym_DASH_GT, + [26869] = 2, + ACTIONS(3190), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23312] = 2, - ACTIONS(2784), 1, - anon_sym_COLON, + [26877] = 2, + ACTIONS(2922), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23320] = 2, - ACTIONS(2870), 1, - anon_sym_SEMI, + [26885] = 2, + ACTIONS(3192), 1, + anon_sym_while, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23328] = 2, - ACTIONS(2872), 1, + [26893] = 2, + ACTIONS(430), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [26901] = 2, + ACTIONS(3194), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23336] = 2, - ACTIONS(2874), 1, + [26909] = 2, + ACTIONS(3196), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23344] = 2, - ACTIONS(2876), 1, - sym_identifier, + [26917] = 2, + ACTIONS(2049), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23352] = 2, - ACTIONS(2878), 1, + [26925] = 2, + ACTIONS(3198), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23360] = 2, - ACTIONS(2880), 1, - anon_sym_LBRACE, + [26933] = 2, + ACTIONS(3200), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23368] = 2, - ACTIONS(2882), 1, - anon_sym_RPAREN, + [26941] = 2, + ACTIONS(1684), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23376] = 2, - ACTIONS(2634), 1, + [26949] = 2, + ACTIONS(2996), 1, anon_sym_DOT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23384] = 2, - ACTIONS(2884), 1, - anon_sym_EQ, + [26957] = 2, + ACTIONS(3202), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23392] = 2, - ACTIONS(1873), 1, - anon_sym_RBRACE, + [26965] = 2, + ACTIONS(3204), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23400] = 2, - ACTIONS(2886), 1, - anon_sym_SEMI, + [26973] = 2, + ACTIONS(3206), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23408] = 2, - ACTIONS(2888), 1, + [26981] = 2, + ACTIONS(3208), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23416] = 2, - ACTIONS(2890), 1, - anon_sym_SEMI, + [26989] = 2, + ACTIONS(392), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23424] = 2, - ACTIONS(2892), 1, - sym_identifier, + [26997] = 2, + ACTIONS(3210), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23432] = 2, - ACTIONS(2894), 1, + [27005] = 2, + ACTIONS(3212), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23440] = 2, - ACTIONS(2896), 1, - sym_this, + [27013] = 2, + ACTIONS(3214), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23448] = 2, - ACTIONS(2898), 1, - sym_identifier, + [27021] = 2, + ACTIONS(3216), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23456] = 2, - ACTIONS(2900), 1, - anon_sym_DASH_GT, + [27029] = 2, + ACTIONS(3218), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23464] = 2, - ACTIONS(2902), 1, - anon_sym_SEMI, + [27037] = 2, + ACTIONS(3220), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23472] = 2, - ACTIONS(2904), 1, - anon_sym_LPAREN, + [27045] = 2, + ACTIONS(3222), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23480] = 2, - ACTIONS(2906), 1, - anon_sym_LBRACE, + [27053] = 2, + ACTIONS(2983), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23488] = 2, - ACTIONS(2908), 1, - anon_sym_SEMI, + [27061] = 2, + ACTIONS(2901), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23496] = 2, - ACTIONS(2910), 1, - anon_sym_SEMI, + [27069] = 2, + ACTIONS(2895), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23504] = 2, - ACTIONS(2912), 1, - anon_sym_SEMI, + [27077] = 2, + ACTIONS(3224), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23512] = 2, - ACTIONS(921), 1, - anon_sym_RBRACK, + [27085] = 2, + ACTIONS(3226), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23520] = 2, - ACTIONS(2914), 1, - anon_sym_SEMI, + [27093] = 2, + ACTIONS(3228), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23528] = 2, - ACTIONS(2916), 1, - anon_sym_EQ, + [27101] = 2, + ACTIONS(3230), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23536] = 2, - ACTIONS(1840), 1, - anon_sym_RBRACE, + [27109] = 2, + ACTIONS(3232), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23544] = 2, - ACTIONS(2918), 1, + [27117] = 2, + ACTIONS(3234), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23552] = 2, - ACTIONS(2920), 1, - anon_sym_SEMI, + [27125] = 2, + ACTIONS(2603), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23560] = 2, - ACTIONS(2616), 1, + [27133] = 2, + ACTIONS(3236), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23568] = 2, - ACTIONS(2922), 1, - anon_sym_LPAREN, + [27141] = 2, + ACTIONS(3238), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23576] = 2, - ACTIONS(2924), 1, + [27149] = 2, + ACTIONS(3240), 1, sym_this, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23584] = 2, - ACTIONS(2926), 1, - anon_sym_SEMI, + [27157] = 2, + ACTIONS(1993), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23592] = 2, - ACTIONS(2928), 1, - sym_identifier, + [27165] = 2, + ACTIONS(3242), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23600] = 2, - ACTIONS(2930), 1, + [27173] = 2, + ACTIONS(3244), 1, sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23608] = 2, - ACTIONS(2932), 1, - anon_sym_RBRACE, + [27181] = 2, + ACTIONS(3120), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23616] = 2, - ACTIONS(2934), 1, - anon_sym_RPAREN, + [27189] = 2, + ACTIONS(3246), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23624] = 2, - ACTIONS(2936), 1, - anon_sym_SEMI, + [27197] = 2, + ACTIONS(3118), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23632] = 2, - ACTIONS(925), 1, - anon_sym_RBRACK, + [27205] = 2, + ACTIONS(3248), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23640] = 2, - ACTIONS(2938), 1, - anon_sym_RPAREN, + [27213] = 2, + ACTIONS(3250), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23648] = 2, - ACTIONS(2940), 1, + [27221] = 2, + ACTIONS(3252), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23656] = 2, - ACTIONS(929), 1, - anon_sym_RBRACK, + [27229] = 2, + ACTIONS(3254), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23664] = 2, - ACTIONS(2942), 1, - anon_sym_DASH_GT, + [27237] = 2, + ACTIONS(3256), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23672] = 2, - ACTIONS(2603), 1, + [27245] = 2, + ACTIONS(3258), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23680] = 2, - ACTIONS(2944), 1, - anon_sym_class, + [27253] = 2, + ACTIONS(3260), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23688] = 2, - ACTIONS(2946), 1, - sym_identifier, + [27261] = 2, + ACTIONS(3040), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23696] = 2, - ACTIONS(2948), 1, - sym_identifier, + [27269] = 2, + ACTIONS(3262), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23704] = 2, - ACTIONS(2950), 1, - sym_identifier, + [27277] = 2, + ACTIONS(3264), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23712] = 2, - ACTIONS(2952), 1, - sym_identifier, + [27285] = 2, + ACTIONS(3266), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23720] = 2, - ACTIONS(2954), 1, - sym_identifier, + [27293] = 2, + ACTIONS(3268), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23728] = 2, - ACTIONS(2578), 1, - anon_sym_RPAREN, + [27301] = 2, + ACTIONS(3270), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23736] = 2, - ACTIONS(2956), 1, - sym_identifier, + [27309] = 2, + ACTIONS(3272), 1, + anon_sym_module, + ACTIONS(3), 2, + sym_line_comment, + sym_block_comment, + [27317] = 2, + ACTIONS(2072), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23744] = 2, - ACTIONS(2958), 1, + [27325] = 2, + ACTIONS(3274), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23752] = 2, - ACTIONS(2960), 1, - sym_identifier, + [27333] = 2, + ACTIONS(3276), 1, + anon_sym_class, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23760] = 2, - ACTIONS(2962), 1, + [27341] = 2, + ACTIONS(3278), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23768] = 2, - ACTIONS(2964), 1, - sym_identifier, + [27349] = 2, + ACTIONS(446), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23776] = 2, - ACTIONS(2290), 1, - anon_sym_RBRACE, + [27357] = 2, + ACTIONS(3280), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23784] = 2, - ACTIONS(2966), 1, - sym_identifier, + [27365] = 2, + ACTIONS(3282), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23792] = 2, - ACTIONS(2968), 1, - anon_sym_SEMI, + [27373] = 2, + ACTIONS(3284), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23800] = 2, - ACTIONS(2970), 1, - anon_sym_SEMI, + [27381] = 2, + ACTIONS(3286), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, - [23808] = 2, - ACTIONS(2972), 1, - anon_sym_SEMI, + [27389] = 2, + ACTIONS(3288), 1, + sym_identifier, ACTIONS(3), 2, sym_line_comment, sym_block_comment, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(299)] = 0, - [SMALL_STATE(300)] = 118, - [SMALL_STATE(301)] = 236, - [SMALL_STATE(302)] = 354, - [SMALL_STATE(303)] = 472, - [SMALL_STATE(304)] = 590, - [SMALL_STATE(305)] = 693, - [SMALL_STATE(306)] = 776, - [SMALL_STATE(307)] = 879, - [SMALL_STATE(308)] = 982, - [SMALL_STATE(309)] = 1072, - [SMALL_STATE(310)] = 1153, - [SMALL_STATE(311)] = 1213, - [SMALL_STATE(312)] = 1273, - [SMALL_STATE(313)] = 1333, - [SMALL_STATE(314)] = 1393, - [SMALL_STATE(315)] = 1456, - [SMALL_STATE(316)] = 1543, - [SMALL_STATE(317)] = 1630, - [SMALL_STATE(318)] = 1717, - [SMALL_STATE(319)] = 1791, - [SMALL_STATE(320)] = 1845, - [SMALL_STATE(321)] = 1899, - [SMALL_STATE(322)] = 1967, - [SMALL_STATE(323)] = 2021, - [SMALL_STATE(324)] = 2078, - [SMALL_STATE(325)] = 2151, - [SMALL_STATE(326)] = 2211, - [SMALL_STATE(327)] = 2274, - [SMALL_STATE(328)] = 2337, - [SMALL_STATE(329)] = 2398, - [SMALL_STATE(330)] = 2452, - [SMALL_STATE(331)] = 2502, - [SMALL_STATE(332)] = 2552, - [SMALL_STATE(333)] = 2634, - [SMALL_STATE(334)] = 2691, - [SMALL_STATE(335)] = 2747, - [SMALL_STATE(336)] = 2821, - [SMALL_STATE(337)] = 2877, - [SMALL_STATE(338)] = 2934, - [SMALL_STATE(339)] = 3005, - [SMALL_STATE(340)] = 3062, - [SMALL_STATE(341)] = 3135, - [SMALL_STATE(342)] = 3187, - [SMALL_STATE(343)] = 3239, - [SMALL_STATE(344)] = 3285, - [SMALL_STATE(345)] = 3331, - [SMALL_STATE(346)] = 3379, - [SMALL_STATE(347)] = 3427, - [SMALL_STATE(348)] = 3475, - [SMALL_STATE(349)] = 3527, - [SMALL_STATE(350)] = 3575, - [SMALL_STATE(351)] = 3627, - [SMALL_STATE(352)] = 3670, - [SMALL_STATE(353)] = 3713, - [SMALL_STATE(354)] = 3756, - [SMALL_STATE(355)] = 3799, - [SMALL_STATE(356)] = 3842, - [SMALL_STATE(357)] = 3885, - [SMALL_STATE(358)] = 3928, - [SMALL_STATE(359)] = 3971, - [SMALL_STATE(360)] = 4014, - [SMALL_STATE(361)] = 4057, - [SMALL_STATE(362)] = 4100, - [SMALL_STATE(363)] = 4143, - [SMALL_STATE(364)] = 4186, - [SMALL_STATE(365)] = 4229, - [SMALL_STATE(366)] = 4272, - [SMALL_STATE(367)] = 4315, - [SMALL_STATE(368)] = 4364, - [SMALL_STATE(369)] = 4407, - [SMALL_STATE(370)] = 4450, - [SMALL_STATE(371)] = 4493, - [SMALL_STATE(372)] = 4536, - [SMALL_STATE(373)] = 4579, - [SMALL_STATE(374)] = 4628, - [SMALL_STATE(375)] = 4671, - [SMALL_STATE(376)] = 4714, - [SMALL_STATE(377)] = 4757, - [SMALL_STATE(378)] = 4800, - [SMALL_STATE(379)] = 4843, - [SMALL_STATE(380)] = 4886, - [SMALL_STATE(381)] = 4929, - [SMALL_STATE(382)] = 4971, - [SMALL_STATE(383)] = 5013, - [SMALL_STATE(384)] = 5055, - [SMALL_STATE(385)] = 5097, - [SMALL_STATE(386)] = 5139, - [SMALL_STATE(387)] = 5181, - [SMALL_STATE(388)] = 5223, - [SMALL_STATE(389)] = 5265, - [SMALL_STATE(390)] = 5307, - [SMALL_STATE(391)] = 5349, - [SMALL_STATE(392)] = 5393, - [SMALL_STATE(393)] = 5435, - [SMALL_STATE(394)] = 5477, - [SMALL_STATE(395)] = 5519, - [SMALL_STATE(396)] = 5561, - [SMALL_STATE(397)] = 5603, - [SMALL_STATE(398)] = 5645, - [SMALL_STATE(399)] = 5687, - [SMALL_STATE(400)] = 5729, - [SMALL_STATE(401)] = 5771, - [SMALL_STATE(402)] = 5813, - [SMALL_STATE(403)] = 5855, - [SMALL_STATE(404)] = 5897, - [SMALL_STATE(405)] = 5939, - [SMALL_STATE(406)] = 5981, - [SMALL_STATE(407)] = 6023, - [SMALL_STATE(408)] = 6071, - [SMALL_STATE(409)] = 6113, - [SMALL_STATE(410)] = 6155, - [SMALL_STATE(411)] = 6197, - [SMALL_STATE(412)] = 6239, - [SMALL_STATE(413)] = 6281, - [SMALL_STATE(414)] = 6323, - [SMALL_STATE(415)] = 6365, - [SMALL_STATE(416)] = 6407, - [SMALL_STATE(417)] = 6449, - [SMALL_STATE(418)] = 6491, - [SMALL_STATE(419)] = 6533, - [SMALL_STATE(420)] = 6575, - [SMALL_STATE(421)] = 6617, - [SMALL_STATE(422)] = 6663, - [SMALL_STATE(423)] = 6704, - [SMALL_STATE(424)] = 6745, - [SMALL_STATE(425)] = 6786, - [SMALL_STATE(426)] = 6827, - [SMALL_STATE(427)] = 6868, - [SMALL_STATE(428)] = 6913, - [SMALL_STATE(429)] = 6954, - [SMALL_STATE(430)] = 6998, - [SMALL_STATE(431)] = 7037, - [SMALL_STATE(432)] = 7078, - [SMALL_STATE(433)] = 7117, - [SMALL_STATE(434)] = 7156, - [SMALL_STATE(435)] = 7195, - [SMALL_STATE(436)] = 7236, - [SMALL_STATE(437)] = 7275, - [SMALL_STATE(438)] = 7314, - [SMALL_STATE(439)] = 7353, - [SMALL_STATE(440)] = 7394, - [SMALL_STATE(441)] = 7433, - [SMALL_STATE(442)] = 7472, - [SMALL_STATE(443)] = 7511, - [SMALL_STATE(444)] = 7550, - [SMALL_STATE(445)] = 7600, - [SMALL_STATE(446)] = 7656, - [SMALL_STATE(447)] = 7724, - [SMALL_STATE(448)] = 7768, - [SMALL_STATE(449)] = 7814, - [SMALL_STATE(450)] = 7856, - [SMALL_STATE(451)] = 7916, - [SMALL_STATE(452)] = 7954, - [SMALL_STATE(453)] = 8016, - [SMALL_STATE(454)] = 8060, - [SMALL_STATE(455)] = 8124, - [SMALL_STATE(456)] = 8186, - [SMALL_STATE(457)] = 8244, - [SMALL_STATE(458)] = 8312, - [SMALL_STATE(459)] = 8356, - [SMALL_STATE(460)] = 8400, - [SMALL_STATE(461)] = 8468, - [SMALL_STATE(462)] = 8512, - [SMALL_STATE(463)] = 8550, - [SMALL_STATE(464)] = 8588, - [SMALL_STATE(465)] = 8626, - [SMALL_STATE(466)] = 8664, - [SMALL_STATE(467)] = 8732, - [SMALL_STATE(468)] = 8770, - [SMALL_STATE(469)] = 8808, - [SMALL_STATE(470)] = 8846, - [SMALL_STATE(471)] = 8883, - [SMALL_STATE(472)] = 8920, - [SMALL_STATE(473)] = 8962, - [SMALL_STATE(474)] = 9006, - [SMALL_STATE(475)] = 9072, - [SMALL_STATE(476)] = 9142, - [SMALL_STATE(477)] = 9186, - [SMALL_STATE(478)] = 9221, - [SMALL_STATE(479)] = 9274, - [SMALL_STATE(480)] = 9327, - [SMALL_STATE(481)] = 9396, - [SMALL_STATE(482)] = 9455, - [SMALL_STATE(483)] = 9516, - [SMALL_STATE(484)] = 9557, - [SMALL_STATE(485)] = 9622, - [SMALL_STATE(486)] = 9681, - [SMALL_STATE(487)] = 9738, - [SMALL_STATE(488)] = 9807, - [SMALL_STATE(489)] = 9876, - [SMALL_STATE(490)] = 9945, - [SMALL_STATE(491)] = 10014, - [SMALL_STATE(492)] = 10057, - [SMALL_STATE(493)] = 10092, - [SMALL_STATE(494)] = 10127, - [SMALL_STATE(495)] = 10192, - [SMALL_STATE(496)] = 10257, - [SMALL_STATE(497)] = 10322, - [SMALL_STATE(498)] = 10377, - [SMALL_STATE(499)] = 10436, - [SMALL_STATE(500)] = 10505, - [SMALL_STATE(501)] = 10540, - [SMALL_STATE(502)] = 10609, - [SMALL_STATE(503)] = 10668, - [SMALL_STATE(504)] = 10703, - [SMALL_STATE(505)] = 10772, - [SMALL_STATE(506)] = 10807, - [SMALL_STATE(507)] = 10876, - [SMALL_STATE(508)] = 10911, - [SMALL_STATE(509)] = 10980, - [SMALL_STATE(510)] = 11049, - [SMALL_STATE(511)] = 11114, - [SMALL_STATE(512)] = 11149, - [SMALL_STATE(513)] = 11196, - [SMALL_STATE(514)] = 11261, - [SMALL_STATE(515)] = 11330, - [SMALL_STATE(516)] = 11365, - [SMALL_STATE(517)] = 11430, - [SMALL_STATE(518)] = 11494, - [SMALL_STATE(519)] = 11560, - [SMALL_STATE(520)] = 11624, - [SMALL_STATE(521)] = 11688, - [SMALL_STATE(522)] = 11752, - [SMALL_STATE(523)] = 11816, - [SMALL_STATE(524)] = 11880, - [SMALL_STATE(525)] = 11936, - [SMALL_STATE(526)] = 12000, - [SMALL_STATE(527)] = 12038, - [SMALL_STATE(528)] = 12088, - [SMALL_STATE(529)] = 12138, - [SMALL_STATE(530)] = 12201, - [SMALL_STATE(531)] = 12264, - [SMALL_STATE(532)] = 12327, - [SMALL_STATE(533)] = 12390, - [SMALL_STATE(534)] = 12445, - [SMALL_STATE(535)] = 12508, - [SMALL_STATE(536)] = 12571, - [SMALL_STATE(537)] = 12634, - [SMALL_STATE(538)] = 12689, - [SMALL_STATE(539)] = 12752, - [SMALL_STATE(540)] = 12807, - [SMALL_STATE(541)] = 12870, - [SMALL_STATE(542)] = 12933, - [SMALL_STATE(543)] = 12996, - [SMALL_STATE(544)] = 13059, - [SMALL_STATE(545)] = 13122, - [SMALL_STATE(546)] = 13177, - [SMALL_STATE(547)] = 13240, - [SMALL_STATE(548)] = 13303, - [SMALL_STATE(549)] = 13366, - [SMALL_STATE(550)] = 13429, - [SMALL_STATE(551)] = 13481, - [SMALL_STATE(552)] = 13533, - [SMALL_STATE(553)] = 13591, - [SMALL_STATE(554)] = 13643, - [SMALL_STATE(555)] = 13695, - [SMALL_STATE(556)] = 13747, - [SMALL_STATE(557)] = 13799, - [SMALL_STATE(558)] = 13851, - [SMALL_STATE(559)] = 13903, - [SMALL_STATE(560)] = 13944, - [SMALL_STATE(561)] = 13975, - [SMALL_STATE(562)] = 14012, - [SMALL_STATE(563)] = 14049, - [SMALL_STATE(564)] = 14080, - [SMALL_STATE(565)] = 14129, - [SMALL_STATE(566)] = 14159, - [SMALL_STATE(567)] = 14189, - [SMALL_STATE(568)] = 14235, - [SMALL_STATE(569)] = 14281, - [SMALL_STATE(570)] = 14327, - [SMALL_STATE(571)] = 14373, - [SMALL_STATE(572)] = 14419, - [SMALL_STATE(573)] = 14465, - [SMALL_STATE(574)] = 14511, - [SMALL_STATE(575)] = 14540, - [SMALL_STATE(576)] = 14569, - [SMALL_STATE(577)] = 14604, - [SMALL_STATE(578)] = 14633, - [SMALL_STATE(579)] = 14682, - [SMALL_STATE(580)] = 14717, - [SMALL_STATE(581)] = 14746, - [SMALL_STATE(582)] = 14774, - [SMALL_STATE(583)] = 14802, - [SMALL_STATE(584)] = 14830, - [SMALL_STATE(585)] = 14858, - [SMALL_STATE(586)] = 14886, - [SMALL_STATE(587)] = 14914, - [SMALL_STATE(588)] = 14942, - [SMALL_STATE(589)] = 14974, - [SMALL_STATE(590)] = 15020, - [SMALL_STATE(591)] = 15048, - [SMALL_STATE(592)] = 15076, - [SMALL_STATE(593)] = 15123, - [SMALL_STATE(594)] = 15150, - [SMALL_STATE(595)] = 15177, - [SMALL_STATE(596)] = 15206, - [SMALL_STATE(597)] = 15240, - [SMALL_STATE(598)] = 15280, - [SMALL_STATE(599)] = 15325, - [SMALL_STATE(600)] = 15364, - [SMALL_STATE(601)] = 15403, - [SMALL_STATE(602)] = 15440, - [SMALL_STATE(603)] = 15473, - [SMALL_STATE(604)] = 15518, - [SMALL_STATE(605)] = 15555, - [SMALL_STATE(606)] = 15592, - [SMALL_STATE(607)] = 15631, - [SMALL_STATE(608)] = 15668, - [SMALL_STATE(609)] = 15710, - [SMALL_STATE(610)] = 15736, - [SMALL_STATE(611)] = 15760, - [SMALL_STATE(612)] = 15802, - [SMALL_STATE(613)] = 15844, - [SMALL_STATE(614)] = 15868, - [SMALL_STATE(615)] = 15910, - [SMALL_STATE(616)] = 15952, - [SMALL_STATE(617)] = 15994, - [SMALL_STATE(618)] = 16036, - [SMALL_STATE(619)] = 16078, - [SMALL_STATE(620)] = 16117, - [SMALL_STATE(621)] = 16156, - [SMALL_STATE(622)] = 16195, - [SMALL_STATE(623)] = 16228, - [SMALL_STATE(624)] = 16267, - [SMALL_STATE(625)] = 16306, - [SMALL_STATE(626)] = 16345, - [SMALL_STATE(627)] = 16373, - [SMALL_STATE(628)] = 16407, - [SMALL_STATE(629)] = 16441, - [SMALL_STATE(630)] = 16477, - [SMALL_STATE(631)] = 16511, - [SMALL_STATE(632)] = 16547, - [SMALL_STATE(633)] = 16583, - [SMALL_STATE(634)] = 16617, - [SMALL_STATE(635)] = 16651, - [SMALL_STATE(636)] = 16685, - [SMALL_STATE(637)] = 16721, - [SMALL_STATE(638)] = 16757, - [SMALL_STATE(639)] = 16787, - [SMALL_STATE(640)] = 16817, - [SMALL_STATE(641)] = 16851, - [SMALL_STATE(642)] = 16882, - [SMALL_STATE(643)] = 16915, - [SMALL_STATE(644)] = 16946, - [SMALL_STATE(645)] = 16977, - [SMALL_STATE(646)] = 17010, - [SMALL_STATE(647)] = 17043, - [SMALL_STATE(648)] = 17076, - [SMALL_STATE(649)] = 17107, - [SMALL_STATE(650)] = 17140, - [SMALL_STATE(651)] = 17171, - [SMALL_STATE(652)] = 17203, - [SMALL_STATE(653)] = 17233, - [SMALL_STATE(654)] = 17261, - [SMALL_STATE(655)] = 17289, - [SMALL_STATE(656)] = 17321, - [SMALL_STATE(657)] = 17343, - [SMALL_STATE(658)] = 17372, - [SMALL_STATE(659)] = 17401, - [SMALL_STATE(660)] = 17430, - [SMALL_STATE(661)] = 17459, - [SMALL_STATE(662)] = 17494, - [SMALL_STATE(663)] = 17529, - [SMALL_STATE(664)] = 17559, - [SMALL_STATE(665)] = 17587, - [SMALL_STATE(666)] = 17617, - [SMALL_STATE(667)] = 17633, - [SMALL_STATE(668)] = 17662, - [SMALL_STATE(669)] = 17687, - [SMALL_STATE(670)] = 17716, - [SMALL_STATE(671)] = 17745, - [SMALL_STATE(672)] = 17772, - [SMALL_STATE(673)] = 17801, - [SMALL_STATE(674)] = 17825, - [SMALL_STATE(675)] = 17847, - [SMALL_STATE(676)] = 17871, - [SMALL_STATE(677)] = 17891, - [SMALL_STATE(678)] = 17913, - [SMALL_STATE(679)] = 17933, - [SMALL_STATE(680)] = 17953, - [SMALL_STATE(681)] = 17977, - [SMALL_STATE(682)] = 17990, - [SMALL_STATE(683)] = 18007, - [SMALL_STATE(684)] = 18024, - [SMALL_STATE(685)] = 18037, - [SMALL_STATE(686)] = 18050, - [SMALL_STATE(687)] = 18071, - [SMALL_STATE(688)] = 18084, - [SMALL_STATE(689)] = 18097, - [SMALL_STATE(690)] = 18114, - [SMALL_STATE(691)] = 18127, - [SMALL_STATE(692)] = 18144, - [SMALL_STATE(693)] = 18157, - [SMALL_STATE(694)] = 18170, - [SMALL_STATE(695)] = 18183, - [SMALL_STATE(696)] = 18196, - [SMALL_STATE(697)] = 18219, - [SMALL_STATE(698)] = 18242, - [SMALL_STATE(699)] = 18255, - [SMALL_STATE(700)] = 18278, - [SMALL_STATE(701)] = 18295, - [SMALL_STATE(702)] = 18308, - [SMALL_STATE(703)] = 18325, - [SMALL_STATE(704)] = 18338, - [SMALL_STATE(705)] = 18351, - [SMALL_STATE(706)] = 18364, - [SMALL_STATE(707)] = 18385, - [SMALL_STATE(708)] = 18398, - [SMALL_STATE(709)] = 18421, - [SMALL_STATE(710)] = 18434, - [SMALL_STATE(711)] = 18447, - [SMALL_STATE(712)] = 18460, - [SMALL_STATE(713)] = 18473, - [SMALL_STATE(714)] = 18486, - [SMALL_STATE(715)] = 18509, - [SMALL_STATE(716)] = 18522, - [SMALL_STATE(717)] = 18535, - [SMALL_STATE(718)] = 18552, - [SMALL_STATE(719)] = 18565, - [SMALL_STATE(720)] = 18582, - [SMALL_STATE(721)] = 18595, - [SMALL_STATE(722)] = 18612, - [SMALL_STATE(723)] = 18629, - [SMALL_STATE(724)] = 18650, - [SMALL_STATE(725)] = 18663, - [SMALL_STATE(726)] = 18676, - [SMALL_STATE(727)] = 18693, - [SMALL_STATE(728)] = 18710, - [SMALL_STATE(729)] = 18723, - [SMALL_STATE(730)] = 18736, - [SMALL_STATE(731)] = 18749, - [SMALL_STATE(732)] = 18766, - [SMALL_STATE(733)] = 18779, - [SMALL_STATE(734)] = 18792, - [SMALL_STATE(735)] = 18809, - [SMALL_STATE(736)] = 18822, - [SMALL_STATE(737)] = 18835, - [SMALL_STATE(738)] = 18848, - [SMALL_STATE(739)] = 18871, - [SMALL_STATE(740)] = 18884, - [SMALL_STATE(741)] = 18901, - [SMALL_STATE(742)] = 18914, - [SMALL_STATE(743)] = 18927, - [SMALL_STATE(744)] = 18940, - [SMALL_STATE(745)] = 18953, - [SMALL_STATE(746)] = 18966, - [SMALL_STATE(747)] = 18986, - [SMALL_STATE(748)] = 19006, - [SMALL_STATE(749)] = 19026, - [SMALL_STATE(750)] = 19044, - [SMALL_STATE(751)] = 19060, - [SMALL_STATE(752)] = 19076, - [SMALL_STATE(753)] = 19090, - [SMALL_STATE(754)] = 19106, - [SMALL_STATE(755)] = 19122, - [SMALL_STATE(756)] = 19140, - [SMALL_STATE(757)] = 19156, - [SMALL_STATE(758)] = 19168, - [SMALL_STATE(759)] = 19186, - [SMALL_STATE(760)] = 19202, - [SMALL_STATE(761)] = 19222, - [SMALL_STATE(762)] = 19242, - [SMALL_STATE(763)] = 19254, - [SMALL_STATE(764)] = 19274, - [SMALL_STATE(765)] = 19290, - [SMALL_STATE(766)] = 19306, - [SMALL_STATE(767)] = 19318, - [SMALL_STATE(768)] = 19336, - [SMALL_STATE(769)] = 19348, - [SMALL_STATE(770)] = 19366, - [SMALL_STATE(771)] = 19381, - [SMALL_STATE(772)] = 19396, - [SMALL_STATE(773)] = 19411, - [SMALL_STATE(774)] = 19426, - [SMALL_STATE(775)] = 19441, - [SMALL_STATE(776)] = 19456, - [SMALL_STATE(777)] = 19471, - [SMALL_STATE(778)] = 19488, - [SMALL_STATE(779)] = 19503, - [SMALL_STATE(780)] = 19520, - [SMALL_STATE(781)] = 19535, - [SMALL_STATE(782)] = 19550, - [SMALL_STATE(783)] = 19567, - [SMALL_STATE(784)] = 19582, - [SMALL_STATE(785)] = 19597, - [SMALL_STATE(786)] = 19612, - [SMALL_STATE(787)] = 19627, - [SMALL_STATE(788)] = 19644, - [SMALL_STATE(789)] = 19659, - [SMALL_STATE(790)] = 19674, - [SMALL_STATE(791)] = 19689, - [SMALL_STATE(792)] = 19702, - [SMALL_STATE(793)] = 19719, - [SMALL_STATE(794)] = 19734, - [SMALL_STATE(795)] = 19745, - [SMALL_STATE(796)] = 19762, - [SMALL_STATE(797)] = 19779, - [SMALL_STATE(798)] = 19794, - [SMALL_STATE(799)] = 19805, - [SMALL_STATE(800)] = 19820, - [SMALL_STATE(801)] = 19837, - [SMALL_STATE(802)] = 19854, - [SMALL_STATE(803)] = 19869, - [SMALL_STATE(804)] = 19886, - [SMALL_STATE(805)] = 19903, - [SMALL_STATE(806)] = 19920, - [SMALL_STATE(807)] = 19935, - [SMALL_STATE(808)] = 19950, - [SMALL_STATE(809)] = 19967, - [SMALL_STATE(810)] = 19984, - [SMALL_STATE(811)] = 20001, - [SMALL_STATE(812)] = 20018, - [SMALL_STATE(813)] = 20035, - [SMALL_STATE(814)] = 20052, - [SMALL_STATE(815)] = 20069, - [SMALL_STATE(816)] = 20084, - [SMALL_STATE(817)] = 20099, - [SMALL_STATE(818)] = 20116, - [SMALL_STATE(819)] = 20133, - [SMALL_STATE(820)] = 20148, - [SMALL_STATE(821)] = 20165, - [SMALL_STATE(822)] = 20180, - [SMALL_STATE(823)] = 20195, - [SMALL_STATE(824)] = 20206, - [SMALL_STATE(825)] = 20221, - [SMALL_STATE(826)] = 20236, - [SMALL_STATE(827)] = 20253, - [SMALL_STATE(828)] = 20268, - [SMALL_STATE(829)] = 20285, - [SMALL_STATE(830)] = 20300, - [SMALL_STATE(831)] = 20317, - [SMALL_STATE(832)] = 20332, - [SMALL_STATE(833)] = 20347, - [SMALL_STATE(834)] = 20362, - [SMALL_STATE(835)] = 20377, - [SMALL_STATE(836)] = 20388, - [SMALL_STATE(837)] = 20405, - [SMALL_STATE(838)] = 20420, - [SMALL_STATE(839)] = 20437, - [SMALL_STATE(840)] = 20452, - [SMALL_STATE(841)] = 20469, - [SMALL_STATE(842)] = 20486, - [SMALL_STATE(843)] = 20503, - [SMALL_STATE(844)] = 20518, - [SMALL_STATE(845)] = 20529, - [SMALL_STATE(846)] = 20546, - [SMALL_STATE(847)] = 20561, - [SMALL_STATE(848)] = 20576, - [SMALL_STATE(849)] = 20591, - [SMALL_STATE(850)] = 20608, - [SMALL_STATE(851)] = 20622, - [SMALL_STATE(852)] = 20636, - [SMALL_STATE(853)] = 20650, - [SMALL_STATE(854)] = 20664, - [SMALL_STATE(855)] = 20678, - [SMALL_STATE(856)] = 20692, - [SMALL_STATE(857)] = 20706, - [SMALL_STATE(858)] = 20720, - [SMALL_STATE(859)] = 20734, - [SMALL_STATE(860)] = 20748, - [SMALL_STATE(861)] = 20760, - [SMALL_STATE(862)] = 20774, - [SMALL_STATE(863)] = 20788, - [SMALL_STATE(864)] = 20802, - [SMALL_STATE(865)] = 20816, - [SMALL_STATE(866)] = 20826, - [SMALL_STATE(867)] = 20836, - [SMALL_STATE(868)] = 20850, - [SMALL_STATE(869)] = 20864, - [SMALL_STATE(870)] = 20874, - [SMALL_STATE(871)] = 20888, - [SMALL_STATE(872)] = 20900, - [SMALL_STATE(873)] = 20914, - [SMALL_STATE(874)] = 20928, - [SMALL_STATE(875)] = 20942, - [SMALL_STATE(876)] = 20954, - [SMALL_STATE(877)] = 20968, - [SMALL_STATE(878)] = 20982, - [SMALL_STATE(879)] = 20994, - [SMALL_STATE(880)] = 21008, - [SMALL_STATE(881)] = 21022, - [SMALL_STATE(882)] = 21034, - [SMALL_STATE(883)] = 21048, - [SMALL_STATE(884)] = 21058, - [SMALL_STATE(885)] = 21072, - [SMALL_STATE(886)] = 21086, - [SMALL_STATE(887)] = 21100, - [SMALL_STATE(888)] = 21110, - [SMALL_STATE(889)] = 21124, - [SMALL_STATE(890)] = 21138, - [SMALL_STATE(891)] = 21152, - [SMALL_STATE(892)] = 21166, - [SMALL_STATE(893)] = 21180, - [SMALL_STATE(894)] = 21194, - [SMALL_STATE(895)] = 21208, - [SMALL_STATE(896)] = 21218, - [SMALL_STATE(897)] = 21228, - [SMALL_STATE(898)] = 21242, - [SMALL_STATE(899)] = 21252, - [SMALL_STATE(900)] = 21266, - [SMALL_STATE(901)] = 21280, - [SMALL_STATE(902)] = 21290, - [SMALL_STATE(903)] = 21304, - [SMALL_STATE(904)] = 21318, - [SMALL_STATE(905)] = 21332, - [SMALL_STATE(906)] = 21346, - [SMALL_STATE(907)] = 21360, - [SMALL_STATE(908)] = 21374, - [SMALL_STATE(909)] = 21388, - [SMALL_STATE(910)] = 21398, - [SMALL_STATE(911)] = 21412, - [SMALL_STATE(912)] = 21426, - [SMALL_STATE(913)] = 21440, - [SMALL_STATE(914)] = 21454, - [SMALL_STATE(915)] = 21468, - [SMALL_STATE(916)] = 21482, - [SMALL_STATE(917)] = 21496, - [SMALL_STATE(918)] = 21510, - [SMALL_STATE(919)] = 21524, - [SMALL_STATE(920)] = 21538, - [SMALL_STATE(921)] = 21552, - [SMALL_STATE(922)] = 21566, - [SMALL_STATE(923)] = 21580, - [SMALL_STATE(924)] = 21594, - [SMALL_STATE(925)] = 21608, - [SMALL_STATE(926)] = 21622, - [SMALL_STATE(927)] = 21636, - [SMALL_STATE(928)] = 21650, - [SMALL_STATE(929)] = 21664, - [SMALL_STATE(930)] = 21676, - [SMALL_STATE(931)] = 21690, - [SMALL_STATE(932)] = 21704, - [SMALL_STATE(933)] = 21718, - [SMALL_STATE(934)] = 21732, - [SMALL_STATE(935)] = 21746, - [SMALL_STATE(936)] = 21760, - [SMALL_STATE(937)] = 21770, - [SMALL_STATE(938)] = 21784, - [SMALL_STATE(939)] = 21798, - [SMALL_STATE(940)] = 21812, - [SMALL_STATE(941)] = 21826, - [SMALL_STATE(942)] = 21840, - [SMALL_STATE(943)] = 21854, - [SMALL_STATE(944)] = 21868, - [SMALL_STATE(945)] = 21882, - [SMALL_STATE(946)] = 21896, - [SMALL_STATE(947)] = 21910, - [SMALL_STATE(948)] = 21924, - [SMALL_STATE(949)] = 21938, - [SMALL_STATE(950)] = 21952, - [SMALL_STATE(951)] = 21966, - [SMALL_STATE(952)] = 21980, - [SMALL_STATE(953)] = 21994, - [SMALL_STATE(954)] = 22008, - [SMALL_STATE(955)] = 22019, - [SMALL_STATE(956)] = 22030, - [SMALL_STATE(957)] = 22039, - [SMALL_STATE(958)] = 22050, - [SMALL_STATE(959)] = 22061, - [SMALL_STATE(960)] = 22072, - [SMALL_STATE(961)] = 22083, - [SMALL_STATE(962)] = 22094, - [SMALL_STATE(963)] = 22105, - [SMALL_STATE(964)] = 22116, - [SMALL_STATE(965)] = 22127, - [SMALL_STATE(966)] = 22138, - [SMALL_STATE(967)] = 22149, - [SMALL_STATE(968)] = 22158, - [SMALL_STATE(969)] = 22169, - [SMALL_STATE(970)] = 22180, - [SMALL_STATE(971)] = 22189, - [SMALL_STATE(972)] = 22198, - [SMALL_STATE(973)] = 22209, - [SMALL_STATE(974)] = 22218, - [SMALL_STATE(975)] = 22229, - [SMALL_STATE(976)] = 22238, - [SMALL_STATE(977)] = 22249, - [SMALL_STATE(978)] = 22260, - [SMALL_STATE(979)] = 22271, - [SMALL_STATE(980)] = 22282, - [SMALL_STATE(981)] = 22293, - [SMALL_STATE(982)] = 22304, - [SMALL_STATE(983)] = 22313, - [SMALL_STATE(984)] = 22322, - [SMALL_STATE(985)] = 22333, - [SMALL_STATE(986)] = 22344, - [SMALL_STATE(987)] = 22353, - [SMALL_STATE(988)] = 22364, - [SMALL_STATE(989)] = 22373, - [SMALL_STATE(990)] = 22384, - [SMALL_STATE(991)] = 22395, - [SMALL_STATE(992)] = 22406, - [SMALL_STATE(993)] = 22415, - [SMALL_STATE(994)] = 22424, - [SMALL_STATE(995)] = 22435, - [SMALL_STATE(996)] = 22446, - [SMALL_STATE(997)] = 22457, - [SMALL_STATE(998)] = 22468, - [SMALL_STATE(999)] = 22479, - [SMALL_STATE(1000)] = 22488, - [SMALL_STATE(1001)] = 22499, - [SMALL_STATE(1002)] = 22510, - [SMALL_STATE(1003)] = 22521, - [SMALL_STATE(1004)] = 22532, - [SMALL_STATE(1005)] = 22543, - [SMALL_STATE(1006)] = 22552, - [SMALL_STATE(1007)] = 22563, - [SMALL_STATE(1008)] = 22574, - [SMALL_STATE(1009)] = 22585, - [SMALL_STATE(1010)] = 22596, - [SMALL_STATE(1011)] = 22607, - [SMALL_STATE(1012)] = 22618, - [SMALL_STATE(1013)] = 22629, - [SMALL_STATE(1014)] = 22640, - [SMALL_STATE(1015)] = 22651, - [SMALL_STATE(1016)] = 22662, - [SMALL_STATE(1017)] = 22671, - [SMALL_STATE(1018)] = 22682, - [SMALL_STATE(1019)] = 22691, - [SMALL_STATE(1020)] = 22700, - [SMALL_STATE(1021)] = 22711, - [SMALL_STATE(1022)] = 22722, - [SMALL_STATE(1023)] = 22731, - [SMALL_STATE(1024)] = 22742, - [SMALL_STATE(1025)] = 22753, - [SMALL_STATE(1026)] = 22764, - [SMALL_STATE(1027)] = 22775, - [SMALL_STATE(1028)] = 22784, - [SMALL_STATE(1029)] = 22793, - [SMALL_STATE(1030)] = 22804, - [SMALL_STATE(1031)] = 22815, - [SMALL_STATE(1032)] = 22826, - [SMALL_STATE(1033)] = 22835, - [SMALL_STATE(1034)] = 22844, - [SMALL_STATE(1035)] = 22855, - [SMALL_STATE(1036)] = 22866, - [SMALL_STATE(1037)] = 22875, - [SMALL_STATE(1038)] = 22886, - [SMALL_STATE(1039)] = 22897, - [SMALL_STATE(1040)] = 22908, - [SMALL_STATE(1041)] = 22919, - [SMALL_STATE(1042)] = 22928, - [SMALL_STATE(1043)] = 22937, - [SMALL_STATE(1044)] = 22948, - [SMALL_STATE(1045)] = 22959, - [SMALL_STATE(1046)] = 22970, - [SMALL_STATE(1047)] = 22981, - [SMALL_STATE(1048)] = 22992, - [SMALL_STATE(1049)] = 23003, - [SMALL_STATE(1050)] = 23014, - [SMALL_STATE(1051)] = 23025, - [SMALL_STATE(1052)] = 23036, - [SMALL_STATE(1053)] = 23047, - [SMALL_STATE(1054)] = 23056, - [SMALL_STATE(1055)] = 23067, - [SMALL_STATE(1056)] = 23076, - [SMALL_STATE(1057)] = 23085, - [SMALL_STATE(1058)] = 23094, - [SMALL_STATE(1059)] = 23105, - [SMALL_STATE(1060)] = 23114, - [SMALL_STATE(1061)] = 23125, - [SMALL_STATE(1062)] = 23136, - [SMALL_STATE(1063)] = 23144, - [SMALL_STATE(1064)] = 23152, - [SMALL_STATE(1065)] = 23160, - [SMALL_STATE(1066)] = 23168, - [SMALL_STATE(1067)] = 23176, - [SMALL_STATE(1068)] = 23184, - [SMALL_STATE(1069)] = 23192, - [SMALL_STATE(1070)] = 23200, - [SMALL_STATE(1071)] = 23208, - [SMALL_STATE(1072)] = 23216, - [SMALL_STATE(1073)] = 23224, - [SMALL_STATE(1074)] = 23232, - [SMALL_STATE(1075)] = 23240, - [SMALL_STATE(1076)] = 23248, - [SMALL_STATE(1077)] = 23256, - [SMALL_STATE(1078)] = 23264, - [SMALL_STATE(1079)] = 23272, - [SMALL_STATE(1080)] = 23280, - [SMALL_STATE(1081)] = 23288, - [SMALL_STATE(1082)] = 23296, - [SMALL_STATE(1083)] = 23304, - [SMALL_STATE(1084)] = 23312, - [SMALL_STATE(1085)] = 23320, - [SMALL_STATE(1086)] = 23328, - [SMALL_STATE(1087)] = 23336, - [SMALL_STATE(1088)] = 23344, - [SMALL_STATE(1089)] = 23352, - [SMALL_STATE(1090)] = 23360, - [SMALL_STATE(1091)] = 23368, - [SMALL_STATE(1092)] = 23376, - [SMALL_STATE(1093)] = 23384, - [SMALL_STATE(1094)] = 23392, - [SMALL_STATE(1095)] = 23400, - [SMALL_STATE(1096)] = 23408, - [SMALL_STATE(1097)] = 23416, - [SMALL_STATE(1098)] = 23424, - [SMALL_STATE(1099)] = 23432, - [SMALL_STATE(1100)] = 23440, - [SMALL_STATE(1101)] = 23448, - [SMALL_STATE(1102)] = 23456, - [SMALL_STATE(1103)] = 23464, - [SMALL_STATE(1104)] = 23472, - [SMALL_STATE(1105)] = 23480, - [SMALL_STATE(1106)] = 23488, - [SMALL_STATE(1107)] = 23496, - [SMALL_STATE(1108)] = 23504, - [SMALL_STATE(1109)] = 23512, - [SMALL_STATE(1110)] = 23520, - [SMALL_STATE(1111)] = 23528, - [SMALL_STATE(1112)] = 23536, - [SMALL_STATE(1113)] = 23544, - [SMALL_STATE(1114)] = 23552, - [SMALL_STATE(1115)] = 23560, - [SMALL_STATE(1116)] = 23568, - [SMALL_STATE(1117)] = 23576, - [SMALL_STATE(1118)] = 23584, - [SMALL_STATE(1119)] = 23592, - [SMALL_STATE(1120)] = 23600, - [SMALL_STATE(1121)] = 23608, - [SMALL_STATE(1122)] = 23616, - [SMALL_STATE(1123)] = 23624, - [SMALL_STATE(1124)] = 23632, - [SMALL_STATE(1125)] = 23640, - [SMALL_STATE(1126)] = 23648, - [SMALL_STATE(1127)] = 23656, - [SMALL_STATE(1128)] = 23664, - [SMALL_STATE(1129)] = 23672, - [SMALL_STATE(1130)] = 23680, - [SMALL_STATE(1131)] = 23688, - [SMALL_STATE(1132)] = 23696, - [SMALL_STATE(1133)] = 23704, - [SMALL_STATE(1134)] = 23712, - [SMALL_STATE(1135)] = 23720, - [SMALL_STATE(1136)] = 23728, - [SMALL_STATE(1137)] = 23736, - [SMALL_STATE(1138)] = 23744, - [SMALL_STATE(1139)] = 23752, - [SMALL_STATE(1140)] = 23760, - [SMALL_STATE(1141)] = 23768, - [SMALL_STATE(1142)] = 23776, - [SMALL_STATE(1143)] = 23784, - [SMALL_STATE(1144)] = 23792, - [SMALL_STATE(1145)] = 23800, - [SMALL_STATE(1146)] = 23808, + [SMALL_STATE(354)] = 0, + [SMALL_STATE(355)] = 119, + [SMALL_STATE(356)] = 238, + [SMALL_STATE(357)] = 357, + [SMALL_STATE(358)] = 476, + [SMALL_STATE(359)] = 595, + [SMALL_STATE(360)] = 702, + [SMALL_STATE(361)] = 809, + [SMALL_STATE(362)] = 916, + [SMALL_STATE(363)] = 1000, + [SMALL_STATE(364)] = 1091, + [SMALL_STATE(365)] = 1173, + [SMALL_STATE(366)] = 1255, + [SMALL_STATE(367)] = 1346, + [SMALL_STATE(368)] = 1437, + [SMALL_STATE(369)] = 1528, + [SMALL_STATE(370)] = 1588, + [SMALL_STATE(371)] = 1648, + [SMALL_STATE(372)] = 1720, + [SMALL_STATE(373)] = 1786, + [SMALL_STATE(374)] = 1846, + [SMALL_STATE(375)] = 1906, + [SMALL_STATE(376)] = 1960, + [SMALL_STATE(377)] = 2014, + [SMALL_STATE(378)] = 2088, + [SMALL_STATE(379)] = 2142, + [SMALL_STATE(380)] = 2215, + [SMALL_STATE(381)] = 2284, + [SMALL_STATE(382)] = 2341, + [SMALL_STATE(383)] = 2403, + [SMALL_STATE(384)] = 2463, + [SMALL_STATE(385)] = 2527, + [SMALL_STATE(386)] = 2591, + [SMALL_STATE(387)] = 2651, + [SMALL_STATE(388)] = 2714, + [SMALL_STATE(389)] = 2777, + [SMALL_STATE(390)] = 2838, + [SMALL_STATE(391)] = 2901, + [SMALL_STATE(392)] = 2964, + [SMALL_STATE(393)] = 3025, + [SMALL_STATE(394)] = 3075, + [SMALL_STATE(395)] = 3129, + [SMALL_STATE(396)] = 3211, + [SMALL_STATE(397)] = 3261, + [SMALL_STATE(398)] = 3318, + [SMALL_STATE(399)] = 3392, + [SMALL_STATE(400)] = 3463, + [SMALL_STATE(401)] = 3510, + [SMALL_STATE(402)] = 3583, + [SMALL_STATE(403)] = 3636, + [SMALL_STATE(404)] = 3683, + [SMALL_STATE(405)] = 3730, + [SMALL_STATE(406)] = 3777, + [SMALL_STATE(407)] = 3830, + [SMALL_STATE(408)] = 3876, + [SMALL_STATE(409)] = 3922, + [SMALL_STATE(410)] = 3968, + [SMALL_STATE(411)] = 4020, + [SMALL_STATE(412)] = 4066, + [SMALL_STATE(413)] = 4112, + [SMALL_STATE(414)] = 4158, + [SMALL_STATE(415)] = 4210, + [SMALL_STATE(416)] = 4256, + [SMALL_STATE(417)] = 4302, + [SMALL_STATE(418)] = 4348, + [SMALL_STATE(419)] = 4396, + [SMALL_STATE(420)] = 4441, + [SMALL_STATE(421)] = 4486, + [SMALL_STATE(422)] = 4531, + [SMALL_STATE(423)] = 4576, + [SMALL_STATE(424)] = 4624, + [SMALL_STATE(425)] = 4672, + [SMALL_STATE(426)] = 4720, + [SMALL_STATE(427)] = 4768, + [SMALL_STATE(428)] = 4820, + [SMALL_STATE(429)] = 4872, + [SMALL_STATE(430)] = 4915, + [SMALL_STATE(431)] = 4958, + [SMALL_STATE(432)] = 5001, + [SMALL_STATE(433)] = 5044, + [SMALL_STATE(434)] = 5087, + [SMALL_STATE(435)] = 5130, + [SMALL_STATE(436)] = 5173, + [SMALL_STATE(437)] = 5216, + [SMALL_STATE(438)] = 5259, + [SMALL_STATE(439)] = 5302, + [SMALL_STATE(440)] = 5345, + [SMALL_STATE(441)] = 5392, + [SMALL_STATE(442)] = 5435, + [SMALL_STATE(443)] = 5478, + [SMALL_STATE(444)] = 5521, + [SMALL_STATE(445)] = 5564, + [SMALL_STATE(446)] = 5607, + [SMALL_STATE(447)] = 5650, + [SMALL_STATE(448)] = 5693, + [SMALL_STATE(449)] = 5736, + [SMALL_STATE(450)] = 5779, + [SMALL_STATE(451)] = 5826, + [SMALL_STATE(452)] = 5869, + [SMALL_STATE(453)] = 5912, + [SMALL_STATE(454)] = 5955, + [SMALL_STATE(455)] = 5998, + [SMALL_STATE(456)] = 6041, + [SMALL_STATE(457)] = 6084, + [SMALL_STATE(458)] = 6127, + [SMALL_STATE(459)] = 6169, + [SMALL_STATE(460)] = 6211, + [SMALL_STATE(461)] = 6253, + [SMALL_STATE(462)] = 6295, + [SMALL_STATE(463)] = 6337, + [SMALL_STATE(464)] = 6379, + [SMALL_STATE(465)] = 6421, + [SMALL_STATE(466)] = 6463, + [SMALL_STATE(467)] = 6505, + [SMALL_STATE(468)] = 6547, + [SMALL_STATE(469)] = 6589, + [SMALL_STATE(470)] = 6631, + [SMALL_STATE(471)] = 6673, + [SMALL_STATE(472)] = 6715, + [SMALL_STATE(473)] = 6757, + [SMALL_STATE(474)] = 6799, + [SMALL_STATE(475)] = 6847, + [SMALL_STATE(476)] = 6889, + [SMALL_STATE(477)] = 6931, + [SMALL_STATE(478)] = 6973, + [SMALL_STATE(479)] = 7015, + [SMALL_STATE(480)] = 7057, + [SMALL_STATE(481)] = 7099, + [SMALL_STATE(482)] = 7141, + [SMALL_STATE(483)] = 7183, + [SMALL_STATE(484)] = 7225, + [SMALL_STATE(485)] = 7267, + [SMALL_STATE(486)] = 7309, + [SMALL_STATE(487)] = 7351, + [SMALL_STATE(488)] = 7393, + [SMALL_STATE(489)] = 7439, + [SMALL_STATE(490)] = 7481, + [SMALL_STATE(491)] = 7523, + [SMALL_STATE(492)] = 7565, + [SMALL_STATE(493)] = 7607, + [SMALL_STATE(494)] = 7649, + [SMALL_STATE(495)] = 7691, + [SMALL_STATE(496)] = 7733, + [SMALL_STATE(497)] = 7779, + [SMALL_STATE(498)] = 7821, + [SMALL_STATE(499)] = 7863, + [SMALL_STATE(500)] = 7905, + [SMALL_STATE(501)] = 7947, + [SMALL_STATE(502)] = 7992, + [SMALL_STATE(503)] = 8032, + [SMALL_STATE(504)] = 8072, + [SMALL_STATE(505)] = 8112, + [SMALL_STATE(506)] = 8151, + [SMALL_STATE(507)] = 8190, + [SMALL_STATE(508)] = 8229, + [SMALL_STATE(509)] = 8270, + [SMALL_STATE(510)] = 8309, + [SMALL_STATE(511)] = 8348, + [SMALL_STATE(512)] = 8387, + [SMALL_STATE(513)] = 8426, + [SMALL_STATE(514)] = 8465, + [SMALL_STATE(515)] = 8504, + [SMALL_STATE(516)] = 8543, + [SMALL_STATE(517)] = 8582, + [SMALL_STATE(518)] = 8621, + [SMALL_STATE(519)] = 8662, + [SMALL_STATE(520)] = 8701, + [SMALL_STATE(521)] = 8740, + [SMALL_STATE(522)] = 8781, + [SMALL_STATE(523)] = 8820, + [SMALL_STATE(524)] = 8859, + [SMALL_STATE(525)] = 8898, + [SMALL_STATE(526)] = 8937, + [SMALL_STATE(527)] = 8995, + [SMALL_STATE(528)] = 9045, + [SMALL_STATE(529)] = 9113, + [SMALL_STATE(530)] = 9173, + [SMALL_STATE(531)] = 9235, + [SMALL_STATE(532)] = 9279, + [SMALL_STATE(533)] = 9323, + [SMALL_STATE(534)] = 9391, + [SMALL_STATE(535)] = 9455, + [SMALL_STATE(536)] = 9499, + [SMALL_STATE(537)] = 9561, + [SMALL_STATE(538)] = 9629, + [SMALL_STATE(539)] = 9675, + [SMALL_STATE(540)] = 9719, + [SMALL_STATE(541)] = 9775, + [SMALL_STATE(542)] = 9817, + [SMALL_STATE(543)] = 9885, + [SMALL_STATE(544)] = 9953, + [SMALL_STATE(545)] = 9997, + [SMALL_STATE(546)] = 10042, + [SMALL_STATE(547)] = 10079, + [SMALL_STATE(548)] = 10124, + [SMALL_STATE(549)] = 10161, + [SMALL_STATE(550)] = 10227, + [SMALL_STATE(551)] = 10269, + [SMALL_STATE(552)] = 10339, + [SMALL_STATE(553)] = 10404, + [SMALL_STATE(554)] = 10463, + [SMALL_STATE(555)] = 10532, + [SMALL_STATE(556)] = 10597, + [SMALL_STATE(557)] = 10632, + [SMALL_STATE(558)] = 10697, + [SMALL_STATE(559)] = 10766, + [SMALL_STATE(560)] = 10831, + [SMALL_STATE(561)] = 10866, + [SMALL_STATE(562)] = 10935, + [SMALL_STATE(563)] = 10970, + [SMALL_STATE(564)] = 11039, + [SMALL_STATE(565)] = 11108, + [SMALL_STATE(566)] = 11177, + [SMALL_STATE(567)] = 11214, + [SMALL_STATE(568)] = 11283, + [SMALL_STATE(569)] = 11352, + [SMALL_STATE(570)] = 11421, + [SMALL_STATE(571)] = 11490, + [SMALL_STATE(572)] = 11525, + [SMALL_STATE(573)] = 11590, + [SMALL_STATE(574)] = 11625, + [SMALL_STATE(575)] = 11694, + [SMALL_STATE(576)] = 11763, + [SMALL_STATE(577)] = 11832, + [SMALL_STATE(578)] = 11885, + [SMALL_STATE(579)] = 11920, + [SMALL_STATE(580)] = 11955, + [SMALL_STATE(581)] = 12020, + [SMALL_STATE(582)] = 12089, + [SMALL_STATE(583)] = 12132, + [SMALL_STATE(584)] = 12167, + [SMALL_STATE(585)] = 12236, + [SMALL_STATE(586)] = 12271, + [SMALL_STATE(587)] = 12328, + [SMALL_STATE(588)] = 12397, + [SMALL_STATE(589)] = 12466, + [SMALL_STATE(590)] = 12535, + [SMALL_STATE(591)] = 12600, + [SMALL_STATE(592)] = 12665, + [SMALL_STATE(593)] = 12724, + [SMALL_STATE(594)] = 12783, + [SMALL_STATE(595)] = 12824, + [SMALL_STATE(596)] = 12879, + [SMALL_STATE(597)] = 12948, + [SMALL_STATE(598)] = 13009, + [SMALL_STATE(599)] = 13078, + [SMALL_STATE(600)] = 13147, + [SMALL_STATE(601)] = 13206, + [SMALL_STATE(602)] = 13253, + [SMALL_STATE(603)] = 13306, + [SMALL_STATE(604)] = 13362, + [SMALL_STATE(605)] = 13426, + [SMALL_STATE(606)] = 13476, + [SMALL_STATE(607)] = 13540, + [SMALL_STATE(608)] = 13604, + [SMALL_STATE(609)] = 13668, + [SMALL_STATE(610)] = 13734, + [SMALL_STATE(611)] = 13772, + [SMALL_STATE(612)] = 13822, + [SMALL_STATE(613)] = 13886, + [SMALL_STATE(614)] = 13950, + [SMALL_STATE(615)] = 14014, + [SMALL_STATE(616)] = 14077, + [SMALL_STATE(617)] = 14140, + [SMALL_STATE(618)] = 14203, + [SMALL_STATE(619)] = 14266, + [SMALL_STATE(620)] = 14327, + [SMALL_STATE(621)] = 14382, + [SMALL_STATE(622)] = 14445, + [SMALL_STATE(623)] = 14508, + [SMALL_STATE(624)] = 14571, + [SMALL_STATE(625)] = 14626, + [SMALL_STATE(626)] = 14689, + [SMALL_STATE(627)] = 14752, + [SMALL_STATE(628)] = 14815, + [SMALL_STATE(629)] = 14878, + [SMALL_STATE(630)] = 14941, + [SMALL_STATE(631)] = 15004, + [SMALL_STATE(632)] = 15067, + [SMALL_STATE(633)] = 15122, + [SMALL_STATE(634)] = 15185, + [SMALL_STATE(635)] = 15248, + [SMALL_STATE(636)] = 15303, + [SMALL_STATE(637)] = 15366, + [SMALL_STATE(638)] = 15429, + [SMALL_STATE(639)] = 15492, + [SMALL_STATE(640)] = 15555, + [SMALL_STATE(641)] = 15618, + [SMALL_STATE(642)] = 15681, + [SMALL_STATE(643)] = 15744, + [SMALL_STATE(644)] = 15799, + [SMALL_STATE(645)] = 15851, + [SMALL_STATE(646)] = 15903, + [SMALL_STATE(647)] = 15955, + [SMALL_STATE(648)] = 16007, + [SMALL_STATE(649)] = 16059, + [SMALL_STATE(650)] = 16091, + [SMALL_STATE(651)] = 16123, + [SMALL_STATE(652)] = 16175, + [SMALL_STATE(653)] = 16227, + [SMALL_STATE(654)] = 16279, + [SMALL_STATE(655)] = 16328, + [SMALL_STATE(656)] = 16365, + [SMALL_STATE(657)] = 16406, + [SMALL_STATE(658)] = 16443, + [SMALL_STATE(659)] = 16489, + [SMALL_STATE(660)] = 16519, + [SMALL_STATE(661)] = 16549, + [SMALL_STATE(662)] = 16595, + [SMALL_STATE(663)] = 16643, + [SMALL_STATE(664)] = 16679, + [SMALL_STATE(665)] = 16709, + [SMALL_STATE(666)] = 16755, + [SMALL_STATE(667)] = 16801, + [SMALL_STATE(668)] = 16849, + [SMALL_STATE(669)] = 16879, + [SMALL_STATE(670)] = 16915, + [SMALL_STATE(671)] = 16961, + [SMALL_STATE(672)] = 16991, + [SMALL_STATE(673)] = 17037, + [SMALL_STATE(674)] = 17067, + [SMALL_STATE(675)] = 17113, + [SMALL_STATE(676)] = 17165, + [SMALL_STATE(677)] = 17194, + [SMALL_STATE(678)] = 17223, + [SMALL_STATE(679)] = 17252, + [SMALL_STATE(680)] = 17301, + [SMALL_STATE(681)] = 17330, + [SMALL_STATE(682)] = 17360, + [SMALL_STATE(683)] = 17408, + [SMALL_STATE(684)] = 17436, + [SMALL_STATE(685)] = 17478, + [SMALL_STATE(686)] = 17510, + [SMALL_STATE(687)] = 17538, + [SMALL_STATE(688)] = 17566, + [SMALL_STATE(689)] = 17594, + [SMALL_STATE(690)] = 17622, + [SMALL_STATE(691)] = 17664, + [SMALL_STATE(692)] = 17692, + [SMALL_STATE(693)] = 17720, + [SMALL_STATE(694)] = 17766, + [SMALL_STATE(695)] = 17812, + [SMALL_STATE(696)] = 17846, + [SMALL_STATE(697)] = 17886, + [SMALL_STATE(698)] = 17932, + [SMALL_STATE(699)] = 17975, + [SMALL_STATE(700)] = 18008, + [SMALL_STATE(701)] = 18045, + [SMALL_STATE(702)] = 18088, + [SMALL_STATE(703)] = 18131, + [SMALL_STATE(704)] = 18174, + [SMALL_STATE(705)] = 18211, + [SMALL_STATE(706)] = 18248, + [SMALL_STATE(707)] = 18285, + [SMALL_STATE(708)] = 18310, + [SMALL_STATE(709)] = 18349, + [SMALL_STATE(710)] = 18386, + [SMALL_STATE(711)] = 18411, + [SMALL_STATE(712)] = 18451, + [SMALL_STATE(713)] = 18491, + [SMALL_STATE(714)] = 18531, + [SMALL_STATE(715)] = 18571, + [SMALL_STATE(716)] = 18613, + [SMALL_STATE(717)] = 18655, + [SMALL_STATE(718)] = 18681, + [SMALL_STATE(719)] = 18723, + [SMALL_STATE(720)] = 18763, + [SMALL_STATE(721)] = 18805, + [SMALL_STATE(722)] = 18845, + [SMALL_STATE(723)] = 18885, + [SMALL_STATE(724)] = 18918, + [SMALL_STATE(725)] = 18955, + [SMALL_STATE(726)] = 18990, + [SMALL_STATE(727)] = 19027, + [SMALL_STATE(728)] = 19064, + [SMALL_STATE(729)] = 19093, + [SMALL_STATE(730)] = 19129, + [SMALL_STATE(731)] = 19165, + [SMALL_STATE(732)] = 19201, + [SMALL_STATE(733)] = 19231, + [SMALL_STATE(734)] = 19267, + [SMALL_STATE(735)] = 19303, + [SMALL_STATE(736)] = 19337, + [SMALL_STATE(737)] = 19367, + [SMALL_STATE(738)] = 19403, + [SMALL_STATE(739)] = 19437, + [SMALL_STATE(740)] = 19471, + [SMALL_STATE(741)] = 19505, + [SMALL_STATE(742)] = 19539, + [SMALL_STATE(743)] = 19571, + [SMALL_STATE(744)] = 19607, + [SMALL_STATE(745)] = 19641, + [SMALL_STATE(746)] = 19675, + [SMALL_STATE(747)] = 19711, + [SMALL_STATE(748)] = 19745, + [SMALL_STATE(749)] = 19779, + [SMALL_STATE(750)] = 19810, + [SMALL_STATE(751)] = 19841, + [SMALL_STATE(752)] = 19872, + [SMALL_STATE(753)] = 19895, + [SMALL_STATE(754)] = 19926, + [SMALL_STATE(755)] = 19959, + [SMALL_STATE(756)] = 19990, + [SMALL_STATE(757)] = 20023, + [SMALL_STATE(758)] = 20054, + [SMALL_STATE(759)] = 20082, + [SMALL_STATE(760)] = 20112, + [SMALL_STATE(761)] = 20142, + [SMALL_STATE(762)] = 20174, + [SMALL_STATE(763)] = 20204, + [SMALL_STATE(764)] = 20236, + [SMALL_STATE(765)] = 20266, + [SMALL_STATE(766)] = 20294, + [SMALL_STATE(767)] = 20325, + [SMALL_STATE(768)] = 20360, + [SMALL_STATE(769)] = 20395, + [SMALL_STATE(770)] = 20426, + [SMALL_STATE(771)] = 20453, + [SMALL_STATE(772)] = 20482, + [SMALL_STATE(773)] = 20511, + [SMALL_STATE(774)] = 20538, + [SMALL_STATE(775)] = 20564, + [SMALL_STATE(776)] = 20594, + [SMALL_STATE(777)] = 20610, + [SMALL_STATE(778)] = 20638, + [SMALL_STATE(779)] = 20663, + [SMALL_STATE(780)] = 20684, + [SMALL_STATE(781)] = 20713, + [SMALL_STATE(782)] = 20736, + [SMALL_STATE(783)] = 20765, + [SMALL_STATE(784)] = 20794, + [SMALL_STATE(785)] = 20823, + [SMALL_STATE(786)] = 20846, + [SMALL_STATE(787)] = 20869, + [SMALL_STATE(788)] = 20891, + [SMALL_STATE(789)] = 20915, + [SMALL_STATE(790)] = 20937, + [SMALL_STATE(791)] = 20951, + [SMALL_STATE(792)] = 20965, + [SMALL_STATE(793)] = 20989, + [SMALL_STATE(794)] = 21003, + [SMALL_STATE(795)] = 21023, + [SMALL_STATE(796)] = 21037, + [SMALL_STATE(797)] = 21059, + [SMALL_STATE(798)] = 21079, + [SMALL_STATE(799)] = 21096, + [SMALL_STATE(800)] = 21109, + [SMALL_STATE(801)] = 21122, + [SMALL_STATE(802)] = 21139, + [SMALL_STATE(803)] = 21162, + [SMALL_STATE(804)] = 21175, + [SMALL_STATE(805)] = 21192, + [SMALL_STATE(806)] = 21209, + [SMALL_STATE(807)] = 21222, + [SMALL_STATE(808)] = 21239, + [SMALL_STATE(809)] = 21252, + [SMALL_STATE(810)] = 21265, + [SMALL_STATE(811)] = 21278, + [SMALL_STATE(812)] = 21291, + [SMALL_STATE(813)] = 21304, + [SMALL_STATE(814)] = 21321, + [SMALL_STATE(815)] = 21334, + [SMALL_STATE(816)] = 21347, + [SMALL_STATE(817)] = 21360, + [SMALL_STATE(818)] = 21373, + [SMALL_STATE(819)] = 21386, + [SMALL_STATE(820)] = 21399, + [SMALL_STATE(821)] = 21412, + [SMALL_STATE(822)] = 21425, + [SMALL_STATE(823)] = 21448, + [SMALL_STATE(824)] = 21461, + [SMALL_STATE(825)] = 21474, + [SMALL_STATE(826)] = 21487, + [SMALL_STATE(827)] = 21500, + [SMALL_STATE(828)] = 21513, + [SMALL_STATE(829)] = 21530, + [SMALL_STATE(830)] = 21543, + [SMALL_STATE(831)] = 21566, + [SMALL_STATE(832)] = 21579, + [SMALL_STATE(833)] = 21592, + [SMALL_STATE(834)] = 21609, + [SMALL_STATE(835)] = 21626, + [SMALL_STATE(836)] = 21639, + [SMALL_STATE(837)] = 21656, + [SMALL_STATE(838)] = 21677, + [SMALL_STATE(839)] = 21690, + [SMALL_STATE(840)] = 21703, + [SMALL_STATE(841)] = 21716, + [SMALL_STATE(842)] = 21739, + [SMALL_STATE(843)] = 21752, + [SMALL_STATE(844)] = 21771, + [SMALL_STATE(845)] = 21792, + [SMALL_STATE(846)] = 21805, + [SMALL_STATE(847)] = 21818, + [SMALL_STATE(848)] = 21831, + [SMALL_STATE(849)] = 21848, + [SMALL_STATE(850)] = 21861, + [SMALL_STATE(851)] = 21874, + [SMALL_STATE(852)] = 21893, + [SMALL_STATE(853)] = 21916, + [SMALL_STATE(854)] = 21939, + [SMALL_STATE(855)] = 21952, + [SMALL_STATE(856)] = 21965, + [SMALL_STATE(857)] = 21982, + [SMALL_STATE(858)] = 21999, + [SMALL_STATE(859)] = 22016, + [SMALL_STATE(860)] = 22029, + [SMALL_STATE(861)] = 22048, + [SMALL_STATE(862)] = 22065, + [SMALL_STATE(863)] = 22078, + [SMALL_STATE(864)] = 22095, + [SMALL_STATE(865)] = 22112, + [SMALL_STATE(866)] = 22129, + [SMALL_STATE(867)] = 22146, + [SMALL_STATE(868)] = 22165, + [SMALL_STATE(869)] = 22182, + [SMALL_STATE(870)] = 22195, + [SMALL_STATE(871)] = 22211, + [SMALL_STATE(872)] = 22227, + [SMALL_STATE(873)] = 22243, + [SMALL_STATE(874)] = 22259, + [SMALL_STATE(875)] = 22275, + [SMALL_STATE(876)] = 22291, + [SMALL_STATE(877)] = 22307, + [SMALL_STATE(878)] = 22323, + [SMALL_STATE(879)] = 22339, + [SMALL_STATE(880)] = 22359, + [SMALL_STATE(881)] = 22371, + [SMALL_STATE(882)] = 22387, + [SMALL_STATE(883)] = 22399, + [SMALL_STATE(884)] = 22413, + [SMALL_STATE(885)] = 22429, + [SMALL_STATE(886)] = 22445, + [SMALL_STATE(887)] = 22465, + [SMALL_STATE(888)] = 22481, + [SMALL_STATE(889)] = 22497, + [SMALL_STATE(890)] = 22513, + [SMALL_STATE(891)] = 22529, + [SMALL_STATE(892)] = 22549, + [SMALL_STATE(893)] = 22565, + [SMALL_STATE(894)] = 22581, + [SMALL_STATE(895)] = 22597, + [SMALL_STATE(896)] = 22613, + [SMALL_STATE(897)] = 22629, + [SMALL_STATE(898)] = 22645, + [SMALL_STATE(899)] = 22661, + [SMALL_STATE(900)] = 22677, + [SMALL_STATE(901)] = 22693, + [SMALL_STATE(902)] = 22709, + [SMALL_STATE(903)] = 22721, + [SMALL_STATE(904)] = 22737, + [SMALL_STATE(905)] = 22757, + [SMALL_STATE(906)] = 22777, + [SMALL_STATE(907)] = 22795, + [SMALL_STATE(908)] = 22811, + [SMALL_STATE(909)] = 22827, + [SMALL_STATE(910)] = 22847, + [SMALL_STATE(911)] = 22862, + [SMALL_STATE(912)] = 22877, + [SMALL_STATE(913)] = 22894, + [SMALL_STATE(914)] = 22909, + [SMALL_STATE(915)] = 22926, + [SMALL_STATE(916)] = 22939, + [SMALL_STATE(917)] = 22954, + [SMALL_STATE(918)] = 22965, + [SMALL_STATE(919)] = 22982, + [SMALL_STATE(920)] = 22993, + [SMALL_STATE(921)] = 23010, + [SMALL_STATE(922)] = 23025, + [SMALL_STATE(923)] = 23038, + [SMALL_STATE(924)] = 23055, + [SMALL_STATE(925)] = 23072, + [SMALL_STATE(926)] = 23089, + [SMALL_STATE(927)] = 23106, + [SMALL_STATE(928)] = 23119, + [SMALL_STATE(929)] = 23134, + [SMALL_STATE(930)] = 23151, + [SMALL_STATE(931)] = 23168, + [SMALL_STATE(932)] = 23185, + [SMALL_STATE(933)] = 23202, + [SMALL_STATE(934)] = 23219, + [SMALL_STATE(935)] = 23236, + [SMALL_STATE(936)] = 23253, + [SMALL_STATE(937)] = 23270, + [SMALL_STATE(938)] = 23287, + [SMALL_STATE(939)] = 23304, + [SMALL_STATE(940)] = 23321, + [SMALL_STATE(941)] = 23338, + [SMALL_STATE(942)] = 23355, + [SMALL_STATE(943)] = 23370, + [SMALL_STATE(944)] = 23385, + [SMALL_STATE(945)] = 23402, + [SMALL_STATE(946)] = 23419, + [SMALL_STATE(947)] = 23434, + [SMALL_STATE(948)] = 23451, + [SMALL_STATE(949)] = 23468, + [SMALL_STATE(950)] = 23483, + [SMALL_STATE(951)] = 23496, + [SMALL_STATE(952)] = 23511, + [SMALL_STATE(953)] = 23528, + [SMALL_STATE(954)] = 23543, + [SMALL_STATE(955)] = 23558, + [SMALL_STATE(956)] = 23573, + [SMALL_STATE(957)] = 23588, + [SMALL_STATE(958)] = 23605, + [SMALL_STATE(959)] = 23620, + [SMALL_STATE(960)] = 23635, + [SMALL_STATE(961)] = 23652, + [SMALL_STATE(962)] = 23669, + [SMALL_STATE(963)] = 23686, + [SMALL_STATE(964)] = 23701, + [SMALL_STATE(965)] = 23716, + [SMALL_STATE(966)] = 23731, + [SMALL_STATE(967)] = 23742, + [SMALL_STATE(968)] = 23759, + [SMALL_STATE(969)] = 23776, + [SMALL_STATE(970)] = 23791, + [SMALL_STATE(971)] = 23808, + [SMALL_STATE(972)] = 23825, + [SMALL_STATE(973)] = 23840, + [SMALL_STATE(974)] = 23855, + [SMALL_STATE(975)] = 23866, + [SMALL_STATE(976)] = 23881, + [SMALL_STATE(977)] = 23898, + [SMALL_STATE(978)] = 23915, + [SMALL_STATE(979)] = 23932, + [SMALL_STATE(980)] = 23949, + [SMALL_STATE(981)] = 23960, + [SMALL_STATE(982)] = 23974, + [SMALL_STATE(983)] = 23988, + [SMALL_STATE(984)] = 24002, + [SMALL_STATE(985)] = 24016, + [SMALL_STATE(986)] = 24030, + [SMALL_STATE(987)] = 24044, + [SMALL_STATE(988)] = 24058, + [SMALL_STATE(989)] = 24072, + [SMALL_STATE(990)] = 24086, + [SMALL_STATE(991)] = 24096, + [SMALL_STATE(992)] = 24110, + [SMALL_STATE(993)] = 24120, + [SMALL_STATE(994)] = 24134, + [SMALL_STATE(995)] = 24148, + [SMALL_STATE(996)] = 24162, + [SMALL_STATE(997)] = 24176, + [SMALL_STATE(998)] = 24190, + [SMALL_STATE(999)] = 24204, + [SMALL_STATE(1000)] = 24218, + [SMALL_STATE(1001)] = 24232, + [SMALL_STATE(1002)] = 24246, + [SMALL_STATE(1003)] = 24260, + [SMALL_STATE(1004)] = 24274, + [SMALL_STATE(1005)] = 24288, + [SMALL_STATE(1006)] = 24302, + [SMALL_STATE(1007)] = 24316, + [SMALL_STATE(1008)] = 24330, + [SMALL_STATE(1009)] = 24344, + [SMALL_STATE(1010)] = 24358, + [SMALL_STATE(1011)] = 24372, + [SMALL_STATE(1012)] = 24386, + [SMALL_STATE(1013)] = 24400, + [SMALL_STATE(1014)] = 24410, + [SMALL_STATE(1015)] = 24420, + [SMALL_STATE(1016)] = 24434, + [SMALL_STATE(1017)] = 24448, + [SMALL_STATE(1018)] = 24462, + [SMALL_STATE(1019)] = 24476, + [SMALL_STATE(1020)] = 24490, + [SMALL_STATE(1021)] = 24504, + [SMALL_STATE(1022)] = 24518, + [SMALL_STATE(1023)] = 24532, + [SMALL_STATE(1024)] = 24546, + [SMALL_STATE(1025)] = 24560, + [SMALL_STATE(1026)] = 24574, + [SMALL_STATE(1027)] = 24588, + [SMALL_STATE(1028)] = 24602, + [SMALL_STATE(1029)] = 24616, + [SMALL_STATE(1030)] = 24630, + [SMALL_STATE(1031)] = 24644, + [SMALL_STATE(1032)] = 24658, + [SMALL_STATE(1033)] = 24672, + [SMALL_STATE(1034)] = 24686, + [SMALL_STATE(1035)] = 24698, + [SMALL_STATE(1036)] = 24710, + [SMALL_STATE(1037)] = 24720, + [SMALL_STATE(1038)] = 24734, + [SMALL_STATE(1039)] = 24744, + [SMALL_STATE(1040)] = 24758, + [SMALL_STATE(1041)] = 24768, + [SMALL_STATE(1042)] = 24782, + [SMALL_STATE(1043)] = 24796, + [SMALL_STATE(1044)] = 24810, + [SMALL_STATE(1045)] = 24824, + [SMALL_STATE(1046)] = 24836, + [SMALL_STATE(1047)] = 24848, + [SMALL_STATE(1048)] = 24862, + [SMALL_STATE(1049)] = 24876, + [SMALL_STATE(1050)] = 24890, + [SMALL_STATE(1051)] = 24904, + [SMALL_STATE(1052)] = 24918, + [SMALL_STATE(1053)] = 24932, + [SMALL_STATE(1054)] = 24946, + [SMALL_STATE(1055)] = 24960, + [SMALL_STATE(1056)] = 24970, + [SMALL_STATE(1057)] = 24984, + [SMALL_STATE(1058)] = 24998, + [SMALL_STATE(1059)] = 25012, + [SMALL_STATE(1060)] = 25026, + [SMALL_STATE(1061)] = 25040, + [SMALL_STATE(1062)] = 25054, + [SMALL_STATE(1063)] = 25068, + [SMALL_STATE(1064)] = 25082, + [SMALL_STATE(1065)] = 25096, + [SMALL_STATE(1066)] = 25110, + [SMALL_STATE(1067)] = 25124, + [SMALL_STATE(1068)] = 25138, + [SMALL_STATE(1069)] = 25152, + [SMALL_STATE(1070)] = 25162, + [SMALL_STATE(1071)] = 25176, + [SMALL_STATE(1072)] = 25190, + [SMALL_STATE(1073)] = 25204, + [SMALL_STATE(1074)] = 25218, + [SMALL_STATE(1075)] = 25232, + [SMALL_STATE(1076)] = 25246, + [SMALL_STATE(1077)] = 25260, + [SMALL_STATE(1078)] = 25274, + [SMALL_STATE(1079)] = 25288, + [SMALL_STATE(1080)] = 25302, + [SMALL_STATE(1081)] = 25316, + [SMALL_STATE(1082)] = 25330, + [SMALL_STATE(1083)] = 25344, + [SMALL_STATE(1084)] = 25358, + [SMALL_STATE(1085)] = 25372, + [SMALL_STATE(1086)] = 25386, + [SMALL_STATE(1087)] = 25400, + [SMALL_STATE(1088)] = 25414, + [SMALL_STATE(1089)] = 25428, + [SMALL_STATE(1090)] = 25442, + [SMALL_STATE(1091)] = 25452, + [SMALL_STATE(1092)] = 25466, + [SMALL_STATE(1093)] = 25476, + [SMALL_STATE(1094)] = 25485, + [SMALL_STATE(1095)] = 25496, + [SMALL_STATE(1096)] = 25507, + [SMALL_STATE(1097)] = 25518, + [SMALL_STATE(1098)] = 25529, + [SMALL_STATE(1099)] = 25540, + [SMALL_STATE(1100)] = 25551, + [SMALL_STATE(1101)] = 25560, + [SMALL_STATE(1102)] = 25571, + [SMALL_STATE(1103)] = 25580, + [SMALL_STATE(1104)] = 25591, + [SMALL_STATE(1105)] = 25602, + [SMALL_STATE(1106)] = 25613, + [SMALL_STATE(1107)] = 25624, + [SMALL_STATE(1108)] = 25635, + [SMALL_STATE(1109)] = 25646, + [SMALL_STATE(1110)] = 25655, + [SMALL_STATE(1111)] = 25666, + [SMALL_STATE(1112)] = 25677, + [SMALL_STATE(1113)] = 25688, + [SMALL_STATE(1114)] = 25699, + [SMALL_STATE(1115)] = 25710, + [SMALL_STATE(1116)] = 25719, + [SMALL_STATE(1117)] = 25728, + [SMALL_STATE(1118)] = 25739, + [SMALL_STATE(1119)] = 25750, + [SMALL_STATE(1120)] = 25761, + [SMALL_STATE(1121)] = 25772, + [SMALL_STATE(1122)] = 25783, + [SMALL_STATE(1123)] = 25794, + [SMALL_STATE(1124)] = 25805, + [SMALL_STATE(1125)] = 25816, + [SMALL_STATE(1126)] = 25827, + [SMALL_STATE(1127)] = 25838, + [SMALL_STATE(1128)] = 25847, + [SMALL_STATE(1129)] = 25856, + [SMALL_STATE(1130)] = 25867, + [SMALL_STATE(1131)] = 25876, + [SMALL_STATE(1132)] = 25885, + [SMALL_STATE(1133)] = 25894, + [SMALL_STATE(1134)] = 25903, + [SMALL_STATE(1135)] = 25914, + [SMALL_STATE(1136)] = 25923, + [SMALL_STATE(1137)] = 25932, + [SMALL_STATE(1138)] = 25943, + [SMALL_STATE(1139)] = 25954, + [SMALL_STATE(1140)] = 25963, + [SMALL_STATE(1141)] = 25974, + [SMALL_STATE(1142)] = 25985, + [SMALL_STATE(1143)] = 25996, + [SMALL_STATE(1144)] = 26005, + [SMALL_STATE(1145)] = 26016, + [SMALL_STATE(1146)] = 26027, + [SMALL_STATE(1147)] = 26038, + [SMALL_STATE(1148)] = 26049, + [SMALL_STATE(1149)] = 26058, + [SMALL_STATE(1150)] = 26069, + [SMALL_STATE(1151)] = 26078, + [SMALL_STATE(1152)] = 26089, + [SMALL_STATE(1153)] = 26098, + [SMALL_STATE(1154)] = 26109, + [SMALL_STATE(1155)] = 26120, + [SMALL_STATE(1156)] = 26129, + [SMALL_STATE(1157)] = 26140, + [SMALL_STATE(1158)] = 26151, + [SMALL_STATE(1159)] = 26162, + [SMALL_STATE(1160)] = 26173, + [SMALL_STATE(1161)] = 26184, + [SMALL_STATE(1162)] = 26195, + [SMALL_STATE(1163)] = 26206, + [SMALL_STATE(1164)] = 26217, + [SMALL_STATE(1165)] = 26228, + [SMALL_STATE(1166)] = 26239, + [SMALL_STATE(1167)] = 26250, + [SMALL_STATE(1168)] = 26261, + [SMALL_STATE(1169)] = 26272, + [SMALL_STATE(1170)] = 26283, + [SMALL_STATE(1171)] = 26294, + [SMALL_STATE(1172)] = 26305, + [SMALL_STATE(1173)] = 26316, + [SMALL_STATE(1174)] = 26327, + [SMALL_STATE(1175)] = 26338, + [SMALL_STATE(1176)] = 26349, + [SMALL_STATE(1177)] = 26360, + [SMALL_STATE(1178)] = 26371, + [SMALL_STATE(1179)] = 26382, + [SMALL_STATE(1180)] = 26391, + [SMALL_STATE(1181)] = 26400, + [SMALL_STATE(1182)] = 26411, + [SMALL_STATE(1183)] = 26422, + [SMALL_STATE(1184)] = 26433, + [SMALL_STATE(1185)] = 26444, + [SMALL_STATE(1186)] = 26455, + [SMALL_STATE(1187)] = 26466, + [SMALL_STATE(1188)] = 26477, + [SMALL_STATE(1189)] = 26488, + [SMALL_STATE(1190)] = 26499, + [SMALL_STATE(1191)] = 26510, + [SMALL_STATE(1192)] = 26521, + [SMALL_STATE(1193)] = 26530, + [SMALL_STATE(1194)] = 26541, + [SMALL_STATE(1195)] = 26552, + [SMALL_STATE(1196)] = 26563, + [SMALL_STATE(1197)] = 26574, + [SMALL_STATE(1198)] = 26583, + [SMALL_STATE(1199)] = 26592, + [SMALL_STATE(1200)] = 26601, + [SMALL_STATE(1201)] = 26612, + [SMALL_STATE(1202)] = 26623, + [SMALL_STATE(1203)] = 26632, + [SMALL_STATE(1204)] = 26641, + [SMALL_STATE(1205)] = 26652, + [SMALL_STATE(1206)] = 26661, + [SMALL_STATE(1207)] = 26670, + [SMALL_STATE(1208)] = 26681, + [SMALL_STATE(1209)] = 26690, + [SMALL_STATE(1210)] = 26701, + [SMALL_STATE(1211)] = 26709, + [SMALL_STATE(1212)] = 26717, + [SMALL_STATE(1213)] = 26725, + [SMALL_STATE(1214)] = 26733, + [SMALL_STATE(1215)] = 26741, + [SMALL_STATE(1216)] = 26749, + [SMALL_STATE(1217)] = 26757, + [SMALL_STATE(1218)] = 26765, + [SMALL_STATE(1219)] = 26773, + [SMALL_STATE(1220)] = 26781, + [SMALL_STATE(1221)] = 26789, + [SMALL_STATE(1222)] = 26797, + [SMALL_STATE(1223)] = 26805, + [SMALL_STATE(1224)] = 26813, + [SMALL_STATE(1225)] = 26821, + [SMALL_STATE(1226)] = 26829, + [SMALL_STATE(1227)] = 26837, + [SMALL_STATE(1228)] = 26845, + [SMALL_STATE(1229)] = 26853, + [SMALL_STATE(1230)] = 26861, + [SMALL_STATE(1231)] = 26869, + [SMALL_STATE(1232)] = 26877, + [SMALL_STATE(1233)] = 26885, + [SMALL_STATE(1234)] = 26893, + [SMALL_STATE(1235)] = 26901, + [SMALL_STATE(1236)] = 26909, + [SMALL_STATE(1237)] = 26917, + [SMALL_STATE(1238)] = 26925, + [SMALL_STATE(1239)] = 26933, + [SMALL_STATE(1240)] = 26941, + [SMALL_STATE(1241)] = 26949, + [SMALL_STATE(1242)] = 26957, + [SMALL_STATE(1243)] = 26965, + [SMALL_STATE(1244)] = 26973, + [SMALL_STATE(1245)] = 26981, + [SMALL_STATE(1246)] = 26989, + [SMALL_STATE(1247)] = 26997, + [SMALL_STATE(1248)] = 27005, + [SMALL_STATE(1249)] = 27013, + [SMALL_STATE(1250)] = 27021, + [SMALL_STATE(1251)] = 27029, + [SMALL_STATE(1252)] = 27037, + [SMALL_STATE(1253)] = 27045, + [SMALL_STATE(1254)] = 27053, + [SMALL_STATE(1255)] = 27061, + [SMALL_STATE(1256)] = 27069, + [SMALL_STATE(1257)] = 27077, + [SMALL_STATE(1258)] = 27085, + [SMALL_STATE(1259)] = 27093, + [SMALL_STATE(1260)] = 27101, + [SMALL_STATE(1261)] = 27109, + [SMALL_STATE(1262)] = 27117, + [SMALL_STATE(1263)] = 27125, + [SMALL_STATE(1264)] = 27133, + [SMALL_STATE(1265)] = 27141, + [SMALL_STATE(1266)] = 27149, + [SMALL_STATE(1267)] = 27157, + [SMALL_STATE(1268)] = 27165, + [SMALL_STATE(1269)] = 27173, + [SMALL_STATE(1270)] = 27181, + [SMALL_STATE(1271)] = 27189, + [SMALL_STATE(1272)] = 27197, + [SMALL_STATE(1273)] = 27205, + [SMALL_STATE(1274)] = 27213, + [SMALL_STATE(1275)] = 27221, + [SMALL_STATE(1276)] = 27229, + [SMALL_STATE(1277)] = 27237, + [SMALL_STATE(1278)] = 27245, + [SMALL_STATE(1279)] = 27253, + [SMALL_STATE(1280)] = 27261, + [SMALL_STATE(1281)] = 27269, + [SMALL_STATE(1282)] = 27277, + [SMALL_STATE(1283)] = 27285, + [SMALL_STATE(1284)] = 27293, + [SMALL_STATE(1285)] = 27301, + [SMALL_STATE(1286)] = 27309, + [SMALL_STATE(1287)] = 27317, + [SMALL_STATE(1288)] = 27325, + [SMALL_STATE(1289)] = 27333, + [SMALL_STATE(1290)] = 27341, + [SMALL_STATE(1291)] = 27349, + [SMALL_STATE(1292)] = 27357, + [SMALL_STATE(1293)] = 27365, + [SMALL_STATE(1294)] = 27373, + [SMALL_STATE(1295)] = 27381, + [SMALL_STATE(1296)] = 27389, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -53767,1420 +66078,1571 @@ 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_program, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [93] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 1), - [95] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 1), - [97] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(309), - [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(384), - [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(384), - [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(55), - [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(261), - [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(261), - [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(260), - [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(599), - [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1143), - [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(958), - [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), - [132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(348), - [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(178), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(246), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(962), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(966), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(974), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(219), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(279), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(429), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(244), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(801), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(994), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1104), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(821), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(328), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(321), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(825), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(749), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1098), - [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(348), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1088), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1087), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(586), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(584), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(593), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(381), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1029), - [218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 2), - [220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 2), - [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), - [242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), - [244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, .production_id = 20), - [254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, .production_id = 20), - [256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), - [258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), - [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), - [262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), - [264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), - [270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), - [272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 23), - [294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 23), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 22), - [302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 22), - [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 23), - [306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 23), - [308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1116), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 113), - [333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 113), - [335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), - [337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), - [339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 61), - [341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 61), - [343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 111), - [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 111), - [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 112), - [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 112), - [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 114), - [353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 114), - [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), - [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), - [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), - [361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), - [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 100), - [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 100), - [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 97), - [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 97), - [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 19), - [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 19), - [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), - [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 99), - [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 99), - [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 100), - [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 100), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 99), - [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 99), - [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 98), - [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 98), - [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), - [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), - [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 127), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 127), - [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 97), - [407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 97), - [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 130), - [411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 130), - [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 131), - [415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 131), - [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 132), - [419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 132), - [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 91), - [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 91), - [425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 90), - [427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 90), - [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 133), - [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 133), - [433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 134), - [435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 134), - [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 135), - [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 135), - [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 132), - [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 132), - [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 136), - [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 136), - [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 80), - [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 80), - [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 3), - [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 3), - [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 137), - [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 137), - [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 59), - [463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 59), - [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 3), - [467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 3), - [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 101), - [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 101), - [473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 19), - [475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 19), - [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 55), - [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 55), - [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 143), - [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 143), - [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 145), - [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 145), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 83), - [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 83), - [499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 82), - [501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 82), - [503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 81), - [505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 81), - [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 80), - [509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 80), - [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 52), - [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 52), - [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 79), - [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 79), - [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 78), - [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 78), - [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 53), - [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 53), - [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 54), - [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 54), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 52), - [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 52), - [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 55), - [539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 55), - [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 54), - [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 54), - [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5), - [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5), - [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 159), - [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 159), - [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 160), - [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 160), - [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 161), - [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 161), - [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 162), - [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 162), - [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 7, .production_id = 163), - [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 7, .production_id = 163), - [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 2), - [571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 2), - [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 59), - [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 59), - [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 2), - [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 2), - [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 183), - [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 183), - [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 59), - [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 59), - [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 6), - [591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 6), - [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 59), - [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 59), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), - [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), - [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, .production_id = 102), - [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, .production_id = 102), - [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, .production_id = 103), - [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, .production_id = 103), - [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2), - [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2), - [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 22), - [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 22), - [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 173), - [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 173), - [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 172), - [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 172), - [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 171), - [635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 171), - [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3), - [639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3), - [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 117), - [647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 117), - [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 170), - [651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 170), - [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 187), - [655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 187), - [657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 169), - [659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 169), - [661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 186), - [663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 186), - [665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 185), - [667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 185), - [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 168), - [671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 168), - [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 190), - [675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 190), - [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 167), - [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 167), - [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 166), - [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 166), - [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4), - [687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4), - [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 118), - [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 118), - [693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), - [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(276), - [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(1005), - [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), - [705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), - [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, .production_id = 29), - [709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, .production_id = 29), - [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3), - [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3), - [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3, .production_id = 29), - [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3, .production_id = 29), - [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 19), - [721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 19), - [723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 28), - [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 28), - [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6, .production_id = 60), - [729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6, .production_id = 60), - [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6), - [733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6), - [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 39), - [737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 39), - [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4), - [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4), - [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 5), - [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 5), - [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, .production_id = 60), - [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, .production_id = 60), - [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 188), - [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 188), - [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 66), - [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 66), - [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4, .production_id = 60), - [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4, .production_id = 60), - [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 153), - [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 153), - [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 189), - [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 189), - [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 84), - [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 84), - [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 152), - [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 152), - [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 23), - [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 23), - [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 85), - [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 85), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 191), - [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 191), - [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 24), - [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 24), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 211), - [823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 211), - [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 151), - [827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 151), - [829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 212), - [831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 212), - [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 150), - [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 150), - [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), - [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), - [841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 213), - [843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 213), - [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 147), - [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 147), - [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 218), - [851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 218), - [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5), - [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5), - [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, .production_id = 29), - [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, .production_id = 29), - [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 58), - [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 58), - [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 59), - [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 59), - [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 3), - [871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 3), - [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 2), - [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 2), - [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synchronized_statement, 3, .production_id = 21), - [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_synchronized_statement, 3, .production_id = 21), - [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), - [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 3), - [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3), - [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3), - [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 20), - [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 20), - [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), - [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 184), - [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 184), - [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 165), - [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 165), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 210), - [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 210), - [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 217), - [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 217), - [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(659), - [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(679), - [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1143), - [974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(11), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(348), - [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(299), - [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(821), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(421), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1098), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(348), - [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1078), - [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1088), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1087), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(586), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(584), - [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(593), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 2), - [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 1), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(498), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1063] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(689), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(576), - [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(679), - [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1143), - [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), - [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(348), - [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(307), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(821), - [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1098), - [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(348), - [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1088), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1087), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(586), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(584), - [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(593), - [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), - [1117] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(1128), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [1123] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(689), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .production_id = 92), - [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .production_id = 92), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 30), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 30), - [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 31), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 31), - [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .production_id = 93), - [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .production_id = 93), - [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(576), - [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1143), - [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), - [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(348), - [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(821), - [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(348), - [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1088), - [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1087), - [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(586), - [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(584), - [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(593), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(193), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_access, 4, .production_id = 65), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_access, 4, .production_id = 65), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 16), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 16), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 18), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 18), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 56), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 56), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 57), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 57), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), - [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(283), - [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(824), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions, 1), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions, 1), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 2), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), - [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1109), - [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(824), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_type, 2), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_type, 2), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 5), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 5), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 50), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 50), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 17), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 17), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 15), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 15), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), - [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(350), - [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(821), - [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(350), - [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 2), - [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 2), - [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 104), - [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 104), - [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 4), - [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 4), - [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, .production_id = 164), - [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, .production_id = 164), - [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 3), - [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 3), - [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 66), - [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 66), - [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 4, .production_id = 139), - [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, .production_id = 139), - [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 4, .production_id = 138), - [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 4, .production_id = 138), - [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 25), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 25), - [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 26), - [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 26), - [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 4), - [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 4), - [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 2), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 2), - [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 3), - [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 3), - [1379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(502), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 3), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 3), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 39), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 39), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 109), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 109), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 106), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 106), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1), - [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(502), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 105), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 105), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_initializer, 2), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_initializer, 2), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 77), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 77), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 76), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 76), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 3), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 3), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, .production_id = 74), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, .production_id = 74), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 4), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 4), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), - [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 94), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 94), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), - [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 5), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 5), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 70), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 70), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_literal, 3), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_literal, 3), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 3), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 3), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, .production_id = 36), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, .production_id = 36), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 50), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 50), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 158), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 158), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 95), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 95), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 157), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 157), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 8), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 8), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 7), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 7), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 2), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 2), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 17), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 17), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 41), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 41), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 62), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 62), - [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 4), - [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 4), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 3), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 3), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 63), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 63), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 64), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 64), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 4), - [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 4), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 46), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 46), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 129), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 129), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 15), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 15), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 128), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 128), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), - [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), - [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1), - [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), - [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_floating_point_type, 1), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_type, 1), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, .production_id = 66), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, .production_id = 66), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 3, .production_id = 39), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 3, .production_id = 39), - [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integral_type, 1), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integral_type, 1), - [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_dimensions_expr_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), - [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_expr_repeat1, 1), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 2, .production_id = 11), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 2, .production_id = 11), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, .production_id = 71), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, .production_id = 71), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 44), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 44), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 32), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 32), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 3, .production_id = 35), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 3, .production_id = 35), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 33), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 33), - [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 96), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(447), - [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(824), - [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(447), - [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 182), - [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 182), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 32), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 219), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 219), - [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 216), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 216), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 215), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 215), - [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 214), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 214), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 27), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 209), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 209), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 208), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 208), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 206), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 206), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element_value, 1), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 2), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1127), - [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 3), - [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 3), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 69), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 5), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 5), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 4), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 4), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 2), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 2), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 148), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 4, .production_id = 115), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 5, .production_id = 144), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 86), - [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_expr_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_expr_repeat1, 2), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_expr_repeat1, 2), - [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_expr_repeat1, 2), SHIFT_REPEAT(802), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_expr_repeat1, 1), - [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(717), - [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 1), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 1), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), - [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(668), - [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(797), - [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(793), - [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(790), - [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(785), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, .production_id = 10), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, .production_id = 9), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_catch_type_repeat1, 2), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 73), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 110), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 6), - [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 122), - [2124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 122), SHIFT_REPEAT(757), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 1, .production_id = 10), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), - [2133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(276), - [2136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1005), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 155), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 154), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), - [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(290), - [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(1005), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 125), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 194), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 124), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 123), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 124), - [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 123), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 196), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_directive, 1), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 43), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 181), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 121), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 197), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 180), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 120), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 179), - [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 198), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 194), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 196), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 197), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 198), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 178), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 201), - [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 177), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 203), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 176), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 175), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 174), - [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 177), - [2239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_expr_repeat1, 2), SHIFT_REPEAT(824), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 204), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 176), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 175), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 174), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 205), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 2), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 1), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(550), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), - [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 26), - [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_modifier, 1), - [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), SHIFT_REPEAT(607), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 1, .production_id = 88), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 8), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 2), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 37), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 38), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 3), - [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 13), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [2348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), SHIFT_REPEAT(558), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), - [2353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(559), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), - [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 3), - [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 5), - [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 3), - [2438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(241), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 72), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 140), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 3), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 2), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 108), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 2, .production_id = 75), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 2), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 2), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 2), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 4), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), - [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(284), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), - [2504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), SHIFT_REPEAT(298), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 149), - [2513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 149), SHIFT_REPEAT(270), - [2516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 195), SHIFT_REPEAT(799), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 195), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), - [2527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), SHIFT_REPEAT(1139), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 193), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), SHIFT_REPEAT(135), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 141), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 142), - [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 87), SHIFT_REPEAT(278), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 87), - [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 45), SHIFT_REPEAT(551), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 45), - [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 89), - [2567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), SHIFT_REPEAT(168), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 199), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 200), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [2588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 202), SHIFT_REPEAT(807), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 202), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 192), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 4, .production_id = 156), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [2611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(338), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass, 2), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 19), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 126), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), - [2640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), SHIFT_REPEAT(1037), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [2645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 68), SHIFT_REPEAT(769), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 68), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 1, .production_id = 12), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [2680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(524), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_rule, 3), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [2725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(678), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 2, .production_id = 40), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_interfaces, 2), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 5, .production_id = 140), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 2, .production_id = 14), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 67), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 4), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__wildcard_bounds, 2), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 108), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 3), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 2), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 2, .production_id = 73), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 1), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_pair, 3, .production_id = 119), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 75), - [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_interfaces, 2), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 3, .production_id = 107), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 72), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 3, .production_id = 42), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 43), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 3), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 4), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2858] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 4), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permits, 2), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 5), - [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 2, .production_id = 116), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 3), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_value, 2, .production_id = 207), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 3, .production_id = 146), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 3), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asterisk, 1), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [91] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 1), + [93] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 1), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), + [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(365), + [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(463), + [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(463), + [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(958), + [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(786), + [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(84), + [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(192), + [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(428), + [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(192), + [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(200), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(662), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1269), + [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1160), + [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), + [147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), + [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(289), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(256), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1165), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1166), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1168), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(132), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(270), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(501), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(177), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(918), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1209), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1224), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(907), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(384), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(371), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(908), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(843), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1218), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(428), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(385), + [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1216), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1215), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(676), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(680), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(687), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(468), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1201), + [233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block_statement_group, 2), + [235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block_statement_group, 2), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), + [263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), + [265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), + [267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2), + [269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2), + [271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3), + [273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3), + [275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, .production_id = 21), + [281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, .production_id = 21), + [283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), + [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), + [313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1), REDUCE(sym_statement, 1), + [320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1), REDUCE(sym_statement, 1), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 24), + [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 3, .production_id = 24), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 24), + [359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 4, .production_id = 24), + [361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 23), + [363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 23), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(1259), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 163), + [428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 163), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 90), + [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 90), + [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 91), + [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 91), + [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 92), + [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 92), + [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 93), + [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 93), + [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 94), + [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 94), + [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 95), + [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 95), + [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 7, .production_id = 182), + [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 7, .production_id = 182), + [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 7, .production_id = 181), + [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 7, .production_id = 181), + [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 180), + [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 180), + [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 179), + [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 179), + [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 178), + [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 178), + [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 177), + [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 177), + [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5), + [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5), + [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 161), + [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 161), + [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 6), + [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 6), + [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 201), + [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 201), + [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 156), + [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 156), + [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 155), + [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 155), + [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), + [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), + [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 149), + [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 149), + [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, .production_id = 154), + [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, .production_id = 154), + [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), + [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), + [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, .production_id = 153), + [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, .production_id = 153), + [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 152), + [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 152), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 151), + [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 151), + [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 150), + [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 150), + [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 58), + [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 58), + [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 149), + [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 149), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 148), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 148), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 147), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 147), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, .production_id = 101), + [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, .production_id = 101), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, .production_id = 102), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, .production_id = 102), + [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 113), + [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 113), + [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 57), + [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 57), + [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 144), + [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 144), + [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 3), + [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 3), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 6, .production_id = 143), + [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 6, .production_id = 143), + [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 3), + [604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 3), + [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), + [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), + [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 92), + [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 92), + [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 103), + [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 103), + [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 4, .production_id = 64), + [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 4, .production_id = 64), + [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), + [624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), + [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 62), + [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 62), + [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 112), + [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 112), + [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 115), + [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 115), + [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 62), + [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 4, .production_id = 62), + [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 114), + [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 114), + [646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 55), + [648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 55), + [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 20), + [652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 20), + [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 20), + [656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 20), + [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5, .production_id = 116), + [660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5, .production_id = 116), + [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 112), + [664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 112), + [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 115), + [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 115), + [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 117), + [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 117), + [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 20), + [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_declaration, 3, .production_id = 20), + [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 62), + [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 62), + [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 20), + [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 20), + [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 130), + [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 130), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 62), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 62), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 129), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 129), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 128), + [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 128), + [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 127), + [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 127), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 56), + [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 56), + [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 57), + [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 57), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 114), + [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 114), + [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_body, 2), + [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_body, 2), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 2), + [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 2), + [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 55), + [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 55), + [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 58), + [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 58), + [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 65), + [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 65), + [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 236), + [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 236), + [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 23), + [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 23), + [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 30), + [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 30), + [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, .production_id = 20), + [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, .production_id = 20), + [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3, .production_id = 14), + [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3, .production_id = 14), + [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 3), + [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 3), + [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 191), + [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 191), + [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, .production_id = 14), + [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, .production_id = 14), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 25), + [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 25), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 4, .production_id = 63), + [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 4, .production_id = 63), + [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), + [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), + [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, .production_id = 119), + [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, .production_id = 119), + [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 190), + [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 190), + [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, .production_id = 118), + [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, .production_id = 118), + [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 189), + [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 8, .production_id = 189), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synchronized_statement, 3, .production_id = 22), + [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_synchronized_statement, 3, .production_id = 22), + [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3), + [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3), + [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 188), + [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 188), + [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3), + [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3), + [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3), + [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3), + [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 21), + [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 21), + [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 3), + [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 133), + [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 133), + [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 231), + [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 231), + [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 230), + [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 230), + [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 229), + [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 229), + [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 187), + [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 187), + [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 73), + [882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 4, .production_id = 73), + [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 186), + [886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 186), + [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3), + [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3), + [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 134), + [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 134), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 185), + [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 185), + [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6, .production_id = 63), + [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6, .production_id = 63), + [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 184), + [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 184), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6), + [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6), + [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), + [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), + [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(154), + [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_block_statement_group_repeat1, 2), SHIFT_REPEAT(1179), + [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 209), + [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 209), + [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 208), + [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enhanced_for_statement, 9, .production_id = 208), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 207), + [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 207), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 206), + [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 206), + [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 5), + [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 5), + [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 96), + [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 96), + [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 205), + [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 205), + [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 204), + [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 204), + [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5), + [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 203), + [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 203), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, .production_id = 14), + [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, .production_id = 14), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 3), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 3), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4), + [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, .production_id = 63), + [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, .production_id = 63), + [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 165), + [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 165), + [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 61), + [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 61), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 168), + [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 168), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 2), + [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_body, 2), + [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 169), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 169), + [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 170), + [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 170), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 40), + [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_variable_declaration, 3, .production_id = 40), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 171), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 171), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 24), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_with_resources_statement, 5, .production_id = 24), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, .production_id = 62), + [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, .production_id = 62), + [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 97), + [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 97), + [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 183), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 3, .production_id = 183), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 235), + [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 6, .production_id = 235), + [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 202), + [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 4, .production_id = 202), + [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 228), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_constructor_invocation, 5, .production_id = 228), + [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(746), + [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(794), + [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(428), + [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1269), + [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(11), + [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), + [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(354), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(907), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(496), + [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1218), + [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(428), + [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1225), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1216), + [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(1215), + [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(676), + [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(680), + [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_body_declarations_repeat1, 2), SHIFT_REPEAT(687), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 2), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_declarations, 1), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(669), + [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(794), + [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(428), + [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1269), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), + [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(359), + [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(907), + [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1218), + [1149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(428), + [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1225), + [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1216), + [1158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1215), + [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(676), + [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(680), + [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(687), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(553), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), + [1200] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(858), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), + [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), + [1209] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(1283), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [1215] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(858), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [1223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(669), + [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(428), + [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1269), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), + [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(907), + [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1218), + [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(428), + [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1216), + [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(1215), + [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(676), + [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(680), + [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_annotation_type_body_repeat1, 2), SHIFT_REPEAT(687), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 31), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 31), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 3, .production_id = 32), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 3, .production_id = 32), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .production_id = 105), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .production_id = 105), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_access, 5, .production_id = 106), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_access, 5, .production_id = 106), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_access, 4, .production_id = 72), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_access, 4, .production_id = 72), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(109), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [1305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(1285), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(108), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 2), + [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), + [1319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1246), + [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(893), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions, 1), + [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions, 1), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 17), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 17), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .production_id = 19), + [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .production_id = 19), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_type, 2), + [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_type, 2), + [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 54), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 54), + [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 53), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 53), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 59), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 59), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 60), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 60), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), + [1373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), SHIFT_REPEAT(156), + [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat2, 2), SHIFT_REPEAT(893), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1, .production_id = 2), SHIFT(592), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_dimensions_repeat1, 3), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 3), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1), + [1394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(592), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), + [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10, .production_id = 2), + [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 2), + [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 2), + [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 68), + [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 68), + [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 6), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 77), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 4, .production_id = 77), + [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_marker_annotation, 2, .production_id = 5), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_marker_annotation, 2, .production_id = 5), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 35), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .dynamic_precedence = 10), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 42), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 2, .production_id = 11), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 2, .production_id = 11), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integral_type, 1), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integral_type, 1), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_floating_point_type, 1), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_type, 1), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 18), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 18), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 16), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 3, .production_id = 16), + [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 51), + [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 52), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 52), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), + [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(427), + [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(907), + [1489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(427), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 89), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 89), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compact_constructor_declaration, 3, .production_id = 20), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compact_constructor_declaration, 3, .production_id = 20), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 27), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 27), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, .production_id = 26), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, .production_id = 26), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 4), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 4), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 2, .production_id = 88), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 2, .production_id = 88), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 2), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 2), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 125), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 125), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 40), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 40), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 4), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 4), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, .production_id = 69), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, .production_id = 69), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compact_constructor_declaration, 2, .production_id = 84), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compact_constructor_declaration, 2, .production_id = 84), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, .production_id = 86), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, .production_id = 86), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 120), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 120), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 4, .production_id = 157), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, .production_id = 157), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 73), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 73), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 3), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 3), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_initializer, 2), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_initializer, 2), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 3, .production_id = 36), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 3, .production_id = 36), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 2), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 2), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dimensions_expr, 3), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dimensions_expr, 3), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_argument_list, 3), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 3), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 122), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 122), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_body, 4), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_body, 4), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 121), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 121), + [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 2), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 2), + [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 3), + [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 3), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 108), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 108), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 5, .production_id = 107), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 5, .production_id = 107), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 2), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 2), + [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, .production_id = 37), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, .production_id = 37), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_literal, 3, .dynamic_precedence = 17), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_literal, 3, .dynamic_precedence = 17), + [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 5), + [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 5), + [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 146), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 146), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 176), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 176), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 7, .production_id = 175), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 7, .production_id = 175), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, .production_id = 73), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, .production_id = 73), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 1), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 1), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 7), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 7), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 1, .production_id = 3), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 16), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 16), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 2, .production_id = 8), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 2, .production_id = 8), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 47), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 6, .production_id = 145), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 6, .production_id = 145), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 3), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 3), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 48), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_string_literal, 2), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiline_string_literal, 2), + [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 18), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 4, .production_id = 18), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_string_literal, 3), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiline_string_literal, 3), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 49), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 3), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 3), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 4, .production_id = 50), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 4, .production_id = 50), + [1738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1), + [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), + [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 82), + [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 82), + [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 81), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 81), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 80), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 80), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 5, .production_id = 79), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 5, .production_id = 79), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_initializer, 4), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_initializer, 4), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 52), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 52), + [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unqualified_object_creation_expression, 5, .production_id = 51), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_reference, 4), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_reference, 4), + [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 3, .production_id = 40), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 3, .production_id = 40), + [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 67), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 67), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 4, .production_id = 66), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 4, .production_id = 66), + [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 200), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 5, .production_id = 200), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, .production_id = 71), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, .production_id = 71), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 5, .production_id = 78), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 5, .production_id = 78), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 34), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 34), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 5, .production_id = 110), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 5, .production_id = 110), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 29), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 29), + [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 224), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 224), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 234), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 234), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 233), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 233), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 226), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 226), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 232), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 7, .production_id = 232), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 4, .production_id = 70), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 4, .production_id = 70), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 45), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 45), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 227), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 6, .production_id = 227), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 33), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 33), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instanceof_expression, 5, .production_id = 109), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instanceof_expression, 5, .production_id = 109), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 237), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_type_element_declaration, 8, .production_id = 237), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 33), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 28), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 111), + [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(544), + [1918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(893), + [1921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(544), + [1924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dimensions_repeat1, 2), SHIFT_REPEAT(1291), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__element_value, 1), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 2), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 76), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 4), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 4), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 2), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 2), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 5), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 5), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver_parameter, 3), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver_parameter, 3), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 5, .production_id = 162), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 4, .production_id = 131), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), REDUCE(aux_sym_modifiers_repeat1, 1), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 166), + [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 98), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), + [2182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(901), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 1), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 1), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource, 1), + [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unannotated_type, 1), SHIFT(864), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, .production_id = 10), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 1, .production_id = 9), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), + [2262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(774), + [2265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(889), + [2268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(884), + [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(874), + [2274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2), SHIFT_REPEAT(877), + [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_catch_type_repeat1, 2), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 85), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 2, .production_id = 126), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 138), + [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 2, .production_id = 138), SHIFT_REPEAT(846), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiline_string_literal_repeat1, 2), + [2360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__multiline_string_literal_repeat1, 2), SHIFT_REPEAT(902), + [2363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__multiline_string_literal_repeat1, 2), SHIFT_REPEAT(848), + [2366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__multiline_string_literal_repeat1, 2), SHIFT_REPEAT(785), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 6), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), + [2377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(154), + [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2), SHIFT_REPEAT(1179), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 1, .production_id = 10), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 173), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 195), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiline_string_fragment_repeat1, 2), + [2413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__multiline_string_fragment_repeat1, 2), SHIFT_REPEAT(801), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 195), + [2418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_creation_expression_repeat1, 2), SHIFT_REPEAT(893), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 194), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 193), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 5, .production_id = 192), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 223), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 222), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 221), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 6, .production_id = 219), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 136), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 3, .production_id = 137), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 216), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 215), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 214), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 6, .production_id = 212), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 216), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 139), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 196), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 3, .production_id = 140), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 197), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 139), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 3, .production_id = 140), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 141), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_uses_module_directive, 3, .production_id = 44), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_string_fragment, 2), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [2477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_type_repeat1, 2), SHIFT_REPEAT(705), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 198), + [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_type, 2), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), + [2486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(269), + [2489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat2, 2), SHIFT_REPEAT(1179), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 215), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 214), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exports_module_directive, 6, .production_id = 212), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_provides_module_directive, 5, .production_id = 199), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 193), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_modifier, 1), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_module_directive, 4, .production_id = 172), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiline_string_fragment, 1), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_requires_module_directive_repeat1, 1, .production_id = 100), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 194), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_directive, 1), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opens_module_directive, 5, .production_id = 192), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 2), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 27), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 8), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 1), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 38), + [2574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), SHIFT_REPEAT(647), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_list_repeat1, 2), + [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_id, 2, .production_id = 39), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 3), + [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__string_literal_repeat1, 2), + [2663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__string_literal_repeat1, 2), SHIFT_REPEAT(911), + [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 13), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 2), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 4), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(204), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 158), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 2, .production_id = 87), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 3), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 83), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_bound, 2), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 2), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [2753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), SHIFT_REPEAT(653), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_bound_repeat1, 2), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 124), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 2), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 2), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 3), + [2778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(166), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_list, 1), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 5), + [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(656), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_array_initializer, 3), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 1, .production_id = 12), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 4, .production_id = 174), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), SHIFT_REPEAT(105), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_value_array_initializer_repeat1, 2), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 167), + [2853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 167), SHIFT_REPEAT(235), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 160), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declarator, 3, .production_id = 159), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_initializer_repeat1, 2), SHIFT_REPEAT(106), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_declarator_list, 2, .production_id = 41), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 210), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 211), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 20), + [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 213), SHIFT_REPEAT(888), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exports_module_directive_repeat1, 2, .production_id = 213), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, .production_id = 142), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), + [2926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2), SHIFT_REPEAT(927), + [2929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 46), SHIFT_REPEAT(652), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 46), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [2936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(399), + [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 217), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 218), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 220), SHIFT_REPEAT(903), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_provides_module_directive_repeat1, 2, .production_id = 220), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), + [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2), SHIFT_REPEAT(1108), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass, 2), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_rule, 3), + [2991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 75), SHIFT_REPEAT(851), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 75), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [3000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(603), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [3009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(797), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), + [3016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_resource_specification_repeat1, 2), SHIFT_REPEAT(347), + [3019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 99), SHIFT_REPEAT(190), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, .production_id = 99), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, .production_id = 84), + [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 4), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 5, .production_id = 158), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 2, .production_id = 15), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 4, .production_id = 124), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 2, .production_id = 85), + [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 2), + [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 83), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard, 3), + [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__wildcard_bounds, 2), + [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declarator, 3, .production_id = 123), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__variable_declarator_list_repeat1, 2, .production_id = 74), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_header, 3, .production_id = 87), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inferred_parameters_repeat1, 2, .production_id = 14), + [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_interfaces, 2), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_label, 1), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_interfaces, 2), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_value_pair, 3, .production_id = 135), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_parameter, 3), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cast_expression_repeat1, 2, .production_id = 44), + [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameter, 3, .production_id = 43), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__default_value, 2, .production_id = 225), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 4), + [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 4, .production_id = 14), + [3176] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permits, 2), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 3), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 2, .production_id = 132), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asterisk, 1), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 5), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_resource_specification, 4), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_formal_parameter, 3, .production_id = 164), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 3), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inferred_parameters, 3, .production_id = 14), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), }; #ifdef __cplusplus @@ -55218,6 +67680,7 @@ extern const TSLanguage *tree_sitter_java(void) { .lex_fn = ts_lex, .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_identifier, + .primary_state_ids = ts_primary_state_ids, }; return &language; } diff --git a/vendored_parsers/tree-sitter-java/src/tree_sitter/parser.h b/vendored_parsers/tree-sitter-java/src/tree_sitter/parser.h index cbbc7b4ee..2b14ac104 100644 --- a/vendored_parsers/tree-sitter-java/src/tree_sitter/parser.h +++ b/vendored_parsers/tree-sitter-java/src/tree_sitter/parser.h @@ -123,6 +123,7 @@ struct TSLanguage { unsigned (*serialize)(void *, char *); void (*deserialize)(void *, const char *, unsigned); } external_scanner; + const TSStateId *primary_state_ids; }; /* diff --git a/vendored_parsers/tree-sitter-java/test/corpus/declarations.txt b/vendored_parsers/tree-sitter-java/test/corpus/declarations.txt index 0fc1e5cef..f2a75c09f 100644 --- a/vendored_parsers/tree-sitter-java/test/corpus/declarations.txt +++ b/vendored_parsers/tree-sitter-java/test/corpus/declarations.txt @@ -100,9 +100,9 @@ module com.foo { } (identifier) (annotation_argument_list (element_value_pair (identifier) (decimal_integer_literal)) - (element_value_pair (identifier) (string_literal)) - (element_value_pair (identifier) (string_literal)) - (element_value_pair (identifier) (string_literal)))) + (element_value_pair (identifier) (string_literal (string_fragment))) + (element_value_pair (identifier) (string_literal (string_fragment))) + (element_value_pair (identifier) (string_literal (string_fragment))))) (scoped_identifier (identifier) (identifier)) (module_body))) @@ -138,7 +138,7 @@ module com.foo {} (module_declaration (annotation (identifier) - (annotation_argument_list (string_literal))) + (annotation_argument_list (string_literal (string_fragment)))) (scoped_identifier (identifier) (identifier)) @@ -597,8 +597,76 @@ enum HandSign { ================= -record declaration +enum declaration inside an interface +================= + +public @interface Foo { + enum HandSign { + SCISSOR, PAPER, STONE + } +} + +--- + + (program + (annotation_type_declaration + (modifiers) + name: (identifier) + body: (annotation_type_body + (enum_declaration + name: (identifier) + body: (enum_body + (enum_constant + name: (identifier)) + (enum_constant + name: (identifier)) + (enum_constant + name: (identifier))))))) + ================= +record declaration +================== + +public record Foo(int bar) { +} + +--- + +(program + (record_declaration + (modifiers) + name: (identifier) + parameters: (formal_parameters + (formal_parameter + type: (integral_type) + name: (identifier))) + body: (class_body))) + +================================ +record declaration with generics +================================ + +public record Foo(T bar) { +} + +--- + +(program + (record_declaration + (modifiers) + name: (identifier) + type_parameters: (type_parameters + (type_parameter + (type_identifier))) + parameters: (formal_parameters + (formal_parameter + type: (type_identifier) + name: (identifier))) + body: (class_body))) + +================================= +record declaration inside a class +================================= public class Usecase { public static record Commande(@NotNull String param) { @@ -638,6 +706,81 @@ public class Usecase { arguments: (argument_list (string_literal))))))))))) +====================================== +record declaration inside an interface +====================================== + +interface I { record R(int a) {} } + +--- + +(program + (interface_declaration + (identifier) + (interface_body + (record_declaration + (identifier) + (formal_parameters + (formal_parameter + (integral_type) + (identifier))) + (class_body))))) + + +=========================================== +record declaration with compact constructor +=========================================== + +record Person(int age) { + public Person { + if (age < 0) throw new IllegalArgumentException("invalid age"); + } +} + +--- + +(program + (record_declaration + (identifier) + (formal_parameters + (formal_parameter + (integral_type) + (identifier))) + (class_body + (compact_constructor_declaration + (modifiers) + (identifier) + (block + (if_statement + (parenthesized_expression + (binary_expression + (identifier) + (decimal_integer_literal))) + (throw_statement + (object_creation_expression + (type_identifier) + (argument_list + (string_literal + (string_fragment))))))))))) + +============================================ +record declaration that implements interface +============================================ + +record R() implements I {} + +--- + +(program + (record_declaration + (identifier) + (formal_parameters) + (super_interfaces + (type_list + (type_identifier))) + (class_body))) + + ============================================== class declaration with dollar-sign identifiers ============================================== diff --git a/vendored_parsers/tree-sitter-java/test/corpus/expressions.txt b/vendored_parsers/tree-sitter-java/test/corpus/expressions.txt index 62eb04875..852d9caae 100644 --- a/vendored_parsers/tree-sitter-java/test/corpus/expressions.txt +++ b/vendored_parsers/tree-sitter-java/test/corpus/expressions.txt @@ -65,6 +65,8 @@ instanceof expressions a instanceof C.D; a instanceof List; c instanceof C[]; +c instanceof C foo; +d instanceof final D bar; --- @@ -77,7 +79,16 @@ c instanceof C[]; (generic_type (type_identifier) (type_arguments (type_identifier))))) (expression_statement (instanceof_expression (identifier) - (array_type (type_identifier) (dimensions))))) + (array_type (type_identifier) (dimensions)))) + (expression_statement (instanceof_expression + (identifier) + (type_identifier) + (identifier))) + (expression_statement (instanceof_expression + (identifier) + (type_identifier) + (identifier)))) + =========================================================== if statements @@ -225,7 +236,7 @@ for (j.init(i); j.check(); j.update()) { field: (identifier)) name: (identifier) arguments: (argument_list (binary_expression - left: (string_literal) + left: (string_literal (string_fragment)) right: (identifier))))))) (for_statement init: (method_invocation @@ -316,7 +327,7 @@ class WhileDemo { field: (identifier)) name: (identifier) arguments: (argument_list - (binary_expression left: (string_literal) right: (identifier))))) + (binary_expression left: (string_literal (string_fragment)) right: (identifier))))) (expression_statement (update_expression (identifier)))))))))) ================================== @@ -337,7 +348,7 @@ try (FileInputStream input = new FileInputStream("file.txt")) { name: (identifier) value: (object_creation_expression type: (type_identifier) - arguments: (argument_list (string_literal))))) + arguments: (argument_list (string_literal (string_fragment)))))) body: (block (local_variable_declaration type: (integral_type) @@ -385,7 +396,7 @@ class Duck { (annotation_argument_list (element_value_pair (identifier) - (string_literal)))) + (string_literal (string_fragment))))) (annotation (identifier) (annotation_argument_list @@ -437,10 +448,32 @@ class Quack { (class_declaration (modifiers (annotation (identifier) (annotation_argument_list (field_access (identifier) (identifier)))) - (annotation (identifier) (annotation_argument_list (string_literal)))) + (annotation (identifier) (annotation_argument_list (string_literal (string_fragment))))) (identifier) (class_body))) +================================== +annotation in array creation +================================== + +String[] allMyStrings = new @Nullable String[5]; + +--- + + (program + (local_variable_declaration + (array_type + (type_identifier) + (dimensions)) + (variable_declarator + (identifier) + (array_creation_expression + (marker_annotation + (identifier)) + (type_identifier) + (dimensions_expr + (decimal_integer_literal)))))) + ================================== lambda expression ================================== @@ -448,7 +481,7 @@ lambda expression class LambdaTest { void singleton() { version -> create; - (a, b) -> a + b; + (record, b) -> record + b; } } @@ -529,7 +562,8 @@ public class SwitchDemo { (expression_statement (assignment_expression left: (identifier) - right: (string_literal))) + right: (string_literal + (string_fragment)))) (break_statement)) (switch_block_statement_group (switch_label @@ -537,7 +571,8 @@ public class SwitchDemo { (expression_statement (assignment_expression left: (identifier) - right: (string_literal))) + right: (string_literal + (string_fragment)))) (break_statement)) (switch_block_statement_group (switch_label @@ -545,14 +580,16 @@ public class SwitchDemo { (expression_statement (assignment_expression left: (identifier) - right: (string_literal))) + right: (string_literal + (string_fragment)))) (break_statement)) (switch_block_statement_group (switch_label) (expression_statement (assignment_expression left: (identifier) - right: (string_literal))) + right: (string_literal + (string_fragment)))) (break_statement)))) (expression_statement (method_invocation @@ -708,7 +745,8 @@ class Test { field: (identifier)) name: (identifier) arguments: (argument_list - (string_literal)))) + (string_literal + (string_fragment))))) (yield_statement (decimal_integer_literal)))))))))))) @@ -897,6 +935,58 @@ class Test { (decimal_integer_literal))))))))))))) ================================== +switch statement and pre-increment +================================== + +class Test { + int i; + static void foo(boolean bar) { + int ddsd; + switch(bar) { + default: + i = 3; + } + ++ddsd; + } +} + +--- + + (program + (class_declaration + (identifier) + (class_body + (field_declaration + (integral_type) + (variable_declarator + (identifier))) + (method_declaration + (modifiers) + (void_type) + (identifier) + (formal_parameters + (formal_parameter + (boolean_type) + (identifier))) + (block + (local_variable_declaration + (integral_type) + (variable_declarator + (identifier))) + (switch_expression + (parenthesized_expression + (identifier)) + (switch_block + (switch_block_statement_group + (switch_label) + (expression_statement + (assignment_expression + (identifier) + (decimal_integer_literal)))))) + (expression_statement + (update_expression + (identifier)))))))) +================================== type arguments ================================== @@ -1074,3 +1164,53 @@ $cibleVisée2 = 2; (assignment_expression (identifier) (decimal_integer_literal)))) + +================================================================================ +Local variable declaration with scoped type identifiers +================================================================================ + +util.List x = null; +java.util.List x = null; +java.util.List x = null; + +-------------------------------------------------------------------------------- + +(program + (local_variable_declaration + (generic_type + (scoped_type_identifier + (type_identifier) + (type_identifier)) + (type_arguments + (type_identifier))) + (variable_declarator + (identifier) + (null_literal))) + (local_variable_declaration + (generic_type + (scoped_type_identifier + (scoped_type_identifier + (type_identifier) + (type_identifier)) + (type_identifier)) + (type_arguments + (type_identifier))) + (variable_declarator + (identifier) + (null_literal))) + (local_variable_declaration + (generic_type + (scoped_type_identifier + (scoped_type_identifier + (type_identifier) + (type_identifier)) + (type_identifier)) + (type_arguments + (scoped_type_identifier + (scoped_type_identifier + (type_identifier) + (type_identifier)) + (type_identifier)))) + (variable_declarator + (identifier) + (null_literal)))) diff --git a/vendored_parsers/tree-sitter-java/test/corpus/literals.txt b/vendored_parsers/tree-sitter-java/test/corpus/literals.txt index 3e82a20a9..8853809d4 100644 --- a/vendored_parsers/tree-sitter-java/test/corpus/literals.txt +++ b/vendored_parsers/tree-sitter-java/test/corpus/literals.txt @@ -147,10 +147,17 @@ string literals --- (program - (expression_statement (string_literal)) - (expression_statement (string_literal)) - (expression_statement (string_literal)) - (expression_statement (string_literal))) + (expression_statement + (string_literal)) + (expression_statement + (string_literal + (escape_sequence))) + (expression_statement + (string_literal + (string_fragment))) + (expression_statement + (string_literal + (string_fragment)))) =============== text block @@ -169,13 +176,84 @@ Closing token at new line """; +""" +{ + "foo": 4 +} +"""; +""" +"this is single double quotes" +""this is double quotes"" +"" """; +""" +"hi +"""; +""" +\\ +"""; + +--- + +(program + (expression_statement + (string_literal + (multiline_string_fragment))) + (expression_statement + (string_literal + (multiline_string_fragment))) + (expression_statement + (string_literal + (multiline_string_fragment))) + (expression_statement + (string_literal + (multiline_string_fragment))) + (expression_statement + (string_literal + (multiline_string_fragment) + (multiline_string_fragment) + (multiline_string_fragment))) + (expression_statement + (string_literal + (multiline_string_fragment) + (multiline_string_fragment) + (multiline_string_fragment) + (multiline_string_fragment) + (multiline_string_fragment) + (multiline_string_fragment) + (multiline_string_fragment) + (multiline_string_fragment) + (multiline_string_fragment))) + (expression_statement + (string_literal + (multiline_string_fragment) + (multiline_string_fragment))) + (expression_statement + (string_literal + (multiline_string_fragment)))) + +=============== +escape sequences +=============== + +"\n\a\b\fhi im a piece of text\t\v and im some more text \\\'\"\?"; + --- (program - (expression_statement (text_block)) - (expression_statement (text_block)) - (expression_statement (text_block)) - (expression_statement (text_block))) + (expression_statement + (string_literal + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence) + (string_fragment) + (escape_sequence) + (escape_sequence) + (string_fragment) + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence)))) ============= null literals @@ -307,3 +385,15 @@ ascii escapes (expression_statement (character_literal)) (expression_statement (character_literal)) (expression_statement (character_literal))) + +======================== +class literals +======================== + +String.class; + +--- + +(program + (expression_statement + (class_literal (type_identifier))))